forked from robotology/karma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
10,203 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,10 @@ | |
*.exe | ||
*.out | ||
*.app | ||
|
||
# Build products | ||
/build*/ | ||
|
||
# Linux temp files | ||
*~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright: (C) 2012 Department of Robotics Brain and Cognitive Sciences - Istituto Italiano di Tecnologia | ||
# Authors: Ugo Pattacini, Vadim Tikhanoff | ||
# CopyPolicy: Released under the terms of the GNU GPL v2.0. | ||
|
||
cmake_minimum_required(VERSION 2.6) | ||
project(karma) | ||
|
||
find_package(ICUBcontrib) | ||
list(APPEND CMAKE_MODULE_PATH ${ICUBCONTRIB_MODULE_PATH}) | ||
include(ICUBcontribHelpers) | ||
|
||
add_subdirectory(karmaManager) | ||
add_subdirectory(karmaMotor) | ||
add_subdirectory(karmaLearn) | ||
add_subdirectory(karmaToolProjection) | ||
add_subdirectory(karmaToolFinder) | ||
add_subdirectory(app) | ||
|
||
icubcontrib_add_uninstall_target() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
karma | ||
KARMA | ||
===== | ||
|
||
Contain modules for experimenting affordance learning with the iCub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright: (C) 2011 Department of Robotics Brain and Cognitive Sciences - Istituto Italiano di Tecnologia | ||
# Authors: Vadim Tikhanoff | ||
# CopyPolicy: Released under the terms of the GNU GPL v2.0. | ||
|
||
cmake_minimum_required(VERSION 2.6) | ||
find_package(ICUB) | ||
list(APPEND CMAKE_MODULE_PATH ${ICUB_MODULE_PATH}) | ||
|
||
set(PROJECTNAME karma) | ||
|
||
file(GLOB conf ${CMAKE_CURRENT_SOURCE_DIR}/conf/*.ini) | ||
file(GLOB scripts ${CMAKE_CURRENT_SOURCE_DIR}/scripts/*.template ${CMAKE_CURRENT_SOURCE_DIR}/scripts/*.ini) | ||
file(GLOB rad ${CMAKE_CURRENT_SOURCE_DIR}/RAD/*.*) | ||
|
||
find_package(YARP) | ||
find_package(ICUBcontrib) | ||
list(APPEND CMAKE_MODULE_PATH ${YARP_MODULE_PATH} ${ICUBCONTRIB_MODULE_PATH}) | ||
include(YarpInstallationHelpers) | ||
include(ICUBcontribHelpers) | ||
icubcontrib_set_default_prefix() | ||
|
||
yarp_install(FILES ${conf} DESTINATION ${ICUBCONTRIB_CONTEXTS_INSTALL_DIR}/${PROJECTNAME}) | ||
yarp_install(FILES ${scripts} DESTINATION ${ICUBCONTRIB_APPLICATIONS_TEMPLATES_INSTALL_DIR}) | ||
yarp_install(DIRECTORY RAD DESTINATION ${ICUBCONTRIB_CONTEXTS_INSTALL_DIR}/${PROJECTNAME}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
release defined | ||
play not-defined | ||
goto defined | ||
grasp defined | ||
put learned | ||
touch defined | ||
tap defined | ||
stop stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
grasp object | ||
release object location | ||
stop stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
larry grasp box | ||
robert put toy right | ||
larry release box middle | ||
stop stop stop |
Oops, something went wrong.