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
Last revisionBoth sides next revision
doc:reasoning_about_objects [2014/11/28 15:43] admindoc:reasoning_about_objects [2016/04/19 08:09] – [Visualize the environment, including CAD models of objects] daniel86
Line 34: Line 34:
 You can then send the following commands from your KnowRob shell: You can then send the following commands from your KnowRob shell:
 <code prolog> <code prolog>
-?- visualisation_canvas.+?- visualisation_server, visualisation_canvas.
  
 % Ignore the INFO output on the console % Ignore the INFO output on the console
 % Open your browser at http://localhost:1111 % Open your browser at http://localhost:1111
  
-?- owl_individual_of(Map, knowrob:'SemanticEnvironmentMap'), add_object_with_children(Map).+?- owl_individual_of(Map, knowrob:'SemanticEnvironmentMap'), marker_update(object(Map)).
 </code> </code>
 Similarly, we can also visualize small objects in the kitchen: Similarly, we can also visualize small objects in the kitchen:
Line 46: Line 46:
   owl_individual_of(A, knowrob:'FoodVessel');   owl_individual_of(A, knowrob:'FoodVessel');
  owl_individual_of(A, knowrob:'FoodOrDrink')),  owl_individual_of(A, knowrob:'FoodOrDrink')),
- add_object(A, _).+ marker_update(object(A)).
 </code> </code>