Get pointer to Magick++ image object
| 868 | |
| 869 | // Get pointer to Magick++ image object |
| 870 | std::shared_ptr<QImage> Frame::GetImage() |
| 871 | { |
| 872 | // Check for blank image |
| 873 | if (!image) |
| 874 | // Fill with black |
| 875 | AddColor(width, height, color); |
| 876 | |
| 877 | return image; |
| 878 | } |
| 879 | |
| 880 | #ifdef USE_OPENCV |
| 881 |
no outgoing calls
no test coverage detected