simmplecoder / blazing-gil

A collection of image processing and computer vision algorithms in C++17 using Boost.GIL and Blaze linear algebra library
12 stars 2 forks source link

Convert image_matrix from Matrix<T> to Matrix<Vector<T, ChannelCount>> #11

Closed simmplecoder closed 4 years ago

simmplecoder commented 4 years ago

At the moment, channels are disregarded completely. It is important to have uniform algorithms, thus a common denominator is chosen.

simmplecoder commented 4 years ago

It doesn't seem like interface unification is viable at the moment with interfaces of built-in types and StaticVector's diverging.