- 博客(6)
- 资源 (1)
- 收藏
- 关注
原创 大恒水星 USB3.0 相机开发,多相机VC SDK采集
项目中需要用到多个相机采集图像。采用的是大恒VC SDK,并将图像转换成opencv的Mat。这里接了6个相机。配置opencv3.4和大恒VC SDK源代码#include <iostream>#include <opencv2/opencv.hpp>//using namespace cv;using namespace std;#include&q
2018-12-13 17:13:02 3472 5
原创 使用Opencv,大恒C++ SDK采集大恒水星相机图像
在项目中,使用了大恒的水星相机,需要把图存成Opencv的Mat形式。大恒C++ SDK采集的图像数据不能直接把图像的数据存进Mat,需要将原始数据(我这里是BayerRG8)经过格式转换之后转变成RGB24的格式,直接调用SDK的ConvertToRGB24函数。然后再向Mat写入数据。代码是参考了C++ SDK的手册,按说明书配置VS工程。说明书自带的示例工程的代码直接拷贝出来报错,不能...
2018-12-12 16:06:03 12956 16
原创 [Lintcode学习笔记](9. Fizz Buzz)
题目 “Fizz Buzz”Given number n. Print number from 1 to n. But:when number is divided by 3, print “fizz”.when number is divided by 5, print “buzz”.when number is divided by both 3 and 5, print “fizz ...
2018-09-20 16:25:29 324
原创 [Lintcode学习笔记](8. Rotate String)
标题题目 “Rotate String”Given a string and an offset, rotate string by offset. (rotate from left to right)ExampleGiven “abcdefg”.offset=0 => “abcdefg”offset=1 => “gabcdef”offset=2 => “fgabc..
2018-09-20 15:53:23 297
原创 [Lintcode学习笔记](3. Digit Counts)
题目 “Digit Counts”Count the number of k’s between 0 and n. k can be 0 - 9.(计算出一组数中包含k的个数,同一个数里多次出现k要多次计数)Exampleif n = 12, k = 1 in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]we have FIVE 1’s (1, 10...
2018-09-18 19:04:35 208
原创 [Lintcode学习笔记](1. A + B Problem)
题目 “A + B Problem”Example:Given a=1 and b=2 return 3.Challenge:Of course you can just return a + b to get accepted. But Can you challenge not do it like that?(You should not use + or any arithme...
2018-09-18 17:12:57 180
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人