Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/278.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/sorting/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python在大图像的轮廓上打开CV覆盖图像_Python_Opencv - Fatal编程技术网

Python在大图像的轮廓上打开CV覆盖图像

Python在大图像的轮廓上打开CV覆盖图像,python,opencv,Python,Opencv,我有一个形状的大图像,我希望在一个基于轮廓的形状上重叠一个图像 我有这个图像 我有一个contur,它检测图像的形状和颜色 我想在这个形状上放置一个图像 我想自定义图像大小 所需输出:- 代码:- if color == "blue" and shape == "pentagon": A_img = cv2.imread("frame.png") print(A_img) x_offset=y_offset=50 B_img[y_offset:y_offse

我有一个形状的大图像,我希望在一个基于轮廓的形状上重叠一个图像

我有这个图像

我有一个contur,它检测图像的形状和颜色

我想在这个形状上放置一个图像

我想自定义图像大小

所需输出:-

代码:-

if color == "blue" and shape == "pentagon":
    A_img = cv2.imread("frame.png")
    print(A_img)
    x_offset=y_offset=50
    B_img[y_offset:y_offset+A_img.shape[0], x_offset:x_offset+A_img.shape[1]] = A_img

该代码不起作用猴子被打印在左上角

我有一个有效的解决方案。希望这就是你想要的

代码:

import cv2
import numpy as np

image = cv2.imread('C:/Users/524316/Desktop/shapes.png', 1)
monkey = cv2.imread('C:/Users/524316/Desktop/monkey.png', 1)

image2 = image.copy()
image3 = image.copy()

gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blurred = cv2.GaussianBlur(gray, (5, 5), 0)
thresh = cv2.threshold(blurred, 60, 255, cv2.THRESH_BINARY)[1]
#cv2.imshow('thresh', thresh)

_, cnts, hierarchy = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

for c in cnts:

    #---- making sure to avoid small unwanted contours ---
    if cv2.contourArea(c) > 150:

        #--- selecting contours having 5 sides ---
        if len(cv2.approxPolyDP(c, 0.04 * cv2.arcLength(c, True), True)) == 5:


            cv2.drawContours(image2, [c], -1, (0, 255, 0), 2)

            #--- finding bounding box dimensions of the contour ---
            x, y, w, h = cv2.boundingRect(c)
            print(x, y, w, h)

            #--- overlaying the monkey in place of pentagons using the bounding box dimensions---
            image3[y:y+h, x:x+w] = cv2.resize(monkey, (np.abs(x - (x+w)), np.abs(y - (y+h))))


cv2.imshow('image2', image2)
cv2.imshow('image3', image3) 

cv2.waitKey(0)
cv2.destroyAllWindows()
结果:

import cv2
import numpy as np

image = cv2.imread('C:/Users/524316/Desktop/shapes.png', 1)
monkey = cv2.imread('C:/Users/524316/Desktop/monkey.png', 1)

image2 = image.copy()
image3 = image.copy()

gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blurred = cv2.GaussianBlur(gray, (5, 5), 0)
thresh = cv2.threshold(blurred, 60, 255, cv2.THRESH_BINARY)[1]
#cv2.imshow('thresh', thresh)

_, cnts, hierarchy = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

for c in cnts:

    #---- making sure to avoid small unwanted contours ---
    if cv2.contourArea(c) > 150:

        #--- selecting contours having 5 sides ---
        if len(cv2.approxPolyDP(c, 0.04 * cv2.arcLength(c, True), True)) == 5:


            cv2.drawContours(image2, [c], -1, (0, 255, 0), 2)

            #--- finding bounding box dimensions of the contour ---
            x, y, w, h = cv2.boundingRect(c)
            print(x, y, w, h)

            #--- overlaying the monkey in place of pentagons using the bounding box dimensions---
            image3[y:y+h, x:x+w] = cv2.resize(monkey, (np.abs(x - (x+w)), np.abs(y - (y+h))))


cv2.imshow('image2', image2)
cv2.imshow('image3', image3) 

cv2.waitKey(0)
cv2.destroyAllWindows()


什么是
合适的解决方案
?你应该使用
cv2.resize
来调整你的
A_img
@MadLee这个代码被打印在左上角,但是如果我想让它更动态,比如我想把猴子放在红色三角形上?我还没有加入颜色检测部分。为了做你想做的事,我首先创建两个字典,一个是颜色字典,另一个是形状字典。
color
字典将包含HSV或LAB中的颜色范围。
shape
字典将包含边数。根据输入,它将
红色三角形
分为
红色
三角形
,然后找到相应的颜色范围和形状。