diff --git a/source/armarx/view_selection/components/person_target_provider/Component.cpp b/source/armarx/view_selection/components/person_target_provider/Component.cpp
index b6a965dccf3685472c5ab4926924b21478a05ef9..1d734e9e9cb9fd181781b649a9f5607d57d6bc3b 100644
--- a/source/armarx/view_selection/components/person_target_provider/Component.cpp
+++ b/source/armarx/view_selection/components/person_target_provider/Component.cpp
@@ -63,12 +63,12 @@ namespace armarx::view_selection::components::person_target_provider
         // Add an optionalproperty.
         // def->optional(properties.boxLayerName, "p.box.LayerName", "Name of the box layer in ArViz.");
         // def->optional(properties.numBoxes, "p.box.Number", "Number of boxes to draw in ArViz.");
-        def->optional(properties.providerName, "p.box.ProviderName", "OpenNIPointCloudProvider");
-        def->optional(properties.objectProviderDynamic, "p.objectProviderDynamic", "");
         def->optional(properties.trackTime,
                       "p.trackTime",
                       "Roughly the expected average tracking time of an object in seconds.");
         def->optional(properties.robotName, "p.robotName", "");
+        def->optional(properties.providerName, "p.providerName", "");
+        def->optional(properties.headKeypoint, "p.headKeypoint", "");
         return def;
     }
 
@@ -157,7 +157,7 @@ namespace armarx::view_selection::components::person_target_provider
     Component::getHumans()
     {
         armarx::armem::human::client::Reader::Query query{
-            .providerName = "OpenNIPointCloudProvider",
+            .providerName = properties.providerName,
             .timestamp = armarx::Clock::Now(),
         };
         armarx::core::time::StopWatch sw;
diff --git a/source/armarx/view_selection/components/person_target_provider/Component.h b/source/armarx/view_selection/components/person_target_provider/Component.h
index 7bbd0d80cf8efa9d8d7e1201bac6fe91980b7e0b..319ad13ced5a5985c6db468c54845ba1ce714549 100644
--- a/source/armarx/view_selection/components/person_target_provider/Component.h
+++ b/source/armarx/view_selection/components/person_target_provider/Component.h
@@ -134,6 +134,8 @@ namespace armarx::view_selection::components::person_target_provider
             double trackTime = 5.0f;
 
             std::string targetLayerName = "targets";
+
+            std::string headKeypoint = "Head";
         };
         Properties properties;
         /* Use a mutex if you access variables from different threads