Detecting the Dominant points on an image using OpenCV
In this example the edges are found using cvFindContours. The resulting contours are then processed to find the dominant points along the contour.
In this example the edges are found using cvFindContours. The resulting contours are then processed to find the dominant points along the contour.
Here is the Hello World example code for OpenCV. This simple example creates a image called output, then the text "Hello World" is added to the image.
To separate a multi channel image into the three component RGB channels, we can use the cvSplit function. The example below opens a RGB image and then using the cvSplit function creates three output images.