Ошибка Python: imwrite() принимает не более 3 аргументов (4 дано)
Я сталкиваюсь с проблемой в коде
import cv2
from pathlib import Path
from lib.cli import DirectoryProcessor
from plugins.PluginLoader import PluginLoader
class ExtractTrainingData(DirectoryProcessor):
def create_parser(self, subparser, command, description):
self.parser = subparser.add_parser(
command,
help="Extract the faces from a pictures.",
description=description,
epilog="Questions and feedback: \
https://github.com/deepfakes/faceswap-playground"
)
def process(self):
extractor_name = "Align" # TODO Pass as argument
extractor = PluginLoader.get_extractor(extractor_name)()
try:
for filename in self.read_directory():
image = cv2.imread(filename)
for idx, face in self.get_faces(image):
resized_image = extractor.extract(image, face, 256)
output_file = self.output_dir / Path(filename).stem
cv2.imwrite(str(output_file) + str(idx) + Path(filename).suffix, resized_image, [int(cv2.IMWRITE_JPEG_QUALITY), 100], interpolation=cv2.INTER_NEAREST)
except Exception as e:
print('Failed to extract from image: {}. Reason: {}'.format(filename, e))
Я хочу добавить параметр interpolation=cv2.INTER_NEAREST в функцию cv2.imwrite, но в выводе мне не удалось извлечь из изображения: /home/Jane/Desktop/50.jpg. Причина: imwrite () принимает не более 3 аргументов (4 дано). Любые советы, как это исправить? Я попытался добавить интерполяцию через INT
cv2.imwrite(str(output_file) + str(idx) + Path(filename).suffix, resized_image, [int(cv2.IMWRITE_JPEG_QUALITY), 100], [int(interpolation), CV_INTER_LINEAR])
но это не помогло мне.:(