Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <swri_opencv_util/blend.h>
00031
00032 #include <opencv2/imgproc/imgproc.hpp>
00033
00034 namespace swri_opencv_util {
00035
00036 cv::Mat blend(
00037 const cv::Mat& src1,
00038 const cv::Mat& alpha1,
00039 const cv::Mat& src2,
00040 const cv::Mat& alpha2)
00041 {
00042 int out_type = src1.type();
00043 cv::Mat s1, s2, a1, a2;
00044 alpha1.convertTo(a1, CV_32F);
00045 alpha2.convertTo(a2, CV_32F);
00046 src1.convertTo(s1, CV_32F);
00047 src2.convertTo(s2, CV_32F);
00048 cv::Mat w1;
00049 cv::divide(a1, a1 + a2, w1);
00050 cv::Mat w2 = -w1 + 1.0;
00051
00052 cv::Mat blended = s1.mul(w1) + s2.mul(w2);
00053 cv::Mat blended_out;
00054 blended.convertTo(blended_out, out_type);
00055 return blended_out;
00056 }
00057
00058 cv::Mat blend(
00059 const cv::Mat& overlay,
00060 const cv::Mat& base,
00061 double alpha)
00062 {
00063 alpha = std::min(1.0, alpha);
00064 alpha = std::max(0.0, alpha);
00065 cv::Mat blended;
00066 cv::addWeighted(overlay, alpha, base, 1.0 - alpha, 0, blended);
00067 return blended;
00068 }
00069
00070 cv::Mat overlayColor(
00071 const cv::Mat& src,
00072 const cv::Mat& mask,
00073 const cv::Scalar& color,
00074 double alpha)
00075 {
00076 alpha = std::min(1.0, alpha);
00077 alpha = std::max(0.0, alpha);
00078
00079 cv::Size size = src.size();
00080 cv::Mat color_image;
00081
00082 if (src.type() == CV_8U)
00083 {
00084 cv::cvtColor(src, color_image, cv::COLOR_GRAY2BGR);
00085 }
00086 else if (src.type() == CV_32F || src.type() == CV_16U)
00087 {
00088 cv::Mat tmp;
00089 src.convertTo(tmp, CV_8U);
00090 cv::cvtColor(tmp, color_image, cv::COLOR_GRAY2BGR);
00091 }
00092 else if (src.type() == CV_32FC3 || src.type() == CV_16UC3)
00093 {
00094 src.convertTo(color_image, CV_8UC3);
00095 }
00096 else if (src.type() != CV_8UC3)
00097 {
00098 color_image = src;
00099 }
00100 else
00101 {
00102 return cv::Mat();
00103 }
00104
00105
00106 cv::Mat overlay(size, CV_8UC3);
00107 overlay.setTo(color);
00108
00109
00110 cv::Mat overlay_alpha = cv::Mat::zeros(size, CV_32F);
00111 overlay_alpha.setTo(alpha, mask);
00112
00113
00114 cv::Mat base_alpha(size, CV_32F);
00115 base_alpha = 1.0 - alpha;
00116
00117
00118 return swri_opencv_util::blend(overlay, overlay_alpha, color_image, base_alpha);
00119 }
00120
00121 }
00122