gpt4 book ai didi

opencv - 代表颜色 : scalar to float and vice versa

转载 作者:行者123 更新时间:2023-12-02 17:15:43 28 4
gpt4 key购买 nike

我正在使用 opencv2 c++ 接口(interface)。

我想了解如何将颜色从标量转换为浮点数。我有一个这样的矩阵:

d = Mat(src.rows, src.cols, CV_32F);

我想用带有 RGB 255 值的标量表示的颜色填充其中的一部分:
for(int i=0; i<src.cols*src.rows; i++)
if (some_condition)
// fill it with red
d.at<float>(i/src.cols, i%src.cols) =? Scalar(255,0,0);

最佳答案

用于转换 float 的某些元素cv::Mat 检查 cv::Mat 类的这个方法

   // sets some of the matrix elements to s, according to the mask
Mat& setTo(const Scalar& s, const Mat& mask=Mat());

http://opencv.willowgarage.com/documentation/cpp/basic_structures.html

您应该定义一个掩码来定义矩阵的哪些部分满足您的条件 if statement .

关于opencv - 代表颜色 : scalar to float and vice versa,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10041625/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com