我正在尝试创建一些回调,设置可通过多选或多选复选框选择的项目的最小和最大数量。 问题是这两者的表单输入是一个数组,并且执行在数组上进行递归。回调对表单数组中的每个条目执行一次,而不是对整个数组执行一次。
有办法解决这个问题吗?
答案 0 :(得分:1)
如果我理解你的问题:
import cv2
import numpy as np
img = cv2.imread("C://Users//user//Desktop//research//images//Mask//set1//set1_mask_0001.png")
res = cv2.resize(img,None,fx=0.5, fy=0.5, interpolation = cv2.INTER_CUBIC)
cv2.imwrite('0.25_mask_set1_0001.png', res)
img = cv2.imread("C://Users//user//Desktop//research//images//Mask//set1//set1_mask_0002.png")
res = cv2.resize(img,None,fx=0.5, fy=0.5, interpolation = cv2.INTER_CUBIC)
cv2.imwrite('0.25_mask_set1_0002.png', res)
img = cv2.imread("C://Users//user//Desktop//research//images//Mask//set1//set1_mask_0003.png")
res = cv2.resize(img,None,fx=0.5, fy=0.5, interpolation = cv2.INTER_CUBIC)
cv2.imwrite('0.25_mask_set1_0003.png', res)