Skip to content

Commit

Permalink
Merge branch 'infinitam_v3' of https://github.com/victorprad/InfiniTA…
Browse files Browse the repository at this point in the history
…M_private into v3_libroyale
  • Loading branch information
victorprad committed Jan 23, 2017
2 parents ba32068 + f0caff2 commit e3fb51d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion InfiniTAM/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ ENDIF()
######################

ADD_SUBDIRECTORY(Apps)
ADD_SUBDIRECTORY(FernRelocLib)
ADD_SUBDIRECTORY(InputSource)
ADD_SUBDIRECTORY(ITMLib)
ADD_SUBDIRECTORY(MiniSlamGraphLib)
ADD_SUBDIRECTORY(ORUtils)
ADD_SUBDIRECTORY(FernRelocLib)
6 changes: 3 additions & 3 deletions InfiniTAM/FernRelocLib/PixelUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace FernRelocLib
}
}

inline void filterSeparable_x(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char>> *output, int masksize, const float *coeff)
inline void filterSeparable_x(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char> > *output, int masksize, const float *coeff)
{
int s2 = masksize / 2;
ORUtils::Vector2<int> imgSize = input->noDims;
Expand Down Expand Up @@ -118,7 +118,7 @@ namespace FernRelocLib
}
}

inline void filterSeparable_y(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char>> *output, int masksize, const float *coeff)
inline void filterSeparable_y(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char> > *output, int masksize, const float *coeff)
{
int s2 = masksize / 2;
ORUtils::Vector2<int> imgSize = input->noDims;
Expand Down Expand Up @@ -198,7 +198,7 @@ namespace FernRelocLib
}
}

inline void filterSubsample(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char>> *output) {
inline void filterSubsample(const ORUtils::Image< ORUtils::Vector4<unsigned char> > *input, ORUtils::Image<ORUtils::Vector4<unsigned char> > *output) {
ORUtils::Vector2<int> imgSize_in = input->noDims;
ORUtils::Vector2<int> imgSize_out(imgSize_in.x / 2, imgSize_in.y / 2);
output->ChangeDims(imgSize_out, true);
Expand Down
2 changes: 2 additions & 0 deletions InfiniTAM/FernRelocLib/Relocaliser.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#pragma once

#include <fstream>

#include "FernConservatory.h"
#include "RelocDatabase.h"
#include "PoseDatabase.h"
Expand Down

0 comments on commit e3fb51d

Please sign in to comment.