我是靠谱客的博主 笨笨枫叶,最近开发中收集的这篇文章主要介绍一个比较好的opencv的博客,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

地址:http://opencv-code.com/tutorials/


无意间发现的一个挺有意思的OpenCV博客

perspective-quadrilateral-feat-img

When trying to read the credit card information with OCR engine, I came to realize that the object in the image always has perspective distortion. Therefore we must perform perspective correction to the object before trying to read the text. And it turns out that this is a difficult task, although at first it looks simple.Read more…

Tags: C++ detection geometric transform hough transform

webcam-intruder-feat-img

There is an interesting post about writing webcam intruder alarm on the Wolfram blog. Basically it uses simple motion detection for detecting the intruder. The simple algorithm is very useful for learning the basics of motion detection so I ported the Mathematica code into C++. Read more…

Tags: C++ detection motion

watershed-disttrans-feat-img

This tutorial will show you how to count and segment connecting or overlapping objects. We will be using the Watershed algorithm and the distance transform functions. Read more…

Tags: C++ distance transform watershed

When it comes to recognize text in image, the Tesseract OCR comes to mind. It is free and a good OCR machine. In this post I will show you how to use cv::Mat array with Tesseract API without producing temporary files for faster processing. Read more…

Tags: C++ ocr tesseract

solving-maze-feat-img

There is an interesting submission on File Exchange to solve mazes with simple morphological transformation. The Matlab script provides a good opportunity to learn some image processing basics so I decided to rewrite the script using OpenCV. Read more…

Tags: C++ morphology transform

eye-detection-tracking-feat-img

This is a fast eye detection and tracking program that takes the input from webcam. The program using OpenCV’s face detector for detecting the user’s face and eye. For tracking the user’s eye, it is using thetemplate matching method. Read more…

Tags: C++ detection tracking

inpaint-feat-img-2

Inpainting is the process of reconstructing damaged parts of image. Starting from version 2.4, OpenCV supports the Inpainting algorithm. The function signature is given below. Read more…

Tags: C++ inpainting

detect-simple-shapes-feat-img

When I came to the tutorial on how to detect simple shapes with AForge.NET I wonder how we can do it in OpenCV. Luckily in the OpenCV samples directory there is a program named squares.cpp which is a rectangle detector program. Let’s see how we can extend it to detect other shapes as well. Read more…

Tags: C++ detection

In this tutorial I will show you a simple algorithm for detecting pupil from an eye image using its characteristics: round black circle located in the center of the eye. The idea came from CodeProject which I improve the algorithm a little bit. Read more…

Tags: C++ detection



最后

以上就是笨笨枫叶为你收集整理的一个比较好的opencv的博客的全部内容,希望文章能够帮你解决一个比较好的opencv的博客所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部