fixed some small issues regarding museum project
This commit is contained in:
4
main.cpp
4
main.cpp
@@ -99,7 +99,7 @@ int main(int argc, char** argv) {
|
|||||||
//::testing::GTEST_FLAG(filter) = "*Dijkstra.*";
|
//::testing::GTEST_FLAG(filter) = "*Dijkstra.*";
|
||||||
|
|
||||||
//::testing::GTEST_FLAG(filter) = "*LogDistanceCeilingModelBeacon*";
|
//::testing::GTEST_FLAG(filter) = "*LogDistanceCeilingModelBeacon*";
|
||||||
//::testing::GTEST_FLAG(filter) = "*WiFiOptimizer*";
|
::testing::GTEST_FLAG(filter) = "*WiFiOptimizer*";
|
||||||
|
|
||||||
|
|
||||||
//::testing::GTEST_FLAG(filter) = "*Offline.readWrite*";
|
//::testing::GTEST_FLAG(filter) = "*Offline.readWrite*";
|
||||||
@@ -109,7 +109,7 @@ int main(int argc, char** argv) {
|
|||||||
//::testing::GTEST_FLAG(filter) = "*Matrix4*";
|
//::testing::GTEST_FLAG(filter) = "*Matrix4*";
|
||||||
//::testing::GTEST_FLAG(filter) = "*Sphere3*";
|
//::testing::GTEST_FLAG(filter) = "*Sphere3*";
|
||||||
|
|
||||||
::testing::GTEST_FLAG(filter) = "NavMeshD*";
|
//::testing::GTEST_FLAG(filter) = "NavMeshD*";
|
||||||
//::testing::GTEST_FLAG(filter) = "Timestamp*";
|
//::testing::GTEST_FLAG(filter) = "Timestamp*";
|
||||||
|
|
||||||
//::testing::GTEST_FLAG(filter) = "*RayTrace3*";
|
//::testing::GTEST_FLAG(filter) = "*RayTrace3*";
|
||||||
|
|||||||
@@ -23,10 +23,6 @@ public:
|
|||||||
RealArray2D kernelReal;
|
RealArray2D kernelReal;
|
||||||
ComplexArray2D kernelSpectrum;
|
ComplexArray2D kernelSpectrum;
|
||||||
|
|
||||||
|
|
||||||
signal.data().data
|
|
||||||
|
|
||||||
|
|
||||||
//convert image2d single vector to 2d vector, just use pointers
|
//convert image2d single vector to 2d vector, just use pointers
|
||||||
int signal_x = signal.width;
|
int signal_x = signal.width;
|
||||||
int signal_y = signal.height;
|
int signal_y = signal.height;
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace NM {
|
|||||||
/** algorithm choice */
|
/** algorithm choice */
|
||||||
SamplePartitionType partitionType = SamplePartitionType::SAMPLE_PARTITION_WATERSHED;
|
SamplePartitionType partitionType = SamplePartitionType::SAMPLE_PARTITION_WATERSHED;
|
||||||
|
|
||||||
float regionMinSize = 8; // (isolated) regions smaller than this will not be rendered?!
|
float regionMinSize = 80; // (isolated) regions smaller than this will not be rendered?!
|
||||||
|
|
||||||
|
|
||||||
const float regionMergeSize = 20; //??
|
const float regionMergeSize = 20; //??
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
#include "ParticleFilterResampling.h"
|
#include "ParticleFilterResampling.h"
|
||||||
#include "../../ParticleAssertions.h"
|
#include "../../ParticleAssertions.h"
|
||||||
|
#include "../../../Assertions.h"
|
||||||
|
|
||||||
int fuck_off = 0;
|
int fuck_off = 0;
|
||||||
|
|
||||||
@@ -39,7 +40,7 @@ namespace SMC {
|
|||||||
|
|
||||||
|
|
||||||
void resample(std::vector<Particle<State>>& particles) override{
|
void resample(std::vector<Particle<State>>& particles) override{
|
||||||
|
Assert::doThrow("lol, nothing happens here. Get out!");
|
||||||
}
|
}
|
||||||
|
|
||||||
void resample(std::vector<Particle<State>>& particles, double kld, std::vector<Particle<State>>& particlesWifi) override {
|
void resample(std::vector<Particle<State>>& particles, double kld, std::vector<Particle<State>>& particlesWifi) override {
|
||||||
@@ -101,7 +102,7 @@ namespace SMC {
|
|||||||
Particle<State> posteriorParticle = draw(cumWeight);
|
Particle<State> posteriorParticle = draw(cumWeight);
|
||||||
Particle<State> wifiParticle = drawWifi(cumWeightWifi);
|
Particle<State> wifiParticle = drawWifi(cumWeightWifi);
|
||||||
|
|
||||||
posteriorParticle.state.position = wifiParticle.state.position;
|
posteriorParticle.state.pos.pos = wifiParticle.state.pos.pos;
|
||||||
particles[i] = posteriorParticle;
|
particles[i] = posteriorParticle;
|
||||||
} else {
|
} else {
|
||||||
particles[i] = draw(cumWeight);
|
particles[i] = draw(cumWeight);
|
||||||
|
|||||||
@@ -48,11 +48,11 @@ namespace SMC {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
/** ctor */
|
/** ctor */
|
||||||
ParticleFilterResamplingKLD(double delta = 0.01, double epsilon = 0.13, uint32_t N_max = 25000) : delta(delta), epsilon(epsilon), N_max(N_max) {
|
ParticleFilterResamplingKLD(double delta = 0.01, double epsilon = 0.13, uint32_t N_max = 10000) : delta(delta), epsilon(epsilon), N_max(N_max) {
|
||||||
gen.seed(RANDOM_SEED);
|
gen.seed(RANDOM_SEED);
|
||||||
|
|
||||||
bins.setBinSizes({0.01, 0.01, 0.2, 0.3});
|
bins.setBinSizes({0.01, 0.01, 0.2});
|
||||||
bins.setRanges({BinningRange(-1,100), BinningRange(-10,60), BinningRange(-1,15), BinningRange(0, 2 * M_PI)});
|
bins.setRanges({BinningRange(-1,100), BinningRange(-10,60), BinningRange(-1,15)});
|
||||||
}
|
}
|
||||||
|
|
||||||
void resample(std::vector<Particle<State>>& particles) override {
|
void resample(std::vector<Particle<State>>& particles) override {
|
||||||
|
|||||||
Reference in New Issue
Block a user