iT邦幫忙

2024 iThome 鐵人賽

DAY 21
0
Kubernetes

關於新手會想知道Kubernetes的幾件事情系列 第 21

[Dya 21] K8S Lab - 基於 MS COCO 的圖像分類系統 (4)

  • 分享至 

  • xImage
  •  

User Interface 有點陽春

今天來簡單設計一下

https://ithelp.ithome.com.tw/upload/images/20240821/20152821IQGwr7c2tU.jpg

Icon

Icon 的來源是 CoCo Datset 裡面 Overview 的 icon

下面是一個爬蟲程式,用來抓取 icon

import requests
import os

# List of image IDs to download
image_ids = [i for i in range(1, 92)]

# Base URL for downloading images
base_url = 'https://cocodataset.org/images/cocoicons/'

# Directory to save the images
save_dir = 'path to save the image'
os.makedirs(save_dir, exist_ok=True)

for image_id in image_ids:
    # Construct the URL and file path
    img_url = f'{base_url}{image_id}.jpg'
    img_path = os.path.join(save_dir, f'{image_id}.jpg')
    
    # Download the image
    try:
        response = requests.get(img_url)
        response.raise_for_status()  # Check for HTTP errors
        
        with open(img_path, 'wb') as file:
            file.write(response.content)
        print(f'Downloaded: {img_path}')
    except requests.RequestException as e:
        print(f'Failed to download image {image_id}.jpg. Error: {e}')

不過要注意圖片有 91 張,但實際我們只會用到 80 張。


我們看一下爬到的圖片

比如說

teddy bear

https://ithelp.ithome.com.tw/upload/images/20240821/20152821JfzqawZeRv.jpg


上一篇
[Day 20] K8S Lab - 基於 MS COCO 的圖像分類系統 (3)
下一篇
[Day 22] K8S Lab - 基於 MS COCO 的圖像分類系統 (5)
系列文
關於新手會想知道Kubernetes的幾件事情30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言