Skip to content

kaedeek/HighGo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

High Go

このライブラリは画像を、ESPCN_x4.pb で高画質にするライブラリです。

English

Usage

package main

import (
    "fmt"
    "os/exec"
    "github.com/kaedeek/HighGo"
)

func main() {
    // モデルファイルのパス
    modelPath := "model/ESPCN_x4.pb"
    inputImage := "input.jpg"
    outputImage := "output.jpg"

    // HighGoライブラリを使用して超解像処理を実行
    err := HighGo.SuperResolve(inputImage, modelPath, outputImage)
    if err != nil {
        fmt.Println("Error in super resolution:", err)
        return
    }

    fmt.Println("High-resolution image saved as", outputImage)
}

Authors

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published