KJMAN678
import するライブラリ名のタイポ修正
55af786
raw
history blame
683 Bytes
import streamlit as st
from bul_image_maker import bul_image_maker
def main():
st.title("ぼやかしの入った白黒画像メーカー")
height = st.slider(
label="タテのサイズ",
min_value=200,
max_value=1000,
value=500,
)
width = st.slider(
label="ヨコのサイズ",
min_value=200,
max_value=1000,
value=500,
)
times = st.slider(
label="試行回数",
min_value=5,
max_value=100,
value=30,
)
if st.button("処理の実行"):
x = bul_image_maker(height, width, times)
st.image(x)
if __name__ == "__main__":
main()