Datasets:
Add pipeline.yaml
Browse files- pipeline.yaml +29 -0
pipeline.yaml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Beamforming config for the OpenH-RF eSAF rotational 3D ultrasound sub-dataset.
|
| 2 |
+
#
|
| 3 |
+
# Each acquisition is raw RF channel data (n_ch = 1) from a single normal
|
| 4 |
+
# plane-wave transmit per rotation frame on the JP_Linear_68 linear array
|
| 5 |
+
# (68 elements, 10 MHz, fs 40 MHz, c 1490 m/s). The RF is demodulated before
|
| 6 |
+
# delay-and-sum beamforming; the imaging grid is sized automatically per file
|
| 7 |
+
# from the probe aperture and the recorded axial depth, so the same config
|
| 8 |
+
# works for every acquisition (targets span 20-130 mm).
|
| 9 |
+
#
|
| 10 |
+
# reconstruct.py loads this whole processing chain with zea.Config.from_path
|
| 11 |
+
# and runs it unchanged (single track -> single pipeline.yaml).
|
| 12 |
+
|
| 13 |
+
parameters:
|
| 14 |
+
dynamic_range: [-40, 0]
|
| 15 |
+
apply_lens_correction: false
|
| 16 |
+
|
| 17 |
+
pipeline:
|
| 18 |
+
operations:
|
| 19 |
+
- name: cast
|
| 20 |
+
params:
|
| 21 |
+
dtype: float32
|
| 22 |
+
- name: demodulate
|
| 23 |
+
- name: beamform
|
| 24 |
+
params:
|
| 25 |
+
beamformer: delay_and_sum
|
| 26 |
+
num_patches: 200
|
| 27 |
+
- name: envelope_detect
|
| 28 |
+
- name: normalize
|
| 29 |
+
- name: log_compress
|