{% if metrics.subject %}| Subject | {{ metrics.subject }} |
{% endif %}
{% if 'wm_snr_orig' in metrics and metrics.wm_snr_orig is not none %}| WM SNR (Original) | {{ "%.3f"|format(metrics.wm_snr_orig) }} |
{% endif %}
{% if 'gm_snr_orig' in metrics and metrics.gm_snr_orig is not none %}| GM SNR (Original) | {{ "%.3f"|format(metrics.gm_snr_orig) }} |
{% endif %}
{% if 'wm_snr_norm' in metrics and metrics.wm_snr_norm is not none %}| WM SNR (Normalized) | {{ "%.3f"|format(metrics.wm_snr_norm) }} |
{% endif %}
{% if 'gm_snr_norm' in metrics and metrics.gm_snr_norm is not none %}| GM SNR (Normalized) | {{ "%.3f"|format(metrics.gm_snr_norm) }} |
{% endif %}
{% if 'cc_size' in metrics and metrics.cc_size is not none %}| CC Size | {{ "%.6f"|format(metrics.cc_size) }} |
{% endif %}
{% if 'holes_lh' in metrics and metrics.holes_lh is not none %}| Holes (LH) | {{ metrics.holes_lh }} |
{% endif %}
{% if 'holes_rh' in metrics and metrics.holes_rh is not none %}| Holes (RH) | {{ metrics.holes_rh }} |
{% endif %}
{% if 'defects_lh' in metrics and metrics.defects_lh is not none %}| Defects (LH) | {{ metrics.defects_lh }} |
{% endif %}
{% if 'defects_rh' in metrics and metrics.defects_rh is not none %}| Defects (RH) | {{ metrics.defects_rh }} |
{% endif %}
{% if 'topo_lh' in metrics and metrics.topo_lh is not none %}| Topology (LH) | {{ "%.3f"|format(metrics.topo_lh) }} |
{% endif %}
{% if 'topo_rh' in metrics and metrics.topo_rh is not none %}| Topology (RH) | {{ "%.3f"|format(metrics.topo_rh) }} |
{% endif %}
{% if 'con_snr_lh' in metrics and metrics.con_snr_lh is not none %}| Contrast SNR (LH) | {{ "%.3f"|format(metrics.con_snr_lh) }} |
{% endif %}
{% if 'con_snr_rh' in metrics and metrics.con_snr_rh is not none %}| Contrast SNR (RH) | {{ "%.3f"|format(metrics.con_snr_rh) }} |
{% endif %}
{% if 'rot_tal_x' in metrics and metrics.rot_tal_x is not none %}| Rotation Tal X | {{ "%.6f"|format(metrics.rot_tal_x) }} |
{% endif %}
{% if 'rot_tal_y' in metrics and metrics.rot_tal_y is not none %}| Rotation Tal Y | {{ "%.6f"|format(metrics.rot_tal_y) }} |
{% endif %}
{% if 'rot_tal_z' in metrics and metrics.rot_tal_z is not none %}| Rotation Tal Z | {{ "%.6f"|format(metrics.rot_tal_z) }} |
{% endif %}