Skip to content

Commit

Permalink
Replace cells with bins suffix in the output.
Browse files Browse the repository at this point in the history
This is going to be more consistent with the terminology I will use in 
the blog post.
  • Loading branch information
ofgulban committed Sep 13, 2021
1 parent 2b88ba6 commit ac0bcf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LN2_PATCH_FLATTEN.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ac0bcf8

Please sign in to comment.