Skip to content

Commit

Permalink
Adding result videos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariusz Reichert committed Dec 11, 2017
1 parent e66efd3 commit 8a04634
Show file tree
Hide file tree
Showing 305 changed files with 13,167 additions and 8 deletions.
2 changes: 1 addition & 1 deletion extended-kalman-filters/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(sources
src/tools.cpp
src/io.cpp
src/kalman_filter.cpp
src/main-for-simulator.cpp)
src/main-for-simulation.cpp)


if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
Expand Down
Binary file added model-predictive-control/result.mp4
Binary file not shown.
Binary file added particle-filter/result.mp4
Binary file not shown.
4 changes: 2 additions & 2 deletions particle-filter/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ int main(int argc, char* argv[]) {
weight_sum += pf.GetParticles()[i].weight;
}

cout << "highest w " << highest_weight << endl;
cout << "average w " << weight_sum/kNUM_PARTICLES << endl;
cout << "highest weight = " << highest_weight << endl;
cout << "average weight = " << weight_sum/kNUM_PARTICLES << endl << endl;

nlohmann::json jsonMsg;
jsonMsg["best_particle_x"] = pf.GetParticles()[best_particle_idx].x;
Expand Down
Binary file added path-planning/result.mp4
Binary file not shown.
Binary file added pid-controller/result.mp4
Binary file not shown.
2 changes: 1 addition & 1 deletion semantic-segmentation/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def run():
num_classes = 2
image_shape = (160, 576)
data_dir = './data'
runs_dir = './runs'
runs_dir = './result'
#
EPOCHS = 20
BATCH_SIZE = 7
Expand Down
19 changes: 18 additions & 1 deletion unscented-kalman-filters/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,27 @@ cmake_minimum_required (VERSION 3.5)

add_definitions(-std=c++14)

set(CXX_FLAGS "-Wall")
set(CMAKE_CXX_FLAGS, "${CXX_FLAGS}")

set(sources
src/tools.cpp
src/io.cpp
src/unscented_kalman_filter.cpp
src/main.cpp)
src/main-for-simulation.cpp)


if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")

include_directories(/usr/local/include)
include_directories(/usr/local/opt/openssl/include)
link_directories(/usr/local/lib)
link_directories(/usr/local/opt/openssl/lib)
link_directories(/usr/local/Cellar/libuv/1*/lib)

endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")


add_executable(UnscentedKF ${sources})

target_link_libraries(UnscentedKF z ssl uv uWS)
Loading

0 comments on commit 8a04634

Please sign in to comment.