scikit-image treats images as NumPy arrays. It provides a comprehensive suite of algorithms for filtering, feature detection, and object measurement, making it the standard for research-grade image analysis.
Official docs: https://scikit-image.org/ User Guide: https://scikit-image.org/docs/stable/userguide.html Search patterns: skimage.filters, skimage.segmentation, skimage.feature, skimage.morphology
Images are NumPy Arrays A grayscale image is a 2D array (M, N). A color image is a 3D array (M, N, 3). A multichannel 3D volume is (P, M, N, C).
Eine Sammlung von Algorithmen zur Bildverarbeitung in Python. Basierend auf NumPy, SciPy und Cython. Der Schwerpunkt liegt auf der wissenschaftlichen Bildanalyse einschließlich Segmentierung, geometrischen Transformationen, Farbraummanipulation, Analyse und Filterung. Quelle: tondevrel/scientific-agent-skills.