Skip to content

Commit

Permalink
fix(grey_dilate): threads was inoperative
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Dec 31, 2023
1 parent e8162fc commit de92147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastmorph/fastmorph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ template <typename LABEL>
void grey_dilate(
LABEL* labels, LABEL* output,
const uint64_t sx, const uint64_t sy, const uint64_t sz,
const bool background_only, const uint64_t threads = 1
const uint64_t threads = 1
) {
// assume a 3x3x3 stencil with all voxels on
const uint64_t sxy = sx * sy;
Expand Down

0 comments on commit de92147

Please sign in to comment.