Skip to content
Snippets Groups Projects
Commit f6f01494 authored by Gregor Jaeger's avatar Gregor Jaeger Committed by Mohcine Chraibi
Browse files

set projectRootDir to canonical form

Note: This used to work before, but now not anymore.
Please check if still working
parent 05d6669f
No related branches found
No related tags found
No related merge requests found
...@@ -138,6 +138,11 @@ bool Method_I::Process(const PedData& peddata,const fs::path& scriptsLocation, c ...@@ -138,6 +138,11 @@ bool Method_I::Process(const PedData& peddata,const fs::path& scriptsLocation, c
vector<double> YInFrame = peddata.GetYInFrame(frameNr, ids, zPos_measureArea); vector<double> YInFrame = peddata.GetYInFrame(frameNr, ids, zPos_measureArea);
vector<double> ZInFrame = peddata.GetZInFrame(frameNr, ids, zPos_measureArea); vector<double> ZInFrame = peddata.GetZInFrame(frameNr, ids, zPos_measureArea);
vector<double> VInFrame = peddata.GetVInFrame(frameNr, ids, zPos_measureArea); vector<double> VInFrame = peddata.GetVInFrame(frameNr, ids, zPos_measureArea);
if(XInFrame.size() == 0)
{
Log->Write("Warning:\t no pedestrians in frame <%d>", frameNr);
continue;
}
//vector int to_remove //vector int to_remove
//------------------------------Remove peds outside geometry------------------------------------------ //------------------------------Remove peds outside geometry------------------------------------------
for( int i=0;i<(int)IdInFrame.size();i++) for( int i=0;i<(int)IdInFrame.size();i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment