Change imports order for copytomask

This commit is contained in:
Anatoliy Talamanov 2020-09-16 17:59:19 +03:00
parent 5218443784
commit 986bc65e1f
2 changed files with 1 additions and 3 deletions

View File

@ -32,8 +32,6 @@ class gapi_sample_pipelines(NewOpenCVTests):
g_out = cv.gapi.mean(r)
comp = cv.GComputation(g_in, g_out)
actual = comp.apply(in_mat)
for pkg in pkgs:
actual = comp.apply(in_mat, args=cv.compile_args(pkg))
# Comparison

View File

@ -7,8 +7,8 @@ Test for copyto with mask
# Python 2/3 compatibility
from __future__ import print_function
import cv2 as cv
import numpy as np
import cv2 as cv
import sys
from tests_common import NewOpenCVTests