Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Cabieces
otb
Commits
cd6d30f4
Commit
cd6d30f4
authored
12 years ago
by
Guillaume Pasero
Browse files
Options
Downloads
Patches
Plain Diff
ENH: DisparityMapToDEMFilter : implement fake ThreadedGenerateData (WIP)
parent
72d59938
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
Code/DisparityMap/otbDisparityMapToDEMFilter.txx
+154
-3
154 additions, 3 deletions
Code/DisparityMap/otbDisparityMapToDEMFilter.txx
Code/DisparityMap/otbPixelWiseBlockMatchingImageFilter.txx
+0
-239
0 additions, 239 deletions
Code/DisparityMap/otbPixelWiseBlockMatchingImageFilter.txx
with
154 additions
and
242 deletions
Code/DisparityMap/otbDisparityMapToDEMFilter.txx
+
154
−
3
View file @
cd6d30f4
...
...
@@ -19,7 +19,7 @@
#define __otbDisparityMapToDEMFilter_txx
#include "otbDisparityMapToDEMFilter.h"
//
#include "itkImage
Region
ConstIterator.h"
#include "itkImageConstIterator
WithIndex
.h"
// #include "itkImageRegionIterator.h"
// #include "itkProgressReporter.h"
// #include "itkConstantBoundaryCondition.h"
...
...
@@ -375,7 +375,7 @@ void
DisparityMapToDEMFilter<TDisparityImage,TInputImage,TOutputDEMImage,TEpipolarGridImage,TMaskImage>
::GenerateInputRequestedRegion()
{
// For the epi grid : generate full buffer
// For the epi grid : generate full buffer
here !
TEpipolarGridImage * leftGrid = const_cast<TEpipolarGridImage*>(this->GetLeftEpipolarGridInput());
TEpipolarGridImage * rightGrid = const_cast<TEpipolarGridImage*>(this->GetRightEpipolarGridInput());
...
...
@@ -496,7 +496,7 @@ DisparityMapToDEMFilter<TDisparityImage,TInputImage,TOutputDEMImage,TEpipolarGri
gridIndex[1] = minGridIndex[1];
//we assume 3 iterations are enough to find the 4 surrounding pixels
for (unsigned int s=0; s<
2
; s++)
for (unsigned int s=0; s<
3
; s++)
{
gridIndexU[0] = gridIndex[0] + 1;
gridIndexU[1] = gridIndex[1];
...
...
@@ -618,6 +618,157 @@ void
DisparityMapToDEMFilter<TDisparityImage,TInputImage,TOutputDEMImage,TEpipolarGridImage,TMaskImage>
::ThreadedGenerateData(const RegionType & outputRegionForThread, int threadId)
{
const TDisparityImage * horizDisp = this->GetHorizontalDisparityMapInput();
const TDisparityImage * vertiDisp = this->GetVerticalDisparityMapInput();
const TInputImage * leftSensor = this->GetLeftInput();
const TInputImage * rightSensor = this->GetRightInput();
RSTransformType::Pointer leftToGroundTransform = RSTransformType::New();
RSTransformType::Pointer rightToGroundTransform = RSTransformType::New();
leftToGroundTransform->SetInputKeywordList(leftSensor->GetImageKeywordlist());
rightToGroundTransform->SetInputKeywordList(rightSensor->GetImageKeywordlist());
if(m_DEMDirectory!="")
{
leftToGroundTransform->SetDEMDirectory(m_DEMDirectory);
rightToGroundTransform->SetDEMDirectory(m_DEMDirectory);
}
if(m_GeoidFile!="")
{
leftToGroundTransform->SetGeoidFile(m_GeoidFile);
rightToGroundTransform->SetGeoidFile(m_GeoidFile);
}
leftToGroundTransform->InstanciateTransform();
rightToGroundTransform->InstanciateTransform();
const TEpipolarGridImage * leftGrid = this->GetLeftEpipolarGridInput();
const TEpipolarGridImage * rightGrid = this->GetRightEpipolarGridInput();
typename TEpipolarGridImage::RegionType gridRegion = leftGrid->GetLargestPossibleRegion();
// TODO : replace by sub region for thread
typename TDisparityImage::RegionType disparityRegion = horizDisp->GetRequestedRegion();
itk::ImageRegionConstIteratorWithIndex<DisparityMapType> horizIt(horizDisp,disparityRegion);
itk::ImageRegionConstIteratorWithIndex<DisparityMapType> vertiIt(vertiDisp,disparityRegion);
horizIt.GoToBegin();
vertiIt.GoToBegin();
typename TDisparityImage::PointType epiPoint;
itk::ContinuousIndex<double,2> gridIndexConti;
double subPixIndex[2];
typename GridImageType::IndexType ulIndex, urIndex, lrIndex, llIndex;
typename GridImageType::PixelType ulPixel(2);
typename GridImageType::PixelType urPixel(2);
typename GridImageType::PixelType lrPixel(2);
typename GridImageType::PixelType llPixel(2);
typename GridImageType::PixelType cPixel(2);
TDPointType sensorPoint;
TDPointType leftGroundHmin;
TDPointType leftGroundHmax;
TDPointType rightGroundHmin;
TDPointType rightGroundHmax;
while (!horizIt.IsAtEnd() && !vertiIt.IsAtEnd())
{
// TODO : if mask, check value and skip iteration if mask value is not valid
// compute left ray
horizDisp->TransformIndexToPhysicalPoint(horizIt.GetIndex(),epiPoint);
leftGrid->TransformPhysicalPointToContinuousIndex(epiPoint,gridIndexConti);
ulIndex[0] = static_cast<int>(vcl_floor(gridIndexConti[0]));
ulIndex[1] = static_cast<int>(vcl_floor(gridIndexConti[1]));
if (ulIndex[0] < gridRegion.GetIndex(0)) ulIndex[0] = gridRegion.GetIndex(0);
if (ulIndex[1] < gridRegion.GetIndex(1)) ulIndex[1] = gridRegion.GetIndex(1);
if (ulIndex[0] > (gridRegion.GetIndex(0) + gridRegion.GetSize(0) - 2))
{
ulIndex[0] = gridRegion.GetIndex(0) + gridRegion.GetSize(0) - 2;
}
if (ulIndex[1] > (gridRegion.GetIndex(1) + gridRegion.GetSize(1) - 2))
{
ulIndex[1] = gridRegion.GetIndex(1) + gridRegion.GetSize(1) - 2;
}
urPixel[0] = ulIndex[0] + 1;
urPixel[1] = ulIndex[1];
lrPixel[0] = ulIndex[0] + 1;
lrPixel[1] = ulIndex[1] + 1;
llPixel[0] = ulIndex[0];
llPixel[1] = ulIndex[1] + 1;
subPixIndex[0] = gridIndexConti[0] - static_cast<double>(ulIndex[0]);
subPixIndex[1] = gridIndexConti[1] - static_cast<double>(ulIndex[1]);
ulPixel = leftGrid->GetPixel(ulIndex);
urPixel = leftGrid->GetPixel(urIndex);
lrPixel = leftGrid->GetPixel(lrIndex);
llPixel = leftGrid->GetPixel(llIndex);
cPixel = (ulPixel * (1.0 - subPixIndex[0]) + urPixel * subPixIndex[0]) * (1.0 - subPixIndex[1]) +
(llPixel * (1.0 - subPixIndex[0]) + lrPixel * subPixIndex[0]) * subPixIndex[1];
sensorPoint[0] = cPixel[0];
sensorPoint[1] = cPixel[1];
sensorPoint[2] = m_ElevationMin;
leftGroundHmin = leftToGroundTransform->TransformPoint(sensorPoint);
sensorPoint[2] = m_ElevationMax;
leftGroundHmax = leftToGroundTransform->TransformPoint(sensorPoint);
// compute right ray
rightGrid->TransformPhysicalPointToContinuousIndex(epiPoint,gridIndexConti);
ulIndex[0] = static_cast<int>(vcl_floor(gridIndexConti[0]));
ulIndex[1] = static_cast<int>(vcl_floor(gridIndexConti[1]));
if (ulIndex[0] < gridRegion.GetIndex(0)) ulIndex[0] = gridRegion.GetIndex(0);
if (ulIndex[1] < gridRegion.GetIndex(1)) ulIndex[1] = gridRegion.GetIndex(1);
if (ulIndex[0] > (gridRegion.GetIndex(0) + gridRegion.GetSize(0) - 2))
{
ulIndex[0] = gridRegion.GetIndex(0) + gridRegion.GetSize(0) - 2;
}
if (ulIndex[1] > (gridRegion.GetIndex(1) + gridRegion.GetSize(1) - 2))
{
ulIndex[1] = gridRegion.GetIndex(1) + gridRegion.GetSize(1) - 2;
}
urPixel[0] = ulIndex[0] + 1;
urPixel[1] = ulIndex[1];
lrPixel[0] = ulIndex[0] + 1;
lrPixel[1] = ulIndex[1] + 1;
llPixel[0] = ulIndex[0];
llPixel[1] = ulIndex[1] + 1;
subPixIndex[0] = gridIndexConti[0] - static_cast<double>(ulIndex[0]);
subPixIndex[1] = gridIndexConti[1] - static_cast<double>(ulIndex[1]);
ulPixel = rightGrid->GetPixel(ulIndex);
urPixel = rightGrid->GetPixel(urIndex);
lrPixel = rightGrid->GetPixel(lrIndex);
llPixel = rightGrid->GetPixel(llIndex);
cPixel = (ulPixel * (1.0 - subPixIndex[0]) + urPixel * subPixIndex[0]) * (1.0 - subPixIndex[1]) +
(llPixel * (1.0 - subPixIndex[0]) + lrPixel * subPixIndex[0]) * subPixIndex[1];
sensorPoint[0] = cPixel[0];
sensorPoint[1] = cPixel[1];
sensorPoint[2] = m_ElevationMin;
rightGroundHmin = rightToGroundTransform->TransformPoint(sensorPoint);
sensorPoint[2] = m_ElevationMax;
rightGroundHmax = rightToGroundTransform->TransformPoint(sensorPoint);
// Compute ray intersection
// Optimise position ?
// Is point inside DEM area ?
// Add point to its corresponding cell (keep maximum)
++horizIt;
++vertiIt;
}
// TODO
}
...
...
This diff is collapsed.
Click to expand it.
Code/DisparityMap/otbPixelWiseBlockMatchingImageFilter.txx
+
0
−
239
View file @
cd6d30f4
...
...
@@ -60,8 +60,6 @@ TOutputDisparityImage,TMaskImage,TBlockMatchingFunctor>
// Default exploration radius : 0 (not used)
m_ExplorationRadius.Fill(0);
// m_DoSubPixelInterpolation = false;
}
...
...
@@ -677,245 +675,8 @@ TOutputDisparityImage,TMaskImage,TBlockMatchingFunctor>
}
}
// // subpixel interpolation case
// if (m_DoSubPixelInterpolation)
// {
// itk::ConstNeighborhoodIterator<TInputImage> leftIt(m_Radius,inLeftPtr,outputRegionForThread);
// itk::ImageRegionIterator<TOutputDisparityImage> outHDispIt(outHDispPtr,outputRegionForThread);
// itk::ImageRegionIterator<TOutputDisparityImage> outVDispIt(outVDispPtr,outputRegionForThread);
// itk::ImageRegionIterator<TOutputMetricImage> outMetricIt(outMetricPtr,outputRegionForThread);
//
// itk::ConstantBoundaryCondition<TInputImage> nbc1;
// leftIt.OverrideBoundaryCondition(&nbc1);
//
// leftIt.GoToBegin();
// outHDispIt.GoToBegin();
// outVDispIt.GoToBegin();
// outMetricIt.GoToBegin();
//
// while (!leftIt.IsAtEnd()
// || !outHDispIt.IsAtEnd()
// || !outVDispIt.IsAtEnd()
// || !outMetricIt.IsAtEnd())
// {
// bool isInterpolated = InterpolateSubPixelPosition(leftIt,outHDispIt,outVDispIt,outMetricIt);
//
// ++leftIt;
// ++outHDispIt;
// ++outVDispIt;
// ++outMetricIt;
// }
//
// }
}
// template <class TInputImage, class TOutputMetricImage,
// class TOutputDisparityImage, class TMaskImage, class TBlockMatchingFunctor>
// bool
// PixelWiseBlockMatchingImageFilter<TInputImage,TOutputMetricImage,
// TOutputDisparityImage,TMaskImage,TBlockMatchingFunctor>
// ::InterpolateSubPixelPosition(ConstNeighborhoodIteratorType & leftPatch,
// itk::ImageRegionIterator<OutputDisparityImageType> & hDispIt,
// itk::ImageRegionIterator<OutputDisparityImageType> & vDispIt,
// itk::ImageRegionIterator<OutputMetricImageType> & metricIt)
// {
// IndexType curLeftPos = leftPatch.GetIndex();
// SizeType curRadius = leftPatch.GetRadius();
//
// const TInputImage * inRightPtr = this->GetRightInput();
// RegionType rightLargestRegion = inRightPtr->GetLargestPossibleRegion();
//
// float hDisp_f = static_cast<float>(hDispIt.Get());
// float vDisp_f = static_cast<float>(vDispIt.Get());
//
// int hDisp_i = static_cast<int>(vcl_floor(hDisp_f + 0.5));
// int vDisp_i = static_cast<int>(vcl_floor(vDisp_f + 0.5));
//
// IndexType curRightPos(curLeftPos);
// curRightPos[0]+=hDisp_i;
// curRightPos[1]+=vDisp_i;
//
// // check if the current right position is inside the right image
// if (!rightLargestRegion.IsInside(curRightPos))
// {
// return false;
// }
//
// // compute metric around current right position
// bool horizontalInterpolation = false;
// bool verticalInterpolation = false;
//
// // metrics for neighbors positions, sorted like this :
// // [up,up-right,right,down-right,down,down-left,left,up-left]
// double neighborsMetric[8] = {0,0,0,0,0,0,0,0};
// int firstNeighbor = 0;
// int stepNeighbor = 4;
//
// RegionType smallRightRegion;
// smallRightRegion.SetIndex(0,curRightPos[0]-1);
// smallRightRegion.SetIndex(1,curRightPos[1]-1);
// smallRightRegion.SetSize(0,3);
// smallRightRegion.SetSize(1,3);
//
// itk::ConstNeighborhoodIterator<TInputImage> rightIt(curRadius,inRightPtr,smallRightRegion);
//
// if (m_MinimumVerticalDisparity < vDisp_i && vDisp_i < m_MaximumVerticalDisparity)
// {
// IndexType upIndex(curRightPos);
// upIndex[1]+= (-1);
// IndexType downIndex(curRightPos);
// downIndex[1]+= 1;
// if ( rightLargestRegion.IsInside(upIndex) && rightLargestRegion.IsInside(downIndex) )
// {
// verticalInterpolation = true;
//
// rightIt.SetLocation(upIndex);
// neighborsMetric[0] = m_Functor(leftPatch,rightIt);
//
// rightIt.SetLocation(downIndex);
// neighborsMetric[4] = m_Functor(leftPatch,rightIt);
//
// }
// }
//
// if (m_MinimumHorizontalDisparity < hDisp_i && hDisp_i < m_MaximumHorizontalDisparity)
// {
// IndexType leftIndex(curRightPos);
// leftIndex[0]+= (-1);
// IndexType rightIndex(curRightPos);
// rightIndex[0]+= 1;
// if ( rightLargestRegion.IsInside(leftIndex) && rightLargestRegion.IsInside(rightIndex) )
// {
// horizontalInterpolation = true;
// firstNeighbor = 2;
//
// rightIt.SetLocation(rightIndex);
// neighborsMetric[2] = m_Functor(leftPatch,rightIt);
//
// rightIt.SetLocation(leftIndex);
// neighborsMetric[6] = m_Functor(leftPatch,rightIt);
//
// }
// }
//
// if ( !verticalInterpolation && !horizontalInterpolation)
// {
// return false;
// }
//
// // if both vertical and horizontal interpolation, compute metrics on corners
// if (verticalInterpolation && horizontalInterpolation)
// {
// firstNeighbor = 0;
// stepNeighbor = 1;
//
// IndexType uprightIndex(curRightPos);
// uprightIndex[0]+= 1;
// uprightIndex[1]+= (-1);
// rightIt.SetLocation(uprightIndex);
// neighborsMetric[1] = m_Functor(leftPatch,rightIt);
//
// IndexType downrightIndex(curRightPos);
// downrightIndex[0]+= 1;
// downrightIndex[1]+= 1;
// rightIt.SetLocation(downrightIndex);
// neighborsMetric[3] = m_Functor(leftPatch,rightIt);
//
// IndexType downleftIndex(curRightPos);
// downleftIndex[0]+= (-1);
// downleftIndex[1]+= 1;
// rightIt.SetLocation(downleftIndex);
// neighborsMetric[5] = m_Functor(leftPatch,rightIt);
//
// IndexType upleftIndex(curRightPos);
// upleftIndex[0]+= (-1);
// upleftIndex[1]+= (-1);
// rightIt.SetLocation(upleftIndex);
// neighborsMetric[7] = m_Functor(leftPatch,rightIt);
// }
//
// // check if the position is a minimum (or maximum if !m_Minimize)
// double curMetric = metricIt.Get();
// for (unsigned int i=firstNeighbor; i<8; i+=stepNeighbor)
// {
// if (m_Minimize)
// {
// if (curMetric > neighborsMetric[i])
// {
// return false;
// }
// }
// else
// {
// if (curMetric < neighborsMetric[i])
// {
// return false;
// }
// }
// }
//
//
// // Interpolate position : parabola fit
// if (verticalInterpolation && !horizontalInterpolation)
// {
// //vertical only
// double deltaV = 0.5 - (1.0 / (1.0 + (neighborsMetric[0]-curMetric) / (neighborsMetric[4]-curMetric)));
// if (deltaV > (-0.5) && deltaV < 0.5)
// {
// vDispIt.Set( static_cast<double>(vDisp_i) + deltaV);
// }
// else
// {
// return false;
// }
// }
// else if (!verticalInterpolation && horizontalInterpolation)
// {
// // horizontal only
// double deltaH = 0.5 - (1.0 / (1.0 + (neighborsMetric[6]-curMetric) / (neighborsMetric[2]-curMetric)));
// if (deltaH > (-0.5) && deltaH < 0.5)
// {
// hDispIt.Set( static_cast<double>(hDisp_i) + deltaH);
// }
// else
// {
// return false;
// }
// }
// else
// {
// //both horizontal and vertical
// double dx = 0.5 * (neighborsMetric[2] - neighborsMetric[6]);
// double dy = 0.5 * (neighborsMetric[4] - neighborsMetric[0]);
// double dxx = neighborsMetric[2] + neighborsMetric[6] - 2.0 * curMetric;
// double dyy = neighborsMetric[4] + neighborsMetric[0] - 2.0 * curMetric;
// double dxy = 0.25 * (neighborsMetric[3] + neighborsMetric[7] - neighborsMetric[1] - neighborsMetric[5]);
// double det = dxx*dyy - dxy*dxy;
// if (vcl_abs(det) < (1e-10))
// {
// return false;
// }
// else
// {
// double deltaH = (-dx * dyy + dy * dxy )/det;
// double deltaV = ( dx * dxy - dy * dxx )/det;
// if (deltaH > (-1.0) && deltaH < 1.0 && deltaV > (-1.0) && deltaV < 1.0)
// {
// hDispIt.Set( static_cast<double>(hDisp_i) + deltaH);
// vDispIt.Set( static_cast<double>(vDisp_i) + deltaV);
// }
// else
// {
// return false;
// }
// }
// }
//
// return true;
// }
} // End namespace otb
#endif
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