· Joseph · AI & Machine Learning  · 3 min read

[Day 3] Google Vision AI - 2

今天來入門Google Vision AI的API,文件部分可以看這裡。練功嘛!語言部分我就來順便玩一下一直想入門的Golang。

跟著Quickstarts裡的Using client libraries走先。

  1. 打開或選擇專案 select-project.jpg 這邊要注意你的ProjectName跟ProjectID不見得會一樣,每個地方會用到不同的資訊。
  1. 連結帳單 bill.jpg 如果初次連結的人,會需要填一些信用卡資訊,不過也會有三百塊的免費試用。

  2. 啟用API enable-ai.jpg 透過搜尋Library裡的Vision AI可以enable他。

  3. 下載認證JSON create-account.jpg 這邊建立完就得到一個含有private key的JSON了。

  4. 加入環境變數 我本身是Linux環境,所以我選擇export的方式引入。 export.jpg

到這邊應該以後都一樣,以後要啟用我都會毅然決然地跳過!


tree.jpg

把furniture.jpg搬道專案底下以後,先複製了範例上的code來跑看看。 這是透過30天文章介紹Google Machine Learning Products的關係,原諒我無法逐行講解指令。

// Sample vision-quickstart uses the Google Cloud Vision API to label an image.
package main
import (
        "context"
        "fmt"
        "log"
        "os"
        vision "cloud.google.com/go/vision/apiv1"
)

func main() {
        ctx := context.Background()

        // Creates a client.
        client, err := vision.NewImageAnnotatorClient(ctx)
        if err != nil {
                log.Fatalf("Failed to create client: %v", err)
        }
        defer client.Close()

        // Sets the name of the image file to annotate.
        filename := "./testdata/furniture.jpg"
        file, err := os.Open(filename)
        if err != nil {
                log.Fatalf("Failed to read file: %v", err)
        }
        defer file.Close()
        image, err := vision.NewImageFromReader(file)
        if err != nil {
                log.Fatalf("Failed to create image: %v", err)
        }
        labels, err := client.DetectLabels(ctx, image, nil, 10) //只顯示10個
        if err != nil {
                log.Fatalf("Failed to detect labels: %v", err)
        }
        fmt.Println("Labels:")
        for _, label := range labels {
                fmt.Println(label.Description)
        }
}

我放在docker裡面,所以會透過docker run執行 label.jpg 恩,物件的Label確實有前10個Label。改改看上面 labels, err := client.DetectLabels(ctx, image, nil, 10)的10,看看出來的Label數量會不會跟著變吧。

踩入Vision API的第一步完成,可以看看我的Github: https://github.com/josephMG/ithelp-2019 取得所有的code。

今天就到這邊,話說我其實也不太知道明天是該繼續寫Vision API裡其他的detect好,還是該進入到下一個Topic好。沒關係,明天再看看。

Back to Blog

Related Posts

View All Posts »

[Day 5] Google Vision AI - 子系列最終章

今天是Google Vision AI這子系列最後一章節,我們今天要來講Vision AI的Auto ML Vision。我玩的是GCP上面的UI介面,側邊欄打開找到Vision點進去就可以看到了: AutoML-Vision.jpg

[Day 4] Google Vision AI - 3

今天還是繼續多玩幾個Vision AI API好了,初步教學可以看前一篇 Detech text in images 我這邊用的圖片是Google搜尋到的拉斯維加斯: las-vegas.jpg

[Day 2] Google Vision AI - 1

Google Vision AI分成兩個服務:AutoML Vision、Vision API,我們今天先講Vision API。 Vision API要講什麼?講什麼都比不過先來玩看看。 選擇圖片:

[Day 30] Google AI & ML Products 系列總結

這系列文章出自於一個無窮無盡的bug的解題時間,想不到如何解bug、又想不出要寫什麼主題,參考完大家的方向以後,我發現這類型的文章很少、又很實用,才下定決心透過鐵人賽推廣 Google AI & ML Products。 在這次的挑戰裡,給了自己三個目標: 更熟悉docker 開始玩Golang 入門大部分的Google AI & ML Products 但也因為Google AI & ML Products太多了,所以把它分了很多子系列進行,現在再來回顧一下這次的內容。 前面先來個提醒,如果過程中你們有Deploy model做Online predict的,如果測完一定要記得刪掉,不然你deploy的model就會一直被收費喔。