AD-Vega / qarv

A Qt-based GUI and library interface for ethernet cameras using the Aravis library.
GNU General Public License v3.0
20 stars 14 forks source link

Performance: allow non-contiguous images #17

Open exzombie opened 4 years ago

exzombie commented 4 years ago

For simplicity, QArv always used contiguous cv::Mat. This reduces performance of swscale decoder. Consider lifting this limitation. Most of the code should not really depend on this IIRC, but this needs to be checked and tested.

exzombie commented 4 years ago

I'm also wondering whether going to cv::UMat would make sense …