diff --git a/flake.nix b/flake.nix index 315e650..62787cb 100644 --- a/flake.nix +++ b/flake.nix @@ -71,6 +71,7 @@ mpi # whatever spdlog is spdlog + graphicsmagick ] ++ [ ## Phython stuff for plotting (python3.withPackages (ps: with ps; with python3Packages; [ diff --git a/raytracer/ray_tracing_gltf/main.cpp b/raytracer/ray_tracing_gltf/main.cpp index c11ffa3..856a9da 100644 --- a/raytracer/ray_tracing_gltf/main.cpp +++ b/raytracer/ray_tracing_gltf/main.cpp @@ -162,7 +162,7 @@ int main(int argc, char** argv) // Creation of the example //FIXME: HERE WE CAN LOAD THE SCENE std::cout << "Using pointset " << argv[1] << std::endl; - helloVk.loadScene(nvh::findFile("media/scenes/grid.gltf", defaultSearchPaths, true), argv[1]); + helloVk.loadScene(nvh::findFile("media/scenes/lumberyard.gltf", defaultSearchPaths, true), argv[1]); // Setup camera CameraManip.setWindowSize(SAMPLE_WIDTH, SAMPLE_HEIGHT); diff --git a/raytracer/ray_tracing_gltf/shaders/raytrace.rgen b/raytracer/ray_tracing_gltf/shaders/raytrace.rgen index 510c13e..d94919b 100644 --- a/raytracer/ray_tracing_gltf/shaders/raytrace.rgen +++ b/raytracer/ray_tracing_gltf/shaders/raytrace.rgen @@ -42,11 +42,11 @@ void main() { //TODO: LOAD FROM BLUE NOISE POINTSET - //const vec2 rayOriginInPix = vec2(gl_LaunchIDEXT.xy) + pointset[gl_LaunchIDEXT.x + WINDOWSIZE * gl_LaunchIDEXT.y].xy; - uint seed = tea(gl_LaunchIDEXT.y * gl_LaunchSizeEXT.x + gl_LaunchIDEXT.x, int(clockARB())); - float x = rnd(seed); - float y = rnd(seed); - const vec2 rayOriginInPix = vec2(gl_LaunchIDEXT.xy) + vec2(x, y); + const vec2 rayOriginInPix = vec2(gl_LaunchIDEXT.xy) + pointset[gl_LaunchIDEXT.x + WINDOWSIZE * gl_LaunchIDEXT.y].xy; + // uint seed = tea(gl_LaunchIDEXT.y * gl_LaunchSizeEXT.x + gl_LaunchIDEXT.x, int(clockARB())); + // float x = rnd(seed); + // float y = rnd(seed); + // const vec2 rayOriginInPix = vec2(gl_LaunchIDEXT.xy) + vec2(x, y); const vec2 inUV = rayOriginInPix / vec2(gl_LaunchSizeEXT.xy); vec2 d = inUV * 2.0 - 1.0; diff --git a/utk_experiments/result_data/result_images/bistro/converged_green.png b/utk_experiments/result_data/result_images/bistro/converged_green.png new file mode 100644 index 0000000..3ebc6a3 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/converged_green.png differ diff --git a/utk_experiments/result_data/result_images/bistro/converged_green.png~ b/utk_experiments/result_data/result_images/bistro/converged_green.png~ new file mode 100644 index 0000000..2229183 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/converged_green.png~ differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:54:19,519597719+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:54:19,519597719+02:00.png new file mode 100644 index 0000000..dda9df3 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:54:19,519597719+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:00,202483425+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:00,202483425+02:00.png new file mode 100644 index 0000000..41fd38e Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:00,202483425+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:41,280927895+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:41,280927895+02:00.png new file mode 100644 index 0000000..f6c7b1d Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:55:41,280927895+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:56:17,720688641+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:56:17,720688641+02:00.png new file mode 100644 index 0000000..85f58d1 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:56:17,720688641+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:57:04,178794430+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:57:04,178794430+02:00.png new file mode 100644 index 0000000..8dcc957 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:57:04,178794430+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:03,796868734+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:03,796868734+02:00.png new file mode 100644 index 0000000..edbd92c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:03,796868734+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:33,957902229+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:33,957902229+02:00.png new file mode 100644 index 0000000..914155f Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:58:33,957902229+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:05,695758958+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:05,695758958+02:00.png new file mode 100644 index 0000000..14719c0 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:05,695758958+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:41,507842402+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:41,507842402+02:00.png new file mode 100644 index 0000000..f372a92 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T16:59:41,507842402+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:17,251761733+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:17,251761733+02:00.png new file mode 100644 index 0000000..2c6ab45 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:17,251761733+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:54,185521343+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:54,185521343+02:00.png new file mode 100644 index 0000000..7360d53 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:00:54,185521343+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:01:32,495704748+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:01:32,495704748+02:00.png new file mode 100644 index 0000000..859a840 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:01:32,495704748+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:09,658734315+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:09,658734315+02:00.png new file mode 100644 index 0000000..596de04 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:09,658734315+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:57,438589096+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:57,438589096+02:00.png new file mode 100644 index 0000000..3153ac7 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:02:57,438589096+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:03:40,920521251+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:03:40,920521251+02:00.png new file mode 100644 index 0000000..0975400 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:03:40,920521251+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:04:31,690128893+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:04:31,690128893+02:00.png new file mode 100644 index 0000000..e89b19c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:04:31,690128893+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:06,693774421+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:06,693774421+02:00.png new file mode 100644 index 0000000..764cde3 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:06,693774421+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:43,146738852+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:43,146738852+02:00.png new file mode 100644 index 0000000..921fac0 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:05:43,146738852+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:19,335997008+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:19,335997008+02:00.png new file mode 100644 index 0000000..0dbc092 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:19,335997008+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:54,155805832+02:00.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:54,155805832+02:00.png new file mode 100644 index 0000000..a2a334c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/2024-08-31T17:06:54,155805832+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-0.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-0.png new file mode 100644 index 0000000..76fc0a9 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-0.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-1.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-1.png new file mode 100644 index 0000000..776a94c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-1.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-10.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-10.png new file mode 100644 index 0000000..81c7486 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-10.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-11.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-11.png new file mode 100644 index 0000000..678a1d6 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-11.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-12.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-12.png new file mode 100644 index 0000000..00923ed Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-12.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-13.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-13.png new file mode 100644 index 0000000..6c906ab Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-13.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-14.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-14.png new file mode 100644 index 0000000..6db9407 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-14.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-15.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-15.png new file mode 100644 index 0000000..8b7edb0 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-15.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-16.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-16.png new file mode 100644 index 0000000..5d3ccea Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-16.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-17.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-17.png new file mode 100644 index 0000000..fd963d5 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-17.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-18.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-18.png new file mode 100644 index 0000000..a9aecf4 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-18.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-19.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-19.png new file mode 100644 index 0000000..aef13b0 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-19.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-2.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-2.png new file mode 100644 index 0000000..ecca3c1 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-2.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-3.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-3.png new file mode 100644 index 0000000..68c716a Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-3.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-4.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-4.png new file mode 100644 index 0000000..53d7b2f Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-4.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-5.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-5.png new file mode 100644 index 0000000..2a71fe6 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-5.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-6.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-6.png new file mode 100644 index 0000000..1de954e Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-6.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-7.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-7.png new file mode 100644 index 0000000..025e96b Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-7.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-8.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-8.png new file mode 100644 index 0000000..317e73c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-8.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-9.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-9.png new file mode 100644 index 0000000..780cd5f Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/cropped-9.png differ diff --git a/utk_experiments/result_data/result_images/bistro/no_cutoff_green/ground_truth.png b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/ground_truth.png new file mode 100644 index 0000000..85d4641 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/no_cutoff_green/ground_truth.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:16,225095693+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:16,225095693+02:00.png new file mode 100644 index 0000000..5fbb14a Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:16,225095693+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:53,311263509+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:53,311263509+02:00.png new file mode 100644 index 0000000..8e8d771 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:36:53,311263509+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:37:27,983932125+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:37:27,983932125+02:00.png new file mode 100644 index 0000000..931b199 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:37:27,983932125+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:03,701948305+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:03,701948305+02:00.png new file mode 100644 index 0000000..0659586 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:03,701948305+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:42,019973149+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:42,019973149+02:00.png new file mode 100644 index 0000000..9021115 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:38:42,019973149+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:18,027633001+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:18,027633001+02:00.png new file mode 100644 index 0000000..beffae8 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:18,027633001+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:52,228839719+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:52,228839719+02:00.png new file mode 100644 index 0000000..5d2a77b Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:39:52,228839719+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:40:33,438013155+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:40:33,438013155+02:00.png new file mode 100644 index 0000000..256d69c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:40:33,438013155+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:13,116906517+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:13,116906517+02:00.png new file mode 100644 index 0000000..e4c7fe6 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:13,116906517+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:48,537033020+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:48,537033020+02:00.png new file mode 100644 index 0000000..65138a9 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:41:48,537033020+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:42:22,523435094+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:42:22,523435094+02:00.png new file mode 100644 index 0000000..91ed3dd Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:42:22,523435094+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:01,694198553+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:01,694198553+02:00.png new file mode 100644 index 0000000..d520579 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:01,694198553+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:33,836844783+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:33,836844783+02:00.png new file mode 100644 index 0000000..0c75a1a Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:43:33,836844783+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:14,078614015+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:14,078614015+02:00.png new file mode 100644 index 0000000..6758464 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:14,078614015+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:48,206005276+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:48,206005276+02:00.png new file mode 100644 index 0000000..441e8a7 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:44:48,206005276+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:45:24,398216618+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:45:24,398216618+02:00.png new file mode 100644 index 0000000..a159528 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:45:24,398216618+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:13,072933724+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:13,072933724+02:00.png new file mode 100644 index 0000000..6a83076 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:13,072933724+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:46,964047853+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:46,964047853+02:00.png new file mode 100644 index 0000000..36506e7 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:46:46,964047853+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:23,428169047+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:23,428169047+02:00.png new file mode 100644 index 0000000..a663da4 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:23,428169047+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:59,701120249+02:00.png b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:59,701120249+02:00.png new file mode 100644 index 0000000..7f40c49 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/2024-08-31T16:47:59,701120249+02:00.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-0.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-0.png new file mode 100644 index 0000000..fed85cc Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-0.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-1.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-1.png new file mode 100644 index 0000000..15f252a Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-1.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-10.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-10.png new file mode 100644 index 0000000..c6264d1 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-10.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-11.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-11.png new file mode 100644 index 0000000..02773f3 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-11.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-12.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-12.png new file mode 100644 index 0000000..0572b0b Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-12.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-13.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-13.png new file mode 100644 index 0000000..c70d771 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-13.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-14.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-14.png new file mode 100644 index 0000000..f63c182 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-14.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-15.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-15.png new file mode 100644 index 0000000..49a721f Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-15.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-16.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-16.png new file mode 100644 index 0000000..0e9e55f Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-16.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-17.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-17.png new file mode 100644 index 0000000..8046970 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-17.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-18.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-18.png new file mode 100644 index 0000000..d1b69c8 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-18.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-19.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-19.png new file mode 100644 index 0000000..281d820 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-19.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-2.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-2.png new file mode 100644 index 0000000..775b001 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-2.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-3.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-3.png new file mode 100644 index 0000000..6e70c6c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-3.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-4.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-4.png new file mode 100644 index 0000000..99f6e6c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-4.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-5.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-5.png new file mode 100644 index 0000000..1322f54 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-5.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-6.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-6.png new file mode 100644 index 0000000..9b23dac Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-6.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-7.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-7.png new file mode 100644 index 0000000..012d1bc Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-7.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-8.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-8.png new file mode 100644 index 0000000..2ebcad2 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-8.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/cropped-9.png b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-9.png new file mode 100644 index 0000000..fe894d6 Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/cropped-9.png differ diff --git a/utk_experiments/result_data/result_images/bistro/tc_02/ground_truth.png b/utk_experiments/result_data/result_images/bistro/tc_02/ground_truth.png new file mode 100644 index 0000000..6ef157c Binary files /dev/null and b/utk_experiments/result_data/result_images/bistro/tc_02/ground_truth.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:27:56,127989537+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:27:56,127989537+02:00.png new file mode 100644 index 0000000..7f337de Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:27:56,127989537+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:05,065458391+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:05,065458391+02:00.png new file mode 100644 index 0000000..ea4dcb8 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:05,065458391+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:09,347168578+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:09,347168578+02:00.png new file mode 100644 index 0000000..ad08b61 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:09,347168578+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:12,336004785+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:12,336004785+02:00.png new file mode 100644 index 0000000..fc35f92 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:12,336004785+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:15,476703429+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:15,476703429+02:00.png new file mode 100644 index 0000000..11068ff Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:15,476703429+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:18,337419298+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:18,337419298+02:00.png new file mode 100644 index 0000000..33b748d Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:18,337419298+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:21,544862579+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:21,544862579+02:00.png new file mode 100644 index 0000000..95e717f Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:21,544862579+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:24,819025556+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:24,819025556+02:00.png new file mode 100644 index 0000000..5cd8414 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:24,819025556+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:27,411365705+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:27,411365705+02:00.png new file mode 100644 index 0000000..2fb4c59 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:27,411365705+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:30,576013455+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:30,576013455+02:00.png new file mode 100644 index 0000000..5bfff84 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:30,576013455+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:35,574092009+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:35,574092009+02:00.png new file mode 100644 index 0000000..c5cb0d2 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:35,574092009+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:41,033826068+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:41,033826068+02:00.png new file mode 100644 index 0000000..bc88010 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:41,033826068+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:44,277496909+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:44,277496909+02:00.png new file mode 100644 index 0000000..849633e Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:44,277496909+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:49,228681573+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:49,228681573+02:00.png new file mode 100644 index 0000000..963aff2 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:49,228681573+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:52,547190274+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:52,547190274+02:00.png new file mode 100644 index 0000000..8d2e74b Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:52,547190274+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:55,762536653+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:55,762536653+02:00.png new file mode 100644 index 0000000..94026bc Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:55,762536653+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:59,496459220+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:59,496459220+02:00.png new file mode 100644 index 0000000..b174eb8 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:28:59,496459220+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:03,362911009+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:03,362911009+02:00.png new file mode 100644 index 0000000..9c61845 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:03,362911009+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:08,111908489+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:08,111908489+02:00.png new file mode 100644 index 0000000..dd9b946 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:08,111908489+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:44,147476303+02:00.png b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:44,147476303+02:00.png new file mode 100644 index 0000000..eaf07d0 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/2024-08-31T16:29:44,147476303+02:00.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-0.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-0.png new file mode 100644 index 0000000..08458c7 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-0.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-1.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-1.png new file mode 100644 index 0000000..b210750 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-1.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-10.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-10.png new file mode 100644 index 0000000..7707306 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-10.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-11.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-11.png new file mode 100644 index 0000000..1773661 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-11.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-12.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-12.png new file mode 100644 index 0000000..4fdf7d8 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-12.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-13.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-13.png new file mode 100644 index 0000000..eb56c3d Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-13.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-14.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-14.png new file mode 100644 index 0000000..c64755f Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-14.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-15.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-15.png new file mode 100644 index 0000000..e2de7a4 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-15.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-16.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-16.png new file mode 100644 index 0000000..0fd0bf1 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-16.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-17.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-17.png new file mode 100644 index 0000000..ed7b396 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-17.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-18.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-18.png new file mode 100644 index 0000000..bfffd4d Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-18.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-19.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-19.png new file mode 100644 index 0000000..bc644f9 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-19.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-2.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-2.png new file mode 100644 index 0000000..5616367 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-2.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-3.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-3.png new file mode 100644 index 0000000..de24c32 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-3.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-4.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-4.png new file mode 100644 index 0000000..c30e97d Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-4.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-5.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-5.png new file mode 100644 index 0000000..975e4a8 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-5.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-6.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-6.png new file mode 100644 index 0000000..71d33c6 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-6.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-7.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-7.png new file mode 100644 index 0000000..3af0f11 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-7.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-8.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-8.png new file mode 100644 index 0000000..6970155 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-8.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/cropped-9.png b/utk_experiments/result_data/result_images/grid/tc02/cropped-9.png new file mode 100644 index 0000000..467eca6 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/cropped-9.png differ diff --git a/utk_experiments/result_data/result_images/grid/tc02/ground_truth.png b/utk_experiments/result_data/result_images/grid/tc02/ground_truth.png new file mode 100644 index 0000000..0b21040 Binary files /dev/null and b/utk_experiments/result_data/result_images/grid/tc02/ground_truth.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:24,991367809+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:24,991367809+02:00.png new file mode 100644 index 0000000..fdd4ab6 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:24,991367809+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:31,798065153+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:31,798065153+02:00.png new file mode 100644 index 0000000..8e82627 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:31,798065153+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:53,908663754+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:53,908663754+02:00.png new file mode 100644 index 0000000..b21533c Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:31:53,908663754+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:04,116667926+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:04,116667926+02:00.png new file mode 100644 index 0000000..744c78d Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:04,116667926+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:36,333815402+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:36,333815402+02:00.png new file mode 100644 index 0000000..65cee22 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:36,333815402+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:54,148912167+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:54,148912167+02:00.png new file mode 100644 index 0000000..11324e3 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:32:54,148912167+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:02,073947964+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:02,073947964+02:00.png new file mode 100644 index 0000000..0f8a121 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:02,073947964+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:07,401496786+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:07,401496786+02:00.png new file mode 100644 index 0000000..a49c088 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:07,401496786+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:11,871165858+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:11,871165858+02:00.png new file mode 100644 index 0000000..3be7226 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:11,871165858+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:16,382381290+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:16,382381290+02:00.png new file mode 100644 index 0000000..e7f11f4 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:16,382381290+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:30,109767937+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:30,109767937+02:00.png new file mode 100644 index 0000000..b9211a1 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:30,109767937+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:35,143671300+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:35,143671300+02:00.png new file mode 100644 index 0000000..089c248 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:35,143671300+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:39,203330132+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:39,203330132+02:00.png new file mode 100644 index 0000000..b147d00 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:39,203330132+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:43,403790162+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:43,403790162+02:00.png new file mode 100644 index 0000000..ae05532 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:43,403790162+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:47,466975316+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:47,466975316+02:00.png new file mode 100644 index 0000000..360aca1 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:47,466975316+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:52,584133243+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:52,584133243+02:00.png new file mode 100644 index 0000000..87b6ccf Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:52,584133243+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:57,103848191+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:57,103848191+02:00.png new file mode 100644 index 0000000..a7ccb02 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:33:57,103848191+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:03,606428153+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:03,606428153+02:00.png new file mode 100644 index 0000000..c7c35da Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:03,606428153+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:36,232616532+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:36,232616532+02:00.png new file mode 100644 index 0000000..f036104 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:36,232616532+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:54,714256253+02:00.png b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:54,714256253+02:00.png new file mode 100644 index 0000000..46a988e Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/2024-08-31T16:34:54,714256253+02:00.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-0.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-0.png new file mode 100644 index 0000000..5631b15 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-0.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-1.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-1.png new file mode 100644 index 0000000..2bc31a8 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-1.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-10.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-10.png new file mode 100644 index 0000000..035f50f Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-10.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-11.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-11.png new file mode 100644 index 0000000..a0baf56 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-11.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-12.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-12.png new file mode 100644 index 0000000..e74601d Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-12.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-13.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-13.png new file mode 100644 index 0000000..82e8007 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-13.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-14.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-14.png new file mode 100644 index 0000000..8b796e0 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-14.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-15.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-15.png new file mode 100644 index 0000000..5f97e85 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-15.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-16.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-16.png new file mode 100644 index 0000000..fe3553b Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-16.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-17.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-17.png new file mode 100644 index 0000000..97c23ce Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-17.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-18.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-18.png new file mode 100644 index 0000000..09228b4 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-18.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-19.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-19.png new file mode 100644 index 0000000..8430a12 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-19.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-2.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-2.png new file mode 100644 index 0000000..c1561a7 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-2.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-3.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-3.png new file mode 100644 index 0000000..aae72ea Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-3.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-4.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-4.png new file mode 100644 index 0000000..37a1909 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-4.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-5.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-5.png new file mode 100644 index 0000000..1ad896f Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-5.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-6.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-6.png new file mode 100644 index 0000000..6a7e216 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-6.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-7.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-7.png new file mode 100644 index 0000000..6a9e922 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-7.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-8.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-8.png new file mode 100644 index 0000000..1e0cf5c Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-8.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/cropped-9.png b/utk_experiments/result_data/result_images/hairball/tc02/cropped-9.png new file mode 100644 index 0000000..6c68db0 Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/cropped-9.png differ diff --git a/utk_experiments/result_data/result_images/hairball/tc02/ground_truth.png b/utk_experiments/result_data/result_images/hairball/tc02/ground_truth.png new file mode 100644 index 0000000..6d8257f Binary files /dev/null and b/utk_experiments/result_data/result_images/hairball/tc02/ground_truth.png differ