
QT
wendox
这个作者很懒,什么都没留下…
展开
-
QT常用的方法
介绍qt中几个常用的方法在一块区域内显示给定图像关于Qt的4个图像类QImage/QPixmap/QBitmap/QPicture的介绍void MainWindow::showImage(const Mat &src) { Mat img; cvtColor(src, img, CV_BGR2RGB); qimg = new QImage((unsigned char*)i原创 2015-12-16 23:08:31 · 980 阅读 · 0 评论 -
预编译器
Q_DECL_OVERRIDEThis macro can be used to declare an overriding virtual function. Use of this markup will allow the compiler to generate an error if the overriding virtual function does not in fact over原创 2016-01-06 10:13:20 · 334 阅读 · 0 评论 -
QT serial
遍历当前chuankou foreach (const QSerialPortInfo &info, QSerialPortInfo::availablePorts()) { qDebug() <<"Name : "<<info.portName().toStdString().data(); qDebug() <<"Descripti原创 2015-12-22 14:17:59 · 1303 阅读 · 0 评论 -
QT widget 方法
update()更新widget界面除非更新被禁止或者widget被隐藏。这个函数没有引起立即的repaint,然而他会规划一个paint时间等待处理,直到QT从主事件循环中返回时,会发生repaint。这样的调用会优化QT更快,避免调用repaint发生闪烁。原创 2015-12-22 18:59:42 · 910 阅读 · 0 评论 -
QT_thread
QWaitCondition文中讲解(翻译)了使用waitcondition的在QT docs中一个例子。 QWaitCondition 允许线程在某些情况发生时唤醒另外的线程。一个或多个线程可以阻塞等待一QWaitCondition ,用wakeOne()或wakeAll()设置一个条件。wakeOne()随机唤醒一个,wakeAll()唤醒所有。阅读qt docs会发现在QWaitCondit原创 2016-01-06 10:26:35 · 400 阅读 · 0 评论 -
玩转四旋翼无人机(DJI_QT_SDK)
obtain control DJI_Pro_Control_Management(1,NULL);该函数具体形式如下int DJI_Pro_Control_Management(unsigned char cmd,Command_Result_Notify user_notice_entrance) { unsigned char data = cmd & 0x1; DJI_Pro原创 2015-12-22 16:15:13 · 1383 阅读 · 1 评论