We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814f92c commit cb6464aCopy full SHA for cb6464a
digital_image_processing/morphological_operations/skeletonization_operation.py
@@ -203,6 +203,7 @@ def skeletonize_image(image: np.ndarray) -> np.ndarray:
203
lena = np.array(Image.open(lena_path))
204
205
# Apply skeletonization operation to a binary image
206
+ # Caution: Takes at least 20 seconds to execute
207
output = skeletonize_image(gray_to_binary(rgb_to_gray(lena)))
208
209
# Save the output image
0 commit comments