Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cad_models [2013/01/07 12:14] – [Structure of parser] tenorthcad_models [2014/06/05 11:38] (current) – external edit 127.0.0.1
Line 1: Line 1:
-====== Visualize objects using CAD models ====== +#REDIRECT doc:cad_models
- +
-This should be a quick start guide for using CAD models in KnowRob. CAD Models are used to show a realistic model of an object in KnowRob visualization (mod_vis). Please refer to the main knowrob tutorial ([[Tutorial:_KnowRob_basics]]) for getting started. +
- +
- +
-===== CAD models for visualization ===== +
- +
-Start KnowRob with the ''mod_vis'' package as argument: +
-<code> +
-rosrun rosprolog rosprolog mod_vis +
-</code> +
- +
-Open the visualisation canvas: +
-<code> +
-visualisation_canvas(C). +
-</code> +
- +
-Additionally load the ''knowrob_cad_models'' package that provides models and example links between object classes and CAD models: +
-<code> +
-register_ros_package(knowrob_cad_models). +
-</code> +
- +
-Add an object instance to the scene: +
-<code> +
-owl_has(A, rdf:type, knowrob:'DrinkingBottle'),  +
-add_object(A, $C). +
-</code> +
- +
-The visualization will automatically use a CAD model if one is specified instead of a generic visualization model. +
- +
-===== CAD models as source of geometric information ===== +
- +
-CAD models can not only be used for visualization purposes, but can also serve as source of information about the geometry of the objects in the scene. For example, the dimensions of their bounding boxes can be read using the following commands: +
- +
-Height of the model in meters +
-<code>cad_model_zdim(identifier,Return).</code> +
- +
-Width of the model in meters +
-<code>cad_model_xdim(identifier,Return).</code> +
- +
-Depth of the model in meters +
-<code>cad_model_ydim(identifier,Return).</code> +
- +
-As a reminder, x = width, z = height, and y = depth. For a full list of query predicates check knowrob_cad_models/prolog/knowrob_cad_models.pl. +
- +
- +
-===== Writing your own CAD model parser ===== +
- +
-The system comes with parsers for Collada and .ply files. You can, however, easily write your own parser for other file formats. +
- +
-===== Structure of a parser ===== +
-The base class for all parsers should be ModelParser. +
-It contains some essential methods for using parsers and has a list of Triangles and Lines loaded from the model. +
-So each parser should store the loaded data in the Group (which represents a Triangle/Lines mesh) member to keep everything simple. +
-A group can has a name. +
-It's mesh member stores the Triangle and Lines information. +
-A Triangle can has texture and color. A line only a color. +
- +
-==== Model Parser ==== +
- +
-The model parser is used to parse a CAD Model from a given file and is the base class for all parsers. +
-The parser loads a file and "converts" it so that it can be stored as a list of triangles and lines. +
- +
-A special feature of the ModelParser is Buffering: +
-If a model has been parset it will be stored in a model buffer. +
-So if the same model should be parsed again it will be taken from this buffer instead of parsing it again. +
-Keep in mind that if you change something in a Group of a specific model it will affect all the other existing instances of this model. +
- +
-==== List of available parsers ==== +
- +
-Currently the following file formats are supported: +
-  * [[#Collada Parser|Collada]]: *.dae, *.kmz +
- +
-=== Collada Parser === +
-The collada parser uses [http://sourceforge.net/p/dae4j/ dae4j] library to parse the collada xml format. +
-Currently dae4j hasn't implemented the whole collada specification, but it seems the best out there for java. +
- +
-.kmz files will be extracted (zip) into a temporary directory and parsed from there. +
- +
-====  How to create a new parser? ====  +
-Check out ColladaParser for a sample implementation of a parser. +
- +
-Steps to create a new model parser: +
- +
-  * create a new class and extend it from ModelParser +
-  * Add your parser to the extension list (In ModelParser.java) so a file extension will be assigned to your parser: +
-    * Example<code>extensionAssignment.put("dae", ColladaParser.class);</code> +
-  * implement the needed methods. These should be self explained (see javadoc) +
-  * Store all data in Groups member of ModelParser parent. +