-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Spam v2.0 - new software design to separate hypothesis-based planning…
… from the core libs. App libs are alike Grasp lib.
- Loading branch information
Showing
64 changed files
with
3,081 additions
and
8,076 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 @@ | ||
Spam | ||
==== | ||
|
||
Spam | ||
# Spam-2.0 | ||
Simultaneous Perception and Manipulation version 2.0 |
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,91 @@ | ||
//------------------------------------------------------------------------------ | ||
// Simultaneous Perception And Manipulation (SPAM) | ||
//------------------------------------------------------------------------------ | ||
// | ||
// Copyright (c) 2010 University of Birmingham. | ||
// All rights reserved. | ||
// | ||
// Intelligence Robot Lab. | ||
// School of Computer Science | ||
// University of Birmingham | ||
// Edgbaston, Brimingham. UK. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// with the Software without restriction, including without limitation the | ||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
// sell copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimers. | ||
// * Redistributions in binary form must reproduce the above copyright | ||
// notice, this list of conditions and the following disclaimers in | ||
// the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the names of the Simultaneous Perception And Manipulation | ||
// (SPAM), University of Birmingham, nor the names of its contributors | ||
// may be used to endorse or promote products derived from this Software | ||
// without specific prior written permission. | ||
// | ||
// The software is provided "as is", without warranty of any kind, express or | ||
// implied, including but not limited to the warranties of merchantability, | ||
// fitness for a particular purpose and noninfringement. In no event shall the | ||
// contributors or copyright holders be liable for any claim, damages or other | ||
// liability, whether in an action of contract, tort or otherwise, arising | ||
// from, out of or in connection with the software or the use of other dealings | ||
// with the software. | ||
// | ||
//------------------------------------------------------------------------------ | ||
//! @Author: Claudio Zito | ||
//! @Date: 25/03/2014 | ||
//------------------------------------------------------------------------------ | ||
#pragma once | ||
#ifndef _SPAM_POSEPLANNER_DATA_H_ | ||
#define _SPAM_POSEPLANNER_DATA_H_ | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
#include <Spam/HBPlan/Belief.h> | ||
#include <Spam/HBPlan/Heuristic.h> | ||
#include <Spam/HBPlan/GraphPlanner.h> | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
namespace grasp { | ||
namespace data { | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
/** Initialises handler. | ||
* (Optionally) Implemented by Handler. | ||
*/ | ||
class HandlerBelief { | ||
public: | ||
/** Sets planner and controllers. */ | ||
virtual void set() = 0; | ||
}; | ||
|
||
/** Trajectory collection and tools. | ||
* (Optionally) Implemented by Item. | ||
*/ | ||
class Belief { | ||
public: | ||
/** Returns command trajectory with velocity profile. */ | ||
virtual void createBelief() = 0; | ||
}; | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
}; // namespace | ||
}; // namespace | ||
|
||
//namespace golem { | ||
// | ||
//template <> void Stream::read(spam::Data &data) const; | ||
//template <> void Stream::write(const spam::Data &data); | ||
// | ||
//}; // namespace | ||
|
||
|
||
#endif /*_GRASP_POSEPLANNER_POSEPLANNER_H_*/ |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
//------------------------------------------------------------------------------ | ||
// Simultaneous Perception And Manipulation (SPAM) | ||
//------------------------------------------------------------------------------ | ||
// | ||
// Copyright (c) 2010 University of Birmingham. | ||
// All rights reserved. | ||
// | ||
// Intelligence Robot Lab. | ||
// School of Computer Science | ||
// University of Birmingham | ||
// Edgbaston, Brimingham. UK. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// with the Software without restriction, including without limitation the | ||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
// sell copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimers. | ||
// * Redistributions in binary form must reproduce the above copyright | ||
// notice, this list of conditions and the following disclaimers in | ||
// the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the names of the Simultaneous Perception And Manipulation | ||
// (SPAM), University of Birmingham, nor the names of its contributors | ||
// may be used to endorse or promote products derived from this Software | ||
// without specific prior written permission. | ||
// | ||
// The software is provided "as is", without warranty of any kind, express or | ||
// implied, including but not limited to the warranties of merchantability, | ||
// fitness for a particular purpose and noninfringement. In no event shall the | ||
// contributors or copyright holders be liable for any claim, damages or other | ||
// liability, whether in an action of contract, tort or otherwise, arising | ||
// from, out of or in connection with the software or the use of other dealings | ||
// with the software. | ||
// | ||
//------------------------------------------------------------------------------ | ||
//! @Author: Claudio Zito | ||
//! @Date: 27/10/2012 | ||
//------------------------------------------------------------------------------ | ||
#pragma once | ||
#ifndef _SPAM_RAGPLANNER_DATA_H_ | ||
#define _SPAM_RAGPLANNER_DATA_H_ | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
#include <Spam/HBPlan/Belief.h> | ||
#include <Spam/HBPlan/Heuristic.h> | ||
#include <Spam/HBPlan/GraphPlanner.h> | ||
|
||
//------------------------------------------------------------------------------ | ||
|
||
namespace grasp { | ||
namespace data { | ||
//------------------------------------------------------------------------------ | ||
|
||
|
||
//------------------------------------------------------------------------------ | ||
|
||
}; // namespace | ||
}; // namespace | ||
|
||
#endif /*_SPAM_RAGPLANNER_DATA_H_*/ |
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.