| 103 | } |
| 104 | |
| 105 | cv::Mat Outline::QImageToBGRACvMat(std::shared_ptr<QImage>& qimage) { |
| 106 | cv::Mat cv_img(qimage->height(), qimage->width(), CV_8UC4, (uchar*)qimage->constBits(), qimage->bytesPerLine()); |
| 107 | return cv_img; |
| 108 | } |
| 109 | |
| 110 | std::shared_ptr<QImage> Outline::BGRACvMatToQImage(cv::Mat img) { |
| 111 | cv::Mat final_img; |
nothing calls this directly
no outgoing calls
no test coverage detected