英文:
browsing through big amount of images with slider approach
问题
我有1000张图片,每张图片表示某个时间步的状态。我想创建一个应用程序,允许我们通过滑动条浏览时间步,最终还能够看到有关图像中正在发生的事情的一些信息(比如区域大小等)。我已经在Python中创建了一个生成和分析图像的算法,我想我会尝试在Java中创建用户界面。对于如何处理这个问题,您有什么建议吗?(我在Java方面并不是很熟练,但我了解一些基础知识)。我在下面附上了我想要的大致效果图:
英文:
I have 1000 images, each of them signifies a state at the time step. I would like to create an application that allows us to use a slider move through time steps, eventually being able also to see some information about what is going on in the image (like region size ect). I created the algorithm which creates generates and analyzes images in Python and I guess I will try to create UI in Java. Any recommendations on how to approach it? ( I am not very proficient in Java but I understand the basics). I attached the general view of what I want it to be below:
答案1
得分: 1
尝试使用Tkinter,它是Python中一个非常易于使用的UI创建工具。
https://docs.python.org/3/library/tkinter.html
英文:
Try Tkinter, it is a very easy to use UI creator in python.
https://docs.python.org/3/library/tkinter.html
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论