viewpoint computation through AI

Started by
-1 comments, last by robertoranon 11 years, 1 month ago

Hello,

I just want to let people interested in automatically computing viewpoints in a game (e.g. replay cameras in driving games, or cinematic cameras) that there is a new open-source C++ library for that, called Smart Viewpoint Computation Lib, and available at https://bitbucket.org/rranon/smart-viewpoint-computation-lib

SmartViewpointComputationLib is a C++ library to compute the best viewpoint in a 3D scene that satisfies a set of visual properties, such as size, visibility or angle of selected objects in the scene. For example, suppose you have a building floor scene like this one:

building.jpeg
and you want a viewpoint that visualizes the monitor, mouse and keyboard in the bottom-left room (provided each of these is an individual object in the scene). You declare that you want each object to be in the viewpoint view volume, as unoccluded by any other object as possible, and preferably of a certain size on screen. The library will return a result like this (AABBs added just to highlight the objects):
computer.jpeg

Other kinds of properties include the orientation of objects with respect to the viewpoint (i.e., camera angle in photography terms), framing an object in specific parts of the screen, and relative position on screen of two objects (e.g., one at the left of the other). In other words, you can find viewpoints like you would compose a picture, leaving to the library the task of positioning and aiming the camera.

The library does not make any assumption on the scene and objects, and only require access to the scene objects' meshes and world transformations. It can return a result within a time of your choice (e.g., a few tens of milliseconds). More time will generally increase the quality of results, especially in large and complex scenes.

The library comes with bindings for the Ogre open-source rendering engine. Connecting it to other rendering engines, however, requires to modify just one header file (which for Ogre consists of 500 lines of code).

If you are interested, give it a look!

This topic is closed to new replies.

Advertisement