A little about OpenCV’s UMat class
Everyone that uses OpenCV is familiar with cv::Mat. Although some developers never heard about UMat class and its advantages.
Computer Vision/Machine Learning Specialist
Everyone that uses OpenCV is familiar with cv::Mat. Although some developers never heard about UMat class and its advantages.
Last week I had an exciting opportunity: implement a camera prototype using the Raspberry Pi.
Imagine a machine that can transform what enters it into a point in a higher-dimensional space. (more…)
Convolution is a well-known mathematical operation largely used in image processing for filtering operations. It is also an expensive task for the CPU since it’s an iterative process based on sums and multiplications. So, bigger images, longer processing times.