Skip to content
Snippets Groups Projects
Commit cf47c876 authored by marco's avatar marco
Browse files

uncomment export of RealSpatialCrossCorrelation

this possibly breaks compilation on Windows

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@1837 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 1ed0f28a
Branches
Tags
No related merge requests found
......@@ -105,23 +105,21 @@ void frac_shift5(FractionalShift* s, const Vec3& v)
{
s->SetShift(v);
}
/*
Real real_spatial_cross_correlation_1 (const ConstImageHandle& image1, const ConstImageHandle& image2)
{
return ost::img::alg::RealSpatialCrossCorrelation(image1,image2);
}
Real real_spatial_cross_correlation_1 (const ConstImageHandle& image1, const ConstImageHandle& image2)
Real real_spatial_cross_correlation_1(const ConstImageHandle& image1,
const ConstImageHandle& image2)
{
return RealSpatialCrossCorrelation(image1,image2);
}
Real real_spatial_cross_correlation_2(const ConstImageHandle& image1, const ConstImageHandle& image2, const Extent& extent)
Real real_spatial_cross_correlation_2(const ConstImageHandle& image1,
const ConstImageHandle& image2,
const Extent& extent)
{
return ost::img::alg::RealSpatialCrossCorrelation(image1,image2,extent);
return RealSpatialCrossCorrelation(image1,image2,extent);
}
*/
} //anon ns
BOOST_PYTHON_MODULE(_img_alg)
......@@ -256,8 +254,8 @@ BOOST_PYTHON_MODULE(_img_alg)
.def("GetGeometry",&LineAverage::GetGeometry)
.def("SetGeometry",&LineAverage::SetGeometry)
;
// def("RealSpatialCrossCorrelation",real_spatial_cross_correlation_1);
// def("RealSpatialCrossCorrelation",real_spatial_cross_correlation_2);
def("RealSpatialCrossCorrelation",real_spatial_cross_correlation_1);
def("RealSpatialCrossCorrelation",real_spatial_cross_correlation_2);
class_<HighestPeakSearch3D, bases<NonModAlgorithm> >("HighestPeakSearch3D" ,init<int,int,Real>())
.def(init<int,int>())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment