All Projects → makelove → Opencv Python Tutorial

makelove / Opencv Python Tutorial

Licence: mit
OpenCV问答群不再维护。有问题,自己去搜索。Google能找到大部分答案。

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Opencv Python Tutorial

Air drums
This project enables you to play virtual drums simply by using concepts of image processing and computer vision.
Stars: ✭ 31 (-98.81%)
Mutual labels:  tutorial, opencv
Kinectwithopencvforunityexample
Kinect with OpenCV for Unity Example
Stars: ✭ 20 (-99.23%)
Mutual labels:  kinect, opencv
Caffe2 Ios
Caffe2 on iOS Real-time Demo. Test with Your Own Model and Photos.
Stars: ✭ 221 (-91.51%)
Mutual labels:  tutorial, opencv
Aruco Markers
Working examples/tutorial for detection and pose estimation of ArUco markers with C++
Stars: ✭ 112 (-95.7%)
Mutual labels:  tutorial, opencv
Build Deep Learning Env With Tensorflow Python Opencv
Tutorial on how to build your own research envirorment for Deep Learning with OpenCV, Python, Tensorfow
Stars: ✭ 66 (-97.46%)
Mutual labels:  tutorial, opencv
Opencv Tutorials
Tutorials for learning OpenCV in Python from Scratch
Stars: ✭ 36 (-98.62%)
Mutual labels:  tutorial, opencv
Opencv Python Series
An OpenCV & Python Tutorial Series and Reference.
Stars: ✭ 262 (-89.93%)
Mutual labels:  tutorial, opencv
Face Mask Detection
Face masks are crucial in minimizing the propagation of Covid-19, and are highly recommended or even obligatory in many situations. In this project, we develop a pipeline to detect unmasked faces in images. This can, for example, be used to alert people that do not wear a mask when entering a building.
Stars: ✭ 37 (-98.58%)
Mutual labels:  tutorial, opencv
Kinectazuredkprogramming
Samples about Kinect Azure DK programming
Stars: ✭ 92 (-96.47%)
Mutual labels:  kinect, opencv
Invisibility cloak
This is a fun application of image processing which enables you to experience the magic of an invisibility cloak. Let's make our childhood fantasy of using an invisibility cloak come true.
Stars: ✭ 176 (-93.24%)
Mutual labels:  tutorial, opencv
Web Push Book
Web Push Book
Stars: ✭ 199 (-92.35%)
Mutual labels:  tutorial
Learning Cmake
learning cmake
Stars: ✭ 2,524 (-3.03%)
Mutual labels:  tutorial
Human Pose Estimation Opencv
Perform Human Pose Estimation in OpenCV Using OpenPose MobileNet
Stars: ✭ 201 (-92.28%)
Mutual labels:  opencv
Road lane line detection
Find lane lines on the road using Python and OpenCV, applying Canny edge detectors and Hough line transforms
Stars: ✭ 202 (-92.24%)
Mutual labels:  opencv
Marvel
Marvel - Face Recognition With Android & OpenCV
Stars: ✭ 199 (-92.35%)
Mutual labels:  opencv
Nodejs Auth
Implementation of node.js authentication with social login ✌️, user impersonation 💅, and no passport.js required 💁
Stars: ✭ 201 (-92.28%)
Mutual labels:  tutorial
End To End For Chinese Plate Recognition
基于u-net,cv2以及cnn的中文车牌定位,矫正和端到端识别软件,其中unet和cv2用于车牌定位和矫正,cnn进行车牌识别,unet和cnn都是基于tensorflow的keras实现
Stars: ✭ 197 (-92.43%)
Mutual labels:  opencv
How To Write An Llvm Register Allocator
This repository contains a tutorial for a quick start in how to write a register allocator using LLVM
Stars: ✭ 197 (-92.43%)
Mutual labels:  tutorial
Acurustrack
A multi-object tracking component. Works in the conditions where identification and classical object trackers don't (e.g. shaky/unstable camera footage, occlusions, motion blur, covered faces, etc.). Works on any object despite their nature.
Stars: ✭ 196 (-92.47%)
Mutual labels:  opencv
Pine
🌲 Aimbot powered by real-time object detection with neural networks, GPU accelerated with Nvidia. Optimized for use with CS:GO.
Stars: ✭ 202 (-92.24%)
Mutual labels:  opencv

OpenCV-Python-Tutorial

OpenCV-Python-Tutorial-中文版.pdf

  • 这个repo是这本书PDF的所有源代码,几乎都被测试过,能正常运行。程序使用的图片和视频,都在data文件内。

平时会添加一些有趣的代码,实现某种功能。

运行:官方samples/demo.py 会有很多有趣的例子,介绍你去了解OpenCV的功能。

python 2.7 分支被废弃了,不再更新

# 添加了 Python3.6分支, 该分支是使用 opencv3.2+Python3.6

把原来的master分支改为python2.7分支,python3.6分支改为master分支

建议使用PyCharm来编写/调试Python代码

开发环境

  • macOS Mojave 10.14
  • Python 3.6.1
  • OpenCV 3.2.0
  • PyCharm 2018.3

VMware 虚拟机

如果安装OpenCV有问题,可以使用VMware 虚拟机安装Ubuntu系统,本人可以帮你们安装一个,再共享到百度云

树莓派3b

本人有一块【树莓派3b】开发板,也安装了OpenCV3,很好用,建议你们也买一块来玩一玩。

摄像头

教程资源

新闻News https://opencv.org/news.html

怎样翻墙?使用Google搜索引擎,观看YouTube视频教程

  • shadowsocks
    • 方便,随地随时翻墙
    • 手机使用4G信号上网,也可以。
    • 强烈推荐!
    • 购物国外服务器,搭建也很容易
      • 参考 https://isweic.com/build-shadowsocks-python-server/
      • pip install shadowsocks
      • 运行
        • shell窗口运行
          • ssserver -p 8388 -k password -m aes-256-cfb
          • 8388是端口号,password是密码,aes-256-cfb是加密类型,通过Ctrl+C结束
        • 后台运行
          • ssserver -p 8388 -k password -m aes-256-cfb --user nobody -d start
          • 结束后台运行
            • ssserver -d stop
        • 检查运行日志
          • less /var/log/shadowsocks.log
  • Lantern蓝灯
    • 本人不使用蓝灯了。
    1. 可以免费使用,但用完800m流量后会限速,还能正常使用,就是有点慢
    2. 专业版不贵,2年336元,每天0.46元。Lantern蓝灯专业版购买流程
    3. 邀请好友来获得更多的专业版使用时间。我的邀请码:GW2362

更新

捐赠打赏

  • OpenCV问答群1,QQ群号:187436093

  • 微信

    • wechat_donate
  • 支付宝

    • alipay_donate
  • 福利

    • 免费国内服务器,但需要交押金,随时全额原路退还
      • 有需要的朋友请加入QQ群,发【手机号】给群主
      • free_server
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].