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 ...
随机推荐
- 关于redis服务无法启动问题
打开cmd终端找到redis安装路径下 输入redis-server redis.windows.conf报错信息如下 之后重新输入redis-cli.exe 运行结果 然后输入 127.0.0.1: ...
- vue中怎么实现获取当前点击对象this
应用场景 在评论列表中,有很多条评论(通过循环出来的评论列表),评论的文字有多跟少,默认展示2行超出显示点击查看更多,,要点击查看更多对当前的这条评论进行全部评论展示! 问题描述 要是在传统的点击事件 ...
- upgrade openssl
01 OpenSSL version wiki:https://en.wikipedia.org/wiki/OpenSSL 02 Using TLS1.3 With OpenSSL https:// ...
- 51nod--1183 编辑距离(动态规划)
题目: 1183 编辑距离 基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题 收藏 关注 编辑距离,又称Levenshtein距离(也叫做Edit Distance),是指 ...
- Vuforia的图像识别之后的服务器下载与ARKit的兼容性解决
2017.12.12 遇到的问题: Could not produce class with ID 75 直接关闭unity里面的Strip engine code,解决下载ab时的崩溃问题 *Str ...
- LMerge-github
ILMerge ILMerge是一个将多个.NET程序集合并到一个程序集中的实用程序.它可以免费使用,并以NuGet包的形式提供. 如果您在使用它时遇到任何问题,请与我们联系.(mbarnett at ...
- 树上背包O(n*m^2)|| 多叉树转二叉树 || o(n*m)???
#. 选课 描述 提交 自定义测试 问题描述 在大学里每个学生,为了达到一定的学分,必须从很多课程里选择一些课程来学习,在课程里有些课程必须在某些课程之前学习,如高等数学总是在其它课程之前学习.现在有 ...
- Angular项目中共享模块的实现
创建share Modele:ng g m share import进来所有需要共享的模块都export出去, 一.共享CommonModule 暂时只有CommonModule,以后会有一些需要共享 ...
- fastadmin模态框(弹出框)
用法: 在html页面新建一个按钮用来触发事件 <a href="javascript:;" class="btn btn-success btn-add &quo ...
- CodeForces 721C Journey(拓扑排序+DP)
<题目链接> 题目大意:一个DAG图有n个点,m条边,走过每条边都会花费一定的时间,问你在不超过T时间的条件下,从1到n点最多能够经过几个节点. 解题分析:对这个有向图,我们进行拓扑排序, ...