Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
165f2b27
Commit
165f2b27
authored
8 years ago
by
Markus Grotz
Browse files
Options
Downloads
Patches
Plain Diff
revised ViewSelection
parent
f5696f06
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/components/ViewSelection/ViewSelection.cpp
+34
-29
34 additions, 29 deletions
source/RobotAPI/components/ViewSelection/ViewSelection.cpp
source/RobotAPI/components/ViewSelection/ViewSelection.h
+2
-0
2 additions, 0 deletions
source/RobotAPI/components/ViewSelection/ViewSelection.h
with
36 additions
and
29 deletions
source/RobotAPI/components/ViewSelection/ViewSelection.cpp
+
34
−
29
View file @
165f2b27
...
...
@@ -141,12 +141,11 @@ void ViewSelection::onExitComponent()
}
ViewTargetBasePtr
ViewSelection
::
nextAutomaticViewTarget
(
)
void
ViewSelection
::
getActiveSaliencyMaps
(
std
::
vector
<
std
::
string
>&
activeSaliencyMaps
)
{
boost
::
mutex
::
scoped_lock
lock
(
syncMutex
);
IceUtil
::
Time
currentTime
=
armarx
::
TimeUtil
::
GetTime
();
std
::
vector
<
std
::
string
>
activeSaliencyMaps
;
for
(
const
auto
&
p
:
saliencyMaps
)
{
if
(
p
.
second
->
validUntil
)
...
...
@@ -161,20 +160,19 @@ ViewTargetBasePtr ViewSelection::nextAutomaticViewTarget()
{
activeSaliencyMaps
.
push_back
(
p
.
second
->
name
);
}
}
}
hasNewSaliencyMap
=
false
;
ViewTargetBasePtr
ViewSelection
::
nextAutomaticViewTarget
()
{
std
::
vector
<
std
::
string
>
activeSaliencyMaps
;
getActiveSaliencyMaps
(
activeSaliencyMaps
);
if
(
activeSaliencyMaps
.
empty
())
{
return
nullptr
;
}
if
(
visuSaliencyThreshold
>
0.0
)
{
drawSaliencySphere
(
activeSaliencyMaps
);
}
SharedRobotInterfacePrx
robotPrx
=
robotStateComponent
->
getSynchronizedRobot
();
TNodeList
*
visibilityMaskGraphNodes
=
visibilityMaskGraph
->
getNodes
();
...
...
@@ -183,6 +181,10 @@ ViewTargetBasePtr ViewSelection::nextAutomaticViewTarget()
int
maxIndex
=
-
1
;
float
maxSaliency
=
std
::
numeric_limits
<
float
>::
min
();
boost
::
mutex
::
scoped_lock
lock
(
syncMutex
);
hasNewSaliencyMap
=
false
;
for
(
size_t
i
=
0
;
i
<
visibilityMaskGraphNodes
->
size
();
i
++
)
{
float
saliency
=
0.0
f
;
...
...
@@ -193,12 +195,9 @@ ViewTargetBasePtr ViewSelection::nextAutomaticViewTarget()
saliency
/=
activeSaliencyMaps
.
size
();
CIntensityNode
*
visibilityNode
=
(
CIntensityNode
*
)
visibilityMaskGraphNodes
->
at
(
i
);
saliency
*=
visibilityNode
->
getIntensity
();
if
(
saliency
>
maxSaliency
)
{
maxSaliency
=
saliency
;
...
...
@@ -234,7 +233,14 @@ ViewTargetBasePtr ViewSelection::nextAutomaticViewTarget()
viewTarget
->
target
=
viewTargetPositionPtr
;
viewTarget
->
duration
=
0
;
if
(
visuSaliencyThreshold
>
0.0
)
{
drawSaliencySphere
(
activeSaliencyMaps
);
}
return
viewTarget
;
}
return
nullptr
;
...
...
@@ -244,6 +250,12 @@ ViewTargetBasePtr ViewSelection::nextAutomaticViewTarget()
void
ViewSelection
::
process
()
{
/*
while(getState() < eManagedIceObjectExiting)
{
}
*/
ViewTargetBasePtr
viewTarget
;
if
(
doAutomaticViewSelection
)
...
...
@@ -294,6 +306,7 @@ void ViewSelection::process()
if
(
viewTarget
)
{
SharedRobotInterfacePrx
robotPrx
=
robotStateComponent
->
getSynchronizedRobot
();
// FramedPositionPtr viewTargetPositionPtr = FramedPositionPtr::dynamicCast(viewTarget->target);
FramedPositionPtr
viewTargetPositionPtr
=
new
FramedPosition
(
FramedPositionPtr
::
dynamicCast
(
viewTarget
->
target
)
->
toEigen
(),
viewTarget
->
target
->
frame
,
robotPrx
->
getName
());
if
(
drawer
&&
robotPrx
->
hasRobotNode
(
"Cameras"
)
&&
drawViewDirection
)
...
...
@@ -401,13 +414,12 @@ void ViewSelection::drawSaliencySphere(const ::Ice::StringSeq& names, const Ice:
{
ARMARX_LOG
<<
"visualizing saliency map"
;
//
drawer->clearLayer("saliencyMap");
drawer
->
clearLayer
(
"saliencyMap"
);
SharedRobotInterfacePrx
robotPrx
=
robotStateComponent
->
getSynchronizedRobot
();
Eigen
::
Matrix4f
cameraToGlobal
=
FramedPosePtr
::
dynamicCast
(
robotPrx
->
getRobotNode
(
headFrameName
)
->
getGlobalPose
())
->
toEigen
();
IceUtil
::
Time
currentTime
=
armarx
::
TimeUtil
::
GetTime
();
std
::
vector
<
std
::
string
>
activeSaliencyMaps
;
if
(
names
.
size
())
...
...
@@ -419,23 +431,17 @@ void ViewSelection::drawSaliencySphere(const ::Ice::StringSeq& names, const Ice:
}
else
{
for
(
const
auto
&
p
:
saliencyMaps
)
{
if
(
p
.
second
->
validUntil
)
{
TimestampVariantPtr
time
=
TimestampVariantPtr
::
dynamicCast
(
p
.
second
->
validUntil
);
if
(
time
->
toTime
()
>
currentTime
)
{
activeSaliencyMaps
.
push_back
(
p
.
second
->
name
);
}
}
else
if
((
currentTime
-
TimestampVariantPtr
::
dynamicCast
(
p
.
second
->
timeAdded
)
->
toTime
())
<
IceUtil
::
Time
::
seconds
(
5
))
{
activeSaliencyMaps
.
push_back
(
p
.
second
->
name
);
}
}
getActiveSaliencyMaps
(
activeSaliencyMaps
);
}
if
(
!
activeSaliencyMaps
.
size
())
{
return
;
}
boost
::
mutex
::
scoped_lock
lock
(
syncMutex
);
TNodeList
*
visibilityMaskGraphNodes
=
visibilityMaskGraph
->
getNodes
();
DebugDrawer24BitColoredPointCloud
cloud
;
cloud
.
points
.
reserve
(
visibilityMaskGraphNodes
->
size
());
...
...
@@ -499,7 +505,6 @@ void ViewSelection::removeSaliencyMap(const string& name, const Ice::Current& c)
Ice
::
StringSeq
ViewSelection
::
getSaliencyMapNames
(
const
Ice
::
Current
&
c
)
{
std
::
vector
<
std
::
string
>
names
;
boost
::
mutex
::
scoped_lock
lock
(
syncMutex
);
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/components/ViewSelection/ViewSelection.h
+
2
−
0
View file @
165f2b27
...
...
@@ -194,6 +194,8 @@ namespace armarx
ViewTargetBasePtr
nextAutomaticViewTarget
();
void
getActiveSaliencyMaps
(
std
::
vector
<
std
::
string
>&
activeSaliencyMaps
);
armarx
::
PeriodicTask
<
ViewSelection
>::
pointer_type
processorTask
;
RobotStateComponentInterfacePrx
robotStateComponent
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment