Multi-Projector Based Display Code ---- FAQ
Frequently Asked Question
- How do I know that my camera has a proper lens?
Answer: If you can see exactly the whole display area while connecting the camera to the master PC, then it's a proper lens. In fact, what we mean proper here is that the lens comes with suitable focal length and field of view (FOV). In our configuration, when putting the camera behind the projectors about 3 meters away from the display wall, we use a 8mm lens. You can find plenty of information from the web about how to caculate the focal length you need in your working scenario and how to choose camera lens. - How do I know that my camera is OpenCV-compatible?
Answer: Please download the test program from here. You can run it on the PC with camera connnected, if you see a camera viewer smoothly, then the camera is OpenCV-compatible. Otherwise, the camera is not OpenCV-compatible and can not be used in this project. - I met the following error: "xx features detected! Please check camera image" ?
Answer: Please open the debug image located at the same directory. The possible reason might be: unexpected obstacle objects seens by the camera; ambient light too bright or too dark that white blobs and black background can not be distinguished. - What if the program crashed during running ?
Answer: Please close all the running programs (include other render server programs and/or control client programs) and re-run the system according to the step-by-step guide. If the same problem still exists, please check the error message and look into the source code yourself. - What if the render server have no response ?
Answer: The most possible reason is that the network traffic is banned by the firewall. All the programs use UDP socket to communicate with each other and might not be successful if your firewall is turned on. Please turn off the firewall or allow the traffic by these programs in the firewall configuration. Another reason might be wrong configuration file is given in the control client, please check the ip address, port etc in the configuration file. - Is there any difference between the calbration result generated from Mulit-Prjector Multi-PC configuration and Multi-Projector Single-PC configuration?
Answer: As long as the physical projector arrangement is the same (for example, both are for 2x2 or 2x1) the calibration result is exactly the same. - What if I found bugs in the codes?
Answer: We would be very thankful if you could help us improving the codes by email a detailed description of the bug to the following address: brown at comp.nus.edu.sg . - What if I still have questions regarding the codes?
Answer: Please email to brown at comp.nus.edu.sg.
Multi-Projector Based Display Code ---- FAQ的更多相关文章
- Multi-Projector Based Display Code ------- Home
Overview This project provides you with the tools and techniques you need to create your own large-a ...
- Multi-Projector Based Display Code ---- ImageViewer
Overview Image viewer is a typical application for large display. It makes use of the high-resolutio ...
- Multi-Projector Based Display Code ---- Calibration
Overview As mentioned previously, there are two main steps in generating a seamless display. The fir ...
- Multi-Projector Based Display Code ---- ModelViewer
Overview Model viewer is another application we provided for large display. It is designed for viewi ...
- Multi-Projector Based Display Code ---- Download
The code providing are for your reference. Please download the code according to your hareware confi ...
- Peer Code Reviews Made Easy with Eclipse Plug-In
欢迎关注我的社交账号: 博客园地址: http://www.cnblogs.com/jiangxinnju/p/4781259.html GitHub地址: https://github.com/ji ...
- Code Pages
https://docs.microsoft.com/en-us/windows/desktop/intl/code-pages Most applications written today han ...
- 设备管理 USB ID
发现个USB ID站点,对于做设备管理识别的小伙伴特别实用 http://www.linux-usb.org/usb.ids 附录: # # List of USB ID's # # Maintain ...
- 【ruby】ruby基础知识
Install Ruby(安装) For windows you can download Ruby from http://rubyforge.org/frs/?group_id=167 for L ...
随机推荐
- C++设计模式——职责链模式
什么是职责链模式? 在GOF的<设计模式:可复用面向对象软件的基础>一书中对职责链模式是这样说的:使多个对象都有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系.将这些对象连成一条 ...
- Centos6.X搭建Squid为YUM做代理
1.在能联网的机器上安装 Squid yum install squid 2.配置squid vi /etc/squid/squid.conf 编辑内容如下: http_port cache_mem ...
- asp.net MVC路由配置总结
URL构造 命名参数规范+匿名对象 routes.MapRoute(name: "Default",url: "{controller}/{action}/{id}&qu ...
- 列表生成式,迭代器&生成器
python3中range(10)就 是迭代器 列表生成式 #列表生成式 a=[0,1,2,3,4,5] b=[] for index,i in enumerate(a): a[index]+1 pr ...
- Mac 桌面软件开发基础问答
1> Mac OS X平台下的桌面软件是由什么编程语言处理 答: 由Objective-C, swift编程语言处理 2> Mac OS X平台下的桌面软件是由什么框架构建 答: 由Coc ...
- 【BZOJ4589】Hard Nim(FWT)
题解: 由博弈论可以知道题目等价于求这$n$个数$\^$为0 快速幂$+fwt$ 这样是$nlog^2$的 并不能过 而且得注意$m$的数组$\^$一下会生成$2m$ #include <bit ...
- C#实现短链接生成服务
项目中有一处需求,需要把长网址缩为短网址,把结果通过短信.微信等渠道推送给客户.刚开始直接使用网上现成的开放服务,然后在某个周末突然手痒想自己动手实现一个别具特色的长网址(文本)缩短服务. 由于以前做 ...
- 记录C#常用的代码片段
时间一久,常用的代码会有点忘记,还是贴在这里方便查找! 1.将信息写入文件中 //将字符串写入到文本中 void writeToText(string msg) { try { msg = DateT ...
- python下载大文件
1. wget def download_big_file_with_wget(url, target_file_name): """ 使用wget下载大文件 Note: ...
- 51Nod1222 最小公倍数计数 数论 Min_25 筛
原文链接https://www.cnblogs.com/zhouzhendong/p/51Nod1222.html 题意 给定 $a,b$, 求 $$\sum_{n=a}^b \sum_{i=1}^n ...