楼主: cmwei333
2206 5

【Apress】Practical OpenCV by Samarth Brahmbhatt (原版 PDF + EPUB) [推广有奖]

贵宾

已卖:205052份资源

泰斗

1%

还不是VIP/贵宾

-

TA的文库  其他...

【历史+心理学+社会自然科学】

【数学+统计+计算机编程】

【金融+经济+商学+国际政治】

威望
6
论坛币
3605773 个
通用积分
1121.2875
学术水平
4327 点
热心指数
4650 点
信用等级
3957 点
经验
363248 点
帖子
9795
精华
9
在线时间
2842 小时
注册时间
2015-2-9
最后登录
2017-1-29

初级热心勋章 中级热心勋章 高级热心勋章 初级信用勋章 中级信用勋章 初级学术勋章 特级热心勋章 中级学术勋章 高级信用勋章 高级学术勋章 特级学术勋章 特级信用勋章

楼主
cmwei333 发表于 2017-1-3 13:25:12 |AI写论文

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
Practical OpenCV

Authors: Samarth Brahmbhatt

cover.jpg

Practical OpenCV is a hands-on project book that shows you how to get the best results from OpenCV, the open-source computer vision library.

Practical OpenCV is a hands-on project book that shows you how to get the best results from OpenCV, the open-source computer vision library.

Computer vision is key to technologies like object recognition, shape detection, and depth estimation. OpenCV is an open-source library with over 2500 algorithms that you can use to do all of these, as well as track moving objects, extract 3D models, and overlay augmented reality. It's used by major companies like Google (in its autonomous car), Intel, and Sony; and it is the backbone of the Robot Operating System’s computer vision capability. In short, if you're working with computer vision at all, you need to know OpenCV.

With Practical OpenCV, you'll be able to:
Get OpenCV up and running on Windows or Linux.
Use OpenCV to control the camera board and run vision algorithms on Raspberry Pi.
Understand what goes on behind the scenes in computer vision applications like object detection, image stitching, filtering, stereo vision, and more.
Code complex computer vision projects for your class/hobby/robot/job, many of which can execute in real time on off-the-shelf processors.
Combine different modules that you develop to create your own interactive computer vision app.

目录截图:

pic.png

原版 PDF + EPUB:

本帖隐藏的内容

原版 PDF:
Practical OpenCV.pdf (12.08 MB, 需要: 10 个论坛币)

PDF 压缩包:
POCV (pdf).zip (10.86 MB, 需要: 10 个论坛币) 本附件包括:
  • Practical OpenCV.pdf


EPUB:
Practical OpenCV.epub (6.87 MB, 需要: 10 个论坛币)

EPUB 压缩包:
POCV (epub).zip (6.86 MB, 需要: 10 个论坛币) 本附件包括:
  • Practical OpenCV.epub


PDF + EPUB 压缩包:
POCV (pdf epub).zip (17.73 MB, 需要: 20 个论坛币) 本附件包括:
  • Practical OpenCV.pdf
  • Practical OpenCV.epub


  如果你喜欢我分享的书籍,请关注我:
https://bbs.pinggu.org/z_guanzhu.php?action=add&fuid=5975757

订阅我的文库:

【金融 + 经济 + 商学 + 国际政治】
https://bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3257

【数学 + 统计 + 计算机编程】
https://bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3258

【历史 + 心理学 + 社会自然科学】
https://bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3259



二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Practical practic Apress Press Mart computer library vision

本帖被以下文库推荐

bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3257
bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3258
bbs.pinggu.org/forum.php?mod=collection&action=view&ctid=3259

沙发
franky_sas(真实交易用户) 发表于 2017-1-3 13:26:30

2.0

  1. //Code to check the OpenCV installation
  2. //Author: Samarth Manoj Brahmbhatt, University of Pennsyalvania

  3. #include <iostream>
  4. #include <opencv2/highgui/highgui.hpp>
  5. using namespace std;
  6. using namespace cv;

  7. int main()
  8. {
  9.         Mat im = imread("image.jpg", CV_LOAD_IMAGE_COLOR);
  10.         namedWindow("Hello");
  11.         imshow("Hello", im);

  12.           cout << "Press 'q' or ESC to quit..." << endl;
  13.           int key;
  14.           while(1)
  15.         {
  16.                 if(char(waitKey(1)) == 'q') break;
  17.           }
  18.         destroyAllWindows();
  19.         cout << "Got here" << endl;
  20.         return 0;
  21. }
复制代码

藤椅
threesteps(真实交易用户) 发表于 2017-1-3 19:38:27

4.1

  1. // Program to change between color and grayscale representations of an image using a GUI trackbar
  2. // Author: Samarth Manoj Brahmbhatt, University of Pennsylvania

  3. #include <iostream>
  4. #include <opencv2/highgui/highgui.hpp>
  5. #include <opencv2/imgproc/imgproc.hpp>

  6. using namespace std;
  7. using namespace cv;

  8. // Global variables
  9. // Maximum slider value
  10. const int slider_max = 1;
  11. // Constantly updated slider value
  12. int slider;
  13. // Original image
  14. Mat img;

  15. // Callback function for trackbar event
  16. void on_trackbar(int pos, void *)
  17. {
  18.         // Holds the image processed acording to value of slider
  19.         Mat img_converted;
  20.         // Convert color-spaces according to value of slider
  21.         if(pos > 0) cvtColor(img, img_converted, CV_BGR2GRAY);
  22.         else img_converted = img;

  23.         imshow("Trackbar app", img_converted);
  24. }

  25. int main()
  26. {
  27.         img = imread("image.jpg");

  28.         namedWindow("Trackbar app");
  29.         imshow("Trackbar app", img);

  30.         // Initial value of slider
  31.         slider = 0;

  32.         // Create the trackbar
  33.         createTrackbar("RGB <-> Grayscale", "Trackbar app", &slider, slider_max, on_trackbar);
  34.        
  35.         // Press 'q' to exit
  36.         while(char(waitKey(1)) != 'q') {}

  37.         return 0;
  38. }
复制代码

板凳
Nicolle(未真实交易用户) 学生认证  发表于 2018-12-3 01:47:37
提示: 作者被禁止或删除 内容自动屏蔽

报纸
Nicolle(未真实交易用户) 学生认证  发表于 2018-12-3 01:48:55
提示: 作者被禁止或删除 内容自动屏蔽

地板
Nicolle(未真实交易用户) 学生认证  发表于 2018-12-3 01:49:57
提示: 作者被禁止或删除 内容自动屏蔽

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群
GMT+8, 2025-12-26 03:09