Add ArRecorder logic

This commit is contained in:
2021-06-30 19:35:10 +02:00
parent b3284ae096
commit 5f85d07609
10 changed files with 263 additions and 38 deletions

View File

@@ -6,11 +6,17 @@
#include "ArFrame.hpp"
#include "ArSession.hpp"
#include "ArRecorder.hpp"
namespace openVulkanoCpp::AR
{
float ArFrame::GetConfidenceNormalisationFactor() const
{
return session->GetSessionMetadata().GetConfidenceNormalisationFactor();
return m_session->GetSessionMetadata().GetConfidenceNormalisationFactor();
}
void ArFrame::Save()
{
m_session->GetRecorder().Save(this);
}
}