Title: Innovative Automatic Sorting and Packing System for Strawberries
Description:
Welcome to our video showcasing the revolutionary Packing System, an Automatic Sorting and Packing System designed specifically for strawberries. With its cutting-edge technology, this system can align and arrange strawberry fruits in shipping containers, ensuring efficiency and precision in a matter of seconds.
The Packing System is comprised of two main units: the Supply Unit and the Sorting Unit. Together, they work seamlessly to streamline the packing process, enhancing productivity and reducing manual labor.
In this video, we will take you through the operation steps of this state-of-the-art system. From the initial supply of strawberries to the final sorted and neatly arranged fruits in the shipping containers, you will witness the incredible speed and accuracy of this automated process.
Key Highlights:
1. Speed and Efficiency: The Packing System can align and arrange each strawberry fruit in approximately 7 seconds, significantly reducing the time required for manual sorting and packing.
2. Precision Sorting: With its advanced technology, the system ensures that each strawberry is correctly oriented and arranged in the shipping containers, minimizing the risk of damage during transportation.
3. Increased Productivity: By automating the sorting and packing process, the system boosts productivity, allowing for higher volumes of strawberries to be processed in a shorter amount of time.
4. Cost Savings: The Packing System eliminates the need for extensive manual labor, resulting in reduced labor costs and increased overall efficiency.
Call to Action:
If you found this video informative and fascinating, we encourage you to hit the like button, subscribe to our channel for more innovative solutions, and share this video with others who may benefit from this technology.
Additional Tags and Keywords: Packing System, Automatic Sorting System, Packing System for Strawberries, Strawberry Sorting and Packing, Strawberry Packaging, Fruit Sorting Technology, Automated Packaging System.
Hashtags: #PackingSystem #AutomaticSorting #StrawberryPacking #FruitSorting #Innovation
import cv2
import numpy as np
def strawberry_sorting_and_packing(image_path):
# Load the image
image = cv2.imread(image_path)
# Convert the image to grayscale
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# Apply Gaussian blur to reduce noise
blurred_image = cv2.GaussianBlur(gray_image, (5, 5), 0)
# Apply thresholding to separate strawberries from the background
_, thresholded_image = cv2.threshold(blurred_image, 100, 255, cv2.THRESH_BINARY_INV)
# Find contours of strawberries
contours, _ = cv2.findContours(thresholded_image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# Sort the contours based on their area
sorted_contours = sorted(contours, key=cv2.contourArea, reverse=True)
# Initialize an empty list to store the sorted strawberries
sorted_strawberries = []
# Iterate over the sorted contours
for contour in sorted_contours:
# Compute the bounding box of the contour
x, y, w, h = cv2.boundingRect(contour)
# Crop the strawberry from the image using the bounding box
strawberry = image[y:y+h, x:x+w]
# Add the strawberry to the sorted list
sorted_strawberries.append(strawberry)
# Pack the sorted strawberries into boxes or containers (implementation not included in this code)
# …
# Return the sorted strawberries
return sorted_strawberries
# Example usage
image_path = “strawberries.jpg”
sorted_strawberries = strawberry_sorting_and_packing(image_path)
# Display the sorted strawberries
for i, strawberry in enumerate(sorted_strawberries):
cv2.imshow(f”Strawberry {i+1}”, strawberry)
cv2.waitKey(0)
cv2.destroyAllWindows()Packing System
#イチゴの自動選別装置 #Automatic #Sorting #Packing #System #Strawberries