wonderful job

 记录国外大学精彩的研究内容

 

1/ Reproducible Research in Computational Science

http://www.csee.wvu.edu/~xinl/source.html

2/ The Berkeley Segmentation Dataset and Benchmark

http://www.eecs.berkeley.edu/Research/Projects/CS/vision/grouping/segbench/

3/ Alexei (Alyosha) Efros

http://www.cs.cmu.edu/~efros/

4/  Nghia Ho

http://nghiaho.com/?page_id=253

5/Antonio Torralba

http://web.mit.edu/torralba/www/

KLT: An Implementation of the
Kanade-Lucas-Tomasi Feature Tracker

GPU_KLT: A GPU-based Implementation of the
Kanade-Lucas-Tomasi Feature Tracker

6 /Douglas Lanman

http://mesh.brown.edu/dlanman/courses.html

Augmented Video;Exemplar-based Image Inpainting;Texture Synthesis using Image Quilting;Bilateral Filtering and Image Abstraction;Build Your Own 3D Scanner;Build Your Own 3D Scanner;3D Photography using Planar Shadows

7/ Camera Calibration

http://www.kwon3d.com/theory/calib.html

记录了相机标定的各种基础理论和方法,值得一读。

8/ Combining Sketch and Tone for Pencil Drawing Production

                                Best Paper Award

                        Cewu Lu Li XuJiaya Jia    这三个人的主页都很精彩

             The Chinese University of Hong Kong

http://www.cse.cuhk.edu.hk/~leojia/projects/pencilsketch/pencil_drawing.htm

9/Local Laplacian Filters: Edge-aware Image Processing with a Laplacian Pyramid

http://people.csail.mit.edu/sparis/publi/2011/siggraph/

10 / Computer Vision Online

   http://www.computervisiononline.com/

记录了大量的Computer Vision 的资料数据代码,无比精彩。

11/ The Moving Picture Experts Group (MPEG)

     http://mpeg.chiariglione.org/hot_news.php

MPEG software深度估计、视图合成code

12/ Fast Bilateral Filter

            http://people.csail.mit.edu/sparis/bf/

            有matlab、c++、gpu 代码,里面的链接也很精彩

13/ The QSplat Multiresolution Point Rendering System

     http://graphics.stanford.edu/software/qsplat/

     QSplat is a program for displaying large geometric models in real time.

 

  • Fast startup and progressive loading
  • Real-time interactive display with a user-selectable frame rate
  • Refinement to a high-quality rendering when idle
  • Point-based multiresolution representation with splat rendering, level-of-detail control, and hierarchical visibility culling
  • Compact representation - 6 bytes per input point including normals, 9 bytes including color
  • Fast preprocessing

    QSplat is available for research and commercial use, free of charge, as described at the bottom of this web page.

    Code

    QSplat source code and binaries are available here (for academic and research use only).

    Similar systemsQSplat has inspired others to write streaming point-based display systems for 3D models. One such system, which includes a nice gallery of     

    archaeological models, is Octopus, by Archaeoptics Ltd. Also check outScanView, our client-server system for remote visualization of 3D models.

14/ Jan-Michael Frahm 的主页

http://www.cs.unc.edu/~jmf/Homepage_Jan-Michael_Frahm.html


北卡教堂山分校3D计算机视觉组header,三维重建,gpu,跟踪,image matting等与西雅图华盛顿合作紧密。

主页列举了过去和现在学生的主页,每个人的研究内容都很精彩。

15 /Stefano Mattoccia  的主页

http://www.vision.deis.unibo.it/smatt/

His research activity is mainly concerned with:active and passive stereo vision ant its applications, 3D reconstruction and registration, pattern matching, 2D and 3D video surveillance, mapping of computer vision algorithms on FPGAs and GPUs, design of embedded devices for computer vision

有几篇stereo matching的文章很精彩。

16/ Michael Goesele‘s homepage

http://www.gris.informatik.tu-darmstadt.de/~mgoesele/index.html

Multi-View Stereo for Community Photo Collections courcecode,

三维重建牛人

 17/ Computer Vision Algorithm Implementations

http://www.cvpapers.com/rr.html

介绍了图像各个方向应用的 开源工具,sfm slam visual odometry stereo 等

18、

Human Identity Recognition in Aerial Images


 

http://www.cs.ucf.edu/~oreifej/WRM.html

基于hog的识别,有代码

19、

Multi-Camera Self-Calibration

http://cmp.felk.cvut.cz/~svoboda/SelfCal/

20、

RTMOSAIC

Real-time mosaicing and 3-D reconstruction

http://www2.it.lut.fi/project/rtmosaic/

 

 

要编写一个程序将特定的字符串"ASrhivjyp"转换为"Wonderful",首先需要确定转换规则。在没有具体规则的情况下,可以假设这是一种简单的替换密码,其中每个字母对应于另一个特定的字母。然而,在实际情况中,加密通常比这要复杂得多,可能涉及到各种算法,例如凯撒密码、替换密码、维吉尼亚密码等。 由于没有具体规则,这里提供一个简单的示例,其中我们假设每个字符是通过一个固定的偏移量映射到目标字符串的。例如,假设每个字母在字母表中向前移动了6个位置来映射到目标字符串(类似凯撒密码的简单移位,但可能需要一个更复杂的映射机制来匹配"Wonderful")。 以下是一个简单的Python代码示例,它通过硬编码的方式来解密这个特定的字符串: ```python def decrypt_message(encoded_str): # 定义原始字符串和目标字符串之间的映射关系 original = "ASrhivjyp" target = "Wonderful" # 建立映射关系 mapping = {ord(k): v for k, v in zip(original, target)} # 解密过程 decrypted_message = ''.join(mapping.get(ord(c), c) for c in encoded_str) return decrypted_message # 编码字符串 encoded_str = "ASrhivjyp" # 解密并打印结果 print(decrypt_message(encoded_str)) ``` 上述代码首先定义了一个映射关系,然后通过这个映射关系来替换原始字符串中的每个字符,以得到解密后的字符串。需要注意的是,这种方法只有在映射关系与加密方法完全一致时才有效。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值