forked from cram2/cram
-
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.
Merge pull request #1 from sunava/popcorn-noetic
Popcorn noetic and 2handed manipulation
- Loading branch information
Showing
57 changed files
with
2,501 additions
and
321 deletions.
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
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 |
---|---|---|
|
@@ -34,5 +34,6 @@ | |
- git: | ||
local-name: kdl_ik_services | ||
uri: [email protected]:cram2/kdl_ik_service.git | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
install -d ~/roscram/cram_ws/src | ||
cd ~/roscram/cram_ws/src | ||
wstool init | ||
wstool merge https://raw.githubusercontent.com/cram2/cram/boxy-noetic/cram-20.04.rosinstall | ||
wstool merge https://raw.githubusercontent.com/cram2/cram/noetic/cram-20.04.rosinstall | ||
wstool update | ||
cd .. | ||
rosdep update | ||
|
@@ -12,6 +12,7 @@ install -d ~/roscram/ros_emacs_utils_ws/src | |
cd ~/roscram/ros_emacs_utils_ws/src | ||
git clone [email protected]:code-iai/ros_emacs_utils.git | ||
cd .. | ||
#install is necessary | ||
catkin_make install | ||
catkin_make | ||
source devel/setup.bash | ||
|
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,3 +1,4 @@ | ||
|
||
;;; | ||
;;; Copyright (c) 2012, Gayane Kazhoyan <[email protected]> | ||
;;; Amar Fayaz <[email protected]> | ||
|
@@ -402,37 +403,36 @@ | |
?costmap)) | ||
;; | ||
;;;;;;;;;;;;;;; spatial relation ON for environment objects ;;;;;;;;;;;;;;;;;;;;;; | ||
;; (<- (costmap:desig-costmap ?designator ?costmap) | ||
;; (desig:desig-prop ?designator (:on ?object)) | ||
;; (not (desig:desig-prop ?designator (:attachment ?_))) | ||
;; (not (desig:desig-prop ?designator (:attachments ?_))) | ||
;; (spec:property ?object (:urdf-name ?urdf-name)) | ||
;; (spec:property ?object (:part-of ?environment-name)) | ||
;; (btr:bullet-world ?world) | ||
;; (btr:%object ?world ?environment-name ?environment-object) | ||
;; (lisp-fun get-link-rigid-body ?environment-object ?urdf-name ?environment-link) | ||
;; (lisp-pred identity ?environment-link) | ||
;; (costmap:costmap ?costmap) | ||
;; ;; costmap | ||
;; (costmap:costmap-add-function | ||
;; on-bounding-box | ||
;; (make-object-bounding-box-costmap-generator ?environment-link) | ||
;; ?costmap) | ||
;; ;; height generator | ||
;; (once (or (and (desig:desig-prop ?designator (:for ?for-object)) | ||
;; (object-designator-from-name-or-type ?for-object ?for-object-name) | ||
;; (btr:%object ?world ?for-object-name ?for-object-instance) | ||
;; (costmap:costmap-add-height-generator | ||
;; (make-object-on/in-object-bb-height-generator | ||
;; ?environment-link ?for-object-instance :on) | ||
;; ?costmap)) | ||
;; (costmap:costmap-add-cached-height-generator | ||
;; (make-object-bounding-box-height-generator ?environment-link :on) | ||
;; ?costmap))) | ||
;; ;; orientation generator | ||
;; (once (or (desig:desig-prop ?designator (:orientation ?orientation-type)) | ||
;; (equal ?orientation-type :random))) | ||
;; (generate-orientations ?orientation-type ?environment-link nil ?costmap)) | ||
(<- (costmap:desig-costmap ?designator ?costmap) | ||
(desig:desig-prop ?designator (:on ?object)) | ||
(btr-belief:object-designator-name ?object ?object-instance-name) | ||
(spec:property ?object (:urdf-name ?urdf-name)) | ||
(spec:property ?object (:part-of ?environment-name)) | ||
(btr:bullet-world ?world) | ||
(btr:%object ?world ?environment-name ?environment-object) | ||
(lisp-fun get-link-rigid-body ?environment-object ?urdf-name ?environment-link) | ||
(lisp-pred identity ?environment-link) | ||
(costmap:costmap ?costmap) | ||
;; costmap | ||
(costmap:costmap-add-function | ||
on-bounding-box | ||
(make-object-bounding-box-costmap-generator ?environment-link) | ||
?costmap) | ||
;; height generator | ||
(once (or (and (desig:desig-prop ?designator (:for ?for-object)) | ||
(object-designator-from-name-or-type ?for-object ?for-object-name) | ||
(btr:%object ?world ?for-object-name ?for-object-instance) | ||
(costmap:costmap-add-height-generator | ||
(make-object-on/in-object-bb-height-generator | ||
?environment-link ?for-object-instance :on) | ||
?costmap)) | ||
(costmap:costmap-add-cached-height-generator | ||
(make-object-bounding-box-height-generator ?environment-link :on) | ||
?costmap))) | ||
;; orientation generator | ||
(once (or (desig:desig-prop ?designator (:orientation ?orientation-type)) | ||
(equal ?orientation-type :random))) | ||
(generate-orientations ?orientation-type ?environment-link nil ?costmap)) | ||
|
||
|
||
;;;;;;;;;;;;;;; spatial relation ABOVE for environment objects ;;;;;;;;;;;; | ||
|
@@ -668,3 +668,4 @@ | |
?costmap)) | ||
(true)))) | ||
|
||
|
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
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
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
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
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
Oops, something went wrong.