Qt 跨线程连接信号槽出现connect成功,不进入槽函数的问题解决

当图片比较大的时候,获取图像中像素信息的计算耗时可能会增加一点,Debug模式偶尔会从1ms->10ms不等,分辨率是1000万像素的图像,所以做了一个线程去处理。

问题:connect(&m_pixelwork,SIGNAL(PixelInfo(QImage::Format,QColor,int,int,int,int),

this,SLOT(ShowPixel(QImage::Format,QColor,int,int,int,int)));

m_pixelwork是工作类,线程通过moveToThread来运行,连接成功但是不进入槽函数。。。

从网上大神的博客了解到需要用到QueuedConnection

http://www.cnblogs.com/findumars/p/5176419.html

因此默认的方式Auto没有设置成Queue模式,所以改成如下:

qRegisterMetaType<QImage::Format>("QImage::Format");
r = connect(&m_pixelwork, SIGNAL(PixelInfo(QImage::Format, QColor, int, int, int, int)),
        this, SLOT(ShowPixel(QImage::Format, QColor, int, int, int, int)),Qt::ConnectionType::QueuedConnection);

改成Queued之后需要对QImage::Format进行注册

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值