Gradioで作成したツール(画像色補正とか)
使っていないと、直ぐに凍結するから解凍しに行かないといかん。
- https://huggingface.co/juyam
tool
- ver1完成 https://huggingface.co/spaces/juyam/image_adjuster
- 今後の改良点は
- 2回かけた場合のボタンを作成する
- アップロードしたら自動的に処理を開始する
- 高速化できればする
- 必要であればカーブを滑らかにする
# troubleshooting
- problem
ModuleNotFoundError: No module named 'cv2'
- problem
AttributeError: module 'gradio' has no attribute 'inputs'
- problem
AttributeError: module 'gradio' has no attribute 'outputs'
- reference https://github.com/gradio-app/gradio/issues/6384#issuecomment-1810482077
- solution
gr.inputs.Image()
»gr.Image()
gr.inputs.Slider
»gr.Slider
- problem
TypeError: Slider.__init__() got an unexpected keyword argument 'default'
- investigation
- solution
- default=0 » value=0
- investigation