Skip to content

Commit

Permalink
Remove GT folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick-v-E committed Jan 18, 2024
1 parent 0ae2427 commit c46b42b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file removed gt/.gitkeep
Empty file.
4 changes: 2 additions & 2 deletions src/virtual_maize_field/generate_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def clear_gazebo_cache(self) -> None:
rmtree(gazebo_cache_pkg)

def save_gt_minimap(self) -> None:
minimap_file = self.cache_folder / "map.png"
minimap_file = self.cache_folder / "gt_map.png"
self.fgen.minimap.savefig(str(minimap_file), dpi=100)

print(f"Saved ground truth minimap to {minimap_file}")
Expand Down Expand Up @@ -91,7 +91,7 @@ def save_marker_file(self) -> None:
print(f"Saved marker locations to {marker_file}")

def save_gt_map(self) -> None:
complete_map_file = self.cache_folder / "map.csv"
complete_map_file = self.cache_folder / "gt_map.csv"
with complete_map_file.open("w") as f:
writer = csv_writer(f)
header = ["X", "Y", "kind"]
Expand Down

0 comments on commit c46b42b

Please sign in to comment.