我想使用按钮在我的流线型 Web 应用程序中显示图像。
因此,每当用户单击按钮时,图像都必须显示在流光网络应用程序上。
下面给出的代码:
feature_choice2 = st.sidebar.multiselect("Plot Size", task2)
if st.button('Find Blueprint'):
if feature_choice2 == '3-marla':
imagee = cv2.imread('Floor_plans/3-marla.png')
cv2.imshow('Image', imagee)
st.image(imagee, caption='3 marla plot')