Skip to content

Instantly share code, notes, and snippets.

@nkint
Last active March 6, 2017 08:42
Show Gist options
  • Save nkint/7646466 to your computer and use it in GitHub Desktop.
Save nkint/7646466 to your computer and use it in GitHub Desktop.
cv::Mat to QPixmap
cv::Mat n = ...
QPixmap p = QPixmap::fromImage(QImage((unsigned char*) n.data,
n.cols,
n.rows,
QImage::Format_RGB888));
p = p.scaledToWidth(500);
label->setPixmap( p );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment