# opencv_tutorials **Repository Path**: chiyuII/opencv_tutorials ## Basic Information - **Project Name**: opencv_tutorials - **Description**: Opencv4.0 with python (English&中文), and will keep the update ! 👊 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-03-23 - **Last Updated**: 2022-03-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # OpenCV 4.0 Tutorial [](https://opencv.org/) [](https://docs.opencv.org/4.0.0/d9/df8/tutorial_root.html) ✒️ [中文版本](./README_CN.md) ## Introduction This repository contains source code of OpenCV Tutorial application, the environment is python3.0 and opencv4.0. ## Sample - **Image load** ```python import cv2 src = cv2.imread("test.png") cv2.namedWindow("input", cv2.WINDOW_AUTOSIZE) cv2.imshow("input", src) cv2.waitKey(0) cv2.destroyAllWindows() ```

