Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zEttOn86 committed May 24, 2019
1 parent 8b09811 commit 54dd2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apply_maximum_a_posteriori/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ int main(int argc, char **argv) {
size_t tmp = 0;
for (int s = 0; s < se; s++) {
if (abd_mask_img.at(s)) {
posterior_img.at(s) = posterior.at(tmp++);
posterior_img.at(s) = posterior_tmp[tmp++];
}
}
std::string result_dir = output_dir + *case_itr + "/posterior/";
Expand Down

0 comments on commit 54dd2df

Please sign in to comment.