RyoMurakami commited on
Commit
16fe2dd
·
verified ·
1 Parent(s): 2237531

Fix reconstruct.py default input path (stale 18-file-era filename -> current dataset)

Browse files
Files changed (1) hide show
  1. reconstruct.py +2 -2
reconstruct.py CHANGED
@@ -10,7 +10,7 @@ to interpret the frame axis.
10
 
11
  Usage:
12
  python reconstruct.py
13
- python reconstruct.py --input data/acq_0016_point_d130_r4.hdf5
14
  python reconstruct.py --frame-index 45
15
  """
16
 
@@ -29,7 +29,7 @@ import zea
29
  from zea import Config, File, Pipeline
30
 
31
  HERE = Path(__file__).parent
32
- DEFAULT_INPUT = HERE / "data" / "acq_0008_point_d60_r4.hdf5"
33
  DEFAULT_OUTPUT = HERE / "outputs" / "reconstruct_example.png"
34
  CONFIG = HERE / "pipeline.yaml"
35
 
 
10
 
11
  Usage:
12
  python reconstruct.py
13
+ python reconstruct.py --input data/baseline_R45_H8__point_z080_r4.hdf5
14
  python reconstruct.py --frame-index 45
15
  """
16
 
 
29
  from zea import Config, File, Pipeline
30
 
31
  HERE = Path(__file__).parent
32
+ DEFAULT_INPUT = HERE / "data" / "baseline_R45_H8__point_z080_r4.hdf5"
33
  DEFAULT_OUTPUT = HERE / "outputs" / "reconstruct_example.png"
34
  CONFIG = HERE / "pipeline.yaml"
35