Skip to content

Commit cb6464a

Browse files
committed
📝 Health Warning
1 parent 814f92c commit cb6464a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

digital_image_processing/morphological_operations/skeletonization_operation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ def skeletonize_image(image: np.ndarray) -> np.ndarray:
203203
lena = np.array(Image.open(lena_path))
204204

205205
# Apply skeletonization operation to a binary image
206+
# Caution: Takes at least 20 seconds to execute
206207
output = skeletonize_image(gray_to_binary(rgb_to_gray(lena)))
207208

208209
# Save the output image

0 commit comments

Comments
 (0)