This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Licensed under a BSD license. See license.html for license --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> | |
<title>title here</title> | |
<meta property="og:image" content="thumbnail.jpg" /> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import mooncatparser as mc | |
import cv2 | |
def read_rescued(): | |
data = [] | |
with open('rescued.txt') as f: | |
line = f.readline() | |
while line: | |
line = f.readline() | |
if line == "": |