1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
Image Processing in OpenCV {#tutorial_py_table_of_contents_imgproc}
==========================
- @subpage tutorial_py_colorspaces
Learn to change images between different color spaces.
Plus learn to track a colored object in a video.
- @subpage tutorial_py_geometric_transformations
Learn to apply different geometric transformations to images like rotation, translation etc.
- @subpage tutorial_py_thresholding
Learn
to convert images to binary images using global thresholding, Adaptive thresholding, Otsu's
binarization etc
- @subpage tutorial_py_filtering
Learn
to blur the images, filter the images with custom kernels etc.
- @subpage tutorial_py_morphological_ops
Learn about morphological transformations like Erosion, Dilation, Opening, Closing etc
- @subpage tutorial_py_gradients
Learn
to find image gradients, edges etc.
- @subpage tutorial_py_canny
Learn
to find edges with Canny Edge Detection
- @subpage tutorial_py_pyramids
Learn about image pyramids and how to use them for image blending
- @subpage tutorial_py_table_of_contents_contours
All
about Contours in OpenCV
- @subpage tutorial_py_table_of_contents_histograms
All
about histograms in OpenCV
- @subpage tutorial_py_table_of_contents_transforms
Meet
different Image Transforms in OpenCV like Fourier Transform, Cosine Transform etc.
- @subpage tutorial_py_template_matching
Learn
to search for an object in an image using Template Matching
- @subpage tutorial_py_houghlines
Learn to detect lines in an image
- @subpage tutorial_py_houghcircles
Learn to detect circles in an image
- @subpage tutorial_py_watershed
Learn to segment images with watershed segmentation
- @subpage tutorial_py_grabcut
Learn to extract foreground with GrabCut algorithm
|