Boost logo

Boost Users :

Subject: [Boost-users] [GIL] gray pixel iterator in generic algorithm
From: Curtis Gehman (curtis2006_at_[hidden])
Date: 2010-12-21 02:53:57


I'm trying to use GIL pixel iterators in a generic STL-style algorithm. I'm primarily using GIL for the generic 2D iterators. And in my context, I'm only interested in grayscale images.

The value_type associated with GIL iterators is a pixel type, which typically is an object representing multiple channels (e.g., colors). It makes sense that comparison operators (e.g., <) are not defined for general color pixel types.

For grayscale images, however, it makes sense that common arithmetic and comparison operators would be defined for the pixel type. This seems to be the case for the 8-bit grayscale GIL type (gray8_view_t). The iterator's value_type appears to be seamlessly evaluated to an unsigned char, exactly as I would expect.

When I try to use a float image view type, however, the same magic doesn't seem to happen. Below is some toy code that demonstrates the issue. When the last line is knocked out with "//", the code compiles. But with that second template instantiation (for floats) there, the compiler (gcc 4.2 and VC++2010) exits when it does not find an operator< for the iterator's value_type when instantiating for gray32fc_view_t.

I suppose that I can roll my own less<iterator_traits<SrcView::x_iterator>::value_type> functors. But I just started using GIL, and I'm hoping that there is a simpler solution.

Any ideas?

#include <algorithm>
#include <iterator>
#include <vector>

#include <boost/gil/gil_all.hpp>

namespace g = boost::gil;

using std::vector;
using std::iterator_traits;

template <typename SrcView> inline
vector<typename iterator_traits<typename SrcView::x_iterator>::value_type>
row_min(const SrcView& src)
{
        typedef typename iterator_traits<typename SrcView::x_iterator>::value_type value_t;
        vector<value_t> result;
        for (int y = 0; y < src.height(); ++y)
        {
                result.push_back(*std::min_element(src.row_begin(y), src.row_end(y)));
        }
        return result;
}

// Explicit template instantiation

// Works for gray8c_view_t.
template vector<iterator_traits<g::gray8c_view_t::x_iterator>::value_type> row_min(const g::gray8c_view_t& src);

// Compile error for gray32fc_view_t.
// No operator< for iterator_traits<g::gray32fc_view_t::x_iterator>::value_type.
template vector<iterator_traits<g::gray32fc_view_t::x_iterator>::value_type> row_min(const g::gray32fc_view_t& src);



Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net