示例#1
0
 def verify_output(self, index, video):
     """Verify if the output is correct by comparing key frames"""
     test = 'mark_tracking_{0}'.format(index)
     cmpr = CompareVideo(test, video)
     res1, res2 = cmpr.compare()
     print "RESULTS", res1, res2
     #   Experimental Value
     if res1 <= 0.04 and res2 <= 0.04:
         return True
     return False
示例#2
0
 def verify_output(self, index, video):
     """Verify if the output is correct by comparing key frames"""
     test = 'mark_tracking_{0}'.format(index)
     cmpr = CompareVideo(test, video)
     res1, res2 = cmpr.compare()
     print("RESULTS", res1, res2)
     #   Experimental Value
     if res1 <= 0.04 and res2 <= 0.04:
         return True
     return False
示例#3
0
 def verify_output(self, mode, video):
     """Verify if the output is correct by comparing key frames"""
     test = 'composite_mode_{0}'.format(mode)
     cmpr = CompareVideo(test, video)
     res1, res2 = cmpr.compare()
     print "RESULTS", res1, res2
     folder = cmpr.test_frame_dir
     cmd = "./imgurbash.sh {0}/*.*".format(folder)
     print cmd
     proc = subprocess.Popen(cmd, bufsize=-1, shell=True)
     print proc.wait()
     # Experimental Value
     if res1 <= 0.04 and res2 <= 0.04:
         return True
     return False
示例#4
0
 def verify_output(self, mode, video):
     """Verify if the output is correct by comparing key frames"""
     test = 'composite_mode_{0}'.format(mode)
     cmpr = CompareVideo(test, video)
     res1, res2 = cmpr.compare()
     print "RESULTS", res1, res2
     folder = cmpr.test_frame_dir
     cmd = "./imgurbash.sh {0}/*.*".format(folder)
     print cmd
     proc = subprocess.Popen(
         cmd,
         bufsize=-1,
         shell=True)
     print proc.wait()
     # Experimental Value
     if res1 <= 0.04 and res2 <= 0.04:
         return True
     return False
示例#5
0
    def verify_output(self, mode, video):
        """Verify if the output is correct by comparing key frames"""
        test = 'composite_mode_{0}'.format(mode)
        cmpr = CompareVideo(test, video)
        res1, res2 = cmpr.compare()
        print("RESULTS", res1, res2)

        # In the CI environment, upload to imgur the results.
        if os.environ.get('CI', "False") == "true":
            folder = cmpr.test_frame_dir
            cmd = "./imgurbash.sh {0}/*.*".format(folder)
            print(cmd)
            proc = subprocess.Popen(
                cmd,
                bufsize=-1,
                shell=True)
            print(proc.wait())

        # Experimental Value
        if res1 <= 0.04 and res2 <= 0.04:
            return True
        return False