Posts by Dexter • 28 points
4 posts
-
0
votes0
answers66
viewsQ: Problems with multiple windows in Pyqt5
Hi, I’m having trouble with multiple windows on Pyqt5. I created a graphical interface using Qt Designer, which consists of two Frames, in order to generate two windows for the user. The initial…
-
-1
votes1
answer531
viewsA: '<' not supported between instances of 'str' and 'int' >>> Not an input problem!
I’m new in the area too, but I think this loop for which you used is for string list. For number list I would use: n = len(yhat_tr) m = len(d_tr) for i in range(n): for a in range(m): if…
-
1
votes1
answer100
viewsQ: "Skeletonize" figures
I wrote code to "skeletonize" figures, that is, to reduce their thicknesses to just one pixel. I had already written the code in Python that worked correctly. However, the same code rewritten to…
-
-1
votes1
answer82
viewsQ: Python versus C++
Hi, I’m a novice programmer. I wrote a program for processing images in Python that worked perfectly, although its execution is very slow, due to the large number of operations involved. I decided…