Skip to content
Snippets Groups Projects
Commit ec597075 authored by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Browse files

Merge branch 'missing_include' into 'master'

Add missing include and fix compilation on windows

See merge request !18
parents cb7c28d2 4bf389af
No related branches found
No related tags found
1 merge request!18Add missing include and fix compilation on windows
......@@ -30,6 +30,7 @@
#include "otbImageKeywordlist.h"
#include "otbSarSensorModelAdapter.h"
#include "otbVectorImage.h"
#if defined(__GNUC__) || defined(__clang__)
# pragma GCC diagnostic push
......
......@@ -494,7 +494,7 @@ namespace otb
int nbLinesSlave = slavePtr->GetLargestPossibleRegion().GetSize()[1];
// Array to store correlation rate for each pixel and each shift
double arrayRate [2*m_WinAround_ShiftAzi+1][2*m_WinAround_ShiftRan+1];
std::vector< std::vector<double> > arrayRate (2*m_WinAround_ShiftAzi+1, std::vector<double>(2*m_WinAround_ShiftRan+1));
float arrayPic[3][3];
float dx, dy, VAL_MAX;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment