Fri 16 May 23:06:54 CEST 2025

This commit is contained in:
sbosse 2025-05-16 23:08:52 +02:00
parent 3e6dc85208
commit 330bd10443

View File

@ -181,6 +181,7 @@ data = OrderedDict({
"Field": 0, "Field": 0,
"enableSignals": False, "enableSignals": False,
"enableImages": False, "enableImages": False,
"enableMaterials": False,
"enableVolume": False, "enableVolume": False,
"enableView": False, "enableView": False,
"sensorShape": [], "sensorShape": [],
@ -199,4 +200,4 @@ folder_path = r"C:\Users\Kumar\Nextcloud\Work\GUW\sim_ndt\batch_processing_simul
current_time = datetime.now().strftime("%Y%m%d_%H%M%S") current_time = datetime.now().strftime("%Y%m%d_%H%M%S")
save_path = os.path.join(folder_path, "simndt_params_{current_time}.json".format(current_time=current_time)) save_path = os.path.join(folder_path, "simndt_params_{current_time}.json".format(current_time=current_time))
with open(save_path, "w") as f: with open(save_path, "w") as f:
json.dump(data, f, indent=2, sort_keys=False) json.dump(data, f, indent=2, sort_keys=False)