Python OpenCV: Rubik's cube solver color extraction

前端 未结 2 1990
北荒
北荒 2020-12-28 21:16

Description:

I am working on solving rubiks cube using Python & OpenCV. For this purpose I am trying to extract all the colors of the cubies(ind

2条回答
  •  执念已碎
    2020-12-28 21:38

    Here's the original code and location of the found yellow squares.

    source

    import numpy as np
    
    import sys; sys.path.append('/usr/lib/pyshared/python2.7')
    
    import cv2
    from cv2 import *
    
    im = cv2.imread('rubik.png')
    im = cv2.bilateralFilter(im,9,75,75)
    im = cv2.fastNlMeansDenoisingColored(im,None,10,10,7,21)
    hsv_img = cv2.cvtColor(im, cv2.COLOR_BGR2HSV)   # HSV image
    
    
    COLOR_MIN = np.array([20, 100, 100],np.uint8)       # HSV color code lower and upper bounds
    COLOR_MAX = np.array([30, 255, 255],np.uint8)       # color yellow 
    
    frame_threshed = cv2.inRange(hsv_img, COLOR_MIN, COLOR_MAX)     # Thresholding image
    imgray = frame_threshed
    ret,thresh = cv2.threshold(frame_threshed,127,255,0)
    contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
    # print type(contours)
    for cnt in contours:
        x,y,w,h = cv2.boundingRect(cnt)
        print x,y
        cv2.rectangle(im,(x,y),(x+w,y+h),(0,255,0),2)
    cv2.imshow("Show",im)
    cv2.imwrite("extracted.jpg", im)
    cv2.waitKey()
    cv2.destroyAllWindows()
    

    output

    185 307
    185 189
    307 185
    431 55
    

提交回复
热议问题