Open Computer Vision Library or just OpenCV, is a cross-platform computer vision library focused on real-time image processing for video files or webcams. You have…
Open Computer Vision Library or just OpenCV, is a cross-platform computer vision library focused on real-time image processing for video files or webcams. You have…
Here a simple OpenCV example of separation of a image into its hue, saturation and value channels. #include #include #include int main( int argc, char…
This is a very simple example of how to open two images and display them added. I got two pictures at project Commons from Wikimedia…
This is a simple example of how pass edge detection in a video using OpenCV. It uses the built-in OpenCV Canny edge detector algorithm. #include…
Here’s a simple video player that also performs facial detection thought the Open Computer Vision Library. Here’s a code developed using codes from nashruddin.com and…