うみゅ commited on
Commit
2a425cf
·
unverified ·
2 Parent(s): b354933 f65b63f

Merge pull request #5 from umyuu/feature/0.0.5

Browse files
.github/ISSUE_TEMPLATE/10-problem.yaml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "何か問題がありましたか?"
2
+ description: "何か問題が見つかった場合は、こちらで報告してください。"
3
+ labels: "bug"
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ # 問題を見つけていただき、ありがとうございます!
9
+ ## 上記の「Title」と質問内容を記入したら、「Submit new Issue」ボタンを押して送信してください。よろしくお願いします!
10
+ - type: textarea
11
+ id: problem
12
+ attributes:
13
+ label: "問1, お困りの問題の内容は何ですか?"
14
+ description: "例: 顕著性マップの表示がされない。分かる範囲で大丈夫です。"
15
+ value: "### どのような問題が発生しましたか?\n\n<!-- 例: 顕著性マップの表示がされない。 -->\n\n### どのような操作をしましたか?\n\n1. xxx\n1. xxx\n1. xxx"
16
+ validations:
17
+ required: true
18
+ - type: dropdown
19
+ id: device
20
+ attributes:
21
+ label: "問2, どの端末で確認しましたか?"
22
+ options:
23
+ - Windows
24
+ - Mac
25
+ - Linux
26
+ - iPhone
27
+ - iPad
28
+ - Android
29
+ - その他
30
+ validations:
31
+ required: true
32
+ - type: input
33
+ id: version
34
+ attributes:
35
+ label: "【任意】バージョン情報を教えていただけますか?"
36
+ description: "最下部のApp欄をコピーし貼り付けてください。"
37
+ validations:
38
+ required: false
39
+ - type: textarea
40
+ id: addition
41
+ attributes:
42
+ label: "問3, 補足情報"
43
+ description: "補足で伝えたい事があれば記入して下さい"
44
+ value: "なし"
45
+ validations:
46
+ required: false
src/myapp.py CHANGED
@@ -20,7 +20,7 @@ log.info("#アプリ起動中")
20
  watch = Stopwatch.start_new()
21
 
22
 
23
- def jettab_selected(image: np.ndarray):
24
  """
25
  JETタブを選択時
26
  """
@@ -34,7 +34,7 @@ def jettab_selected(image: np.ndarray):
34
  return retval
35
 
36
 
37
- def hottab_selected(image: np.ndarray):
38
  """
39
  HOTタブを選択時
40
  """
@@ -106,7 +106,6 @@ def run_app(args: argparse.Namespace) -> None:
106
  gr.Markdown("""
107
  1. inputタブで画像を選択します。
108
  2. Submitボタンを押します。
109
- ※画像は外部送信していません。ローカルで処理が完結します。
110
  3. 結果は、JETタブとHOTタブに表示します。
111
  """)
112
  algorithm_type = gr.Radio(
@@ -120,15 +119,16 @@ def run_app(args: argparse.Namespace) -> None:
120
 
121
  with gr.Row():
122
  with gr.Tab("input", id="input"):
123
-
124
  image_input = gr.Image(sources=["upload", "clipboard"],
125
  interactive=True)
126
  with gr.Tab("overlay(JET)"):
127
  image_overlay_jet = gr.Image(interactive=False)
128
- # tab_jet.select(jetTab_Selected, inputs=[image_input], outputs=image_overlay_jet)
 
 
129
  with gr.Tab("overlay(HOT)"):
130
  image_overlay_hot = gr.Image(interactive=False)
131
- # tab_hot.select(hotTab_Selected,
132
  # inputs=[image_input],
133
  # outputs=image_overlay_hot, api_name=False)
134
  #
 
20
  watch = Stopwatch.start_new()
21
 
22
 
23
+ def jet_tab_selected(image: np.ndarray):
24
  """
25
  JETタブを選択時
26
  """
 
34
  return retval
35
 
36
 
37
+ def hot_tab_selected(image: np.ndarray):
38
  """
39
  HOTタブを選択時
40
  """
 
106
  gr.Markdown("""
107
  1. inputタブで画像を選択します。
108
  2. Submitボタンを押します。
 
109
  3. 結果は、JETタブとHOTタブに表示します。
110
  """)
111
  algorithm_type = gr.Radio(
 
119
 
120
  with gr.Row():
121
  with gr.Tab("input", id="input"):
 
122
  image_input = gr.Image(sources=["upload", "clipboard"],
123
  interactive=True)
124
  with gr.Tab("overlay(JET)"):
125
  image_overlay_jet = gr.Image(interactive=False)
126
+ # tab_jet.select(jet_tab_selected,
127
+ # inputs=[image_input],
128
+ # outputs=image_overlay_jet)
129
  with gr.Tab("overlay(HOT)"):
130
  image_overlay_hot = gr.Image(interactive=False)
131
+ # tab_hot.select(hot_tab_selected,
132
  # inputs=[image_input],
133
  # outputs=image_overlay_hot, api_name=False)
134
  #
src/utils.py CHANGED
@@ -7,7 +7,7 @@ def get_package_version() -> str:
7
  """
8
  バージョン情報
9
  """
10
- return '0.0.4'
11
 
12
 
13
  class Stopwatch:
 
7
  """
8
  バージョン情報
9
  """
10
+ return '0.0.5'
11
 
12
 
13
  class Stopwatch: