सुपरपिक्सेल्स और सेगमेंटेशन

Python में इमेज प्रोसेसिंग

Rebeca Gonzalez

Data Engineer

सेगमेंटेशन

Python में इमेज प्रोसेसिंग

सेगमेंटेशन

Python में इमेज प्रोसेसिंग

इमेज़ रिप्रेज़ेंटेशन

Python में इमेज प्रोसेसिंग

सुपरपिक्सेल्स

Python में इमेज प्रोसेसिंग

सुपरपिक्सेल्स के फायदे

  • अधिक सार्थक क्षेत्र
  • कम्प्यूटेशनल दक्षता
Python में इमेज प्रोसेसिंग

सेगमेंटेशन

  • सुपरवाइज़्ड
  • अनसुपरवाइज़्ड

Python में इमेज प्रोसेसिंग

अनसुपरवाइज़्ड सेगमेंटेशन

सिंपल लीनियर इटरटिव क्लस्टरिंग (SLIC)

Python में इमेज प्रोसेसिंग

अनसुपरवाइज़्ड सेगमेंटेशन (SLIC)

# Import the modules
from skimage.segmentation import slic
from skimage.color import label2rgb

# Obtain the segments segments = slic(image)
# Put segments on top of original image to compare segmented_image = label2rgb(segments, image, kind='avg')
show_image(image) show_image(segmented_image, "Segmented image")
Python में इमेज प्रोसेसिंग

अनसुपरवाइज़्ड सेगमेंटेशन (SLIC)

Python में इमेज प्रोसेसिंग

और अधिक सेगमेंट्स

# Import the modules
from skimage.segmentation import slic
from skimage.color import label2rgb

# Obtain the segmentation with 300 regions segments = slic(image, n_segments= 300) # Put segments on top of original image to compare segmented_image = label2rgb(segments, image, kind='avg')
show_image(segmented_image)
Python में इमेज प्रोसेसिंग

और अधिक सेगमेंट्स

Python में इमेज प्रोसेसिंग

अभ्यास करते हैं!

Python में इमेज प्रोसेसिंग

Preparing Video For Download...