mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-15 11:25:53 +08:00
BUG: segmentation fault when unwrapping 3d image
Unwrapping a 3D image using unwrap_phase no longer causes a segmentation fault when the wrap_around parameter is True for the middle dimension.
This commit is contained in:
@@ -786,7 +786,7 @@ void verticalEDGEs(VOXELM *voxel, EDGE *edge, int volume_width, int volume_heig
|
||||
}
|
||||
voxel_pointer++;
|
||||
}
|
||||
voxel_pointer += next_voxel + 1;
|
||||
voxel_pointer += next_voxel;
|
||||
}
|
||||
}
|
||||
params->no_of_edges = no_of_edges;
|
||||
|
||||
Reference in New Issue
Block a user