Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [qt]

Qt is a cross-platform application development framework widely used for the development of application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while having the power and speed of native applications. Qt is available with both commercial and open source licenses.

0 votes
0 answers
4 views

Figuring out the difference between cv::imread / cv::dnn::blobFromImage and QImage

I have the following image loading code (example: to feed YOLO recognition algorithm) which works: cv::Mat image = imread(image_path, cv::IMREAD_COLOR); cv::Mat blob = cv::dnn::blobFromImage( image, ...
Jean-Michaël Celerier's user avatar
-1 votes
0 answers
20 views

Why my python Maya code crashes the second time execute it

I'm trying to create a simple toolkit for my utilities for speeding up my workflow in Maya. The second time I execute my code it always crashes and I'm not able to find the cause of the error. From my ...
Guido González's user avatar
0 votes
0 answers
21 views

Giving application window active focus when opening a file

In the documentation for QWidget::activateWindow() function, the following is said: ... On Windows, if you are calling this when the application is not currently the active one then it will not make ...
comp1201's user avatar
  • 405
0 votes
0 answers
24 views

How to update slider simultaneously in pyqt5

I am making a music player and want to update the slider after every one second for this I am using threading module but whenever I run the file the application stops responding below is the code for ...
Zid's user avatar
  • 1
0 votes
0 answers
14 views

How to draw multiples mappolylines

I am trying to add several distinct lines on QML map embeded in widgets application. I plot markers on the MAP with a MapQuickItem from a JSON and in this JSON there are some lineString that I would ...
Laura Lyon's user avatar