From ac0bcf898992f551fc176532077c4e2f0cd2aebe Mon Sep 17 00:00:00 2001 From: Omer Faruk Gulban Date: Mon, 13 Sep 2021 17:38:29 +0200 Subject: [PATCH] Replace `cells` with `bins` suffix in the output. This is going to be more consistent with the terminology I will use in the blog post. --- src/LN2_PATCH_FLATTEN.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LN2_PATCH_FLATTEN.cpp b/src/LN2_PATCH_FLATTEN.cpp index 6e1be60..0e703e3 100644 --- a/src/LN2_PATCH_FLATTEN.cpp +++ b/src/LN2_PATCH_FLATTEN.cpp @@ -345,7 +345,7 @@ int main(int argc, char* argv[]) { std::ostringstream tag_u, tag_v; tag_u << bins_u; tag_v << bins_v; - save_output_nifti(fout, "UV_cells"+tag_u.str()+"x"+tag_v.str(), out_cells, true); + save_output_nifti(fout, "UV_bins"+tag_u.str()+"x"+tag_v.str(), out_cells, true); // Take the mean of each projected cell value for (int i = 0; i != nr_bins; ++i) {