diff --git "a/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.cpp" "b/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.cpp" deleted file mode 100644 index 676c30c0af3daf1d2b979e1536587a7f0091f982..0000000000000000000000000000000000000000 --- "a/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.cpp" +++ /dev/null @@ -1,10 +0,0 @@ -#include -using namespace cv; - -int main() { - Mat img = imread("lena.png"); - imshow("lena", img); - waitKey(0); - destroyAllWindows(); - return 0; -} \ No newline at end of file diff --git "a/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.md" "b/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.md" index 3162c52ffced521141f8e5b67d0110f9c8ea9c4e..631ab7092539bf097db1058fd221321ff0299fb5 100644 --- "a/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.md" +++ "b/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.md" @@ -1,80 +1,67 @@ # Hello World 以下 `Hello World` 程序中,能够正确执行下述操作的是? + 1. 读取目录下`lena`图片 2. 显示`lena`图像窗口 3. 等待用户输入任意按键后关闭窗口 +4. 销毁所有窗口 ## 答案 -```cpp -#include -using namespace cv; - -int main() { - Mat img = imread("lena.png"); - imshow("lena", img); - waitKey(0); - destroyAllWindows(); - return 0; -} +```python +import cv2 + +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.imshow("lena", img) + cv2.waitKey(0) + cv2.destroyAllWindows() ``` ## 选项 ### 没有显示图像 -```cpp -#include -using namespace cv; +```python +import cv2 -int main() { - Mat img = imread("lena.png"); - waitKey(0); - destroyAllWindows(); - return 0; -} +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.waitKey(0) + cv2.destroyAllWindows() ``` ### imshow参数顺序错误 -```cpp -#include -using namespace cv; - -int main() { - Mat img = imread("lena.png"); - imshow(img, "lena"); - waitKey(0); - destroyAllWindows(); - return 0; -} +```python +import cv2 + +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.imshow(img, "lena") + cv2.waitKey(0) + cv2.destroyAllWindows() ``` ### 忘记销毁窗口 -```cpp -#include -using namespace cv; +```python +import cv2 -int main() { - Mat img = imread("lena.png"); - imshow("lena", img); - waitKey(0); - return 0; -} +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.imshow("lena", img) + cv2.waitKey(0) ``` ### 没有等待用户输入按键 -```cpp -#include -using namespace cv; - -int main() { - Mat img = imread("lena.png"); - imshow("lena", img); - destroyAllWindows(); - return 0; -} -``` \ No newline at end of file +```python +import cv2 + +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.imshow("lena", img) + cv2.destroyAllWindows() +``` diff --git "a/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.py" "b/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.py" new file mode 100644 index 0000000000000000000000000000000000000000..d0fece3b3e76f39b81a9e53df36bbc61edf096b9 --- /dev/null +++ "b/data/1.OpenCV\345\210\235\351\230\266/1.OpenCV\345\237\272\347\241\200/1.OpenCV\347\256\200\344\273\213/helloworld.py" @@ -0,0 +1,9 @@ + +# -*- coding: utf-8 -*- +import cv2 + +if __name__ == '__main__': + img = cv2.imread("lena.png") + cv2.imshow("lena", img) + cv2.waitKey(0) + cv2.destroyAllWindows()