Crop image from all sides after edge detection

I am new to OpenCV. I want to extract the main object from the image. So, I applied Canny on the image to get the edges around the main object and got the following result: enter image description here

Here is the code to get this using OpenCV in Python:

img = cv2.imread(file)
cv2.imshow("orig", img)
cv2.waitKey(0)
img = cv2.blur(img,(2,2))
gray_seg = cv2.Canny(img, 0, 50)

Now I want the image below as the final result after receiving only the main object in the image: enter image description here

I want to do this in an optimized way, because I have to process more than 2.5 million images. Can anyone help me with this?

0
source share
2 answers

rect . , , .

cv::Mat image(img);
cv::Rect myROI(posX, posY, sizeX, sizeY);   
cv::Mat croppedImage = image(myROI);

++, python.

CvMat OpenCV?

+1

clean canny edge, , rectangle boundary.

:

enter image description here

:

enter image description here


canny region, , min-max coords. NumPy. slice-op.

#!/usr/bin/python3
# 2018.01.20 15:18:36 CST

#!/usr/bin/python3
# 2018.01.20 15:18:36 CST

import cv2
import numpy as np
#img = cv2.imread("test.png")
img = cv2.imread("img02.png")
blurred = cv2.blur(img, (3,3))
canny = cv2.Canny(blurred, 50, 200)

## find the non-zero min-max coords of canny
pts = np.argwhere(canny>0)
y1,x1 = pts.min(axis=0)
y2,x2 = pts.max(axis=0)

## crop the region
cropped = img[y1:y2, x1:x2]
cv2.imwrite("cropped.png", cropped)

tagged = cv2.rectangle(img.copy(), (x1,y1), (x2,y2), (0,255,0), 3, cv2.LINE_AA)
cv2.imshow("tagged", tagged)
cv2.waitKey()

, do boundingRect .

0

All Articles