Posts by Bruno Almeida • 59 points
7 posts
-
0
votes1
answer1902
viewsQ: Progress Bar - Tkinter
While processing takes place, the screen has to display a progress bar pro user. What is the logic behind this (Python, Tkinter)? How to make the progress bar appear on the screen while processing…
-
0
votes1
answer1721
viewsQ: Screen Transition - Tkinter
Let’s say there is a screen with three buttons (Tkinter), each calling another screen when clicked. How to switch between these screens without getting that aspect of destroyed screen and a new…
-
0
votes0
answers29
viewsQ: Python: Get folder URL
How to get the path/location of the latest image stored in an x folder using Python?
-
0
votes2
answers534
viewsQ: Python - Select clickable
I have to display on the screen (Tkinter) a list pulled from the database (mysql) containing information about a person (name and id) and make it possible that any item on that list can be clickable…
pythonasked Bruno Almeida 59 -
0
votes1
answer68
viewsQ: Python - Function with incorrect return
The code below is a simplistic example, but it represents exactly the error that is giving in my official code. def MontarURL(self): URL = "C:\\Users\\tttt\\Desktop\\Imagens\\2.png" return (URL) A =…
python-3.xasked Bruno Almeida 59 -
3
votes1
answer1434
viewsQ: How to compare two shades of color and give the percentage of similarity (Java)?
How to take images with the same dimensions (images of two equal squares) and analyze their tones to tell how similar they are (return a percentage of the similarity between the two tones of the…
-
0
votes1
answer912
viewsQ: Comparison of an image with others (analyze whether the chosen image is the same as the others already predefined or not)
I’m trying to make a code in Java that compares an input image with other n images already defined in the code. I developed, with (quite) help, a similar code, which compared two images only, the…