打印cv :: Mat opencv

时间:2013-04-27 07:01:29

标签: opencv image-processing

我正在尝试打印包含我的图像的cv :: Mat。但是每当我使用cout打印Mat时,都会在我的文本文件中打印一个2D数组。我想只在一行中打印一个像素。如何从cv :: Mat打印直线像素。

1 个答案:

答案 0 :(得分:0)

通用的for_each循环,您可以使用它来打印数据

/**
 *@brief implement details of for_each_channel, user should not use this function
 */
template<typename T, typename UnaryFunc>
UnaryFunc for_each_channel_impl(cv::Mat &input, int channel, UnaryFunc func)
{
    int const rows = input.rows;
    int const cols = input.cols;
    int const channels = input.channels();
    for(int row = 0; row != rows; ++row){
        auto *input_ptr = input.ptr<T>(row) + channel;
        for(int col = 0; col != cols; ++col){
            func(*input_ptr);
            input_ptr += channels;
        }
    }

    return func;
}

一样使用它
for_each_channel_impl<uchar>(input, 0, [](uchar a){ std::cout<<(size_t)a<<", "; });

你可以对连续频道做一些优化,然后它可能看起来像

/**
 *@brief apply stl like for_each algorithm on a channel
 *
 * @param
 *  T : the type of the channel(ex, uchar, float, double and so on)
 * @param
 *  channel : the channel need to apply for_each algorithm
 * @param
 *  func : Unary function that accepts an element in the range as argument
 *
 *@return :
 *  return func
 */
template<typename T, typename UnaryFunc>
inline UnaryFunc for_each_channel(cv::Mat &input, int channel, UnaryFunc func)
{
    if(input.channels() == 1 && input.isContinuous()){
        return for_each_continuous_channels<T>(input, func);
    }else{
        return for_each_channel_impl<T>(input, channel, func);
    }
}

这种通用循环我很多次,我希望你觉得它有用。如果有的话 任何错误,或者你有更好的想法,请告诉我。

我也想为opencl设计一些通用算法,遗憾的是它不支持 模板,我希望有一天CUDA会成为开放标准,或者opencl将支持模板。

只要通道类型基于字节,非字节,这适用于任意数量的通道 频道可能无效。

相关问题