diff --git a/.gitignore b/.gitignore index 48bf043..03c027e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,13 @@ omrEnv +venv/ +yolo/ +output/ +orch_dataset/ .vscode/ __pycache__/ string_dataset/ !string_dataset/pdf_data/beethoven1/beethoven1.json -!string_dataset/pdf_data/beethoven1/beethoven1.pdf \ No newline at end of file +!string_dataset/pdf_data/beethoven1/beethoven1.pdf +test* +processedData.pkl +data_dataset/*/imgs \ No newline at end of file diff --git a/README.md b/README.md index 1ff0501..373955f 100644 --- a/README.md +++ b/README.md @@ -71,4 +71,19 @@ ``` -This project utilized the segmentation models from [oemer](https://github.com/BreezeWhite/oemer) \ No newline at end of file +This project utilized the segmentation models from [oemer](https://github.com/BreezeWhite/oemer) + + + +## Code Explaination + Workflow (for `pdf2musicXMLsingleLine.py`) +### General: +Input/output structure: +- +Utils functions +- `imwrite`: if `debugImg` set to True, will write debug image to +### Part 1: Code adaptation from [oemer](https://github.com/BreezeWhite/oemer) +- `runModel1`: run the SegNet model +- `runModel2`: run the staffLine detection model + +### Part 2: Post processing for oemer's output + diff --git a/best_time_signature.pt b/best_time_signature.pt new file mode 100644 index 0000000..4be05ae Binary files /dev/null and b/best_time_signature.pt differ diff --git a/calculate_psda.py b/calculate_psda.py new file mode 100644 index 0000000..668f4d6 --- /dev/null +++ b/calculate_psda.py @@ -0,0 +1,420 @@ +import csv +from music21 import converter, note, chord, stream +import os +from typing import List + +from music21.musicxml.m21ToXml import ScoreExporter +from xml.etree.ElementTree import tostring + +dataSepList = dict() +dataSepList['bee5'] = [1, 12, 33, 53, 77, 98, 119, 141, 160, 170, 181, 194, 223, 248, 267, 287, 309, 333, 356, 376,386, 397, 408, 418, 429, 441, 455, 469, 480, 491, + 1, 8, 25, 38, 57, 73, 82, 92, 102, 110, 118, 133, 148, 164, 172, 183, 187, 191, 204, 215, 230, + 1, 12, 38, 61, 82, 83, 104, 123, 131,150, 166, 182, 190, 205, 231, 263, 293, 323, 349, + 1, 6, 12, 17, 21, 26, 33, 39, 44, 49, 54, 59, 62, 69, 74, 81, 85, 90, 94, 104, 112, 117, 122, 127, 132, 136, 140, 145, 150, 161, 186, 207, 214, 219, 224, 228, 234, 240, 247, 252, 257, 262, 268, 272, 279, 285, 294, 300, 305, 309, 316, 324, 330, 336, 343, 349, 354, 364, 374, 383, 391, 397, 405, 415, 422, 432] +dataSepList['bee6'] = [1,17,31,43,57,83,95,111,124,139,154,166,177,196,209,221,241,260,276,298,317,329,354,368,381,395,407,426,440,452,464,479,493, + 1,4,8,10,12,16,21,25,29,31,35,39,42,44,46,49,51,53,57,61,65,70,74,79,83,87,89,91,93,95,97,99,101,103,107,111,116,118,121,123,125,127,133, + 1,19,39,59,80,111,141,161,176,191,205,224,244,125, + 1,14,22,25,28,31,34,40,17,51,56,65,72,78,82,87,93,103,107,110,114,125,137,145, + 1,14,23,26,32,36,40,44,48,52,57,28,77,85,93,101,105,109,117,131,134,137,141,149,153,157,161,170,179,191,196,204,212,219,225,231,245,260] +dataSepList['bee7'] = [1,8,16,19,22,30,36,39,46,53,63,75,87,91,95,99,103,108,118,127,138,148,157,162,167,171,184,196,205,209,213,225,235,245,255,260,270,279,283,287,291,295,300,311,323,331,335,346,358,366,370,376,380,384,397,409,416,422,428,433,439,444, + 1,32,63,77,84,91,106,120,134,146,158,170,182,192,212,217,230,244,261, + 1,16,34,56,76,97,118,135,143,160,181,198,214,233,250,259,277,293,317,337,357,377,396,404,424,441,459,477,496,513,531,554,574,593,613,629,637,645, + 1,7,12,17,21,28,34,39,52,60,73,81,90,104,113,119,122,129,146,151,154,159,163,177,191,203,218,226,231,238,245,251,257,263,271,278,290,302,314,320,328,335,340,347,358,370,382,394,400,406,414,421,429,437,445,453,459] +dataSepList['bee8'] = [1,8,13,20,26,34,48,64,80,92,98,112,124,138,151,163,169,175,182,187,193,200,213,219,226,241,255,263,277,289,295,307,317,328,334,345,349,353,357,364, + 1,8,16,24,32,41,48,55,63,71,78, + 1,6,11,16,21,31,38,52,66, + 1,8,22,31,42,54,65,75,85,99,112,123,135,148,161,173,183,191,201,211,225,238,244,250,260,274,291,302,312,324,336,348,361,373,383,391,394,401,407,412,417,428,439,449,454,461,474,487] + +def lcs(seq1, seq2): + n, m = len(seq1), len(seq2) + + # DP table + dp = [[0] * (m + 1) for _ in range(n + 1)] + + # Fill table + for i in range(n): + for j in range(m): + if seq1[i] == seq2[j]: + dp[i + 1][j + 1] = dp[i][j] + 1 + else: + dp[i + 1][j + 1] = max(dp[i][j + 1], dp[i + 1][j]) + print("finish creating table of size") + # Reconstruct LCS + i, j = n, m + lcs_seq = [] + + while i > 0 and j > 0: + if seq1[i - 1] == seq2[j - 1]: + lcs_seq.append(seq1[i - 1]) + i -= 1 + j -= 1 + elif dp[i - 1][j] > dp[i][j - 1]: + i -= 1 + else: + j -= 1 + + return lcs_seq[::-1] # reverse + +def musicxml_to_csv(xml_path, csv_path, trackLength): + score = converter.parse(xml_path) + + rows = [] + + # Iterate over parts (tracks) + for track_idx, part in enumerate(score.parts): + if track_idx >= trackLength: + continue + # Go measure by measure + for m_idx, measure in enumerate(part.getElementsByClass('Measure')): + bar_number = measure.number + + # Iterate over notes/rests/chords in the measure + for elem in measure.notesAndRests: + onset = elem.offset # relative to measure start + duration = elem.quarterLength + + if isinstance(elem, note.Note): + pitch = elem.pitch.nameWithOctave + + rows.append([ + track_idx, + bar_number, + onset, + duration, + pitch + ]) + + elif isinstance(elem, note.Rest): + rows.append([ + track_idx, + bar_number, + onset, + duration, + "Rest" + ]) + + elif isinstance(elem, chord.Chord): + # If chord, output one row per note + for p in elem.pitches: + rows.append([ + track_idx, + bar_number, + onset, + duration, + p.nameWithOctave + ]) + + # Write CSV + with open(csv_path, "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["track", "bar", "onset", "duration", "pitch"]) + writer.writerows(rows) + + return len(score.parts) + +# psda, psd, pda, pd, pa, p +def csv_to_string_list(csv_path): + def convertPitch(pitch:str): + if len(pitch) == 3: + return pitch[0]+pitch[2] + else: + return pitch + psda = [] + psd = [] + pda = [] + pd = [] + pa = [] + p = [] + + with open(csv_path, newline='') as f: + reader = csv.DictReader(f) + + for row in reader: + track = 0 # row["track"] + onset = row["onset"] + duration = row["duration"] + pitch = row["pitch"] + + s = f"{track}_{pitch}_{onset}_{duration}" + psda.append(s) + s = f"{track}_{convertPitch(pitch)}_{onset}_{duration}" + psd.append(s) + s = f"{track}_{pitch}_{duration}" + pda.append(s) + s = f"{track}_{convertPitch(pitch)}_{duration}" + pd.append(s) + s = f"{track}_{pitch}" + pa.append(s) + s = f"{track}_{convertPitch(pitch)}" + p.append(s) + ret = dict() + ret['psda'] = psda + ret['psd'] = psd + ret['pda'] = pda + ret['pd'] = pd + ret['pa'] = pa + ret['p'] = p + return ret +def get_idx_of_ones(lst): + return [i for i, x in enumerate(lst) if x == 1] + +def get_val_name(startOfMvt, currPgNum): + mvtNum = 0 + pageNum = 0 + for i in range(len(startOfMvt)): + if startOfMvt[i] < currPgNum: + mvtNum = i+1 + pageNum = currPgNum-startOfMvt[i] + return f"{mvtNum}_{pageNum}" + + + +def combineXMLs(xmlList: List[str]): + scores = [converter.parse(xml) for xml in xmlList] + combined = stream.Score() + + for parts in zip(*[score.parts for score in scores]): + combined_part = stream.Part() + combined_part.id = parts[0].id + combined_part.partName = parts[0].partName + + for part in parts: + for measure in part.getElementsByClass(stream.Measure): + combined_part.append(measure) + + combined.append(combined_part) + return combined + +def lcsByPage(symphonyNum: int): + rootValFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\val{symphonyNum}" + rootXmlFolder = rf"C:\Ellie\APIs\25-omr\gt_pred\bee{symphonyNum}_xmls" + outputFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\csv{symphonyNum}" + if not os.path.exists(outputFolder): + os.mkdir(outputFolder) + outputOutFolder = os.path.join(outputFolder, 'out') + outputValFolder = os.path.join(outputFolder, 'val') + if not os.path.exists(outputOutFolder): + os.mkdir(outputOutFolder) + if not os.path.exists(outputValFolder): + os.mkdir(outputValFolder) + dataSeperate = dataSepList.get(f'bee{symphonyNum}') + avgCsvPath = os.path.join(rf"C:\Ellie\APIs\25-omr\xml_gt\bee{symphonyNum}_psda.csv") + rootAvgCsPath = avgCsvPath + cnt = 0 + while os.path.exists(avgCsvPath): + avgCsvPath = rootAvgCsPath.replace('.csv',f'_{cnt}.csv') + cnt += 1 + for i in range(1, len(dataSeperate)+1): + mvtPg = get_val_name(get_idx_of_ones(dataSeperate), i) + valXmlPath = os.path.join(rootValFolder, rf'{symphonyNum}_{mvtPg}.musicxml') + xmlXmlPath = os.path.join(rootXmlFolder, rf'Bee_{symphonyNum}_challenge_{i}.musicxml') + + xmlScore = converter.parse(xmlXmlPath) + valScore = converter.parse(valXmlPath) + + minNumTracks = min(len(xmlScore.parts), len(valScore.parts)) + # minNumMeasures = min(len(xmlScore.parts[0].getElementsByClass('Measure')),len(valScore.parts[0].getElementsByClass('Measure'))) + + xmlCsvPath = os.path.join(outputOutFolder, rf'out{i}.csv') + valCsvPath = os.path.join(outputValFolder, rf'truth{i}.csv') + musicxml_to_csv(xmlXmlPath, xmlCsvPath, minNumTracks) + musicxml_to_csv(valXmlPath, valCsvPath, minNumTracks) + + xmlRet = csv_to_string_list(xmlCsvPath) + valRet = csv_to_string_list(valCsvPath) + print() + metricsName = ['psda','psd','pda','pd','pa','p'] + rowNames = ["lenPred","lenTruth"] + for mt in metricsName: + # /ground truth 命中多少:precision + # /our length 正確多少:recall + rowNames += [f"{mt}_length", f"{mt}/pred", f"{mt}/gt"] + numCorrect = dict() # numCorrect['psda'] = [len(lcs), len(xml), len(val), correctOfXml, correctOfVal] + lenXml = len(xmlRet[metricsName[0]]) + lenVal = len(valRet[metricsName[0]]) + rowResToWrite = [lenXml, lenVal] + + for ky in metricsName: + lcsRes = len(lcs(xmlRet[ky], valRet[ky])) + numCorrect[ky] = [lcsRes, lenXml, lenVal, lcsRes/lenXml, lcsRes/lenVal] + rowResToWrite += [lcsRes, lcsRes/lenXml, lcsRes/lenVal] + print(f"{ky}: {numCorrect[ky]}") + with open(avgCsvPath, "a", newline="") as f: + writer = csv.writer(f) + if not os.path.isfile(avgCsvPath): + writer.writerow(rowNames) + writer.writerow(rowResToWrite) + print(f"page{i}: {rowResToWrite}") + print() + +def lcsByMvt(syphonyNum: int): + rootValFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\val{symphonyNum}" + rootXmlFolder = rf"C:\Ellie\APIs\25-omr\gt_pred\bee{symphonyNum}_xmls" + rootGtFolder = rf"C:\Ellie\APIs\25-omr\md_gt" + rootRootCsvFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\csv{symphonyNum}" + rootCsvFolder = os.path.join(rootRootCsvFolder, "mvt") + checkAndCreateFolder([rootValFolder, rootXmlFolder, rootRootCsvFolder, rootCsvFolder]) + dataSeperate = dataSepList.get(f'bee{symphonyNum}') + outputFolder = 'xml_gt' + beginningOfMvts = [i+1 for i in range(len(dataSeperate)) if dataSeperate[i] == 1] + numMvts = len(beginningOfMvts) + beginningOfMvts.append(len(dataSeperate)+1) + for i in range(numMvts): + mvtNum = i+1 + start = beginningOfMvts[i] + end = beginningOfMvts[i+1] # should not be included + xmlPaths = [os.path.join(rootXmlFolder,f"Bee_{symphonyNum}_challenge_{f}.musicxml") for f in range(start,end)] + score = combineXMLs(xmlPaths) + outputPath = os.path.join(outputFolder, f"bee{symphonyNum}_{mvtNum}.musicxml") + avgCsvPath = os.path.join(rootCsvFolder, f"bee_{symphonyNum}_{mvtNum}") + if not os.path.exists(outputPath): + exporter = ScoreExporter(score) + xmlStr = exporter.parse() + xmlBytes = tostring(xmlStr, encoding='unicode') + with open(outputPath, 'w', encoding='utf-8') as f: + f.write(xmlBytes) + print(f"finish parsing {outputPath}") + valXmlPath = os.path.join(rootGtFolder, rf'{symphonyNum}_{mvtNum}.musicxml') + + xmlScore = score + valScore = converter.parse(valXmlPath) + + minNumTracks = min(len(xmlScore.parts), len(valScore.parts)) + # minNumMeasures = min(len(xmlScore.parts[0].getElementsByClass('Measure')),len(valScore.parts[0].getElementsByClass('Measure'))) + + xmlCsvPath = os.path.join(rootCsvFolder, rf'out_{symphonyNum}_{mvtNum}.csv') + valCsvPath = os.path.join(rootCsvFolder, rf'truth_{symphonyNum}_{mvtNum}.csv') + musicxml_to_csv(outputPath, xmlCsvPath, minNumTracks) + musicxml_to_csv(valXmlPath, valCsvPath, minNumTracks) + + xmlRet = csv_to_string_list(xmlCsvPath) + valRet = csv_to_string_list(valCsvPath) + metricsName = ['psda','psd','pda','pd','pa','p'] + rowNames = ["lenPred","lenTruth"] + for mt in metricsName: + # /ground truth 命中多少:precision + # /our length 正確多少:recall + rowNames += [f"{mt}_length", f"{mt}/pred", f"{mt}/gt"] + numCorrect = dict() # numCorrect['psda'] = [len(lcs), len(xml), len(val), correctOfXml, correctOfVal] + lenXml = len(xmlRet[metricsName[0]]) + lenVal = len(valRet[metricsName[0]]) + rowResToWrite = [lenXml, lenVal] + + for ky in metricsName: + lcsRes = len(lcs(xmlRet[ky], valRet[ky])) + numCorrect[ky] = [lcsRes, lenXml, lenVal, lcsRes/lenXml, lcsRes/lenVal] + rowResToWrite += [lcsRes, lcsRes/lenXml, lcsRes/lenVal] + print(f"{ky}: {numCorrect[ky]}") + with open(avgCsvPath, "a", newline="") as f: + writer = csv.writer(f) + if not os.path.isfile(avgCsvPath): + writer.writerow(rowNames) + writer.writerow(rowResToWrite) + print(f"page{i}: {rowResToWrite}") + +def checkAndCreateFolder(folderPaths): + for folderPath in folderPaths: + if not os.path.exists(folderPath): + os.mkdir(folderPath) +def musicxml_to_csv_single_track(xml_path, csv_path, track_idx): + score = converter.parse(xml_path) + rows = [] + part = score.parts[track_idx] + + for measure in part.getElementsByClass('Measure'): + bar_number = measure.number + for elem in measure.notesAndRests: + onset = elem.offset + duration = elem.quarterLength + + if isinstance(elem, note.Note): + rows.append([0, bar_number, onset, duration, elem.pitch.nameWithOctave]) + elif isinstance(elem, note.Rest): + rows.append([0, bar_number, onset, duration, "Rest"]) + elif isinstance(elem, chord.Chord): + for p in elem.pitches: + rows.append([0, bar_number, onset, duration, p.nameWithOctave]) + + with open(csv_path, "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["track", "bar", "onset", "duration", "pitch"]) + writer.writerows(rows) + +def lcsByMvtPart(symphonyNum: int): + rootValFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\val{symphonyNum}" + rootXmlFolder = rf"C:\Ellie\APIs\25-omr\gt_pred\bee{symphonyNum}_xmls" + rootGtFolder = rf"C:\Ellie\APIs\25-omr\md_gt" + rootRootCsvFolder = rf"C:\Ellie\APIs\25-omr\xml_gt\csv{symphonyNum}" + rootCsvFolder = os.path.join(rootRootCsvFolder, "mvt") + checkAndCreateFolder([rootValFolder, rootXmlFolder, rootRootCsvFolder, rootCsvFolder]) + dataSeperate = dataSepList.get(f'bee{symphonyNum}') + outputFolder = 'xml_gt' + beginningOfMvts = [i+1 for i in range(len(dataSeperate)) if dataSeperate[i] == 1] + numMvts = len(beginningOfMvts) + beginningOfMvts.append(len(dataSeperate)+1) + + for i in range(numMvts): + mvtNum = i+1 + start = beginningOfMvts[i] + end = beginningOfMvts[i+1] + xmlPaths = [os.path.join(rootXmlFolder, f"Bee_{symphonyNum}_challenge_{f}.musicxml") for f in range(start, end)] + score = combineXMLs(xmlPaths) + outputPath = os.path.join(outputFolder, f"bee{symphonyNum}_{mvtNum}.musicxml") + + if not os.path.exists(outputPath): + exporter = ScoreExporter(score) + xmlStr = exporter.parse() + xmlBytes = tostring(xmlStr, encoding='unicode') + with open(outputPath, 'w', encoding='utf-8') as f: + f.write(xmlBytes) + print(f"finish parsing {outputPath}") + + valXmlPath = os.path.join(rootGtFolder, rf'{symphonyNum}_{mvtNum}.musicxml') + xmlScore = score + valScore = converter.parse(valXmlPath) + minNumTracks = min(len(xmlScore.parts), len(valScore.parts)) + + metricsName = ['psda', 'psd', 'pda', 'pd', 'pa', 'p'] + rowNames = ["part", "lenPred", "lenTruth"] + for mt in metricsName: + rowNames += [f"{mt}_length", f"{mt}/pred", f"{mt}/gt"] + + avgCsvPath = os.path.join(rootCsvFolder, f"bee_{symphonyNum}_{mvtNum}.csv") + + with open(avgCsvPath, "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(rowNames) + + # --- Run LCS per part instead of on the whole movement --- + for trackIdx in range(minNumTracks): + xmlCsvPath = os.path.join(rootCsvFolder, rf'out_{symphonyNum}_{mvtNum}_part{trackIdx}.csv') + valCsvPath = os.path.join(rootCsvFolder, rf'truth_{symphonyNum}_{mvtNum}_part{trackIdx}.csv') + + # Pass trackLength as a single-track window: only export track trackIdx + musicxml_to_csv_single_track(outputPath, xmlCsvPath, trackIdx) + musicxml_to_csv_single_track(valXmlPath, valCsvPath, trackIdx) + + xmlRet = csv_to_string_list(xmlCsvPath) + valRet = csv_to_string_list(valCsvPath) + + lenXml = len(xmlRet[metricsName[0]]) + lenVal = len(valRet[metricsName[0]]) + rowResToWrite = [trackIdx, lenXml, lenVal] + + for ky in metricsName: + lcsRes = len(lcs(xmlRet[ky], valRet[ky])) + rowResToWrite += [lcsRes, lcsRes/lenXml, lcsRes/lenVal] + print(f" part{trackIdx} {ky}: lcs={lcsRes}, pred={lenXml}, gt={lenVal}") + + with open(avgCsvPath, "a", newline="") as f: + writer = csv.writer(f) + writer.writerow(rowResToWrite) + + print(f"mvt{mvtNum} part{trackIdx}: {rowResToWrite}") +if __name__ == '__main__': + symphonyNum = 7 + # lcsByPage() + # lcsByMvt(symphonyNum) + lcsByMvtPart(symphonyNum) + + diff --git a/calib_one.py b/calib_one.py index 6aa62e1..f03e17b 100644 --- a/calib_one.py +++ b/calib_one.py @@ -37,7 +37,8 @@ def calib_onebar(inputLst, changeWeight, desiredLength): if noDotLen <= desiredLength: singleCostTb[i,noDotLen] = 1 for times in range(int(np.ceil(np.log2(desiredLength/noDotLen)))): - singleCostTb[i,int(noDotLen*(2**times)*1.5)] = times*currWeight + if int(noDotLen*(2**times)*1.5) < len(singleCostTb[i]): + singleCostTb[i,int(noDotLen*(2**times)*1.5)] = times*currWeight for div in range(int(np.log2(noDotLen))): # noDotLen/(2**div) will be integer for sure? if int(noDotLen/(2**div)) <= desiredLength: diff --git a/cnt_staff_omr.py b/cnt_staff_omr.py new file mode 100644 index 0000000..f50f7f3 --- /dev/null +++ b/cnt_staff_omr.py @@ -0,0 +1,157 @@ +""" +cnt_staff_omr.py - Count the number of staves in a music score image. + +Usage: + python cnt_staff_omr.py [--batch-size N] + +Speed tips: + - Install onnxruntime-gpu for CUDA acceleration (replaces onnxruntime). + - Increase --batch-size (e.g. 32 or 64) when running on GPU. +""" + +import argparse +import os +import pickle +import statistics +from typing import List, Tuple + +import cv2 +import numpy as np +from PIL import Image +import onnxruntime as rt + +from omr import MODULE_PATH +from omr.staffline_extraction import staff_extract_staffobj + +MIN_BAR_HEIGHT = 8 +RESIZE_RATIO = 2 + + +# ---------- minimal Staff class (mirrors pdf2musicXML_yolo.Staff) ---------- + +class Staff: + def __init__(self, left: int, right: int, ys: Tuple[int, int, int, int, int], minMaxDiff: int = 0): + self.left = left + self.right = right + self.ys = ys + self.minDiff = minMaxDiff + + def get_yOne_float(self) -> float: + x = [self.ys[i + 1] - self.ys[i] for i in range(len(self.ys) - 1)] + return sum(x) / len(x) + + +# ---------- staff list helpers ------------------------------------------------ + +def _staffs_to_omrStaffList(staffs) -> Tuple[List[Staff], list]: + left = min([sf.x_left for sf in staffs[0, :]]) + right = max([sf.x_right for sf in staffs[-1, :]]) + omrstaff_list: List[Staff] = [] + staffRange = [] + for i in range(staffs.shape[1]): + yuppers = [sf.y_upper for sf in staffs[:, i]] + ybottoms = [sf.y_lower for sf in staffs[:, i]] + top = statistics.median(yuppers) + bottom = statistics.median(ybottoms) + unit_size = statistics.median([sf.unit_size for sf in staffs[:, i]]) + minMaxDiff = min(max(yuppers) - min(yuppers), max(ybottoms) - min(ybottoms)) + ys = [int(top), int(top + unit_size), int((top + bottom) / 2), int(bottom - unit_size), int(bottom)] + omrstaff_list.append(Staff(int(left), int(right), ys, minMaxDiff)) + staffRange.append(range(int(top), int(bottom))) + return omrstaff_list, staffRange + + +# ---------- single-model inference (first model only) ------------------------ + +def _resize_image(image: Image.Image, lower: int = 3_000_000, upper: int = 4_350_000) -> Image.Image: + w, h = image.size + pix = w * h + if lower <= pix <= upper: + return image + ratio = ((lower / pix + upper / pix) / 2) ** 0.5 + return image.resize((round(ratio * w), round(ratio * h))) + + +def _run_first_model(img_path: str, batch_size: int = 16) -> np.ndarray: + """Run only the unet_big model and return the staff prediction map.""" + model_path = os.path.join(MODULE_PATH, "checkpoints/unet_big") + onnx_path = os.path.join(model_path, "model.onnx") + metadata = pickle.load(open(os.path.join(model_path, "metadata.pkl"), "rb")) + + providers = ["CUDAExecutionProvider", "CoreMLExecutionProvider", "CPUExecutionProvider"] + try: + rt.set_default_logger_severity(3) + except AttributeError: + pass # removed in onnxruntime-gpu >= 1.18 + sess = rt.InferenceSession(onnx_path, providers=providers) + print("Providers in use:", sess.get_providers()) + + output_names = metadata['output_names'] + input_shape = metadata['input_shape'] + output_shape = metadata['output_shape'] + + image_cv = cv2.imread(img_path) + image_pil = Image.fromarray(image_cv).convert("RGB") + image_pil = _resize_image(image_pil) + image = np.array(image_pil) + + win_size = input_shape[1] + step_size = 128 + patches = [] + coords = [] + for y in range(0, image.shape[0], step_size): + y = min(y, image.shape[0] - win_size) + for x in range(0, image.shape[1], step_size): + x = min(x, image.shape[1] - win_size) + patches.append(image[y:y + win_size, x:x + win_size]) + coords.append((y, x)) + + pred_patches = [] + total = len(patches) + for i in range(0, total, batch_size): + print(f"{i+1}/{total} (batch {batch_size})", end="\r") + batch = np.array(patches[i:i + batch_size]) + out = sess.run(output_names, {'input': batch})[0] + pred_patches.append(out) + print() + + full_out = np.zeros(image.shape[:2] + (output_shape[-1],), dtype=np.float32) + full_mask = np.zeros(image.shape[:2] + (output_shape[-1],), dtype=np.float32) + for idx, (y, x) in enumerate(coords): + bi, ri = divmod(idx, batch_size) + hop = pred_patches[bi][ri] + full_out [y:y + win_size, x:x + win_size] += hop + full_mask[y:y + win_size, x:x + win_size] += 1 + + full_out /= full_mask + class_map = np.argmax(full_out, axis=-1) + staff = np.where(class_map == 1, 1, 0) + + # Resize 2x to match downstream processing + staff = cv2.resize(staff.astype(np.uint8), None, fx=RESIZE_RATIO, fy=RESIZE_RATIO, + interpolation=cv2.INTER_NEAREST) + return staff + + +# ---------- main -------------------------------------------------------------- + +def count_staff(img_path: str, batch_size: int = 16) -> int: + staff_map = _run_first_model(img_path, batch_size=batch_size) + staffs, _ = staff_extract_staffobj(staff_map, MIN_BAR_HEIGHT) + staffList, _ = _staffs_to_omrStaffList(staffs) + return len(staffList) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Count staves in a music score image.") + parser.add_argument("image_path", help="Path to the input image") + parser.add_argument("--batch-size", type=int, default=16, + help="Inference batch size (increase for GPU, e.g. 32 or 64)") + args = parser.parse_args() + + if not os.path.exists(args.image_path): + print(f"Error: file not found: {args.image_path}") + raise SystemExit(1) + + count = count_staff(args.image_path, batch_size=args.batch_size) + print("the length of staff is:", count) \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_1.jpg b/data_dataset/dvo/debug/debug_1.jpg new file mode 100644 index 0000000..180cb18 Binary files /dev/null and b/data_dataset/dvo/debug/debug_1.jpg differ diff --git a/data_dataset/dvo/debug/debug_1.txt b/data_dataset/dvo/debug/debug_1.txt new file mode 100644 index 0000000..48cc3a6 --- /dev/null +++ b/data_dataset/dvo/debug/debug_1.txt @@ -0,0 +1,618 @@ +8 0.148713 0.901774 0.009575 0.018645 +7 0.881209 0.900523 0.010772 0.008413 +8 0.850090 0.900750 0.011969 0.008868 +7 0.781568 0.901660 0.011370 0.009777 +8 0.471275 0.900750 0.011969 0.007958 +7 0.425194 0.901887 0.011969 0.010232 +7 0.755536 0.900750 0.011969 0.008868 +8 0.295931 0.901887 0.011969 0.011141 +7 0.243567 0.903024 0.011370 0.013415 +6 0.315081 0.902115 0.010772 0.017963 +6 0.179234 0.901887 0.009575 0.017508 +10 0.676541 0.868349 0.005984 0.001819 +7 0.782466 0.848909 0.011969 0.007958 +8 0.755236 0.848909 0.011370 0.007958 +8 0.882705 0.848226 0.011370 0.008413 +8 0.850688 0.848681 0.010772 0.009322 +10 0.463196 0.838563 0.014961 0.005002 +7 0.431628 0.842656 0.009276 0.015007 +10 0.456314 0.813779 0.008378 0.003638 +9 0.406942 0.811619 0.008977 0.012506 +9 0.242669 0.801273 0.009575 0.021373 +9 0.177738 0.805366 0.008977 0.030468 +10 0.178336 0.798772 0.006583 0.002729 +10 0.674746 0.793770 0.005984 0.002729 +10 0.218133 0.788313 0.010772 0.001819 +10 0.330640 0.785357 0.009575 0.005002 +10 0.339617 0.784220 0.005984 0.003638 +10 0.447935 0.755798 0.005984 0.003183 +10 0.448534 0.751933 0.008378 0.002729 +10 0.329443 0.743633 0.008378 0.002046 +7 0.204069 0.746589 0.012567 0.013415 +6 0.225913 0.745680 0.009575 0.017963 +10 0.656194 0.737494 0.005984 0.001592 +10 0.231299 0.708731 0.005984 0.002729 +10 0.861460 0.690086 0.005984 0.001819 +10 0.814183 0.684629 0.008378 0.001819 +10 0.259126 0.632106 0.006583 0.003183 +7 0.652304 0.627672 0.011370 0.012960 +7 0.561640 0.626080 0.011969 0.009777 +7 0.497307 0.626535 0.011370 0.010687 +7 0.915619 0.626762 0.011370 0.013870 +7 0.880311 0.625171 0.011370 0.010687 +7 0.781269 0.626990 0.011969 0.013415 +7 0.386894 0.625853 0.011969 0.011141 +6 0.594255 0.625171 0.010174 0.017963 +6 0.211849 0.625398 0.010174 0.017508 +6 0.441652 0.625171 0.010174 0.017963 +6 0.811490 0.624488 0.010174 0.017508 +6 0.292041 0.624943 0.010174 0.018417 +10 0.671454 0.590723 0.008977 0.004093 +10 0.780969 0.569804 0.006583 0.003183 +7 0.821364 0.564461 0.013166 0.020236 +10 0.784560 0.530241 0.010174 0.002274 +10 0.897068 0.527285 0.007780 0.003638 +10 0.880012 0.524784 0.007181 0.003183 +9 0.665470 0.527967 0.004189 0.024557 +9 0.650808 0.522624 0.009575 0.014779 +10 0.652005 0.517508 0.005984 0.002274 +10 0.732196 0.512506 0.005984 0.003183 +10 0.192400 0.512278 0.011969 0.002729 +10 0.270796 0.507276 0.005984 0.001819 +9 0.392879 0.521260 0.005984 0.031151 +10 0.886296 0.505457 0.006583 0.001819 +10 0.758827 0.474307 0.007780 0.003183 +10 0.616996 0.469986 0.007780 0.002729 +6 0.178636 0.468736 0.010772 0.017963 +10 0.310293 0.455889 0.008378 0.004548 +10 0.300120 0.427467 0.007181 0.002274 +10 0.832735 0.413824 0.010772 0.005002 +10 0.731897 0.412688 0.006583 0.002729 +10 0.649910 0.408140 0.007780 0.002729 +10 0.316577 0.408140 0.007780 0.002729 +10 0.836625 0.348795 0.011370 0.005002 +10 0.677139 0.348568 0.011969 0.004548 +10 0.514063 0.348795 0.011370 0.005002 +8 0.352783 0.348454 0.011969 0.007503 +10 0.584680 0.297635 0.006583 0.002729 +7 0.714841 0.300250 0.011969 0.012960 +7 0.664572 0.300250 0.011969 0.012960 +10 0.352783 0.296498 0.011969 0.005002 +6 0.682825 0.298431 0.010174 0.018417 +9 0.644823 0.261255 0.008378 0.029104 +10 0.716637 0.258072 0.005984 0.003638 +9 0.738480 0.254206 0.008977 0.021373 +9 0.774985 0.254434 0.008977 0.027285 +9 0.715141 0.256594 0.007780 0.021146 +9 0.860263 0.254889 0.009575 0.029104 +9 0.697187 0.256367 0.011370 0.032060 +10 0.894375 0.252842 0.009575 0.005002 +9 0.820766 0.256253 0.009575 0.032742 +10 0.351287 0.252842 0.010174 0.005002 +10 0.320766 0.252160 0.008977 0.003638 +9 0.303112 0.252501 0.008378 0.027058 +9 0.400658 0.252729 0.009575 0.028422 +10 0.807301 0.248295 0.006583 0.002274 +9 0.384201 0.251819 0.008977 0.030241 +10 0.878217 0.248067 0.007181 0.002729 +9 0.838420 0.252387 0.008977 0.032287 +9 0.789946 0.257503 0.010174 0.023874 +10 0.303710 0.247613 0.005984 0.001819 +10 0.392280 0.234425 0.007181 0.001819 +10 0.729204 0.201455 0.005984 0.003183 +8 0.537403 0.192701 0.011370 0.007958 +6 0.554458 0.193838 0.009575 0.016598 +6 0.877319 0.192929 0.010174 0.019327 +8 0.680132 0.140405 0.011969 0.007958 +8 0.837522 0.139268 0.011969 0.006594 +10 0.513465 0.139154 0.011370 0.005002 +8 0.354578 0.138131 0.011969 0.007049 +10 0.589168 0.055480 0.005984 0.005002 +8 0.415919 0.048545 0.007780 0.017053 +8 0.536804 0.049682 0.010174 0.017508 +7 0.564632 0.049682 0.008378 0.017508 +8 0.579892 0.049909 0.012567 0.017963 +12 0.446290 0.916439 0.009874 0.006139 +17 0.552364 0.909618 0.010174 0.006139 +11 0.733393 0.909050 0.009575 0.005912 +12 0.691652 0.909277 0.009874 0.006367 +12 0.675494 0.909163 0.009874 0.006139 +18 0.132256 0.908367 0.007181 0.004548 +11 0.906194 0.908709 0.009276 0.006139 +11 0.831239 0.908709 0.009575 0.006139 +11 0.803561 0.908481 0.009874 0.006594 +18 0.528127 0.906207 0.013166 0.005230 +18 0.528127 0.900978 0.013166 0.005230 +13 0.149461 0.901091 0.008677 0.007276 +12 0.409485 0.898818 0.009276 0.006367 +13 0.274835 0.898022 0.009276 0.006594 +18 0.123279 0.896544 0.007181 0.004548 +18 0.123279 0.901091 0.007181 0.004548 +12 0.390036 0.895521 0.005685 0.005230 +12 0.225613 0.895748 0.007780 0.005684 +14 0.076900 0.891314 0.005984 0.012278 +12 0.470527 0.864598 0.009276 0.006139 +12 0.446290 0.864711 0.009874 0.006367 +12 0.275583 0.864598 0.008977 0.006139 +11 0.226212 0.861642 0.008977 0.005684 +11 0.178785 0.861528 0.009874 0.006367 +12 0.905595 0.856412 0.009276 0.006139 +11 0.831538 0.856412 0.009575 0.006139 +11 0.803860 0.856412 0.010473 0.006139 +11 0.732795 0.856639 0.009575 0.006594 +12 0.691502 0.856639 0.009575 0.006594 +12 0.551915 0.856639 0.009276 0.006594 +18 0.526032 0.850159 0.008977 0.004548 +18 0.526032 0.854707 0.008977 0.004548 +12 0.532316 0.848795 0.004189 0.004093 +18 0.149461 0.853797 0.008677 0.005457 +12 0.149461 0.848340 0.008677 0.005457 +13 0.425045 0.846407 0.009276 0.006139 +12 0.408588 0.846407 0.009874 0.006139 +12 0.313734 0.846407 0.009276 0.006139 +12 0.295183 0.846407 0.009276 0.006139 +12 0.336774 0.846180 0.009874 0.006594 +14 0.387343 0.844816 0.010473 0.007503 +13 0.674596 0.839131 0.009276 0.006139 +13 0.645572 0.839018 0.009276 0.005912 +12 0.628965 0.839131 0.009575 0.006139 +12 0.599791 0.838904 0.009276 0.005684 +12 0.584680 0.839131 0.008977 0.006139 +12 0.568971 0.838677 0.009874 0.006139 +12 0.275583 0.809118 0.008977 0.006139 +12 0.275284 0.800932 0.007780 0.005230 +12 0.294734 0.808777 0.009575 0.006367 +12 0.294285 0.801160 0.007481 0.005684 +12 0.851885 0.806162 0.009575 0.005684 +12 0.108169 0.804343 0.003890 0.005684 +12 0.906344 0.803320 0.009575 0.005457 +12 0.906344 0.808777 0.009575 0.005457 +12 0.883752 0.803320 0.009874 0.005457 +12 0.883752 0.808777 0.009874 0.005457 +11 0.804458 0.803661 0.009276 0.006139 +14 0.337971 0.803661 0.009276 0.006139 +12 0.314034 0.801501 0.008677 0.005912 +11 0.756583 0.801387 0.009276 0.006139 +12 0.408588 0.801160 0.009874 0.005684 +12 0.226361 0.806844 0.009276 0.005684 +12 0.226361 0.801160 0.009276 0.005684 +12 0.203920 0.800932 0.008677 0.005230 +12 0.203920 0.806162 0.008677 0.005230 +12 0.179533 0.801046 0.009575 0.005457 +12 0.179533 0.806503 0.009575 0.005457 +12 0.327199 0.800591 0.007481 0.005457 +18 0.327199 0.806048 0.007481 0.005457 +12 0.244016 0.800591 0.008677 0.005457 +12 0.244016 0.806048 0.008677 0.005457 +12 0.733543 0.798658 0.009874 0.006139 +12 0.690904 0.798886 0.009575 0.006594 +12 0.470676 0.798658 0.009575 0.006139 +14 0.352035 0.798431 0.009276 0.005684 +12 0.425344 0.798431 0.009874 0.006594 +12 0.674596 0.796385 0.008079 0.005230 +18 0.527977 0.796271 0.012867 0.005002 +18 0.527977 0.801273 0.012867 0.005002 +12 0.133303 0.795703 0.005087 0.003865 +13 0.629414 0.796157 0.008677 0.005684 +13 0.551915 0.796157 0.009276 0.005684 +12 0.447487 0.795930 0.009874 0.006139 +12 0.646170 0.794111 0.009874 0.006139 +13 0.600987 0.793770 0.009276 0.006367 +14 0.494913 0.793429 0.010174 0.006594 +14 0.387193 0.791269 0.012567 0.006821 +14 0.916816 0.765462 0.008977 0.006139 +12 0.850539 0.765121 0.009276 0.007276 +12 0.882705 0.764325 0.008977 0.006594 +14 0.906344 0.762733 0.009575 0.006139 +11 0.804758 0.762960 0.008677 0.006594 +14 0.337971 0.762506 0.009874 0.006594 +11 0.756583 0.760232 0.009276 0.006594 +12 0.408887 0.759436 0.009276 0.005912 +12 0.314782 0.759550 0.008977 0.006139 +11 0.275434 0.759550 0.009276 0.006139 +12 0.732645 0.757503 0.009276 0.005684 +12 0.692849 0.757276 0.009276 0.006139 +14 0.470826 0.756821 0.009874 0.006139 +12 0.424746 0.756708 0.009874 0.005912 +14 0.387941 0.754889 0.005685 0.003183 +12 0.385548 0.748408 0.004488 0.003865 +14 0.387044 0.739995 0.012268 0.007958 +14 0.352035 0.756594 0.009276 0.006594 +12 0.675344 0.754775 0.008977 0.005684 +12 0.629264 0.754661 0.009575 0.005457 +11 0.551167 0.754548 0.008977 0.005230 +12 0.447487 0.754206 0.008677 0.005457 +12 0.646768 0.752274 0.009874 0.006139 +11 0.600688 0.752160 0.009874 0.005912 +13 0.178037 0.752046 0.009575 0.005684 +14 0.495212 0.751819 0.009575 0.006139 +18 0.529324 0.749318 0.013166 0.005230 +18 0.529324 0.744088 0.013166 0.005230 +18 0.149461 0.744316 0.008677 0.005230 +18 0.149461 0.739086 0.008677 0.005230 +14 0.916667 0.712028 0.008677 0.006594 +14 0.905745 0.709527 0.009575 0.006139 +14 0.894823 0.707253 0.009276 0.006139 +14 0.851436 0.707253 0.009874 0.006139 +14 0.883453 0.704297 0.009276 0.005684 +13 0.804309 0.704525 0.009575 0.006139 +14 0.755236 0.702251 0.008977 0.005230 +12 0.832585 0.702024 0.009276 0.005684 +11 0.313884 0.702024 0.009575 0.005684 +13 0.864303 0.701569 0.009276 0.005684 +11 0.408288 0.701796 0.009276 0.006139 +13 0.817624 0.699295 0.009276 0.005684 +12 0.783662 0.699409 0.009575 0.005912 +14 0.691053 0.699750 0.009874 0.006594 +14 0.644524 0.696908 0.007181 0.004548 +14 0.599641 0.697249 0.007780 0.005230 +13 0.768552 0.696794 0.009276 0.005230 +12 0.734141 0.696794 0.009874 0.006139 +11 0.446290 0.696339 0.009874 0.005230 +14 0.704219 0.694520 0.009874 0.006139 +12 0.674895 0.694520 0.009874 0.006139 +12 0.629414 0.694634 0.009874 0.006367 +13 0.551466 0.694520 0.010174 0.006139 +12 0.179384 0.694520 0.009874 0.006139 +13 0.294285 0.694293 0.009874 0.006594 +18 0.526182 0.692588 0.008677 0.005912 +18 0.531269 0.692588 0.008677 0.005912 +14 0.613405 0.692246 0.008977 0.005684 +12 0.203022 0.692360 0.009276 0.005912 +14 0.658288 0.692246 0.009575 0.006139 +14 0.242220 0.692019 0.008677 0.005684 +12 0.275583 0.689291 0.008977 0.006594 +12 0.224865 0.689291 0.009874 0.006594 +14 0.388540 0.687131 0.007481 0.005912 +14 0.388540 0.693042 0.007481 0.005912 +14 0.259276 0.686789 0.008079 0.006139 +18 0.707062 0.643020 0.013166 0.002274 +11 0.759874 0.632674 0.009874 0.006139 +12 0.692549 0.630400 0.010473 0.006139 +12 0.478306 0.630400 0.009276 0.006139 +11 0.259126 0.630173 0.008977 0.005684 +12 0.367295 0.627444 0.009874 0.006594 +12 0.149013 0.626421 0.008378 0.004548 +18 0.149013 0.630969 0.008378 0.004548 +11 0.864303 0.626876 0.009276 0.006367 +11 0.177139 0.625625 0.009575 0.005684 +12 0.722621 0.622669 0.009575 0.006139 +12 0.540245 0.622669 0.008677 0.006139 +12 0.670557 0.620282 0.009575 0.005912 +11 0.405296 0.620168 0.008677 0.005684 +12 0.898414 0.619372 0.009276 0.005912 +18 0.478306 0.596521 0.009276 0.005684 +17 0.261520 0.596066 0.010174 0.006594 +11 0.366248 0.593338 0.008977 0.007503 +11 0.864004 0.592656 0.008677 0.007049 +11 0.182226 0.590155 0.004189 0.004775 +11 0.898564 0.584698 0.009575 0.005684 +17 0.405895 0.585380 0.010473 0.007049 +13 0.812238 0.582424 0.009276 0.005684 +12 0.759126 0.579809 0.010174 0.005912 +12 0.693447 0.577649 0.009874 0.006139 +12 0.833782 0.574238 0.009276 0.005684 +12 0.149761 0.572533 0.008079 0.005002 +18 0.149761 0.577535 0.008079 0.005002 +12 0.781718 0.571737 0.009276 0.005230 +18 0.140634 0.569804 0.006583 0.003183 +12 0.619838 0.569918 0.009874 0.006139 +11 0.541143 0.569918 0.009276 0.006139 +12 0.722771 0.569691 0.009874 0.006594 +12 0.669509 0.567417 0.008677 0.005684 +12 0.651556 0.567417 0.008677 0.005684 +12 0.461849 0.533538 0.009874 0.006139 +12 0.461849 0.525580 0.008677 0.005684 +12 0.443148 0.533652 0.009575 0.006367 +12 0.442998 0.525580 0.008079 0.005684 +12 0.404997 0.533538 0.009874 0.006139 +12 0.404698 0.525580 0.008079 0.005684 +12 0.420407 0.533311 0.009575 0.006594 +12 0.420557 0.525352 0.008677 0.006139 +12 0.387044 0.533311 0.009874 0.006594 +12 0.387792 0.520350 0.008977 0.006139 +12 0.366248 0.533311 0.009575 0.006594 +12 0.366397 0.520350 0.009276 0.006139 +12 0.293986 0.530582 0.010473 0.006594 +12 0.293537 0.517735 0.009575 0.006367 +12 0.319120 0.528422 0.009276 0.005912 +12 0.319719 0.517735 0.009276 0.006367 +12 0.498504 0.525580 0.008977 0.005684 +12 0.498504 0.531264 0.008977 0.005684 +13 0.479204 0.525466 0.009874 0.005457 +13 0.479204 0.530923 0.009874 0.005457 +12 0.275883 0.525580 0.008977 0.005684 +12 0.275883 0.531264 0.008977 0.005684 +11 0.258977 0.525466 0.008677 0.005457 +11 0.258977 0.530923 0.008677 0.005457 +13 0.267504 0.506139 0.005386 0.003183 +12 0.231448 0.525580 0.008677 0.005684 +12 0.231448 0.531264 0.008677 0.005684 +12 0.211999 0.525580 0.009276 0.005684 +12 0.211999 0.531264 0.009276 0.005684 +12 0.195691 0.525466 0.008977 0.005457 +12 0.195691 0.530923 0.008977 0.005457 +12 0.178636 0.525466 0.008378 0.005457 +12 0.178636 0.530923 0.008378 0.005457 +12 0.692400 0.525125 0.007780 0.005684 +12 0.692849 0.517167 0.009874 0.006139 +12 0.914423 0.524216 0.008977 0.005684 +12 0.914423 0.529900 0.008977 0.005684 +12 0.898414 0.524216 0.009276 0.005684 +12 0.898414 0.529900 0.009276 0.005684 +12 0.881059 0.521487 0.009874 0.005684 +12 0.881059 0.527171 0.009874 0.005684 +12 0.863854 0.521487 0.010772 0.005684 +12 0.863854 0.527171 0.010772 0.005684 +11 0.812687 0.521714 0.009575 0.006139 +18 0.133154 0.525693 0.008378 0.005002 +12 0.133154 0.520691 0.008378 0.005002 +12 0.670108 0.519895 0.008677 0.005230 +12 0.670108 0.525125 0.008677 0.005230 +12 0.651556 0.519782 0.008677 0.005002 +12 0.651556 0.524784 0.008677 0.005002 +18 0.610263 0.522738 0.008677 0.005912 +12 0.617744 0.520236 0.008677 0.005912 +12 0.758977 0.519668 0.009276 0.005684 +13 0.781718 0.519441 0.009276 0.006139 +12 0.595601 0.517281 0.009276 0.005457 +12 0.595601 0.522738 0.009276 0.005457 +12 0.561939 0.517281 0.009575 0.005457 +12 0.561939 0.522738 0.009575 0.005457 +12 0.539647 0.517281 0.008677 0.005457 +12 0.539647 0.522738 0.008677 0.005457 +12 0.723369 0.516940 0.007481 0.005684 +14 0.796679 0.516371 0.009276 0.006367 +14 0.732944 0.514325 0.007481 0.005912 +12 0.212747 0.480332 0.009575 0.006139 +11 0.812238 0.477149 0.009276 0.005230 +14 0.241023 0.477376 0.008677 0.005684 +11 0.863256 0.476921 0.009575 0.005684 +12 0.781418 0.474648 0.009874 0.005684 +11 0.259874 0.474875 0.009276 0.006139 +11 0.897965 0.474420 0.009575 0.006139 +13 0.318522 0.472601 0.009276 0.005230 +14 0.561191 0.472715 0.008079 0.005912 +12 0.758977 0.472260 0.009276 0.005457 +12 0.722472 0.472374 0.009276 0.005684 +12 0.617295 0.472374 0.007780 0.005684 +11 0.651556 0.469873 0.009874 0.006139 +12 0.595751 0.469873 0.009575 0.006139 +12 0.538899 0.469873 0.009575 0.006139 +18 0.497756 0.470100 0.009874 0.006594 +17 0.460952 0.469873 0.009276 0.006139 +17 0.420257 0.469873 0.009276 0.006139 +11 0.387044 0.469873 0.009874 0.006139 +11 0.366098 0.469873 0.009874 0.006139 +12 0.291741 0.469873 0.009575 0.006139 +12 0.149461 0.467826 0.006284 0.003865 +14 0.576302 0.467599 0.010174 0.006139 +18 0.786355 0.428945 0.005386 0.003411 +11 0.838270 0.428718 0.006284 0.003865 +13 0.846499 0.412119 0.009575 0.006139 +18 0.724267 0.427353 0.005087 0.002956 +11 0.264213 0.425648 0.011969 0.005002 +11 0.275434 0.407799 0.009276 0.006594 +12 0.258378 0.410528 0.009874 0.005684 +12 0.795482 0.417121 0.009276 0.006139 +13 0.732047 0.415189 0.008079 0.005002 +18 0.148863 0.415075 0.007481 0.004775 +12 0.149162 0.409391 0.006882 0.003411 +12 0.912777 0.414393 0.007481 0.005230 +18 0.133303 0.412801 0.007481 0.003865 +14 0.496559 0.413029 0.009874 0.006139 +12 0.669210 0.412574 0.009276 0.006139 +12 0.618342 0.412574 0.009874 0.006139 +13 0.442998 0.412688 0.009276 0.006367 +11 0.863106 0.411778 0.009276 0.006367 +12 0.460503 0.410528 0.009575 0.005684 +13 0.420257 0.410528 0.009276 0.005684 +14 0.316727 0.410528 0.008079 0.005684 +12 0.650808 0.410186 0.008378 0.005912 +11 0.539647 0.410300 0.009874 0.006139 +12 0.812687 0.409618 0.008977 0.005684 +12 0.477708 0.407913 0.009276 0.005912 +12 0.229952 0.408026 0.009276 0.006139 +14 0.632555 0.407572 0.009575 0.006139 +14 0.511969 0.407685 0.008977 0.006367 +11 0.366397 0.407685 0.009276 0.006367 +12 0.759276 0.407344 0.009874 0.006594 +18 0.124327 0.410414 0.007481 0.004548 +18 0.124327 0.405866 0.007481 0.004548 +14 0.332735 0.405298 0.008977 0.005230 +12 0.292490 0.405184 0.008677 0.005912 +11 0.179084 0.405298 0.009276 0.006139 +12 0.693297 0.404843 0.009575 0.006139 +18 0.277080 0.350728 0.012567 0.008868 +18 0.259276 0.348681 0.008079 0.005684 +12 0.517205 0.321510 0.009276 0.005912 +12 0.841861 0.321169 0.009276 0.006139 +14 0.571065 0.318895 0.008079 0.006139 +12 0.536655 0.318440 0.008677 0.006139 +13 0.495961 0.318440 0.008677 0.006139 +14 0.894823 0.318440 0.009276 0.007049 +12 0.823309 0.318213 0.009874 0.006594 +12 0.862208 0.317531 0.008677 0.006139 +18 0.773938 0.315939 0.009276 0.005684 +11 0.615051 0.316053 0.008677 0.005912 +12 0.878516 0.315484 0.008977 0.005684 +12 0.555506 0.315712 0.009276 0.006139 +11 0.466038 0.315712 0.009874 0.006139 +14 0.586026 0.313324 0.009276 0.005912 +14 0.908288 0.313097 0.009276 0.006367 +11 0.731598 0.305480 0.009575 0.006594 +18 0.276332 0.301955 0.013465 0.005002 +18 0.276332 0.296953 0.013465 0.005002 +12 0.259276 0.297067 0.008079 0.005230 +12 0.259276 0.302296 0.008079 0.005230 +12 0.773040 0.262165 0.007481 0.005002 +12 0.775135 0.250114 0.009276 0.005002 +12 0.775135 0.255116 0.009276 0.005002 +12 0.739677 0.259663 0.007780 0.004093 +12 0.740724 0.253297 0.009874 0.005002 +12 0.730551 0.250910 0.009874 0.006594 +12 0.646918 0.256935 0.007780 0.005002 +11 0.646918 0.261937 0.007780 0.005002 +12 0.647516 0.250455 0.008977 0.005684 +12 0.682376 0.256594 0.008079 0.005230 +12 0.682974 0.250568 0.009276 0.005912 +12 0.682376 0.261824 0.008079 0.005230 +12 0.384949 0.255798 0.008079 0.005002 +12 0.385847 0.249886 0.009276 0.004548 +17 0.218881 0.252274 0.006882 0.007503 +12 0.714841 0.256594 0.009575 0.005684 +17 0.714841 0.262278 0.009575 0.005684 +12 0.714841 0.250910 0.009575 0.005684 +12 0.894823 0.250455 0.010473 0.005684 +12 0.894823 0.256139 0.010473 0.005684 +18 0.877917 0.250341 0.008977 0.005457 +13 0.877917 0.255798 0.008977 0.005457 +12 0.861909 0.250341 0.009276 0.005457 +12 0.861909 0.255798 0.009276 0.005457 +12 0.840515 0.250341 0.009575 0.005457 +12 0.840515 0.255798 0.009575 0.005457 +12 0.822412 0.255457 0.009276 0.005230 +12 0.822412 0.250227 0.009276 0.005230 +12 0.806852 0.250227 0.009276 0.005230 +12 0.806852 0.255457 0.009276 0.005230 +11 0.790993 0.255798 0.008677 0.005457 +11 0.790993 0.250341 0.008677 0.005457 +12 0.697636 0.256139 0.008677 0.005684 +12 0.697636 0.250455 0.008677 0.005684 +11 0.697636 0.261824 0.008677 0.005684 +12 0.664572 0.250341 0.009575 0.005457 +12 0.664572 0.255798 0.009575 0.005457 +12 0.664572 0.261255 0.009575 0.005457 +12 0.632855 0.250341 0.008378 0.005457 +12 0.632855 0.255798 0.008378 0.005457 +13 0.518851 0.250341 0.010174 0.005457 +13 0.518851 0.255798 0.010174 0.005457 +13 0.520646 0.239086 0.006583 0.004775 +12 0.417864 0.250000 0.009276 0.004775 +12 0.417864 0.255798 0.008079 0.005457 +12 0.402454 0.250341 0.009575 0.005457 +12 0.402454 0.255798 0.009575 0.005457 +12 0.372083 0.255116 0.009874 0.005002 +12 0.372083 0.250114 0.009874 0.005002 +12 0.322412 0.250227 0.009874 0.005230 +12 0.322412 0.255457 0.009874 0.005230 +12 0.305356 0.250114 0.009276 0.005002 +12 0.305356 0.255116 0.009276 0.005002 +12 0.615500 0.249886 0.009575 0.005457 +12 0.615500 0.255343 0.009575 0.005457 +12 0.337373 0.250000 0.009874 0.005684 +12 0.337373 0.255684 0.009874 0.005684 +17 0.465440 0.249659 0.009874 0.005912 +17 0.465440 0.255571 0.009874 0.005912 +12 0.466936 0.238518 0.004488 0.004548 +11 0.473070 0.235448 0.006583 0.004775 +12 0.352334 0.249432 0.009874 0.005457 +12 0.352334 0.254889 0.009874 0.005457 +18 0.276182 0.245225 0.012567 0.007049 +18 0.242071 0.249545 0.008378 0.005230 +18 0.242071 0.244316 0.008378 0.005230 +17 0.258677 0.244657 0.008079 0.008640 +12 0.186266 0.204980 0.004488 0.003411 +12 0.683273 0.206116 0.009874 0.006139 +12 0.371035 0.204752 0.009575 0.006139 +14 0.730850 0.203615 0.009276 0.005684 +13 0.696738 0.203615 0.009276 0.005684 +12 0.663824 0.203274 0.009276 0.005912 +14 0.417714 0.202478 0.008977 0.006139 +12 0.351885 0.202251 0.008977 0.005684 +13 0.385697 0.202024 0.009575 0.006139 +12 0.387343 0.186335 0.004488 0.003865 +12 0.839916 0.201000 0.009575 0.005912 +11 0.714692 0.201114 0.009276 0.006139 +11 0.721424 0.185198 0.004788 0.003411 +11 0.775135 0.200887 0.009276 0.006594 +11 0.616547 0.200546 0.009276 0.005912 +13 0.517205 0.200546 0.009276 0.005912 +11 0.466487 0.199977 0.008977 0.006594 +12 0.402454 0.199864 0.009575 0.006367 +11 0.304608 0.199181 0.010772 0.005912 +14 0.744315 0.198613 0.009874 0.005684 +18 0.430580 0.197704 0.009575 0.005684 +11 0.272741 0.195202 0.006284 0.007958 +18 0.257780 0.191564 0.007481 0.004320 +12 0.258079 0.185880 0.008079 0.004775 +12 0.256882 0.139495 0.006882 0.003865 +18 0.277528 0.144043 0.013465 0.005230 +18 0.277528 0.138813 0.013465 0.005230 +14 0.496559 0.086403 0.005087 0.006367 +14 0.452274 0.055366 0.005087 0.002956 +14 0.502095 0.054684 0.004788 0.004320 +13 0.505984 0.047522 0.004788 0.004548 +14 0.552513 0.054229 0.004488 0.005684 +18 0.589617 0.053888 0.005685 0.005457 +12 0.512418 0.053206 0.005685 0.007731 +12 0.565978 0.050819 0.005685 0.007503 +12 0.532316 0.045475 0.006583 0.005912 +4 0.210503 0.188608 0.021843 0.032060 +0 0.099791 0.522624 0.023040 0.023420 +0 0.253591 0.129718 0.017056 0.018872 +3 0.791891 0.803206 0.006882 0.015234 +2 0.211101 0.350273 0.018253 0.019782 +4 0.551017 0.473283 0.008677 0.013870 +4 0.307750 0.471692 0.009276 0.014325 +4 0.681777 0.517167 0.009276 0.015234 +3 0.591113 0.751137 0.006284 0.017508 +4 0.307451 0.528308 0.008677 0.011141 +4 0.141083 0.893474 0.007481 0.012051 +4 0.823309 0.573556 0.009874 0.016144 +2 0.211999 0.298204 0.014063 0.018417 +1 0.100090 0.469645 0.021245 0.039336 +4 0.433722 0.696794 0.009874 0.016144 +3 0.214991 0.860050 0.006882 0.017963 +3 0.215889 0.894156 0.007481 0.018872 +4 0.589019 0.696794 0.009276 0.015234 +2 0.099491 0.849818 0.018851 0.018417 +1 0.100389 0.694520 0.021843 0.039791 +2 0.100389 0.626990 0.015859 0.019327 +2 0.101287 0.573329 0.014063 0.018417 +1 0.100688 0.746362 0.022442 0.039791 +3 0.773339 0.518759 0.009276 0.017508 +3 0.802364 0.583788 0.007481 0.017508 +4 0.851137 0.527171 0.009276 0.016144 +4 0.124028 0.514211 0.009276 0.012960 +4 0.793088 0.706116 0.009276 0.013870 +4 0.124327 0.789791 0.009874 0.013870 +4 0.131358 0.692360 0.008977 0.015007 +4 0.147516 0.690086 0.008977 0.015007 +4 0.122382 0.684857 0.008977 0.014552 +0 0.140934 0.681219 0.008977 0.010914 +0 0.233992 0.345612 0.008378 0.010914 +0 0.251047 0.342201 0.006583 0.008640 +4 0.712448 0.570259 0.007780 0.014552 +3 0.703471 0.567758 0.006583 0.015007 +3 0.722920 0.695316 0.007181 0.015462 +4 0.250449 0.289450 0.007780 0.012278 +4 0.148713 0.520691 0.008977 0.015462 +4 0.141233 0.511596 0.008378 0.012733 +4 0.133154 0.854707 0.008977 0.013188 +4 0.124476 0.846066 0.009575 0.014097 +4 0.140934 0.732378 0.008977 0.014097 +4 0.122681 0.623238 0.008378 0.014097 +0 0.104728 0.798772 0.013166 0.020464 +3 0.701975 0.623010 0.005984 0.012733 +4 0.711849 0.621419 0.008977 0.013188 +4 0.123878 0.459527 0.008378 0.012278 +4 0.149910 0.795816 0.008977 0.015462 +0 0.241771 0.191223 0.008378 0.010459 +5 0.189856 0.252729 0.009276 0.015689 +3 0.199132 0.242951 0.009276 0.015689 +4 0.208558 0.249318 0.008977 0.015689 +4 0.235039 0.294338 0.009276 0.015689 +3 0.242071 0.301387 0.008977 0.015689 +3 0.095302 0.900750 0.009276 0.015689 +4 0.105625 0.900750 0.008977 0.015689 +5 0.132107 0.627899 0.009276 0.015689 +4 0.139138 0.621078 0.008977 0.015689 +3 0.211101 0.145180 0.009276 0.012960 +5 0.216936 0.145180 0.008977 0.012960 +4 0.205117 0.140177 0.009276 0.015689 +4 0.213944 0.135857 0.008977 0.015689 +4 0.093806 0.418258 0.009276 0.015689 +4 0.103232 0.412801 0.008977 0.015689 +4 0.123429 0.737040 0.009276 0.015689 +4 0.132555 0.743861 0.008977 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_10.jpg b/data_dataset/dvo/debug/debug_10.jpg new file mode 100644 index 0000000..bd949c9 Binary files /dev/null and b/data_dataset/dvo/debug/debug_10.jpg differ diff --git a/data_dataset/dvo/debug/debug_10.txt b/data_dataset/dvo/debug/debug_10.txt new file mode 100644 index 0000000..d971c7c --- /dev/null +++ b/data_dataset/dvo/debug/debug_10.txt @@ -0,0 +1,625 @@ +8 0.786205 0.947422 0.011347 0.006586 +8 0.714243 0.947422 0.011944 0.006586 +10 0.636309 0.947082 0.012541 0.004997 +8 0.562855 0.946287 0.012541 0.006586 +8 0.492983 0.945946 0.011347 0.006814 +8 0.262168 0.945151 0.011944 0.007041 +8 0.413556 0.945378 0.011347 0.007041 +8 0.337414 0.945151 0.010749 0.006586 +6 0.197372 0.946060 0.008958 0.017942 +9 0.307256 0.912900 0.004180 0.021576 +6 0.197372 0.906087 0.008361 0.017034 +10 0.874888 0.872360 0.007764 0.004542 +6 0.196477 0.862480 0.008958 0.017034 +6 0.197671 0.817284 0.008958 0.017488 +10 0.847417 0.807404 0.006569 0.004088 +6 0.801135 0.775721 0.008958 0.018397 +6 0.782920 0.775267 0.008958 0.018397 +6 0.491639 0.774358 0.009854 0.017488 +10 0.662884 0.764025 0.007166 0.002271 +10 0.171693 0.718828 0.006569 0.002725 +10 0.481636 0.711560 0.011347 0.004997 +10 0.386384 0.711106 0.010749 0.004997 +8 0.294715 0.710993 0.011347 0.006586 +6 0.856674 0.713945 0.008958 0.017488 +6 0.817259 0.713718 0.008958 0.017942 +6 0.804419 0.713718 0.008361 0.017942 +6 0.697820 0.712809 0.008958 0.017942 +6 0.225142 0.712355 0.008361 0.017488 +6 0.200956 0.712128 0.008958 0.016125 +6 0.839654 0.712582 0.009555 0.018397 +6 0.684085 0.712696 0.008958 0.017715 +6 0.579875 0.712355 0.009555 0.017488 +6 0.551508 0.712355 0.008958 0.017488 +6 0.697820 0.667840 0.008958 0.017942 +6 0.856076 0.667159 0.008958 0.016580 +6 0.482532 0.667386 0.009555 0.017034 +6 0.507614 0.667272 0.009555 0.018169 +6 0.223052 0.667613 0.008958 0.017942 +6 0.412959 0.666932 0.008958 0.017034 +6 0.286951 0.666932 0.008958 0.018397 +6 0.841744 0.666250 0.008958 0.017488 +6 0.745596 0.666705 0.008958 0.017488 +6 0.683189 0.666818 0.009555 0.017715 +6 0.389370 0.667159 0.009555 0.018397 +6 0.311436 0.666250 0.008958 0.017942 +6 0.201553 0.666705 0.008958 0.017942 +6 0.818453 0.666023 0.008958 0.017034 +6 0.803225 0.666023 0.009555 0.017942 +6 0.759928 0.666250 0.008958 0.017488 +6 0.580472 0.665796 0.009555 0.017942 +7 0.402508 0.632069 0.012541 0.026800 +6 0.803523 0.621962 0.009555 0.017942 +6 0.857271 0.620713 0.009555 0.018624 +6 0.842042 0.620827 0.008958 0.018397 +6 0.818752 0.620600 0.008958 0.017942 +6 0.759331 0.620600 0.009555 0.017942 +6 0.696327 0.621054 0.008958 0.018851 +6 0.683189 0.620713 0.008958 0.018169 +6 0.745894 0.621054 0.008958 0.019759 +6 0.581666 0.574495 0.008958 0.018851 +6 0.803523 0.576084 0.008361 0.018851 +6 0.310839 0.575176 0.009555 0.018397 +6 0.819050 0.574495 0.009555 0.019305 +6 0.509406 0.575176 0.008958 0.018397 +6 0.759630 0.574268 0.008958 0.018851 +6 0.746193 0.574495 0.008361 0.019305 +6 0.696327 0.574040 0.008958 0.018397 +6 0.287250 0.574495 0.008958 0.017942 +6 0.841744 0.573813 0.009555 0.017942 +6 0.682890 0.574154 0.009555 0.017715 +6 0.224246 0.574268 0.009555 0.018397 +6 0.858465 0.573813 0.009555 0.017942 +6 0.414153 0.574040 0.009555 0.018397 +10 0.787698 0.566205 0.007764 0.002271 +6 0.199463 0.573813 0.008958 0.019305 +6 0.840848 0.529298 0.008958 0.018851 +6 0.856076 0.528844 0.009555 0.017942 +6 0.759630 0.528163 0.008958 0.018397 +6 0.747984 0.528844 0.009555 0.018851 +6 0.818155 0.527708 0.008958 0.018397 +6 0.804121 0.527935 0.009555 0.018851 +6 0.699015 0.528163 0.009555 0.019305 +6 0.683488 0.528276 0.009555 0.019532 +10 0.271424 0.518964 0.005972 0.002725 +8 0.771275 0.471837 0.012541 0.006586 +8 0.681995 0.471951 0.011944 0.006814 +6 0.479845 0.474790 0.008958 0.017942 +6 0.307554 0.474563 0.009555 0.017942 +6 0.213497 0.474790 0.008958 0.018397 +6 0.498358 0.473995 0.008958 0.019532 +6 0.186026 0.473881 0.008958 0.018397 +6 0.281278 0.473427 0.009555 0.017488 +6 0.380412 0.473881 0.009555 0.018851 +6 0.834279 0.472292 0.009555 0.017488 +6 0.869812 0.472632 0.007764 0.018624 +6 0.578083 0.433227 0.009555 0.017942 +6 0.761123 0.432546 0.008958 0.017942 +6 0.498955 0.432773 0.008958 0.017488 +6 0.786205 0.432092 0.010152 0.018851 +6 0.695730 0.432319 0.009555 0.018397 +6 0.671842 0.431638 0.009555 0.018397 +6 0.866826 0.430956 0.010152 0.017942 +9 0.231114 0.386555 0.007166 0.026346 +8 0.685279 0.389961 0.010152 0.023620 +10 0.598985 0.377016 0.007166 0.004088 +6 0.499851 0.383602 0.008361 0.018624 +7 0.328755 0.334885 0.011944 0.013400 +7 0.233801 0.334431 0.011944 0.013854 +6 0.359212 0.339882 0.009555 0.027935 +6 0.773664 0.334885 0.007166 0.018851 +6 0.499552 0.334545 0.009555 0.018624 +6 0.866229 0.332501 0.009555 0.019986 +6 0.710660 0.333523 0.008958 0.018851 +6 0.683488 0.333409 0.009555 0.018624 +6 0.799940 0.333750 0.009555 0.019305 +6 0.262168 0.333523 0.008958 0.019305 +6 0.164825 0.332387 0.008958 0.017942 +10 0.396238 0.309562 0.005972 0.002271 +9 0.831592 0.293663 0.010749 0.022712 +9 0.649149 0.295935 0.007764 0.017715 +10 0.212899 0.288667 0.005972 0.002725 +10 0.435652 0.283670 0.007166 0.002271 +10 0.759331 0.243925 0.005972 0.003634 +8 0.295909 0.236089 0.011944 0.007041 +8 0.200358 0.235635 0.011944 0.007041 +6 0.781129 0.238360 0.008958 0.018397 +6 0.633921 0.238814 0.009555 0.018851 +6 0.536877 0.238360 0.010152 0.017942 +6 0.427292 0.237225 0.009555 0.017942 +6 0.896984 0.237679 0.010152 0.018397 +6 0.593610 0.237225 0.010152 0.017488 +6 0.505524 0.237338 0.009555 0.017715 +6 0.688265 0.237792 0.009555 0.019078 +6 0.802926 0.236770 0.009555 0.017942 +6 0.324276 0.195776 0.009555 0.017715 +6 0.265452 0.196116 0.010152 0.017942 +6 0.801433 0.194526 0.009555 0.017034 +6 0.195282 0.195208 0.009555 0.018851 +6 0.223350 0.194526 0.009555 0.017488 +9 0.295013 0.160913 0.009555 0.031115 +9 0.165721 0.160232 0.008958 0.025210 +8 0.871006 0.151147 0.011347 0.007041 +6 0.265452 0.154327 0.008958 0.017942 +6 0.223350 0.153645 0.009555 0.017488 +6 0.323977 0.152964 0.008958 0.018397 +6 0.194088 0.153418 0.009555 0.017942 +8 0.295611 0.110493 0.010749 0.007495 +8 0.200060 0.109584 0.011944 0.006586 +6 0.833383 0.112083 0.008958 0.018397 +6 0.665870 0.112083 0.009555 0.017942 +6 0.574201 0.112083 0.010152 0.018851 +6 0.536877 0.111856 0.009555 0.018397 +6 0.484025 0.111401 0.010152 0.017942 +6 0.633323 0.111856 0.010152 0.019305 +6 0.799343 0.111401 0.010152 0.018851 +7 0.614213 0.104361 0.005375 0.011583 +10 0.169155 0.079945 0.006868 0.003180 +10 0.295909 0.070634 0.005972 0.002725 +10 0.652135 0.066546 0.006569 0.004542 +9 0.630337 0.070520 0.008361 0.022939 +8 0.536578 0.070293 0.009555 0.023393 +10 0.724694 0.060413 0.005972 0.002725 +10 0.273813 0.051783 0.008361 0.002271 +11 0.847566 0.954349 0.008659 0.005451 +17 0.848164 0.912673 0.010451 0.006586 +11 0.801433 0.909721 0.009555 0.006132 +17 0.764258 0.909834 0.009854 0.007268 +12 0.170648 0.908471 0.005076 0.004997 +12 0.173037 0.898819 0.006868 0.005678 +17 0.721708 0.909494 0.010152 0.007495 +11 0.699313 0.908812 0.009555 0.006132 +17 0.608988 0.908699 0.009854 0.007268 +12 0.563900 0.908244 0.010451 0.007268 +11 0.516721 0.907904 0.009256 0.006586 +17 0.401911 0.907449 0.008958 0.006132 +17 0.473723 0.907449 0.010451 0.007041 +18 0.428785 0.907449 0.010152 0.007041 +12 0.263511 0.907449 0.008062 0.007041 +17 0.311735 0.907222 0.010152 0.007041 +11 0.907435 0.881558 0.007166 0.004769 +11 0.908032 0.875426 0.008361 0.005224 +17 0.563900 0.876561 0.010451 0.006586 +17 0.564198 0.867022 0.008659 0.003861 +17 0.763959 0.876561 0.010451 0.008858 +17 0.608838 0.874063 0.010749 0.007041 +11 0.609734 0.867477 0.008361 0.002953 +11 0.847119 0.872246 0.009555 0.005678 +11 0.847119 0.877924 0.009555 0.005678 +11 0.699761 0.871338 0.011048 0.006586 +17 0.699761 0.877924 0.011048 0.006586 +11 0.876680 0.875199 0.008958 0.005224 +11 0.876680 0.869975 0.008958 0.005224 +17 0.313676 0.870770 0.010451 0.007268 +17 0.264407 0.870656 0.011048 0.007495 +17 0.473425 0.869067 0.009854 0.006586 +17 0.403553 0.868499 0.009854 0.006359 +12 0.173783 0.862480 0.004180 0.003861 +17 0.764557 0.833409 0.010451 0.007041 +17 0.700209 0.833409 0.010749 0.007041 +17 0.608092 0.833068 0.010451 0.006814 +17 0.564497 0.832273 0.010451 0.006132 +17 0.849806 0.827731 0.010152 0.006586 +17 0.473574 0.827504 0.010152 0.006132 +17 0.403255 0.827050 0.010451 0.007041 +17 0.310540 0.826823 0.010152 0.007041 +17 0.265004 0.826709 0.009854 0.006814 +17 0.701553 0.790597 0.009854 0.006814 +11 0.763959 0.785714 0.009256 0.006132 +13 0.172290 0.783784 0.004778 0.003634 +13 0.173634 0.770384 0.005673 0.009085 +17 0.848612 0.785033 0.010152 0.006586 +17 0.403553 0.784579 0.009854 0.006586 +12 0.667513 0.780036 0.010451 0.006132 +11 0.199612 0.778447 0.009256 0.005678 +12 0.651090 0.777311 0.009854 0.006132 +11 0.515527 0.776402 0.009854 0.006132 +17 0.473126 0.776402 0.009854 0.006586 +11 0.629143 0.774586 0.009555 0.006132 +12 0.368020 0.773904 0.009854 0.006132 +11 0.607644 0.771974 0.009555 0.006359 +17 0.564497 0.771860 0.009854 0.007041 +12 0.350105 0.770952 0.008659 0.005678 +11 0.330099 0.768680 0.009256 0.005678 +11 0.309346 0.765614 0.009555 0.005905 +17 0.262914 0.765955 0.009854 0.007041 +11 0.621977 0.725642 0.010152 0.006359 +11 0.731860 0.725414 0.009555 0.006359 +11 0.666169 0.718260 0.008958 0.006132 +11 0.788594 0.717920 0.009555 0.005905 +11 0.171245 0.717011 0.009256 0.005451 +18 0.133174 0.714626 0.006569 0.003407 +11 0.665273 0.689871 0.009555 0.006586 +17 0.788444 0.689530 0.009854 0.006359 +17 0.788146 0.679196 0.009256 0.005678 +11 0.787996 0.666250 0.007764 0.005224 +11 0.789340 0.653305 0.010451 0.005678 +11 0.262168 0.684193 0.009555 0.006132 +11 0.548671 0.682035 0.009256 0.006359 +11 0.454315 0.681694 0.009256 0.006132 +11 0.621827 0.679423 0.009854 0.005678 +11 0.731412 0.679310 0.009256 0.005905 +12 0.731114 0.668976 0.009854 0.006132 +12 0.731711 0.656484 0.009854 0.005678 +11 0.358167 0.676243 0.009256 0.006132 +11 0.169603 0.671360 0.008361 0.005905 +12 0.622723 0.643766 0.009256 0.006132 +11 0.665273 0.641949 0.010152 0.007041 +11 0.550761 0.641722 0.009854 0.006586 +12 0.484622 0.641608 0.008361 0.006359 +17 0.264109 0.642403 0.011048 0.007949 +11 0.455360 0.641381 0.008958 0.006359 +12 0.579875 0.641154 0.008361 0.006359 +12 0.414452 0.641154 0.009555 0.006814 +17 0.423261 0.618442 0.008062 0.002271 +12 0.428934 0.635816 0.008062 0.006132 +12 0.510749 0.641267 0.009256 0.007495 +12 0.389519 0.640813 0.008659 0.007041 +17 0.169603 0.640813 0.010152 0.007495 +11 0.357868 0.640700 0.009256 0.007722 +12 0.601374 0.638088 0.008958 0.004769 +12 0.638101 0.636157 0.009555 0.006359 +12 0.524186 0.635930 0.009854 0.005905 +12 0.401015 0.635816 0.008361 0.006132 +12 0.499403 0.635703 0.009256 0.006359 +11 0.788594 0.630933 0.009555 0.005451 +11 0.788146 0.617874 0.008659 0.005678 +12 0.730815 0.630820 0.009854 0.006132 +12 0.730517 0.615376 0.009256 0.006132 +11 0.621230 0.600954 0.009256 0.006814 +11 0.168558 0.600159 0.009256 0.006132 +11 0.168259 0.586532 0.008659 0.006132 +11 0.262317 0.599478 0.009256 0.006586 +17 0.454016 0.597206 0.010451 0.007041 +11 0.358316 0.596639 0.010749 0.006814 +11 0.550164 0.596298 0.009256 0.007495 +11 0.665423 0.591983 0.009256 0.006132 +12 0.071812 0.589030 0.005673 0.007949 +17 0.786951 0.581762 0.006271 0.006132 +11 0.788594 0.568476 0.008958 0.005451 +11 0.788594 0.573927 0.008958 0.005451 +12 0.757689 0.579718 0.003882 0.003861 +11 0.722604 0.573246 0.008361 0.005451 +18 0.731114 0.590166 0.008062 0.005678 +12 0.729919 0.577107 0.006868 0.004542 +11 0.722604 0.578696 0.008361 0.005451 +12 0.730964 0.563707 0.008958 0.005451 +12 0.639146 0.549285 0.009256 0.006132 +17 0.486712 0.547468 0.010152 0.006586 +11 0.451627 0.546786 0.009256 0.006132 +11 0.457898 0.529752 0.005076 0.003861 +11 0.582413 0.546786 0.009854 0.006586 +12 0.546880 0.546332 0.008659 0.005678 +12 0.357271 0.546218 0.009256 0.005905 +11 0.664975 0.546332 0.009555 0.006586 +11 0.392804 0.546332 0.011048 0.007041 +12 0.472977 0.543834 0.008958 0.005678 +13 0.569274 0.543720 0.009256 0.005905 +12 0.379367 0.543152 0.009256 0.006132 +12 0.333383 0.543380 0.009256 0.006586 +12 0.620932 0.540881 0.009854 0.005678 +13 0.311436 0.540427 0.009555 0.006132 +12 0.299940 0.538156 0.009256 0.005678 +12 0.287847 0.535658 0.008958 0.006132 +12 0.261421 0.535430 0.009854 0.005678 +12 0.789639 0.535544 0.009256 0.006359 +12 0.789042 0.522485 0.008062 0.005678 +12 0.789042 0.509539 0.009256 0.006132 +17 0.731711 0.535658 0.009854 0.006586 +12 0.731412 0.524756 0.008659 0.006586 +12 0.731860 0.512719 0.010152 0.007041 +12 0.274858 0.533159 0.009256 0.005678 +12 0.237534 0.532932 0.007465 0.006132 +12 0.225739 0.529980 0.009555 0.006586 +12 0.212899 0.527481 0.008958 0.006132 +12 0.167961 0.527481 0.009256 0.006132 +12 0.201403 0.524529 0.009256 0.006586 +12 0.181547 0.522258 0.007764 0.005678 +11 0.907883 0.485464 0.009854 0.006586 +11 0.462228 0.478651 0.009555 0.006132 +11 0.264706 0.470929 0.009854 0.006586 +11 0.415199 0.468885 0.008659 0.005678 +11 0.359660 0.468658 0.008659 0.006132 +11 0.167961 0.465932 0.009854 0.006586 +11 0.550612 0.449239 0.008958 0.005905 +11 0.742162 0.446854 0.009256 0.006132 +11 0.415646 0.444356 0.009555 0.006586 +11 0.907435 0.443675 0.010152 0.006586 +11 0.835324 0.443448 0.009256 0.006586 +11 0.651986 0.441858 0.009256 0.005678 +17 0.465064 0.436407 0.010451 0.007041 +17 0.266497 0.428912 0.009854 0.007041 +17 0.361003 0.426187 0.010152 0.006586 +17 0.170349 0.423348 0.009854 0.006814 +11 0.909675 0.405746 0.008659 0.006132 +12 0.670947 0.403588 0.008958 0.006359 +11 0.653628 0.403248 0.008958 0.005678 +11 0.699015 0.403475 0.008958 0.006586 +11 0.789639 0.403021 0.008659 0.006586 +12 0.867423 0.402794 0.008958 0.006586 +11 0.833532 0.402680 0.010451 0.006814 +12 0.760675 0.402112 0.009256 0.006586 +11 0.742162 0.402566 0.009256 0.007495 +12 0.623768 0.401885 0.009555 0.006586 +12 0.889370 0.399387 0.008659 0.006132 +12 0.603314 0.398024 0.008659 0.006132 +12 0.774410 0.397570 0.009256 0.005678 +12 0.684533 0.397797 0.009854 0.006132 +12 0.589579 0.395299 0.009854 0.007041 +12 0.575993 0.393027 0.010152 0.006132 +12 0.548671 0.392800 0.009256 0.005678 +12 0.563302 0.390416 0.009854 0.006359 +12 0.307554 0.385305 0.009555 0.006132 +12 0.212451 0.385078 0.009256 0.005678 +17 0.465064 0.385419 0.010451 0.006814 +12 0.414153 0.385192 0.008958 0.006359 +17 0.359809 0.385533 0.010152 0.007041 +17 0.265602 0.385305 0.010451 0.007041 +17 0.169304 0.385533 0.010152 0.007495 +12 0.434458 0.383034 0.008958 0.005678 +12 0.329203 0.382580 0.008659 0.005678 +12 0.233950 0.382580 0.009256 0.006132 +18 0.317259 0.381104 0.007465 0.004542 +11 0.907435 0.358960 0.009555 0.007041 +11 0.906987 0.342834 0.008659 0.005678 +11 0.651538 0.352146 0.008361 0.004315 +11 0.651538 0.346128 0.008958 0.006814 +11 0.741565 0.351578 0.008659 0.005905 +12 0.747537 0.349080 0.008659 0.005905 +11 0.832935 0.351806 0.008659 0.005905 +12 0.839803 0.348626 0.008659 0.005905 +11 0.381308 0.348739 0.009555 0.006132 +11 0.281726 0.345673 0.009854 0.005905 +11 0.281726 0.351578 0.009854 0.005905 +17 0.464168 0.346014 0.010451 0.007041 +11 0.186175 0.345106 0.009854 0.005678 +11 0.186175 0.350784 0.009854 0.005678 +11 0.415199 0.343516 0.009256 0.005678 +11 0.771872 0.339655 0.004778 0.004315 +11 0.576590 0.340904 0.010749 0.007268 +13 0.549119 0.294004 0.009555 0.006132 +12 0.417139 0.294004 0.009555 0.006586 +17 0.577635 0.293891 0.010451 0.006814 +11 0.346671 0.291846 0.004778 0.004088 +12 0.499552 0.291619 0.008361 0.005451 +12 0.650194 0.291392 0.007465 0.005451 +12 0.832189 0.291052 0.008361 0.005224 +12 0.739176 0.291279 0.007465 0.005678 +12 0.379367 0.291279 0.008062 0.005678 +12 0.563601 0.291052 0.008659 0.005678 +11 0.308002 0.291279 0.008659 0.006132 +12 0.280233 0.291165 0.008062 0.005905 +11 0.262765 0.291279 0.008361 0.006132 +11 0.212750 0.290938 0.008062 0.005905 +11 0.870857 0.290824 0.009256 0.006132 +12 0.186474 0.291052 0.009256 0.006586 +11 0.168558 0.290824 0.008062 0.006132 +17 0.775306 0.290824 0.010451 0.006586 +17 0.686623 0.290824 0.009854 0.006586 +17 0.464467 0.291052 0.011048 0.007041 +12 0.760227 0.288553 0.008958 0.005678 +12 0.671544 0.288780 0.008958 0.006586 +12 0.521499 0.288553 0.009256 0.006132 +12 0.510749 0.285714 0.008062 0.004997 +12 0.855031 0.288326 0.009854 0.006132 +12 0.392953 0.288553 0.008958 0.006586 +11 0.359212 0.288440 0.009555 0.006359 +12 0.919379 0.288099 0.009555 0.006132 +12 0.435652 0.286282 0.008361 0.005678 +12 0.293371 0.286282 0.009256 0.006132 +12 0.904897 0.285828 0.009256 0.006132 +12 0.200358 0.285828 0.008958 0.006132 +11 0.485219 0.242335 0.009555 0.005905 +11 0.758585 0.241881 0.009256 0.005905 +13 0.070021 0.240745 0.005673 0.012719 +12 0.070917 0.061208 0.004479 0.003407 +11 0.836369 0.236884 0.008361 0.005905 +11 0.573305 0.234726 0.009555 0.006586 +11 0.370708 0.232228 0.008659 0.005678 +11 0.667513 0.232228 0.008659 0.006132 +11 0.721857 0.232001 0.008659 0.006132 +11 0.722753 0.207699 0.009854 0.006586 +17 0.487160 0.200432 0.010451 0.006586 +17 0.759779 0.199750 0.009854 0.006132 +11 0.167662 0.194299 0.008062 0.005678 +17 0.837414 0.194299 0.009854 0.006132 +17 0.572559 0.192710 0.010451 0.007041 +17 0.667961 0.189643 0.010152 0.006359 +17 0.370708 0.189643 0.010451 0.006814 +12 0.296954 0.187486 0.009854 0.006586 +18 0.104061 0.159210 0.008659 0.005905 +18 0.098686 0.162616 0.008659 0.005905 +11 0.722902 0.157733 0.008958 0.005678 +17 0.668558 0.155689 0.010152 0.006586 +17 0.486712 0.155689 0.010749 0.007041 +17 0.759480 0.155235 0.010451 0.007041 +17 0.572708 0.155008 0.010749 0.007041 +11 0.167065 0.152283 0.009256 0.005224 +11 0.167065 0.157506 0.009256 0.005224 +12 0.470738 0.151033 0.006271 0.004088 +12 0.295760 0.150125 0.008659 0.005451 +11 0.295760 0.155576 0.008659 0.005451 +13 0.371902 0.146945 0.010451 0.005905 +13 0.371902 0.152850 0.010451 0.005905 +12 0.594804 0.124120 0.009555 0.006132 +12 0.504031 0.123893 0.009555 0.006586 +17 0.864586 0.122417 0.010451 0.004542 +17 0.864586 0.126959 0.010451 0.004542 +11 0.864586 0.131501 0.010451 0.004542 +17 0.758585 0.123325 0.009854 0.006814 +11 0.722454 0.121395 0.008062 0.005678 +12 0.688862 0.121167 0.007764 0.005678 +12 0.520603 0.118669 0.008062 0.006132 +12 0.611227 0.116284 0.008958 0.005905 +12 0.704091 0.116057 0.009555 0.005905 +18 0.372798 0.113672 0.009854 0.006586 +12 0.365632 0.084488 0.004479 0.004088 +12 0.369513 0.058256 0.008659 0.005678 +11 0.324873 0.078810 0.005375 0.002725 +13 0.323679 0.063139 0.007764 0.005905 +11 0.331890 0.077788 0.005076 0.003407 +12 0.339206 0.060527 0.008361 0.006586 +12 0.168856 0.078356 0.008659 0.005905 +12 0.183488 0.075744 0.006271 0.005224 +13 0.223201 0.075517 0.009854 0.006132 +11 0.231860 0.057574 0.008062 0.003861 +11 0.802478 0.075290 0.008659 0.006132 +12 0.296357 0.073246 0.008062 0.006132 +13 0.239773 0.073018 0.008361 0.005678 +13 0.238877 0.057007 0.004180 0.003634 +12 0.196029 0.072905 0.008062 0.005451 +12 0.266497 0.070747 0.009256 0.006586 +12 0.210212 0.070066 0.007764 0.006132 +12 0.309943 0.068022 0.007764 0.005224 +12 0.282622 0.067795 0.006868 0.005224 +17 0.573007 0.068022 0.009555 0.006586 +17 0.757987 0.067568 0.010451 0.006132 +17 0.486712 0.068022 0.010152 0.007041 +12 0.445954 0.065637 0.008659 0.005905 +17 0.666766 0.066091 0.010749 0.007268 +12 0.918035 0.065296 0.009256 0.006586 +13 0.652881 0.063707 0.006868 0.005224 +11 0.631830 0.063707 0.006569 0.005224 +13 0.434010 0.063139 0.005673 0.004542 +13 0.424455 0.063139 0.007465 0.005451 +11 0.537772 0.063252 0.008361 0.006132 +11 0.722156 0.063139 0.008659 0.006359 +12 0.893550 0.062798 0.008062 0.006132 +13 0.411317 0.060413 0.008062 0.006359 +13 0.880113 0.059846 0.008659 0.006586 +12 0.398925 0.057915 0.008958 0.005905 +12 0.866079 0.057574 0.009256 0.005678 +12 0.836070 0.057120 0.009555 0.005224 +12 0.851747 0.054395 0.009256 0.006132 +12 0.384145 0.054735 0.009256 0.006814 +2 0.130337 0.327958 0.027172 0.025891 +0 0.097492 0.864751 0.022395 0.023393 +2 0.095103 0.712809 0.018214 0.018397 +3 0.148403 0.906995 0.009555 0.022030 +0 0.905494 0.565864 0.021200 0.025664 +2 0.096297 0.946968 0.018214 0.018851 +4 0.424455 0.381444 0.009256 0.014308 +4 0.404748 0.294004 0.008659 0.014763 +1 0.094207 0.290597 0.021798 0.035203 +4 0.095402 0.110720 0.022395 0.033386 +0 0.096895 0.621735 0.022395 0.023393 +2 0.092117 0.238360 0.020006 0.020668 +4 0.710212 0.158188 0.009854 0.016580 +1 0.095700 0.576084 0.022395 0.040200 +4 0.191848 0.524302 0.009256 0.015217 +4 0.252613 0.641949 0.008958 0.012491 +1 0.095402 0.529525 0.021798 0.040654 +4 0.322036 0.542130 0.009256 0.014081 +4 0.558226 0.543834 0.008659 0.012491 +4 0.628397 0.549739 0.009256 0.017034 +4 0.612272 0.401431 0.009854 0.017488 +4 0.222604 0.381217 0.009256 0.013400 +4 0.842490 0.288099 0.008659 0.014763 +2 0.093610 0.475698 0.020006 0.020213 +2 0.094804 0.905405 0.019409 0.019305 +4 0.904300 0.064161 0.009256 0.015217 +4 0.359062 0.152510 0.009854 0.012491 +1 0.171544 0.821826 0.009256 0.014308 +2 0.095700 0.667159 0.019409 0.019759 +2 0.093610 0.195889 0.018812 0.020213 +4 0.661541 0.288780 0.008659 0.016580 +3 0.864288 0.875767 0.006868 0.017715 +4 0.360854 0.113672 0.009854 0.012946 +4 0.369215 0.348058 0.009256 0.015671 +2 0.092714 0.432319 0.019409 0.019759 +1 0.095700 0.068930 0.022395 0.039746 +4 0.610481 0.644674 0.008659 0.014308 +1 0.070917 0.531115 0.006271 0.012946 +4 0.729621 0.348739 0.012242 0.016125 +1 0.093909 0.331706 0.021200 0.033841 +4 0.130188 0.574381 0.008361 0.013627 +4 0.121827 0.566205 0.008361 0.015444 +4 0.140639 0.563252 0.008958 0.015444 +4 0.130188 0.529525 0.008361 0.014308 +4 0.139445 0.516125 0.008958 0.013854 +4 0.129292 0.201567 0.008361 0.012491 +4 0.120932 0.192823 0.008361 0.013627 +4 0.137354 0.188167 0.007764 0.012946 +4 0.129890 0.479787 0.008361 0.013854 +4 0.121529 0.471270 0.008361 0.014536 +4 0.139445 0.468885 0.008361 0.013854 +4 0.128695 0.292301 0.008958 0.013627 +4 0.120036 0.283216 0.008361 0.014536 +4 0.138250 0.280604 0.008958 0.014308 +5 0.923559 0.520327 0.006569 0.013173 +3 0.911914 0.523734 0.007166 0.025437 +4 0.129591 0.385760 0.008958 0.012037 +4 0.122126 0.376561 0.008361 0.012264 +4 0.139146 0.373722 0.008958 0.013400 +4 0.890116 0.622984 0.005375 0.012264 +3 0.883249 0.614581 0.007166 0.019078 +3 0.896984 0.609811 0.005972 0.014990 +4 0.130785 0.671928 0.008958 0.014763 +4 0.140042 0.660572 0.008361 0.015671 +3 0.891012 0.719055 0.006569 0.012719 +3 0.882950 0.708835 0.005972 0.014081 +3 0.897283 0.705428 0.005972 0.012719 +3 0.890116 0.672723 0.005972 0.015444 +4 0.882353 0.662503 0.005972 0.011356 +5 0.896088 0.658415 0.005972 0.014081 +4 0.129292 0.241994 0.008958 0.016125 +4 0.120932 0.234159 0.008958 0.015444 +4 0.137952 0.231547 0.009555 0.016125 +5 0.904150 0.622757 0.007166 0.013627 +5 0.922365 0.617079 0.006569 0.013173 +5 0.154673 0.819214 0.007166 0.013173 +5 0.137653 0.818192 0.006569 0.013854 +4 0.537474 0.294799 0.008361 0.015444 +5 0.123619 0.864865 0.007166 0.012264 +5 0.130785 0.856234 0.005972 0.014081 +5 0.124963 0.909380 0.007465 0.012264 +5 0.131383 0.900636 0.008361 0.011583 +4 0.129292 0.067568 0.010152 0.015217 +4 0.120334 0.059051 0.008958 0.014081 +4 0.122126 0.615262 0.008958 0.013627 +4 0.138847 0.100045 0.008361 0.012946 +3 0.892207 0.526459 0.005972 0.019078 +3 0.885040 0.521008 0.005972 0.014536 +5 0.123171 0.771974 0.006868 0.013627 +5 0.131681 0.764138 0.007166 0.013854 +5 0.131681 0.806723 0.007764 0.014081 +3 0.891609 0.573018 0.007166 0.018624 +3 0.883846 0.565069 0.007166 0.015444 +5 0.123619 0.950715 0.006569 0.014990 +5 0.131383 0.943334 0.006569 0.012491 +3 0.888325 0.879400 0.006569 0.016352 +3 0.896686 0.876902 0.006569 0.018624 +4 0.121827 0.147627 0.008958 0.014990 +5 0.916692 0.673404 0.007764 0.014081 +5 0.911317 0.661367 0.006569 0.012719 +5 0.138847 0.866341 0.006569 0.014763 +5 0.146611 0.859641 0.007764 0.014990 +5 0.900418 0.513173 0.009256 0.015217 +5 0.903703 0.524983 0.009256 0.015217 +5 0.124067 0.707132 0.009256 0.015217 +4 0.140938 0.705996 0.008958 0.015217 +5 0.074500 0.383261 0.009256 0.015217 +3 0.087190 0.380763 0.008958 0.015217 +4 0.097790 0.823189 0.009256 0.013400 +5 0.103613 0.823189 0.008958 0.013400 +4 0.091818 0.818873 0.009256 0.015217 +4 0.100627 0.814104 0.008958 0.015217 +5 0.131233 0.620827 0.009256 0.015217 +4 0.138250 0.612196 0.008958 0.015217 +4 0.129740 0.435953 0.009256 0.015217 +4 0.137354 0.425960 0.008958 0.015217 +5 0.156315 0.778787 0.009256 0.014536 +3 0.097492 0.780718 0.009256 0.012946 +5 0.102419 0.780718 0.008958 0.012946 +4 0.090923 0.775267 0.009256 0.015217 +4 0.100328 0.770270 0.008958 0.015217 +4 0.717976 0.589484 0.009256 0.015217 +5 0.712899 0.667613 0.009256 0.015217 +4 0.721409 0.660118 0.008958 0.015217 +4 0.590325 0.637293 0.008958 0.012264 +5 0.904598 0.718715 0.009256 0.015217 +5 0.914900 0.719169 0.008958 0.015217 +4 0.130935 0.154327 0.009256 0.015217 +4 0.138549 0.145242 0.008958 0.015217 +4 0.719170 0.512264 0.009256 0.015217 +4 0.717976 0.524302 0.009256 0.015217 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_11.jpg b/data_dataset/dvo/debug/debug_11.jpg new file mode 100644 index 0000000..99f0291 Binary files /dev/null and b/data_dataset/dvo/debug/debug_11.jpg differ diff --git a/data_dataset/dvo/debug/debug_11.txt b/data_dataset/dvo/debug/debug_11.txt new file mode 100644 index 0000000..a4bc03b --- /dev/null +++ b/data_dataset/dvo/debug/debug_11.txt @@ -0,0 +1,617 @@ +10 0.751197 0.947135 0.006882 0.002956 +7 0.730850 0.944179 0.011670 0.020691 +7 0.500449 0.939859 0.012867 0.012960 +6 0.879862 0.940541 0.010473 0.019782 +6 0.692250 0.939632 0.009874 0.017963 +6 0.799372 0.939177 0.009874 0.017963 +6 0.662926 0.938722 0.009874 0.017963 +6 0.576152 0.938267 0.008677 0.017963 +6 0.456762 0.937358 0.009276 0.017963 +6 0.427439 0.937358 0.008079 0.017963 +6 0.279025 0.938040 0.009276 0.018417 +6 0.341263 0.936903 0.009276 0.017963 +6 0.233543 0.936221 0.010473 0.018417 +6 0.206014 0.936221 0.009276 0.018417 +6 0.635996 0.935766 0.007481 0.023874 +10 0.860114 0.906435 0.008079 0.003411 +10 0.344853 0.899386 0.006882 0.002956 +10 0.070168 0.878922 0.006882 0.004775 +8 0.773339 0.850045 0.009276 0.009777 +10 0.751197 0.848681 0.006882 0.004320 +10 0.635099 0.846180 0.006882 0.002956 +7 0.731747 0.845498 0.009874 0.019782 +7 0.499551 0.841860 0.012268 0.014325 +7 0.361311 0.840950 0.012268 0.014325 +7 0.327798 0.840723 0.012268 0.013870 +7 0.297277 0.839586 0.012268 0.020691 +7 0.253291 0.840950 0.011670 0.034334 +7 0.221873 0.843906 0.012268 0.020236 +7 0.192549 0.840950 0.012268 0.014325 +6 0.881658 0.842087 0.010473 0.017508 +6 0.800269 0.840950 0.010473 0.019782 +6 0.663824 0.840268 0.009276 0.017508 +6 0.428037 0.840496 0.010473 0.018872 +6 0.692849 0.839814 0.009874 0.018417 +6 0.577050 0.840041 0.010473 0.018872 +6 0.460054 0.839814 0.009874 0.020236 +10 0.754788 0.804798 0.006882 0.004775 +10 0.579144 0.803661 0.006284 0.003411 +9 0.864004 0.803888 0.008677 0.029332 +9 0.448384 0.800250 0.004488 0.022055 +9 0.413974 0.796839 0.006284 0.024329 +10 0.694644 0.746589 0.008677 0.003865 +10 0.580341 0.746589 0.006284 0.004775 +10 0.501346 0.743861 0.007481 0.004775 +9 0.771843 0.748181 0.009874 0.041610 +9 0.667714 0.743179 0.008677 0.031605 +10 0.342160 0.737040 0.006284 0.002046 +10 0.665919 0.736585 0.007481 0.002956 +9 0.307750 0.739086 0.004488 0.022510 +6 0.309545 0.686789 0.009276 0.017963 +10 0.736236 0.679968 0.006882 0.003411 +9 0.339467 0.685653 0.004488 0.023874 +9 0.768552 0.674056 0.004488 0.045248 +9 0.499252 0.679513 0.010473 0.043429 +6 0.556403 0.628126 0.009874 0.019782 +6 0.323309 0.627444 0.009276 0.019327 +6 0.603381 0.627217 0.009276 0.019782 +6 0.777229 0.626762 0.009874 0.018872 +6 0.667115 0.626762 0.009874 0.018872 +6 0.522890 0.626535 0.009874 0.018417 +6 0.745512 0.625625 0.009874 0.018417 +6 0.438809 0.626080 0.005685 0.019327 +6 0.176391 0.625625 0.009874 0.017508 +6 0.894823 0.625171 0.009276 0.018417 +6 0.378067 0.625625 0.007481 0.018417 +6 0.291891 0.625398 0.009874 0.017963 +6 0.220975 0.625398 0.009276 0.017963 +6 0.828396 0.625398 0.009276 0.018872 +8 0.411281 0.577422 0.010473 0.007503 +7 0.293986 0.578558 0.009276 0.009777 +6 0.861011 0.578104 0.009874 0.019782 +6 0.220975 0.579468 0.009276 0.019782 +7 0.343058 0.523533 0.011670 0.013415 +7 0.877768 0.523079 0.011071 0.015234 +7 0.844255 0.523761 0.012268 0.014779 +7 0.795183 0.523079 0.012268 0.013415 +7 0.762867 0.523079 0.011071 0.013415 +7 0.684470 0.523533 0.012268 0.014325 +7 0.621035 0.523079 0.012268 0.013415 +7 0.573758 0.523079 0.012268 0.013415 +7 0.540844 0.523306 0.012268 0.013870 +7 0.505835 0.523079 0.011670 0.014325 +7 0.459455 0.523306 0.012268 0.013870 +7 0.425344 0.526944 0.012268 0.022055 +7 0.393627 0.522169 0.012268 0.019782 +7 0.308947 0.523306 0.011670 0.013870 +7 0.911879 0.523079 0.012268 0.015234 +7 0.730551 0.522851 0.012268 0.013870 +7 0.653052 0.523079 0.011670 0.014325 +6 0.221873 0.522397 0.009874 0.019327 +9 0.894225 0.523079 0.011670 0.026148 +9 0.223668 0.475557 0.009874 0.031151 +8 0.223968 0.419395 0.008079 0.017963 +6 0.860413 0.415302 0.007481 0.018872 +6 0.203321 0.414848 0.009874 0.017963 +9 0.634800 0.415302 0.009874 0.022510 +6 0.635398 0.366417 0.008677 0.018417 +6 0.203621 0.365507 0.009276 0.020236 +6 0.802962 0.297067 0.009874 0.017053 +6 0.695242 0.297749 0.009874 0.019327 +6 0.718881 0.297294 0.010473 0.018417 +6 0.374177 0.297294 0.005685 0.020236 +6 0.313136 0.296385 0.008079 0.018417 +6 0.231448 0.297294 0.009874 0.019327 +6 0.755087 0.297067 0.009874 0.018872 +6 0.574057 0.296839 0.005685 0.020236 +6 0.508229 0.297067 0.009276 0.019782 +6 0.179084 0.296839 0.008079 0.019327 +6 0.532765 0.297067 0.006882 0.019782 +6 0.429234 0.295930 0.005685 0.018417 +6 0.339168 0.295930 0.009874 0.018417 +6 0.624626 0.295930 0.009874 0.018417 +6 0.207510 0.294793 0.009874 0.021601 +9 0.373878 0.245680 0.009874 0.023420 +6 0.179982 0.237040 0.009874 0.020691 +10 0.810742 0.190200 0.006284 0.005230 +9 0.176990 0.192929 0.009874 0.032515 +9 0.204518 0.189973 0.009874 0.032970 +9 0.755984 0.190200 0.010473 0.034334 +6 0.286804 0.189291 0.012867 0.037972 +8 0.375075 0.139268 0.008677 0.009777 +8 0.922950 0.033993 0.006882 0.013870 +11 0.770347 0.949409 0.009276 0.005684 +12 0.752095 0.949295 0.008677 0.005457 +11 0.849342 0.947021 0.009276 0.006367 +11 0.547576 0.945884 0.008378 0.005912 +12 0.524387 0.945657 0.008677 0.006367 +11 0.397367 0.945202 0.008378 0.006367 +11 0.633453 0.943611 0.008378 0.005002 +11 0.311341 0.939404 0.009276 0.006594 +17 0.177139 0.938495 0.008977 0.006594 +11 0.394075 0.907799 0.004788 0.004320 +17 0.400808 0.880741 0.009874 0.006594 +11 0.802962 0.885175 0.009276 0.006367 +12 0.359665 0.884038 0.007780 0.005912 +17 0.851287 0.882447 0.010174 0.007276 +17 0.579144 0.881764 0.009874 0.005912 +12 0.069420 0.880969 0.005386 0.004775 +12 0.342759 0.881196 0.009276 0.005684 +17 0.501646 0.881537 0.010473 0.007276 +17 0.734740 0.879263 0.009874 0.007276 +17 0.633902 0.878581 0.010473 0.006821 +11 0.310144 0.877899 0.008677 0.006367 +11 0.909635 0.874375 0.007780 0.005684 +11 0.280371 0.874375 0.007780 0.005684 +17 0.176840 0.873693 0.010174 0.007049 +11 0.774237 0.850387 0.009276 0.004093 +12 0.751646 0.850273 0.008977 0.005684 +11 0.852035 0.847772 0.008677 0.006139 +11 0.549671 0.847090 0.008378 0.006594 +12 0.526182 0.846635 0.009276 0.006594 +11 0.398863 0.846521 0.009575 0.006367 +11 0.633603 0.844361 0.009874 0.004775 +12 0.176242 0.840382 0.008977 0.006821 +12 0.343806 0.835834 0.009575 0.006821 +12 0.235937 0.835380 0.008079 0.005912 +12 0.310293 0.830946 0.008378 0.006139 +12 0.207810 0.830832 0.008677 0.005912 +12 0.281867 0.821623 0.008977 0.006594 +11 0.912029 0.807412 0.008977 0.005912 +11 0.912926 0.800932 0.005984 0.005230 +11 0.803262 0.806958 0.006882 0.005002 +17 0.804608 0.799909 0.007780 0.005002 +11 0.852484 0.804684 0.008378 0.005457 +11 0.852035 0.798204 0.007481 0.004320 +11 0.734740 0.804570 0.008079 0.005230 +11 0.735039 0.797749 0.008079 0.004775 +11 0.399461 0.803320 0.007181 0.005457 +11 0.399013 0.796385 0.007481 0.005230 +11 0.882555 0.801728 0.008079 0.005002 +11 0.883453 0.794907 0.006882 0.005002 +11 0.772442 0.801273 0.008079 0.005002 +11 0.772741 0.795020 0.009276 0.006139 +11 0.550569 0.800477 0.007780 0.004775 +11 0.551017 0.793543 0.007481 0.003183 +11 0.696290 0.800364 0.008977 0.005912 +17 0.696290 0.806276 0.008977 0.005912 +11 0.579443 0.799909 0.008079 0.005912 +11 0.579443 0.805821 0.008079 0.005912 +11 0.460652 0.799568 0.008079 0.006139 +11 0.460652 0.805707 0.008079 0.006139 +11 0.791592 0.800591 0.007481 0.009095 +17 0.568223 0.799113 0.005984 0.006594 +12 0.754788 0.799227 0.009276 0.008186 +17 0.647965 0.802296 0.008677 0.004775 +18 0.647965 0.797522 0.008677 0.004775 +11 0.635548 0.797635 0.008977 0.005912 +17 0.635548 0.803547 0.008977 0.005912 +13 0.448534 0.796953 0.004788 0.003638 +17 0.530820 0.797181 0.012567 0.005002 +17 0.530820 0.802183 0.012567 0.005002 +13 0.501795 0.796726 0.007181 0.005002 +11 0.502843 0.804116 0.008079 0.005684 +11 0.410084 0.796612 0.005685 0.004775 +17 0.282466 0.798431 0.010174 0.008868 +11 0.665171 0.794907 0.008378 0.005912 +11 0.665171 0.800819 0.008378 0.005912 +11 0.429533 0.793884 0.009874 0.005684 +11 0.429533 0.799568 0.009874 0.005684 +12 0.111311 0.792519 0.005386 0.004775 +17 0.176242 0.792974 0.010174 0.006594 +17 0.176242 0.799568 0.010174 0.006594 +11 0.912627 0.751137 0.007181 0.005684 +11 0.913226 0.744316 0.008977 0.005684 +11 0.095153 0.749659 0.005386 0.005457 +12 0.170557 0.749545 0.004788 0.007049 +17 0.176541 0.730218 0.009575 0.007503 +11 0.501047 0.746930 0.008079 0.005002 +11 0.501945 0.740450 0.008677 0.005230 +12 0.398863 0.746817 0.006583 0.004775 +11 0.400060 0.740678 0.008378 0.005684 +11 0.772442 0.744770 0.007481 0.004775 +11 0.773190 0.738745 0.008977 0.005457 +11 0.623279 0.744657 0.006583 0.004548 +12 0.624028 0.738859 0.007481 0.005684 +11 0.804159 0.744316 0.008677 0.005684 +17 0.804608 0.750455 0.008977 0.006139 +11 0.429982 0.743861 0.008378 0.004775 +11 0.429832 0.737835 0.008079 0.005457 +11 0.695990 0.743975 0.009575 0.005912 +11 0.695990 0.749886 0.009575 0.005912 +11 0.579294 0.744088 0.008977 0.006139 +11 0.578995 0.750341 0.007181 0.005457 +11 0.460054 0.743065 0.008677 0.005002 +11 0.459455 0.750341 0.007481 0.005002 +11 0.340963 0.743292 0.008079 0.005457 +12 0.343357 0.735221 0.008677 0.005684 +11 0.852783 0.747271 0.007780 0.005684 +12 0.735637 0.741473 0.009276 0.005457 +12 0.735637 0.746930 0.009276 0.005457 +11 0.634500 0.741473 0.008079 0.005457 +11 0.634500 0.746930 0.008079 0.005457 +11 0.843208 0.739313 0.007181 0.004775 +17 0.843208 0.744429 0.007181 0.005002 +11 0.852783 0.741587 0.007780 0.005684 +11 0.882855 0.739200 0.008677 0.005457 +11 0.882855 0.744657 0.008677 0.005457 +11 0.666517 0.738972 0.008677 0.005457 +11 0.666517 0.744429 0.008677 0.005457 +12 0.724865 0.738290 0.007481 0.004548 +12 0.492071 0.738176 0.005685 0.004320 +11 0.549072 0.738176 0.009575 0.005230 +11 0.549072 0.743406 0.009575 0.005230 +12 0.388989 0.738063 0.007780 0.005002 +12 0.360712 0.738290 0.009276 0.005457 +11 0.311341 0.732378 0.008079 0.005457 +11 0.282017 0.730218 0.008079 0.006594 +17 0.175494 0.702251 0.009276 0.006139 +11 0.175793 0.683834 0.009874 0.007503 +12 0.279922 0.696794 0.006882 0.004320 +12 0.279773 0.678604 0.008378 0.006139 +12 0.818671 0.684970 0.008378 0.005230 +12 0.818522 0.665871 0.008677 0.007049 +12 0.593357 0.684857 0.007181 0.005912 +12 0.593208 0.665985 0.008079 0.007276 +11 0.735039 0.681901 0.008079 0.004548 +12 0.734141 0.663483 0.008079 0.005912 +12 0.078247 0.682242 0.005087 0.005684 +17 0.853232 0.682128 0.009874 0.006821 +12 0.853232 0.663370 0.011071 0.007503 +11 0.500449 0.681901 0.007481 0.006367 +12 0.499850 0.663256 0.008079 0.005457 +17 0.635996 0.681219 0.008677 0.005912 +17 0.636744 0.662460 0.011370 0.007503 +17 0.400658 0.681219 0.009575 0.006821 +12 0.400359 0.663142 0.010772 0.007049 +11 0.773489 0.679627 0.008977 0.005457 +12 0.772292 0.661551 0.008378 0.006594 +11 0.549372 0.679400 0.009575 0.005912 +12 0.549072 0.659845 0.009575 0.006821 +11 0.343208 0.678718 0.007780 0.006367 +11 0.202124 0.641883 0.008677 0.006367 +13 0.077947 0.637904 0.004488 0.003865 +11 0.376421 0.630969 0.005984 0.004548 +11 0.490425 0.628467 0.009575 0.005912 +11 0.714393 0.628354 0.008677 0.006139 +11 0.636894 0.628354 0.009276 0.006594 +11 0.407092 0.628240 0.008677 0.006367 +11 0.258677 0.628240 0.009276 0.006367 +11 0.861909 0.628013 0.009276 0.006821 +12 0.176691 0.594475 0.009276 0.006139 +11 0.203621 0.594020 0.009276 0.006139 +18 0.294883 0.577308 0.005685 0.003638 +17 0.714393 0.576057 0.009874 0.007503 +11 0.893776 0.568213 0.008977 0.006367 +11 0.830192 0.568213 0.008079 0.006367 +12 0.684022 0.565371 0.008977 0.006139 +12 0.667265 0.563211 0.008977 0.007276 +11 0.635996 0.560482 0.008677 0.006367 +11 0.603381 0.556389 0.009276 0.007276 +17 0.491472 0.555252 0.010473 0.007731 +11 0.204219 0.537062 0.009276 0.005912 +11 0.179084 0.537290 0.009276 0.006367 +12 0.490425 0.523988 0.008378 0.006139 +11 0.713196 0.523647 0.008677 0.006367 +11 0.258827 0.523647 0.008977 0.006367 +12 0.555655 0.518986 0.007181 0.006139 +12 0.777229 0.518417 0.006882 0.005912 +12 0.667115 0.518417 0.007481 0.005912 +12 0.440006 0.518645 0.009276 0.006367 +12 0.326302 0.518531 0.009874 0.006139 +12 0.894375 0.515121 0.007780 0.005684 +12 0.407391 0.513302 0.008677 0.006594 +13 0.293686 0.513302 0.009874 0.006594 +12 0.745961 0.510687 0.008977 0.005912 +12 0.635996 0.510687 0.008677 0.005912 +12 0.861610 0.510232 0.008677 0.005912 +13 0.523639 0.510573 0.008977 0.006594 +12 0.605326 0.505230 0.009575 0.006821 +12 0.829144 0.504320 0.009575 0.007731 +12 0.378965 0.504093 0.009276 0.007276 +17 0.260772 0.483060 0.011071 0.007049 +17 0.260024 0.471351 0.010174 0.007276 +17 0.827349 0.482265 0.009575 0.006367 +17 0.828546 0.471578 0.009575 0.009095 +17 0.602633 0.482833 0.011370 0.007503 +17 0.602932 0.468395 0.009575 0.005912 +17 0.492071 0.482606 0.010473 0.007049 +17 0.492071 0.468622 0.009276 0.005457 +17 0.713196 0.482151 0.011071 0.007049 +17 0.712747 0.468167 0.007780 0.006367 +17 0.377917 0.482492 0.011370 0.007731 +11 0.377169 0.471351 0.010473 0.007276 +13 0.105326 0.474307 0.005386 0.004093 +11 0.203022 0.474079 0.006882 0.005002 +11 0.203621 0.467713 0.008079 0.004548 +12 0.112956 0.472146 0.007481 0.007958 +11 0.224566 0.476580 0.009276 0.005912 +11 0.224566 0.470668 0.009276 0.005912 +11 0.177738 0.470555 0.009575 0.005684 +11 0.177738 0.476239 0.009575 0.005684 +11 0.224716 0.424511 0.008378 0.004548 +11 0.177887 0.424852 0.009276 0.005230 +17 0.713046 0.423943 0.010772 0.006139 +11 0.892579 0.415643 0.007780 0.005912 +17 0.828845 0.415416 0.008977 0.006367 +12 0.683722 0.413483 0.008378 0.005230 +12 0.667714 0.410869 0.007481 0.006367 +11 0.636146 0.408822 0.007780 0.005912 +13 0.492819 0.407231 0.010174 0.007276 +11 0.603531 0.406207 0.008378 0.006139 +17 0.378516 0.406207 0.010772 0.007049 +12 0.261969 0.406321 0.011071 0.007276 +17 0.236685 0.404388 0.008378 0.004320 +11 0.178785 0.375171 0.008677 0.005002 +17 0.492669 0.375284 0.009276 0.006139 +11 0.492220 0.357322 0.010772 0.007503 +12 0.907989 0.369372 0.006882 0.005230 +12 0.908139 0.350387 0.008977 0.006367 +11 0.667265 0.367099 0.007780 0.006139 +12 0.667265 0.348568 0.008977 0.007276 +11 0.604129 0.367212 0.009575 0.006367 +12 0.603680 0.348113 0.008677 0.006367 +12 0.892280 0.366644 0.007780 0.006139 +12 0.891981 0.347090 0.008977 0.005230 +12 0.458259 0.364711 0.008677 0.005912 +12 0.456912 0.345725 0.008378 0.006139 +11 0.859515 0.364143 0.008079 0.005684 +12 0.858618 0.345271 0.008079 0.006139 +12 0.440156 0.362210 0.007181 0.005457 +12 0.440754 0.343111 0.008378 0.005457 +12 0.713944 0.362324 0.008977 0.006594 +12 0.713046 0.341974 0.010772 0.007731 +12 0.827947 0.361528 0.008378 0.005912 +12 0.826152 0.342656 0.009575 0.006367 +11 0.408588 0.359823 0.007481 0.004320 +12 0.407989 0.340609 0.008677 0.006821 +11 0.378217 0.357208 0.008977 0.006367 +12 0.376272 0.337767 0.008677 0.006594 +11 0.224865 0.357208 0.009276 0.006367 +17 0.261221 0.356980 0.009575 0.006821 +12 0.260473 0.337540 0.010473 0.008868 +11 0.909785 0.311278 0.009276 0.005457 +11 0.858468 0.311050 0.008378 0.005002 +11 0.399312 0.304116 0.006882 0.005684 +11 0.598444 0.301955 0.005984 0.003183 +11 0.484291 0.301728 0.006882 0.004548 +11 0.673250 0.301046 0.007780 0.005002 +11 0.780521 0.300705 0.008079 0.005684 +11 0.286206 0.298772 0.006882 0.005912 +11 0.757181 0.261255 0.009276 0.006367 +11 0.597546 0.261596 0.010772 0.007958 +17 0.781867 0.260914 0.010772 0.007503 +17 0.674596 0.260800 0.010473 0.007276 +11 0.910981 0.252046 0.009276 0.006139 +17 0.858318 0.252501 0.010473 0.007049 +11 0.400209 0.246248 0.009874 0.008186 +11 0.178636 0.243179 0.008378 0.004775 +11 0.572412 0.242610 0.008378 0.004548 +17 0.483393 0.242724 0.009874 0.006594 +17 0.206762 0.243065 0.009575 0.007276 +12 0.375224 0.240337 0.006583 0.005457 +12 0.287403 0.241019 0.010473 0.008640 +11 0.339916 0.196680 0.008378 0.006367 +11 0.428037 0.195430 0.007481 0.006594 +11 0.428336 0.189177 0.008677 0.005912 +11 0.624177 0.195089 0.007780 0.006367 +11 0.178187 0.194179 0.006882 0.005002 +11 0.178037 0.187244 0.006583 0.003865 +11 0.912328 0.194179 0.007780 0.005912 +11 0.912178 0.187813 0.008677 0.005912 +11 0.285907 0.193383 0.006284 0.005230 +11 0.286954 0.186107 0.007181 0.004320 +11 0.374776 0.192929 0.006882 0.005230 +11 0.375972 0.186221 0.006284 0.004548 +11 0.482944 0.192588 0.007181 0.005002 +11 0.484889 0.186221 0.008079 0.004548 +11 0.672950 0.192360 0.007181 0.005002 +11 0.673100 0.185539 0.009874 0.005912 +11 0.234740 0.190655 0.007481 0.003411 +11 0.233992 0.197021 0.007780 0.006139 +11 0.857870 0.190882 0.006583 0.005230 +12 0.859665 0.183947 0.006583 0.004093 +11 0.695841 0.189291 0.007481 0.005230 +11 0.696290 0.182697 0.007780 0.004775 +11 0.533662 0.189404 0.009276 0.005912 +11 0.533662 0.195316 0.009276 0.005912 +11 0.721873 0.188722 0.008677 0.005912 +11 0.721873 0.194634 0.008677 0.005912 +11 0.809844 0.188154 0.009276 0.006594 +12 0.809994 0.194975 0.007780 0.005684 +11 0.573609 0.185994 0.005984 0.005002 +11 0.572113 0.192588 0.005984 0.004548 +11 0.597995 0.187244 0.008079 0.008868 +11 0.757181 0.190996 0.008677 0.005912 +11 0.757181 0.185084 0.008677 0.005912 +11 0.205715 0.184516 0.008677 0.005684 +11 0.205715 0.190200 0.008677 0.005684 +11 0.399761 0.189404 0.008378 0.005457 +11 0.399761 0.183947 0.008378 0.005457 +11 0.312238 0.184061 0.008677 0.006139 +11 0.312238 0.190200 0.008677 0.006139 +11 0.507929 0.183606 0.008677 0.005684 +11 0.507929 0.189291 0.008677 0.005684 +11 0.881807 0.184629 0.008378 0.008186 +11 0.782466 0.183151 0.008977 0.005684 +11 0.782466 0.188836 0.008977 0.005684 +11 0.756583 0.147567 0.009276 0.006367 +17 0.674297 0.147567 0.009874 0.007276 +11 0.821215 0.145748 0.009276 0.006367 +11 0.783513 0.143361 0.008677 0.006139 +12 0.248205 0.143133 0.008677 0.006594 +11 0.440006 0.142224 0.009276 0.006594 +11 0.633453 0.141542 0.009575 0.006139 +17 0.285308 0.141201 0.009874 0.006367 +17 0.484440 0.139495 0.008378 0.004320 +11 0.207211 0.138358 0.008079 0.006139 +11 0.401107 0.137449 0.008079 0.006139 +17 0.860862 0.137221 0.009575 0.006594 +11 0.596200 0.136539 0.008677 0.006139 +11 0.754638 0.096066 0.008977 0.006139 +11 0.821215 0.095498 0.009276 0.006821 +11 0.673549 0.095384 0.010772 0.008413 +12 0.247307 0.092883 0.006882 0.006139 +11 0.784111 0.092542 0.009874 0.006367 +12 0.438510 0.092315 0.008677 0.005912 +12 0.571514 0.089359 0.005984 0.002729 +12 0.389737 0.089814 0.004488 0.003638 +12 0.374776 0.090268 0.005685 0.005002 +17 0.288001 0.089927 0.005685 0.004320 +11 0.632107 0.090950 0.009276 0.006821 +17 0.485338 0.089245 0.010174 0.006139 +11 0.205566 0.087540 0.008378 0.006367 +11 0.400060 0.087085 0.007780 0.005912 +17 0.860862 0.086517 0.009575 0.006139 +11 0.596200 0.086176 0.008079 0.006367 +11 0.922801 0.034902 0.003591 0.005684 +1 0.103381 0.131764 0.021843 0.039336 +2 0.383752 0.800250 0.020048 0.022965 +5 0.389437 0.131082 0.007481 0.009777 +3 0.834081 0.802524 0.011071 0.017508 +3 0.712597 0.189063 0.007481 0.022965 +3 0.192849 0.473056 0.006882 0.017963 +4 0.585727 0.084925 0.007481 0.013870 +3 0.378665 0.740905 0.011071 0.023420 +5 0.141682 0.361414 0.020646 0.024784 +3 0.623130 0.089018 0.008079 0.017508 +2 0.107271 0.295930 0.011670 0.015689 +3 0.900209 0.187244 0.008079 0.020236 +4 0.538749 0.680423 0.009276 0.014325 +0 0.876272 0.186335 0.017654 0.021146 +2 0.103980 0.626990 0.025434 0.021146 +2 0.101885 0.522397 0.018851 0.020236 +1 0.102783 0.685880 0.021843 0.034334 +4 0.428336 0.092201 0.006284 0.013870 +5 0.770646 0.089018 0.007481 0.015689 +3 0.566278 0.881651 0.008079 0.020236 +5 0.770946 0.140632 0.008079 0.014325 +3 0.515410 0.846180 0.006882 0.020236 +3 0.513615 0.944407 0.008079 0.018417 +3 0.616846 0.747044 0.007481 0.012051 +3 0.841562 0.662688 0.006882 0.019782 +3 0.836176 0.747044 0.006882 0.022055 +3 0.836176 0.945998 0.006882 0.017963 +4 0.620138 0.844588 0.010473 0.016144 +4 0.838869 0.883470 0.007481 0.012051 +3 0.789497 0.883242 0.008079 0.017963 +3 0.388839 0.881423 0.007481 0.019782 +4 0.618642 0.879377 0.009874 0.016598 +2 0.099192 0.839359 0.020646 0.020236 +3 0.429234 0.142678 0.008079 0.019327 +3 0.654847 0.793656 0.006882 0.017053 +4 0.806852 0.664734 0.009276 0.014779 +3 0.387642 0.845953 0.007481 0.019782 +1 0.105177 0.415757 0.021843 0.036153 +3 0.387044 0.942815 0.007481 0.018872 +4 0.754788 0.745452 0.009276 0.012506 +4 0.440604 0.806162 0.009276 0.013870 +4 0.539048 0.660186 0.009874 0.016598 +2 0.100090 0.891655 0.020048 0.020236 +4 0.583932 0.666098 0.012268 0.016598 +4 0.684171 0.802296 0.009276 0.014325 +4 0.784111 0.806617 0.006882 0.011141 +3 0.770946 0.190655 0.008079 0.017053 +4 0.619240 0.943724 0.009874 0.016144 +3 0.741921 0.948954 0.007481 0.019327 +4 0.583034 0.685880 0.009276 0.016144 +4 0.741323 0.848454 0.007481 0.012960 +5 0.762567 0.789791 0.006882 0.010232 +4 0.761071 0.661096 0.009874 0.014779 +3 0.623130 0.664052 0.006882 0.017963 +3 0.840664 0.681560 0.007481 0.020236 +2 0.100389 0.937358 0.018253 0.019782 +4 0.760772 0.679741 0.009276 0.013870 +3 0.217086 0.197476 0.007481 0.017963 +3 0.388241 0.681332 0.007481 0.019782 +3 0.623728 0.681787 0.008079 0.020691 +3 0.389437 0.663597 0.007481 0.015234 +5 0.124776 0.940427 0.007780 0.014552 +3 0.146320 0.940655 0.012567 0.024102 +3 0.146020 0.178263 0.008378 0.021828 +3 0.132855 0.178945 0.017953 0.023192 +5 0.127469 0.129377 0.007181 0.013188 +3 0.146619 0.239200 0.008378 0.017281 +5 0.133154 0.235107 0.008977 0.010914 +5 0.137941 0.469077 0.007780 0.011369 +0 0.132555 0.457481 0.008977 0.013643 +1 0.105326 0.369714 0.020347 0.033652 +3 0.516756 0.198727 0.006583 0.012733 +3 0.523040 0.187131 0.007181 0.018645 +5 0.127768 0.300364 0.007780 0.014097 +5 0.127768 0.412005 0.007780 0.016371 +3 0.134051 0.409050 0.008378 0.020464 +3 0.145422 0.077535 0.008378 0.020464 +5 0.142729 0.781492 0.007780 0.013188 +3 0.134949 0.522510 0.012567 0.024557 +3 0.135847 0.630514 0.009575 0.015916 +3 0.146020 0.629832 0.013166 0.024557 +1 0.095452 0.787403 0.007780 0.023192 +0 0.142729 0.840155 0.007780 0.009550 +3 0.483543 0.746476 0.005984 0.018645 +5 0.126272 0.894270 0.007181 0.014097 +5 0.144524 0.890405 0.007780 0.015462 +4 0.623878 0.797408 0.007780 0.013188 +0 0.866846 0.744429 0.007780 0.011824 +4 0.145123 0.131764 0.007780 0.017053 +3 0.152304 0.132901 0.007780 0.017053 +3 0.133154 0.124943 0.007780 0.017053 +3 0.139138 0.128809 0.007780 0.017053 +3 0.410832 0.196339 0.007780 0.017053 +4 0.723519 0.798317 0.007780 0.016371 +3 0.799820 0.186107 0.007780 0.017053 +3 0.497307 0.189745 0.007780 0.017053 +3 0.096050 0.464188 0.007780 0.017053 +3 0.134949 0.300932 0.007780 0.017053 +5 0.143327 0.298886 0.007780 0.017053 +5 0.151706 0.303888 0.007780 0.017053 +3 0.686415 0.186335 0.007780 0.017053 +4 0.410533 0.799113 0.007780 0.017053 +3 0.418013 0.792292 0.007780 0.017053 +3 0.615799 0.187472 0.007780 0.017053 +3 0.136744 0.414166 0.007780 0.017053 +5 0.144524 0.411664 0.007780 0.017053 +5 0.152304 0.416667 0.007780 0.017053 +3 0.685518 0.744088 0.007780 0.017053 +3 0.132555 0.076512 0.007780 0.017053 +3 0.137941 0.078786 0.007780 0.017053 +3 0.131358 0.784561 0.007780 0.017053 +3 0.136744 0.787744 0.007780 0.017053 +3 0.143327 0.734311 0.007780 0.017053 +5 0.149910 0.734993 0.007780 0.017053 +4 0.124776 0.729991 0.007780 0.017053 +3 0.130760 0.731128 0.007780 0.017053 +4 0.136744 0.732265 0.007780 0.017053 +3 0.194494 0.190200 0.007780 0.017053 +4 0.530820 0.742724 0.007780 0.017053 +4 0.537403 0.738176 0.007780 0.017053 +5 0.543986 0.738176 0.007780 0.017053 +4 0.125075 0.684061 0.007780 0.017053 +4 0.133154 0.686562 0.007780 0.017053 +5 0.141233 0.683151 0.007780 0.017053 +5 0.149312 0.688608 0.007780 0.017053 +3 0.302214 0.190655 0.007780 0.017053 +4 0.095153 0.082424 0.007780 0.017053 +4 0.102334 0.078331 0.007780 0.017053 +5 0.109814 0.079013 0.007780 0.017053 +3 0.587672 0.189291 0.007780 0.017053 +4 0.125972 0.839814 0.007780 0.017053 +4 0.136146 0.841405 0.007780 0.017053 +3 0.131957 0.895066 0.007780 0.017053 +5 0.137343 0.895066 0.007780 0.017053 +4 0.095153 0.735448 0.007780 0.017053 +4 0.102035 0.730900 0.007780 0.017053 +5 0.109216 0.730900 0.007780 0.017053 +4 0.560742 0.807185 0.007780 0.015916 +3 0.874626 0.741360 0.007780 0.014779 +3 0.484141 0.801842 0.007780 0.017053 +4 0.491622 0.797749 0.007780 0.017053 +4 0.104129 0.237153 0.007780 0.016371 +5 0.108618 0.237153 0.007780 0.016371 +3 0.716936 0.744770 0.007780 0.017053 +4 0.646918 0.744088 0.007780 0.017053 +3 0.654997 0.739541 0.007780 0.017053 +5 0.894674 0.747271 0.007780 0.017053 +4 0.904548 0.745452 0.007780 0.017053 +5 0.558348 0.747726 0.007780 0.017053 +4 0.568223 0.744088 0.007780 0.017053 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_12.jpg b/data_dataset/dvo/debug/debug_12.jpg new file mode 100644 index 0000000..7130ca1 Binary files /dev/null and b/data_dataset/dvo/debug/debug_12.jpg differ diff --git a/data_dataset/dvo/debug/debug_12.txt b/data_dataset/dvo/debug/debug_12.txt new file mode 100644 index 0000000..adbbcee --- /dev/null +++ b/data_dataset/dvo/debug/debug_12.txt @@ -0,0 +1,599 @@ +10 0.300269 0.948727 0.006284 0.003411 +10 0.232645 0.941451 0.006284 0.004320 +8 0.648265 0.934857 0.010473 0.007503 +8 0.542938 0.934402 0.012867 0.007503 +6 0.431029 0.936676 0.009276 0.020236 +6 0.447487 0.935994 0.008677 0.019782 +9 0.365799 0.935994 0.009276 0.027058 +9 0.239228 0.933492 0.008677 0.028422 +8 0.650658 0.885744 0.010473 0.008413 +8 0.542041 0.885061 0.011071 0.007049 +6 0.432825 0.888245 0.008079 0.018872 +6 0.450180 0.887108 0.010473 0.019327 +10 0.365500 0.878467 0.007481 0.002956 +10 0.243716 0.877558 0.006882 0.002046 +9 0.205117 0.883470 0.009874 0.020236 +10 0.367594 0.844816 0.006882 0.002956 +7 0.725165 0.840723 0.011071 0.013870 +7 0.505835 0.841633 0.011670 0.018417 +6 0.785308 0.840041 0.009276 0.017053 +6 0.900509 0.839586 0.009874 0.018872 +6 0.831089 0.839359 0.008677 0.018417 +6 0.449581 0.839131 0.009276 0.018872 +6 0.432825 0.837995 0.009276 0.019327 +10 0.679084 0.828672 0.006284 0.002501 +10 0.632705 0.820032 0.006882 0.002501 +7 0.726960 0.780241 0.012268 0.012960 +8 0.542639 0.776148 0.012268 0.007503 +6 0.831987 0.779104 0.010473 0.019782 +6 0.786206 0.778877 0.009874 0.020236 +6 0.430431 0.777967 0.010473 0.020236 +6 0.447786 0.777740 0.008079 0.019782 +10 0.756284 0.748863 0.007481 0.002956 +10 0.748504 0.735903 0.006284 0.003411 +10 0.747307 0.731355 0.007481 0.002501 +10 0.762268 0.726580 0.008677 0.002956 +7 0.724566 0.730900 0.012268 0.017963 +10 0.366996 0.727490 0.006882 0.004775 +10 0.449880 0.725443 0.007481 0.003411 +10 0.775135 0.721351 0.009276 0.003411 +6 0.430431 0.728627 0.009276 0.019782 +10 0.407989 0.720214 0.006284 0.002956 +9 0.609665 0.727262 0.007481 0.027058 +9 0.892130 0.727717 0.009874 0.029786 +10 0.880162 0.677467 0.007481 0.002956 +7 0.835877 0.669054 0.012268 0.023420 +8 0.758079 0.660641 0.012268 0.007503 +10 0.647367 0.660414 0.012268 0.005230 +8 0.410084 0.660869 0.010473 0.008868 +8 0.524387 0.660414 0.011670 0.008868 +6 0.197337 0.663142 0.008677 0.018872 +6 0.287104 0.662460 0.009874 0.019327 +6 0.306852 0.661096 0.008677 0.018417 +6 0.220975 0.661096 0.008079 0.018417 +10 0.851436 0.616530 0.007481 0.002956 +7 0.836774 0.620850 0.011670 0.024329 +8 0.759276 0.612665 0.012268 0.007958 +8 0.525583 0.611983 0.012867 0.007503 +8 0.648564 0.612437 0.012268 0.008413 +8 0.409785 0.611983 0.011071 0.007503 +6 0.306254 0.613120 0.009874 0.017963 +10 0.884351 0.576967 0.011071 0.002956 +10 0.852932 0.563324 0.010473 0.003865 +7 0.838570 0.566280 0.011670 0.021601 +8 0.757481 0.558777 0.012268 0.008413 +8 0.648265 0.558777 0.011670 0.008413 +9 0.863106 0.564234 0.004488 0.024784 +8 0.525883 0.557867 0.012268 0.007503 +8 0.409485 0.557412 0.012867 0.007503 +10 0.900209 0.552183 0.006882 0.002501 +6 0.305356 0.558095 0.009276 0.017963 +10 0.564183 0.508299 0.007481 0.002956 +7 0.368193 0.512619 0.012867 0.013415 +9 0.174596 0.513302 0.009874 0.025693 +6 0.305655 0.511710 0.009874 0.019782 +10 0.388540 0.503070 0.009276 0.003411 +10 0.176990 0.502842 0.006284 0.002956 +9 0.445990 0.504661 0.006882 0.032970 +9 0.419659 0.502387 0.010473 0.038427 +10 0.743118 0.470555 0.006284 0.003865 +10 0.690754 0.467826 0.010473 0.004775 +7 0.607870 0.458276 0.012268 0.013870 +10 0.731747 0.453274 0.006284 0.002956 +8 0.526182 0.454638 0.010473 0.007503 +8 0.408887 0.454411 0.010473 0.007958 +9 0.728755 0.461460 0.008677 0.027513 +9 0.174596 0.454866 0.009874 0.024329 +6 0.305955 0.455548 0.009276 0.018417 +9 0.578845 0.406435 0.010473 0.027513 +9 0.170706 0.394384 0.004488 0.031605 +10 0.893327 0.353911 0.007481 0.003411 +9 0.647666 0.339359 0.006882 0.018872 +7 0.820317 0.336176 0.012268 0.013415 +7 0.431927 0.336176 0.012268 0.013415 +7 0.186565 0.335721 0.012268 0.013415 +6 0.890634 0.335493 0.008079 0.016598 +6 0.684470 0.334584 0.009874 0.019327 +6 0.568073 0.335493 0.010473 0.019327 +6 0.494764 0.335039 0.009874 0.019327 +6 0.265260 0.335039 0.009276 0.019327 +6 0.776930 0.333902 0.008079 0.017963 +6 0.591113 0.334811 0.008677 0.019782 +6 0.758079 0.333902 0.009874 0.018872 +6 0.387044 0.333674 0.009874 0.018417 +6 0.355326 0.334357 0.009874 0.019782 +9 0.626721 0.278195 0.008079 0.026603 +9 0.280221 0.277967 0.006882 0.027967 +9 0.183872 0.277740 0.004488 0.028422 +7 0.187463 0.234766 0.012867 0.013415 +6 0.265560 0.234084 0.009874 0.019327 +10 0.234740 0.187244 0.006882 0.004775 +6 0.353232 0.178377 0.010473 0.019782 +6 0.387044 0.178604 0.009874 0.021146 +9 0.737433 0.179513 0.010473 0.023874 +9 0.627917 0.179513 0.009276 0.023874 +9 0.547127 0.179741 0.010473 0.024329 +10 0.433124 0.169964 0.008677 0.002956 +10 0.820317 0.169281 0.007481 0.002501 +10 0.188959 0.132674 0.007481 0.004775 +9 0.586026 0.127217 0.004488 0.029332 +9 0.683273 0.126762 0.012268 0.029332 +9 0.889138 0.122215 0.008677 0.022055 +9 0.323010 0.126307 0.009874 0.038427 +9 0.388540 0.125625 0.010473 0.029786 +9 0.494764 0.126990 0.012268 0.028877 +9 0.430730 0.123124 0.009874 0.027513 +9 0.817624 0.122897 0.009276 0.028877 +10 0.890634 0.113802 0.006882 0.002501 +9 0.757780 0.121305 0.009276 0.029332 +9 0.463046 0.121760 0.009874 0.029332 +9 0.355625 0.121305 0.011670 0.030241 +9 0.664722 0.121760 0.011071 0.029332 +9 0.736535 0.124034 0.011071 0.029332 +10 0.627020 0.112437 0.006284 0.003411 +10 0.431927 0.112437 0.008677 0.003411 +10 0.325404 0.112437 0.006284 0.003411 +10 0.189557 0.070146 0.006284 0.002501 +9 0.510024 0.062869 0.010473 0.032515 +9 0.233842 0.067190 0.011071 0.042065 +8 0.089019 0.034902 0.007481 0.013870 +11 0.301167 0.951000 0.009276 0.006139 +11 0.333184 0.948045 0.009874 0.006594 +16 0.267504 0.948158 0.008977 0.006821 +12 0.913226 0.944634 0.007780 0.006139 +13 0.245512 0.942929 0.008079 0.006367 +11 0.407690 0.941110 0.008079 0.004548 +13 0.232346 0.939632 0.009276 0.005230 +11 0.861759 0.938950 0.009575 0.006594 +13 0.218133 0.937585 0.008977 0.006594 +13 0.197038 0.935312 0.008677 0.005230 +12 0.176242 0.935084 0.008977 0.006139 +11 0.832136 0.934175 0.008378 0.006139 +17 0.726212 0.934061 0.010772 0.007731 +11 0.366248 0.930196 0.007780 0.005457 +11 0.301915 0.901546 0.008977 0.006367 +12 0.267953 0.898818 0.009874 0.006367 +11 0.332136 0.898590 0.010174 0.006821 +12 0.914572 0.895975 0.008079 0.006139 +13 0.245212 0.893020 0.008079 0.005684 +11 0.407241 0.891314 0.008378 0.005002 +13 0.231897 0.890177 0.007780 0.004548 +11 0.861011 0.890405 0.008677 0.005912 +13 0.217983 0.888017 0.009276 0.006594 +12 0.197636 0.885402 0.009276 0.005002 +12 0.176691 0.885630 0.009276 0.006367 +11 0.831987 0.885175 0.006284 0.005912 +16 0.726212 0.884152 0.010772 0.007958 +11 0.366098 0.880855 0.008677 0.005912 +11 0.244913 0.857322 0.009276 0.006594 +11 0.176242 0.855275 0.010772 0.007503 +11 0.862059 0.851864 0.009575 0.006139 +11 0.759874 0.850955 0.008677 0.006139 +11 0.744315 0.850955 0.009874 0.006139 +13 0.696888 0.850841 0.008977 0.006821 +11 0.300868 0.849704 0.009874 0.006367 +11 0.408588 0.847885 0.007481 0.003638 +12 0.407092 0.829241 0.008677 0.006367 +12 0.683423 0.847999 0.008378 0.005684 +16 0.099791 0.847317 0.006284 0.004320 +11 0.366248 0.847203 0.007780 0.005912 +12 0.365500 0.829241 0.009874 0.006367 +11 0.331089 0.847203 0.009276 0.005912 +13 0.662029 0.845725 0.008079 0.005684 +12 0.526780 0.845157 0.008079 0.006367 +16 0.640485 0.842201 0.008677 0.004548 +13 0.626721 0.840382 0.009276 0.005912 +12 0.586176 0.840155 0.008378 0.006367 +12 0.542340 0.839814 0.008677 0.006594 +12 0.611759 0.837767 0.009276 0.006139 +13 0.572113 0.837199 0.008977 0.005912 +12 0.557899 0.834925 0.007481 0.005912 +12 0.480999 0.814688 0.003890 0.005912 +11 0.366547 0.803433 0.008378 0.006594 +11 0.330940 0.802751 0.008977 0.006139 +11 0.330042 0.784675 0.008378 0.006367 +11 0.409485 0.795475 0.008079 0.005684 +12 0.410084 0.788995 0.004488 0.004093 +11 0.245362 0.795703 0.008378 0.006594 +17 0.176092 0.793201 0.010473 0.007049 +12 0.745063 0.788540 0.007780 0.004093 +11 0.761520 0.788540 0.005984 0.005002 +11 0.861909 0.788540 0.009276 0.005457 +11 0.301765 0.786835 0.009276 0.005230 +16 0.445691 0.782515 0.004488 0.003865 +15 0.481598 0.762278 0.005087 0.006139 +15 0.481149 0.751705 0.004189 0.006821 +12 0.918911 0.739200 0.007780 0.005002 +12 0.904847 0.736585 0.009575 0.006594 +13 0.883453 0.733856 0.008079 0.005230 +12 0.747008 0.733970 0.008079 0.005912 +12 0.364752 0.731696 0.005984 0.003183 +12 0.364901 0.711232 0.008079 0.005912 +13 0.861610 0.731583 0.008677 0.005684 +12 0.698683 0.731128 0.007181 0.005684 +13 0.847995 0.728513 0.008378 0.005002 +12 0.804458 0.728513 0.008079 0.005912 +13 0.762418 0.728399 0.008378 0.005684 +12 0.175793 0.728854 0.011071 0.006594 +17 0.175793 0.735448 0.011071 0.006594 +12 0.174746 0.716803 0.010174 0.007049 +12 0.448983 0.727603 0.008079 0.005912 +12 0.301616 0.727149 0.008378 0.005912 +12 0.301616 0.733060 0.008378 0.005912 +12 0.300868 0.714643 0.009874 0.006367 +12 0.833034 0.725671 0.010174 0.006594 +13 0.788749 0.725671 0.008977 0.006594 +11 0.641682 0.725557 0.008677 0.006367 +11 0.330940 0.723397 0.007780 0.004775 +11 0.330940 0.728172 0.007780 0.004775 +12 0.330491 0.708731 0.009276 0.006367 +13 0.775135 0.723170 0.007481 0.006139 +11 0.407092 0.722487 0.008677 0.005684 +11 0.407092 0.728172 0.008677 0.005684 +12 0.406194 0.709300 0.008677 0.006594 +11 0.611759 0.720896 0.008079 0.006139 +17 0.509874 0.719986 0.010772 0.007958 +12 0.849491 0.667008 0.008378 0.005684 +13 0.341712 0.666212 0.004788 0.006821 +14 0.339916 0.616985 0.008378 0.009322 +14 0.340066 0.609595 0.008079 0.005457 +15 0.342310 0.593452 0.005386 0.005912 +16 0.340365 0.526148 0.007481 0.005002 +16 0.340365 0.531151 0.007481 0.005002 +16 0.340365 0.536153 0.007481 0.005002 +16 0.340066 0.495566 0.008079 0.005230 +12 0.339617 0.463734 0.008977 0.004775 +12 0.339617 0.468508 0.008977 0.004775 +12 0.338869 0.411551 0.008677 0.003638 +12 0.335727 0.513529 0.004189 0.003865 +16 0.340066 0.490337 0.008079 0.005230 +16 0.340515 0.476921 0.007181 0.005230 +16 0.340515 0.482151 0.007181 0.005230 +16 0.340664 0.545475 0.006882 0.006367 +11 0.263615 0.663938 0.008378 0.005912 +12 0.175194 0.663711 0.008079 0.005457 +13 0.915769 0.659277 0.008677 0.006594 +12 0.866098 0.659163 0.008079 0.006367 +12 0.899910 0.657458 0.007481 0.004775 +13 0.878217 0.654047 0.007780 0.006139 +16 0.850987 0.618690 0.007780 0.005457 +12 0.916517 0.610732 0.008378 0.006821 +13 0.866547 0.610618 0.008378 0.006594 +13 0.900808 0.608458 0.008079 0.006821 +13 0.879114 0.605389 0.007780 0.006139 +12 0.066128 0.604025 0.005386 0.005230 +17 0.176391 0.596407 0.009276 0.007276 +17 0.264363 0.596407 0.009874 0.008186 +17 0.177139 0.579923 0.010174 0.007049 +11 0.263764 0.580036 0.011071 0.008186 +12 0.852184 0.564575 0.008378 0.005457 +12 0.916966 0.556958 0.009276 0.006594 +13 0.866248 0.556730 0.007181 0.006139 +16 0.900060 0.554457 0.007181 0.005230 +13 0.879414 0.552069 0.007780 0.005912 +17 0.839168 0.533538 0.011071 0.007958 +11 0.286206 0.530468 0.009276 0.006367 +11 0.262567 0.529332 0.008079 0.005002 +11 0.262867 0.523079 0.008079 0.006139 +11 0.217983 0.523761 0.009276 0.005684 +13 0.217983 0.517281 0.005685 0.003638 +11 0.799820 0.523761 0.009575 0.006594 +11 0.757331 0.521487 0.009575 0.005684 +18 0.438061 0.518190 0.005984 0.002729 +11 0.722023 0.518531 0.008378 0.006139 +11 0.198384 0.518417 0.009575 0.005912 +11 0.197786 0.510232 0.008378 0.005002 +11 0.609216 0.518417 0.009575 0.007731 +12 0.578247 0.515916 0.007481 0.005457 +13 0.564183 0.510346 0.007481 0.005230 +13 0.542490 0.507844 0.008378 0.006594 +16 0.521095 0.505457 0.008079 0.006367 +12 0.388839 0.505116 0.008677 0.005684 +16 0.175494 0.504889 0.008079 0.005230 +16 0.175494 0.510118 0.008079 0.005230 +16 0.504339 0.502842 0.008677 0.006594 +12 0.483692 0.499545 0.009874 0.005457 +16 0.404548 0.499773 0.008977 0.005912 +12 0.451526 0.497613 0.008378 0.006139 +12 0.435966 0.493747 0.009575 0.007503 +13 0.420407 0.490564 0.008378 0.006594 +13 0.802962 0.480218 0.009874 0.006821 +13 0.787552 0.477603 0.009575 0.007049 +12 0.773788 0.474989 0.008977 0.006367 +18 0.772741 0.456116 0.006284 0.003183 +12 0.619390 0.473852 0.009575 0.006821 +12 0.262717 0.472829 0.008378 0.005684 +12 0.262268 0.466007 0.008677 0.005684 +17 0.837074 0.473511 0.011071 0.007958 +16 0.759575 0.471805 0.009276 0.005912 +11 0.285757 0.471692 0.009575 0.006139 +13 0.721724 0.470100 0.008977 0.006594 +13 0.743866 0.468736 0.007780 0.005684 +12 0.690754 0.466462 0.009276 0.005684 +13 0.635847 0.466235 0.007780 0.006139 +12 0.674147 0.463620 0.010174 0.006367 +13 0.651406 0.460778 0.008378 0.004775 +11 0.218582 0.460891 0.009276 0.005457 +11 0.218582 0.466348 0.009276 0.005457 +11 0.197487 0.461005 0.007780 0.006139 +11 0.196738 0.453047 0.008677 0.007049 +11 0.175943 0.447476 0.008378 0.005912 +11 0.175943 0.453388 0.008378 0.005912 +17 0.073758 0.432015 0.004488 0.029559 +12 0.839168 0.411664 0.011071 0.006139 +13 0.839168 0.417804 0.011071 0.006139 +12 0.838420 0.399955 0.010772 0.008186 +11 0.787403 0.407231 0.008677 0.006367 +17 0.610413 0.406889 0.010772 0.006594 +11 0.307301 0.404388 0.009575 0.006139 +17 0.723519 0.404502 0.010772 0.007276 +12 0.579593 0.399613 0.008378 0.005684 +11 0.521993 0.396544 0.009276 0.005912 +11 0.483692 0.393815 0.009276 0.005912 +17 0.369689 0.392792 0.010473 0.007503 +17 0.263914 0.384152 0.009575 0.007503 +17 0.175943 0.384152 0.010174 0.007503 +11 0.464243 0.346749 0.008677 0.006367 +11 0.446888 0.346749 0.009874 0.006367 +11 0.867295 0.344020 0.008079 0.005457 +12 0.849042 0.344020 0.008677 0.005457 +11 0.667415 0.344020 0.009276 0.005457 +12 0.647816 0.344247 0.008378 0.005912 +11 0.548773 0.344247 0.008977 0.005912 +11 0.738779 0.341974 0.005984 0.005912 +11 0.235937 0.341519 0.006882 0.005912 +11 0.215440 0.341519 0.008977 0.005912 +16 0.204668 0.338904 0.005386 0.004320 +11 0.323908 0.336630 0.009276 0.006139 +12 0.074357 0.293656 0.004488 0.008868 +11 0.063435 0.280696 0.005386 0.006139 +12 0.699581 0.275011 0.007780 0.005684 +12 0.910233 0.274443 0.008378 0.006367 +16 0.510772 0.274670 0.009575 0.006821 +11 0.431029 0.272624 0.009276 0.007276 +11 0.628665 0.271942 0.009575 0.006821 +12 0.282466 0.271714 0.008977 0.007276 +11 0.818372 0.271146 0.010174 0.007049 +17 0.738031 0.271714 0.010473 0.008186 +17 0.549820 0.271487 0.011071 0.007731 +17 0.324207 0.271601 0.009874 0.007958 +11 0.463345 0.270009 0.007481 0.005684 +11 0.664273 0.269327 0.008378 0.006139 +11 0.187911 0.269554 0.008977 0.006594 +11 0.864452 0.268645 0.007780 0.005684 +11 0.236385 0.266371 0.008977 0.007503 +11 0.431329 0.245680 0.009874 0.007049 +17 0.628516 0.243065 0.010473 0.006367 +17 0.549671 0.243406 0.011370 0.007049 +17 0.819270 0.242724 0.011370 0.006594 +11 0.235937 0.240109 0.008079 0.005912 +12 0.216038 0.239882 0.006583 0.005457 +17 0.738330 0.240223 0.010473 0.007049 +12 0.204369 0.237381 0.008378 0.005002 +18 0.204369 0.242383 0.008378 0.005002 +16 0.324506 0.235107 0.010473 0.007731 +11 0.234141 0.190427 0.007481 0.005230 +11 0.235637 0.184175 0.007481 0.005002 +11 0.323459 0.189745 0.008977 0.006139 +11 0.323459 0.195884 0.008977 0.006139 +11 0.267205 0.189632 0.009575 0.005912 +11 0.267205 0.195543 0.009575 0.005912 +18 0.256583 0.187699 0.007481 0.004775 +12 0.217235 0.187017 0.008378 0.004775 +11 0.187463 0.186676 0.008079 0.004548 +11 0.187163 0.193270 0.007481 0.005912 +11 0.591263 0.174852 0.008977 0.006367 +11 0.497157 0.174852 0.009874 0.006367 +11 0.775883 0.174397 0.008378 0.006367 +12 0.683423 0.174625 0.009575 0.006821 +17 0.892280 0.174056 0.008977 0.006594 +12 0.628815 0.172237 0.006882 0.005230 +11 0.737882 0.172010 0.007181 0.005230 +11 0.548025 0.172124 0.008079 0.005457 +11 0.433273 0.172124 0.007780 0.005457 +11 0.819270 0.171783 0.007780 0.006594 +11 0.865500 0.169168 0.008677 0.005912 +12 0.757481 0.169281 0.008677 0.006139 +11 0.665021 0.169509 0.009276 0.006594 +11 0.568073 0.169736 0.009874 0.007049 +11 0.464991 0.169623 0.008977 0.006821 +13 0.176990 0.133811 0.005685 0.003411 +12 0.178187 0.127785 0.006284 0.004548 +11 0.267355 0.133015 0.008677 0.005457 +11 0.267355 0.138472 0.008677 0.005457 +11 0.188809 0.130400 0.008977 0.005684 +11 0.188809 0.136085 0.008977 0.005684 +11 0.235338 0.126648 0.009276 0.005457 +11 0.235338 0.132106 0.009276 0.005457 +12 0.389138 0.123693 0.005685 0.004093 +12 0.389437 0.117440 0.009874 0.004320 +16 0.323758 0.119600 0.007780 0.005912 +14 0.325554 0.113802 0.005984 0.004320 +11 0.590066 0.117099 0.008977 0.005002 +11 0.590066 0.122101 0.008977 0.005002 +11 0.495063 0.116871 0.009874 0.005002 +11 0.495063 0.121874 0.009874 0.005002 +12 0.682825 0.116530 0.008378 0.005230 +12 0.682825 0.121760 0.008378 0.005230 +12 0.890485 0.115962 0.008378 0.005002 +12 0.890485 0.120964 0.008378 0.005002 +11 0.774686 0.116189 0.008378 0.005457 +11 0.774686 0.121646 0.008378 0.005457 +12 0.548474 0.114370 0.008378 0.005457 +11 0.548474 0.119827 0.008378 0.005457 +11 0.431029 0.114484 0.008079 0.005684 +11 0.431029 0.120168 0.008079 0.005684 +11 0.736385 0.113915 0.007181 0.005457 +11 0.736385 0.119372 0.007181 0.005457 +11 0.626721 0.113915 0.008079 0.005457 +11 0.626721 0.119372 0.008079 0.005457 +11 0.818522 0.113461 0.007481 0.005457 +11 0.818522 0.118918 0.007481 0.005457 +11 0.356523 0.112096 0.009874 0.005457 +11 0.356523 0.117553 0.009874 0.005457 +11 0.665769 0.111755 0.009575 0.005684 +11 0.665769 0.117440 0.009575 0.005684 +11 0.464692 0.111642 0.009575 0.005457 +11 0.464692 0.117099 0.009575 0.005457 +11 0.864901 0.111187 0.009276 0.005457 +11 0.864901 0.116644 0.009276 0.005457 +11 0.759126 0.111187 0.009575 0.005457 +11 0.759126 0.116644 0.009575 0.005457 +11 0.568821 0.111414 0.009575 0.005912 +11 0.568821 0.117326 0.009575 0.005912 +13 0.313136 0.089927 0.004488 0.004320 +18 0.323758 0.089131 0.007181 0.006821 +17 0.326451 0.052979 0.010772 0.008186 +12 0.234889 0.069122 0.007181 0.005912 +12 0.234590 0.051160 0.009575 0.006367 +12 0.284111 0.060823 0.008677 0.006594 +12 0.509725 0.055821 0.008079 0.005230 +12 0.909785 0.056048 0.008079 0.006139 +12 0.698384 0.055593 0.009575 0.006139 +11 0.818671 0.053547 0.008977 0.006594 +11 0.627319 0.053092 0.009276 0.007503 +11 0.430132 0.052865 0.008677 0.007049 +17 0.737433 0.052524 0.010473 0.008186 +17 0.550419 0.052524 0.011071 0.008186 +12 0.186565 0.051387 0.009874 0.005912 +18 0.864303 0.051046 0.010473 0.006139 +12 0.464542 0.050932 0.009276 0.005912 +12 0.664423 0.050477 0.008079 0.005912 +12 0.089019 0.034902 0.004488 0.007503 +5 0.311041 0.232265 0.008677 0.015689 +5 0.452873 0.046953 0.008677 0.016144 +0 0.098594 0.511937 0.023040 0.024784 +0 0.100389 0.178377 0.023040 0.023420 +0 0.097397 0.405525 0.021843 0.032970 +3 0.509425 0.399159 0.006882 0.015689 +3 0.890335 0.608117 0.007481 0.020691 +5 0.485787 0.171328 0.008677 0.014779 +3 0.144674 0.560823 0.008677 0.021601 +5 0.451676 0.167235 0.008677 0.014779 +3 0.498354 0.056276 0.007481 0.020236 +3 0.168911 0.134720 0.006882 0.017963 +4 0.270946 0.271828 0.009874 0.015689 +0 0.097098 0.454184 0.022442 0.032060 +3 0.516607 0.844588 0.008079 0.020691 +5 0.309246 0.333674 0.008677 0.014779 +5 0.230251 0.183606 0.015859 0.018417 +3 0.421454 0.171328 0.008079 0.020236 +5 0.224267 0.048545 0.007481 0.014779 +3 0.317923 0.802524 0.006882 0.020236 +3 0.357121 0.710891 0.012268 0.020691 +3 0.615949 0.241360 0.006882 0.012960 +0 0.100090 0.121987 0.022442 0.034334 +3 0.176990 0.051728 0.007481 0.019327 +5 0.223070 0.065598 0.007481 0.015234 +3 0.532765 0.507617 0.008079 0.021601 +3 0.396619 0.828672 0.007481 0.020691 +3 0.256583 0.948954 0.007481 0.013870 +3 0.664423 0.463506 0.009276 0.020691 +0 0.099791 0.725671 0.021843 0.032060 +3 0.888839 0.656548 0.006882 0.016598 +3 0.354728 0.827535 0.007481 0.016598 +3 0.493866 0.502842 0.006882 0.021146 +3 0.256583 0.897794 0.007481 0.019782 +5 0.271544 0.056958 0.008677 0.016144 +3 0.168612 0.193383 0.007481 0.017963 +2 0.098294 0.559914 0.026032 0.020691 +2 0.097098 0.233629 0.018851 0.019327 +4 0.222771 0.266144 0.009276 0.016144 +3 0.164423 0.717485 0.007481 0.018417 +2 0.097995 0.288881 0.025434 0.020691 +3 0.710203 0.468963 0.007481 0.020691 +3 0.636595 0.342315 0.007481 0.017508 +3 0.177588 0.270464 0.007481 0.020236 +3 0.481299 0.822078 0.005685 0.013870 +5 0.209007 0.934402 0.010473 0.014779 +2 0.095601 0.334584 0.017056 0.019327 +3 0.319420 0.846407 0.007481 0.020691 +3 0.355326 0.878695 0.007481 0.019782 +3 0.320018 0.896658 0.007481 0.017508 +3 0.321514 0.947135 0.008079 0.022055 +2 0.096798 0.662233 0.019449 0.019782 +3 0.319420 0.782060 0.006284 0.016598 +3 0.734740 0.733402 0.007481 0.020236 +4 0.256882 0.130855 0.009276 0.012960 +3 0.745212 0.520805 0.008079 0.019782 +2 0.095901 0.613802 0.018851 0.020236 +2 0.097696 0.886653 0.018851 0.020236 +3 0.164722 0.934857 0.008079 0.020236 +3 0.355625 0.928263 0.008079 0.019782 +5 0.149761 0.671555 0.008079 0.013870 +1 0.099491 0.076057 0.022442 0.040700 +3 0.130311 0.661323 0.008677 0.020691 +5 0.555206 0.507162 0.008677 0.015234 +3 0.164123 0.734311 0.008079 0.019327 +0 0.099641 0.775807 0.020946 0.033652 +5 0.135548 0.457481 0.007780 0.013643 +5 0.122681 0.454752 0.007181 0.013643 +5 0.129563 0.446567 0.007780 0.013643 +3 0.166966 0.884720 0.007181 0.018645 +1 0.186715 0.880173 0.007181 0.018645 +5 0.137941 0.076398 0.008977 0.010005 +0 0.149013 0.074807 0.010772 0.014097 +1 0.144225 0.065712 0.002394 0.010459 +5 0.132555 0.064575 0.007780 0.013643 +2 0.099042 0.935198 0.014961 0.017735 +4 0.216637 0.133015 0.008378 0.015916 +5 0.123579 0.889495 0.007780 0.014552 +5 0.136445 0.341519 0.008378 0.011824 +5 0.122681 0.337881 0.007181 0.014552 +3 0.143926 0.336062 0.008977 0.020919 +5 0.129563 0.330150 0.007780 0.013643 +5 0.122382 0.406321 0.007780 0.015007 +5 0.873429 0.730332 0.006583 0.014552 +5 0.150808 0.843793 0.008378 0.013188 +5 0.143926 0.833333 0.007780 0.014097 +5 0.130461 0.113915 0.008378 0.013188 +3 0.354877 0.730332 0.007181 0.020919 +3 0.347098 0.724420 0.007181 0.020009 +5 0.136146 0.565030 0.007780 0.013188 +5 0.136146 0.515689 0.007780 0.014552 +5 0.122382 0.512278 0.007780 0.014097 +1 0.134051 0.179627 0.002394 0.010005 +5 0.123878 0.178718 0.007181 0.013643 +5 0.130162 0.171896 0.007780 0.011824 +5 0.137941 0.778308 0.007780 0.014097 +5 0.130760 0.768304 0.007780 0.014097 +3 0.397666 0.846749 0.007780 0.019100 +5 0.151107 0.183265 0.006583 0.013643 +3 0.142579 0.457026 0.007481 0.018190 +5 0.148414 0.457026 0.007181 0.018190 +3 0.370886 0.120964 0.007481 0.018190 +3 0.377469 0.114598 0.007481 0.018190 +3 0.137193 0.890405 0.007481 0.018190 +5 0.143776 0.886767 0.007481 0.018190 +5 0.150209 0.892678 0.007181 0.018190 +3 0.130610 0.401091 0.007481 0.018190 +5 0.137044 0.405184 0.007181 0.018190 +3 0.143178 0.288768 0.007481 0.018190 +5 0.149611 0.294679 0.007181 0.018190 +4 0.123429 0.288313 0.007481 0.018190 +3 0.129862 0.286039 0.007181 0.018190 +3 0.144375 0.239768 0.007481 0.016598 +5 0.149611 0.239768 0.007181 0.016598 +4 0.124028 0.233288 0.007481 0.018190 +3 0.130012 0.230559 0.007481 0.018190 +3 0.135847 0.235562 0.007181 0.018190 +3 0.131807 0.839359 0.007481 0.017963 +5 0.137642 0.839359 0.007181 0.017963 +3 0.130012 0.612096 0.007481 0.018190 +3 0.136445 0.616644 0.007181 0.018190 +5 0.136894 0.123238 0.007481 0.018190 +3 0.144075 0.117781 0.007481 0.018190 +5 0.151406 0.124602 0.007181 0.018190 +3 0.144375 0.729764 0.007481 0.017963 +5 0.150808 0.729764 0.007181 0.017963 +3 0.130012 0.726808 0.007481 0.015689 +3 0.136445 0.726808 0.007181 0.015689 +5 0.081239 0.837653 0.007481 0.018190 +3 0.090365 0.835834 0.007181 0.018190 +4 0.177588 0.067076 0.007481 0.018190 +3 0.144375 0.773079 0.007481 0.018190 +3 0.150209 0.778081 0.007181 0.018190 +4 0.339168 0.109823 0.007481 0.018190 +5 0.345901 0.109823 0.007181 0.018190 +3 0.145272 0.409732 0.007481 0.018190 +5 0.150209 0.409732 0.007181 0.018190 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_13.jpg b/data_dataset/dvo/debug/debug_13.jpg new file mode 100644 index 0000000..3fdd4df Binary files /dev/null and b/data_dataset/dvo/debug/debug_13.jpg differ diff --git a/data_dataset/dvo/debug/debug_13.txt b/data_dataset/dvo/debug/debug_13.txt new file mode 100644 index 0000000..4fc7afa --- /dev/null +++ b/data_dataset/dvo/debug/debug_13.txt @@ -0,0 +1,768 @@ +6 0.626043 0.942264 0.008939 0.018829 +6 0.590584 0.942491 0.009535 0.018376 +6 0.496722 0.942491 0.010131 0.017922 +6 0.715435 0.941810 0.010131 0.018376 +6 0.751490 0.940903 0.010727 0.017922 +6 0.846544 0.940222 0.010131 0.017922 +6 0.496126 0.900975 0.010131 0.017468 +6 0.627831 0.901202 0.010131 0.018376 +6 0.592074 0.900975 0.010131 0.018829 +10 0.405840 0.894510 0.006555 0.003630 +6 0.751788 0.900749 0.010131 0.018376 +6 0.714839 0.900522 0.008939 0.018376 +6 0.882598 0.898934 0.009535 0.018829 +6 0.847139 0.898934 0.010131 0.017922 +7 0.592968 0.861502 0.012515 0.012477 +7 0.715733 0.861048 0.012515 0.012931 +9 0.474076 0.865585 0.010727 0.022005 +7 0.847735 0.857191 0.011919 0.007940 +6 0.201728 0.862182 0.009535 0.018376 +6 0.242849 0.861275 0.009535 0.016561 +6 0.334625 0.860594 0.009535 0.018376 +6 0.311979 0.860594 0.009535 0.017468 +9 0.525626 0.860481 0.010131 0.037659 +9 0.496722 0.863544 0.009535 0.026089 +10 0.642133 0.846302 0.014303 0.002042 +9 0.761025 0.856511 0.010131 0.027904 +10 0.615614 0.831443 0.010131 0.004537 +10 0.691001 0.819192 0.010131 0.003176 +10 0.735399 0.814315 0.007151 0.002949 +9 0.378427 0.818852 0.008343 0.026089 +9 0.472288 0.818852 0.007747 0.026543 +7 0.591776 0.814542 0.011919 0.012931 +10 0.567342 0.810345 0.007151 0.002269 +7 0.715435 0.814769 0.012515 0.013838 +10 0.752682 0.810118 0.008343 0.003630 +7 0.848033 0.813634 0.011919 0.013385 +6 0.242551 0.815222 0.010727 0.018829 +6 0.202026 0.814542 0.009535 0.017468 +6 0.334923 0.814315 0.009535 0.018376 +6 0.311383 0.814088 0.010131 0.017922 +9 0.403754 0.821574 0.008939 0.017015 +10 0.404648 0.803993 0.005959 0.003176 +6 0.312277 0.775975 0.009535 0.017922 +6 0.200834 0.775522 0.009535 0.018376 +6 0.242849 0.775295 0.010131 0.017922 +6 0.335221 0.774614 0.010131 0.017015 +8 0.199046 0.718126 0.012515 0.007033 +8 0.300656 0.718353 0.011919 0.007940 +6 0.777116 0.717899 0.010131 0.017468 +9 0.860548 0.712341 0.008939 0.018603 +6 0.778010 0.669578 0.010131 0.017922 +9 0.751490 0.663226 0.005959 0.023367 +10 0.606675 0.648593 0.005959 0.002722 +9 0.344756 0.620009 0.008939 0.034936 +6 0.405542 0.620123 0.010131 0.017922 +6 0.505662 0.619896 0.010131 0.017922 +6 0.604291 0.619669 0.010727 0.017922 +6 0.547974 0.619782 0.010131 0.018149 +6 0.427592 0.619896 0.010131 0.018376 +6 0.629619 0.619669 0.010131 0.018829 +6 0.898689 0.618534 0.009535 0.018829 +6 0.860846 0.618534 0.010131 0.017015 +9 0.839839 0.619669 0.009237 0.035617 +10 0.345799 0.610027 0.010429 0.004991 +6 0.604589 0.577926 0.009535 0.017922 +10 0.721395 0.571461 0.005959 0.004083 +6 0.547378 0.577473 0.010727 0.017468 +6 0.506853 0.577700 0.010727 0.017922 +6 0.404946 0.577473 0.009535 0.017922 +6 0.861144 0.576792 0.010131 0.017922 +6 0.630513 0.577019 0.010131 0.017922 +10 0.779499 0.569419 0.006555 0.002269 +10 0.754470 0.569873 0.007747 0.003176 +6 0.427890 0.576338 0.010131 0.017468 +9 0.695769 0.573162 0.004768 0.021552 +10 0.720799 0.567604 0.005959 0.002722 +9 0.668057 0.576565 0.011323 0.038339 +10 0.296633 0.537205 0.006853 0.004537 +6 0.630215 0.536411 0.010131 0.017468 +6 0.506108 0.535730 0.009237 0.017468 +6 0.603844 0.535050 0.009237 0.017468 +6 0.861144 0.535730 0.010131 0.020191 +6 0.530244 0.535050 0.009833 0.017922 +10 0.067640 0.529378 0.006555 0.005218 +6 0.547080 0.534936 0.010131 0.018149 +6 0.428188 0.534369 0.008939 0.017015 +6 0.404499 0.534596 0.009833 0.017468 +10 0.485101 0.485481 0.005959 0.003630 +6 0.786055 0.479923 0.009535 0.017015 +6 0.819428 0.479923 0.009535 0.017015 +6 0.174613 0.479242 0.008343 0.018376 +6 0.673421 0.479015 0.010727 0.017468 +6 0.557509 0.478789 0.010131 0.017468 +6 0.448153 0.478675 0.009535 0.018603 +6 0.331049 0.477881 0.010131 0.017922 +6 0.232718 0.478108 0.010131 0.018829 +9 0.199046 0.427972 0.006555 0.029265 +9 0.331794 0.393716 0.009833 0.027450 +10 0.558403 0.387477 0.008343 0.004991 +10 0.674017 0.386570 0.008343 0.004537 +6 0.592521 0.389179 0.009237 0.017922 +6 0.632002 0.389179 0.010131 0.017922 +6 0.481377 0.389179 0.009237 0.017468 +6 0.519964 0.388952 0.010131 0.017922 +6 0.407777 0.388952 0.009237 0.018376 +6 0.368594 0.388725 0.010131 0.017922 +6 0.631704 0.346756 0.009535 0.017468 +6 0.592372 0.345622 0.009535 0.017015 +6 0.520262 0.345168 0.009535 0.017468 +6 0.481228 0.345622 0.010131 0.018376 +6 0.408224 0.345395 0.009535 0.018376 +6 0.367700 0.344714 0.009535 0.017922 +9 0.930572 0.310912 0.004768 0.032895 +9 0.426698 0.289927 0.006555 0.034029 +10 0.490465 0.261570 0.012515 0.003176 +10 0.818534 0.260436 0.005959 0.003176 +10 0.214541 0.257260 0.006555 0.003176 +7 0.880662 0.249433 0.011621 0.013838 +7 0.408820 0.249887 0.011919 0.017015 +7 0.175954 0.250794 0.012217 0.019737 +6 0.362783 0.247051 0.009833 0.017695 +6 0.285757 0.246937 0.009535 0.017015 +6 0.240763 0.245803 0.009535 0.017922 +9 0.523242 0.247051 0.004768 0.025408 +10 0.488081 0.221642 0.007151 0.003176 +7 0.409416 0.207010 0.011919 0.013838 +8 0.176698 0.207917 0.011323 0.017468 +6 0.362634 0.204968 0.010131 0.017922 +6 0.241061 0.204741 0.010131 0.017468 +6 0.286055 0.204968 0.009535 0.018376 +10 0.689809 0.172414 0.008343 0.002722 +7 0.635578 0.156874 0.011919 0.011570 +10 0.242849 0.151316 0.007151 0.002722 +7 0.175507 0.153017 0.008343 0.007486 +9 0.483015 0.159596 0.008343 0.032895 +10 0.297676 0.143376 0.005959 0.002722 +10 0.367998 0.134074 0.005959 0.002722 +10 0.383194 0.120236 0.006555 0.003176 +8 0.771156 0.123072 0.004172 0.017468 +10 0.215435 0.108666 0.009535 0.002722 +7 0.177890 0.113544 0.011919 0.016561 +9 0.287545 0.067491 0.008939 0.025635 +11 0.568683 0.952019 0.009833 0.006125 +11 0.820918 0.950885 0.010131 0.005672 +18 0.207241 0.949070 0.005066 0.003857 +11 0.690703 0.943739 0.010131 0.006352 +11 0.526967 0.942264 0.008641 0.006125 +11 0.406883 0.937500 0.009237 0.006125 +11 0.430870 0.935458 0.009535 0.005672 +13 0.205453 0.933757 0.009237 0.005898 +11 0.179529 0.933870 0.008641 0.006125 +11 0.380662 0.932963 0.009237 0.005218 +18 0.247169 0.933417 0.009237 0.006125 +11 0.290673 0.933076 0.009237 0.005898 +11 0.474821 0.932055 0.009237 0.005672 +12 0.222735 0.931148 0.009237 0.006125 +11 0.337455 0.930127 0.008641 0.006352 +11 0.314809 0.927972 0.009833 0.007486 +11 0.567491 0.910730 0.008641 0.006125 +11 0.566895 0.900522 0.006257 0.004764 +12 0.567044 0.887591 0.008939 0.006125 +11 0.690554 0.910277 0.008045 0.005672 +11 0.691150 0.897686 0.008045 0.005898 +12 0.690405 0.885209 0.008939 0.007260 +18 0.211561 0.908575 0.004768 0.003176 +12 0.221692 0.889973 0.008939 0.006352 +11 0.820322 0.909256 0.008343 0.005898 +12 0.819875 0.886230 0.009833 0.005218 +11 0.528456 0.901202 0.009237 0.005672 +11 0.407330 0.896665 0.007747 0.006125 +11 0.430572 0.894056 0.008939 0.006352 +11 0.245977 0.892809 0.009833 0.005672 +11 0.178933 0.892809 0.008641 0.005672 +12 0.203963 0.892582 0.009237 0.006125 +11 0.290971 0.892355 0.009237 0.006125 +11 0.380364 0.891447 0.009237 0.005672 +11 0.474821 0.891221 0.009833 0.005672 +11 0.336263 0.889632 0.009237 0.006125 +11 0.314809 0.887024 0.009237 0.007260 +12 0.611293 0.866720 0.009833 0.006125 +11 0.689660 0.866606 0.009237 0.006352 +11 0.821216 0.865699 0.008939 0.004991 +12 0.736144 0.866379 0.009237 0.006352 +12 0.866806 0.865585 0.009535 0.005218 +12 0.648391 0.863997 0.010131 0.005672 +12 0.772050 0.863430 0.009535 0.005898 +12 0.904499 0.862863 0.009833 0.006125 +12 0.628874 0.861956 0.009237 0.005672 +12 0.752980 0.861502 0.009535 0.005672 +11 0.567342 0.861729 0.007747 0.006125 +12 0.567491 0.849251 0.009237 0.005672 +11 0.177145 0.861275 0.008045 0.006125 +12 0.177145 0.849025 0.009237 0.006125 +12 0.884833 0.860594 0.009833 0.005218 +11 0.498063 0.860141 0.007449 0.005218 +11 0.497765 0.854129 0.008045 0.004991 +18 0.289631 0.860481 0.006555 0.005898 +11 0.379023 0.860141 0.007747 0.005672 +12 0.379172 0.847210 0.009237 0.006125 +12 0.071812 0.859120 0.004768 0.003630 +11 0.475119 0.859800 0.008045 0.005445 +12 0.474523 0.846756 0.009237 0.006579 +11 0.526967 0.859687 0.008045 0.006125 +11 0.526371 0.851860 0.008641 0.005898 +11 0.428486 0.857645 0.008343 0.006125 +12 0.429529 0.844941 0.009833 0.007033 +11 0.404648 0.854923 0.007747 0.006125 +11 0.404350 0.841992 0.008939 0.005672 +11 0.289482 0.848004 0.008641 0.006352 +12 0.288588 0.824410 0.007449 0.005445 +11 0.496275 0.822709 0.008045 0.005672 +12 0.496126 0.810685 0.009535 0.006125 +11 0.527861 0.820667 0.009237 0.006125 +11 0.526520 0.810458 0.007747 0.005672 +12 0.612038 0.817945 0.008939 0.005672 +11 0.176251 0.817604 0.008045 0.004991 +11 0.176251 0.822595 0.008045 0.004991 +11 0.178039 0.811706 0.008641 0.004991 +11 0.177443 0.804220 0.009237 0.005445 +11 0.692044 0.817491 0.009833 0.005218 +11 0.821067 0.816810 0.009237 0.005218 +12 0.734952 0.817151 0.009237 0.005898 +12 0.866061 0.816810 0.008641 0.005672 +12 0.647944 0.814995 0.008641 0.005672 +12 0.770411 0.814542 0.009833 0.006125 +12 0.903308 0.813861 0.009237 0.006125 +12 0.627980 0.812500 0.009237 0.005672 +11 0.567640 0.812387 0.008939 0.005445 +11 0.567640 0.817831 0.008939 0.005445 +12 0.753129 0.811593 0.009237 0.004764 +12 0.886770 0.811252 0.010131 0.005445 +11 0.474225 0.810231 0.009237 0.005218 +11 0.474225 0.815449 0.009237 0.005218 +11 0.380215 0.810231 0.009535 0.005672 +17 0.380215 0.815903 0.009535 0.005672 +11 0.428933 0.808190 0.009237 0.005218 +11 0.428933 0.813407 0.009237 0.005218 +12 0.288886 0.806148 0.009237 0.005218 +12 0.288886 0.811366 0.009237 0.005218 +12 0.288886 0.816583 0.009237 0.005218 +11 0.404350 0.805808 0.007747 0.004991 +11 0.404350 0.810799 0.007747 0.004991 +17 0.175954 0.778017 0.009833 0.006579 +12 0.175358 0.759982 0.008641 0.006806 +11 0.497169 0.766674 0.008641 0.006125 +11 0.529350 0.764179 0.009833 0.005672 +11 0.628725 0.761910 0.009535 0.006125 +11 0.823153 0.760889 0.009237 0.005898 +12 0.592968 0.760776 0.008939 0.005672 +11 0.566299 0.761116 0.008641 0.006352 +12 0.718266 0.760549 0.008641 0.005672 +11 0.690107 0.760889 0.009535 0.006352 +11 0.752980 0.760776 0.009535 0.006579 +11 0.886174 0.760549 0.009535 0.006579 +12 0.847437 0.760095 0.008343 0.005672 +11 0.475268 0.759528 0.008939 0.006352 +12 0.288588 0.759868 0.009833 0.007033 +12 0.611740 0.759074 0.009535 0.006806 +11 0.379768 0.759188 0.008641 0.007033 +12 0.735846 0.758848 0.008045 0.007260 +12 0.867253 0.758054 0.009833 0.007033 +11 0.405840 0.754424 0.008343 0.006579 +18 0.435787 0.732418 0.009237 0.005218 +12 0.431317 0.704061 0.009833 0.007486 +11 0.805125 0.715631 0.010131 0.006125 +11 0.695322 0.710867 0.009833 0.006125 +17 0.721246 0.708598 0.010429 0.005218 +13 0.862187 0.707804 0.009833 0.005445 +11 0.843266 0.707917 0.010131 0.005672 +11 0.901371 0.707691 0.009535 0.006125 +11 0.586114 0.706329 0.008343 0.005672 +12 0.406585 0.706329 0.008045 0.005672 +11 0.668504 0.705876 0.008641 0.006125 +11 0.483760 0.705989 0.009833 0.006352 +11 0.550507 0.705876 0.009833 0.006579 +11 0.448897 0.705876 0.009237 0.006579 +12 0.384386 0.705876 0.009535 0.006579 +12 0.880513 0.705535 0.008939 0.006352 +12 0.506555 0.705649 0.008939 0.006579 +11 0.755810 0.705309 0.009237 0.006352 +12 0.532330 0.704061 0.009237 0.007033 +11 0.633194 0.703721 0.008343 0.006806 +11 0.605632 0.700885 0.008045 0.005672 +18 0.491955 0.682169 0.008343 0.005898 +11 0.804678 0.666175 0.009833 0.006125 +11 0.694130 0.661184 0.009237 0.006579 +11 0.721841 0.659142 0.009833 0.005218 +11 0.900626 0.658916 0.009833 0.005672 +11 0.841478 0.658916 0.009535 0.005672 +13 0.861293 0.658575 0.009237 0.005898 +11 0.669398 0.657101 0.008641 0.005672 +12 0.506853 0.656647 0.008939 0.005672 +11 0.587455 0.656874 0.009237 0.006579 +11 0.548719 0.656534 0.008045 0.005898 +11 0.448302 0.656647 0.008641 0.006125 +12 0.404946 0.656647 0.008939 0.006125 +11 0.483313 0.656420 0.008939 0.006125 +11 0.755513 0.656080 0.009237 0.005898 +11 0.383641 0.656307 0.008045 0.006352 +17 0.175507 0.656647 0.010131 0.007033 +12 0.879768 0.655966 0.008641 0.006125 +17 0.273093 0.656534 0.011025 0.007260 +11 0.631853 0.654605 0.008641 0.006579 +12 0.428337 0.653698 0.009237 0.006579 +12 0.532628 0.653811 0.010429 0.007260 +11 0.605930 0.650975 0.008045 0.005672 +18 0.098480 0.625907 0.005066 0.004083 +11 0.841180 0.618761 0.006555 0.005218 +11 0.840882 0.606851 0.008939 0.005898 +11 0.804380 0.616720 0.009237 0.006125 +11 0.804529 0.608779 0.008939 0.005672 +11 0.669696 0.616152 0.009237 0.005445 +17 0.669696 0.621597 0.009237 0.005445 +11 0.754768 0.616266 0.007747 0.006125 +11 0.754023 0.604015 0.009237 0.007033 +13 0.383194 0.615926 0.008343 0.005445 +13 0.383194 0.621370 0.008343 0.005445 +12 0.482867 0.615699 0.009833 0.005445 +12 0.482867 0.621143 0.009833 0.005445 +11 0.586263 0.615699 0.009237 0.005898 +11 0.586263 0.621597 0.009237 0.005898 +17 0.176251 0.616493 0.010429 0.007486 +11 0.718117 0.614224 0.004768 0.005672 +11 0.719607 0.602314 0.009535 0.005898 +11 0.345501 0.613770 0.009237 0.005218 +11 0.345501 0.618988 0.009237 0.005218 +17 0.272944 0.613203 0.010727 0.005898 +17 0.272944 0.619102 0.010727 0.005898 +11 0.779052 0.611388 0.008641 0.005445 +11 0.779052 0.616833 0.008641 0.005445 +11 0.696514 0.611502 0.009237 0.006125 +12 0.695322 0.599478 0.009833 0.006579 +12 0.383343 0.589496 0.009237 0.005218 +17 0.483164 0.589723 0.009833 0.006125 +11 0.482867 0.571574 0.008045 0.005218 +17 0.585965 0.589610 0.010429 0.006352 +11 0.585965 0.572028 0.009237 0.006579 +11 0.842372 0.587681 0.007747 0.005672 +11 0.842223 0.568966 0.009237 0.005445 +11 0.842223 0.574410 0.009237 0.005445 +12 0.842223 0.579855 0.009237 0.005445 +11 0.779350 0.584732 0.007449 0.005672 +12 0.778754 0.571688 0.008045 0.005898 +11 0.755513 0.584732 0.008641 0.005672 +12 0.754619 0.571574 0.008641 0.005672 +17 0.176103 0.585413 0.010727 0.007033 +11 0.345799 0.584732 0.009237 0.006125 +17 0.804678 0.582010 0.009237 0.005672 +12 0.803784 0.571801 0.008641 0.005218 +11 0.273689 0.581897 0.010429 0.006806 +11 0.665375 0.576792 0.011919 0.005218 +11 0.667908 0.589723 0.011025 0.006125 +17 0.665375 0.571574 0.011919 0.005218 +18 0.382896 0.571121 0.009535 0.005218 +11 0.720054 0.569646 0.009237 0.004991 +11 0.720054 0.574637 0.009237 0.004991 +11 0.694726 0.566243 0.009833 0.005445 +11 0.694726 0.571688 0.009833 0.005445 +17 0.842670 0.538113 0.010131 0.005445 +12 0.841478 0.520531 0.008939 0.006579 +11 0.585667 0.534710 0.008045 0.005445 +11 0.585518 0.517355 0.009535 0.007033 +18 0.483015 0.534823 0.010727 0.006125 +11 0.482122 0.516674 0.009535 0.006125 +13 0.383194 0.534369 0.008343 0.005672 +13 0.382449 0.516447 0.009237 0.006125 +13 0.068236 0.528698 0.004768 0.004310 +11 0.780989 0.525522 0.008939 0.005218 +11 0.806615 0.521892 0.008939 0.006125 +11 0.344011 0.520077 0.008641 0.007486 +11 0.755364 0.518035 0.008939 0.005672 +11 0.230483 0.517809 0.009237 0.006125 +11 0.667461 0.517128 0.009535 0.006125 +12 0.295292 0.517128 0.008939 0.006125 +12 0.196216 0.516901 0.008641 0.006125 +11 0.174762 0.517128 0.009833 0.006579 +11 0.270411 0.516901 0.010429 0.006579 +11 0.719160 0.515086 0.008045 0.006579 +12 0.319875 0.514292 0.009237 0.007713 +11 0.695769 0.512364 0.008939 0.005672 +12 0.212753 0.511683 0.009535 0.006579 +11 0.594011 0.493761 0.010429 0.006125 +11 0.521454 0.493648 0.009535 0.006352 +11 0.718415 0.491493 0.009535 0.005672 +11 0.633194 0.491039 0.010131 0.006125 +11 0.202622 0.490358 0.009535 0.006579 +11 0.407926 0.488090 0.010131 0.005672 +11 0.482420 0.488090 0.010131 0.006125 +11 0.764154 0.483553 0.009833 0.005672 +11 0.290971 0.482532 0.009833 0.005898 +11 0.369636 0.482418 0.009833 0.006125 +11 0.717968 0.429446 0.008641 0.005898 +11 0.483164 0.427064 0.008641 0.005672 +11 0.631108 0.426724 0.008939 0.005445 +12 0.558999 0.426611 0.007747 0.005218 +12 0.449791 0.426838 0.008641 0.005672 +12 0.673868 0.426838 0.009237 0.006125 +11 0.594160 0.426611 0.009535 0.006125 +17 0.855930 0.426838 0.010429 0.007033 +11 0.521603 0.426270 0.009237 0.005898 +17 0.764452 0.426611 0.011025 0.007033 +11 0.407330 0.425930 0.008939 0.005672 +11 0.370828 0.426157 0.008045 0.006125 +12 0.333880 0.425930 0.008045 0.006125 +11 0.290673 0.425703 0.008641 0.005672 +18 0.696812 0.424796 0.009237 0.006579 +12 0.253725 0.424569 0.011025 0.007486 +12 0.576430 0.421393 0.009237 0.005672 +12 0.466329 0.420939 0.009535 0.006125 +12 0.349672 0.420259 0.008641 0.005672 +11 0.202175 0.418103 0.008045 0.006352 +11 0.175805 0.415041 0.008939 0.005672 +11 0.291269 0.402790 0.009833 0.006125 +12 0.176103 0.400522 0.010727 0.006579 +12 0.220799 0.397799 0.010727 0.006579 +18 0.098927 0.394510 0.004172 0.004083 +11 0.716925 0.387931 0.009535 0.005445 +11 0.716925 0.393376 0.009535 0.005445 +18 0.665822 0.390653 0.008641 0.005898 +11 0.673570 0.388158 0.008641 0.005898 +11 0.558850 0.385436 0.008045 0.005445 +11 0.558850 0.390880 0.008045 0.005445 +11 0.451281 0.384868 0.009833 0.005672 +11 0.451281 0.390540 0.009833 0.005672 +11 0.332837 0.384755 0.008343 0.005445 +11 0.332837 0.390200 0.008343 0.005445 +18 0.763856 0.385662 0.010429 0.007713 +17 0.856228 0.383054 0.010429 0.006579 +11 0.717074 0.361502 0.009833 0.006125 +11 0.716478 0.348571 0.009833 0.005672 +11 0.675656 0.361275 0.010429 0.005672 +11 0.674464 0.345848 0.009237 0.005672 +12 0.176698 0.360594 0.010131 0.006579 +11 0.559595 0.358099 0.009535 0.006125 +11 0.558701 0.345395 0.007747 0.005218 +11 0.452175 0.357305 0.008641 0.004991 +11 0.450983 0.345281 0.010429 0.006352 +11 0.333880 0.357418 0.009833 0.006125 +11 0.333284 0.344941 0.009833 0.005672 +11 0.291567 0.357532 0.009833 0.006352 +12 0.220650 0.354469 0.009833 0.007033 +17 0.788290 0.354015 0.010429 0.007033 +17 0.855334 0.351066 0.010429 0.006125 +11 0.764452 0.346302 0.009237 0.006125 +18 0.775626 0.319646 0.004172 0.004083 +18 0.289184 0.316583 0.009237 0.007033 +12 0.290673 0.285277 0.008641 0.006125 +12 0.412992 0.305127 0.004172 0.003630 +11 0.236591 0.287772 0.007747 0.006125 +11 0.910757 0.287092 0.009237 0.006125 +12 0.875000 0.287092 0.010429 0.006125 +11 0.823451 0.286865 0.009833 0.006125 +11 0.763558 0.286638 0.009237 0.005672 +12 0.786800 0.285730 0.008045 0.005672 +12 0.630959 0.285957 0.008641 0.006125 +11 0.855036 0.285730 0.008641 0.006125 +11 0.675060 0.285277 0.008641 0.006125 +17 0.561085 0.285277 0.010727 0.006579 +11 0.407181 0.285050 0.008045 0.006125 +12 0.520113 0.284823 0.008641 0.006125 +17 0.451281 0.285050 0.010429 0.007486 +17 0.335667 0.284596 0.010429 0.007486 +12 0.717670 0.283235 0.009237 0.006579 +12 0.544100 0.283348 0.010131 0.007260 +11 0.203814 0.282781 0.009535 0.007033 +12 0.656287 0.282554 0.009237 0.007033 +12 0.433254 0.282668 0.009535 0.007713 +12 0.317491 0.282328 0.009833 0.007486 +11 0.804827 0.281193 0.009535 0.005672 +12 0.891091 0.280966 0.009237 0.005672 +12 0.734803 0.280853 0.008939 0.005898 +11 0.176251 0.279605 0.009833 0.006125 +11 0.818981 0.262591 0.009237 0.005672 +11 0.915673 0.260322 0.009535 0.006125 +11 0.898242 0.260209 0.009237 0.005898 +11 0.865167 0.260095 0.009833 0.005672 +11 0.198302 0.255672 0.008641 0.005445 +11 0.212306 0.255558 0.010429 0.006125 +12 0.431764 0.253743 0.008343 0.006125 +11 0.318385 0.253289 0.009237 0.006579 +12 0.636323 0.249206 0.010429 0.007033 +13 0.501490 0.248752 0.009535 0.006579 +12 0.453069 0.248866 0.009833 0.006806 +11 0.703069 0.246937 0.009237 0.005672 +13 0.486889 0.246257 0.010131 0.006125 +17 0.752533 0.244328 0.010429 0.006352 +12 0.605632 0.244215 0.009833 0.006125 +12 0.559148 0.243988 0.008641 0.005672 +12 0.470054 0.243875 0.010429 0.005898 +12 0.545441 0.241606 0.008641 0.005445 +12 0.589690 0.239111 0.008939 0.005898 +12 0.526520 0.239111 0.007151 0.005898 +12 0.574642 0.232191 0.009237 0.006579 +11 0.818683 0.221756 0.009237 0.006579 +12 0.198897 0.213816 0.009237 0.005218 +11 0.214839 0.213589 0.008343 0.005672 +11 0.317491 0.211547 0.009237 0.005672 +12 0.432658 0.211774 0.009535 0.006579 +12 0.501341 0.207123 0.008641 0.005898 +13 0.636472 0.207464 0.010727 0.007033 +12 0.453963 0.206783 0.009237 0.006125 +11 0.702175 0.205195 0.008641 0.005672 +12 0.487038 0.204628 0.009833 0.005445 +12 0.606526 0.202359 0.009237 0.005898 +17 0.752831 0.202586 0.011025 0.007260 +12 0.560042 0.202132 0.009237 0.006352 +12 0.470650 0.201792 0.009237 0.006125 +12 0.547080 0.199637 0.008939 0.005898 +12 0.589243 0.197255 0.008045 0.005672 +12 0.525775 0.197255 0.008641 0.006125 +12 0.070769 0.193285 0.004470 0.004991 +12 0.574046 0.190449 0.008641 0.007486 +17 0.862783 0.184664 0.008045 0.006352 +12 0.865167 0.171960 0.009833 0.006352 +12 0.833433 0.168897 0.009535 0.005672 +13 0.381853 0.167309 0.009833 0.006579 +12 0.804380 0.166402 0.008641 0.005672 +13 0.898838 0.165948 0.009237 0.006125 +13 0.364869 0.164701 0.009237 0.005898 +12 0.820322 0.163680 0.009535 0.006579 +13 0.767431 0.163680 0.009833 0.006579 +17 0.529648 0.162772 0.009833 0.006125 +12 0.528754 0.150181 0.009237 0.005445 +17 0.485995 0.162545 0.009535 0.006579 +12 0.484654 0.149841 0.008045 0.004764 +13 0.341031 0.161865 0.009237 0.006125 +13 0.782032 0.161184 0.008045 0.005218 +17 0.560638 0.162432 0.009833 0.007713 +17 0.560191 0.149728 0.010131 0.006806 +17 0.411651 0.162319 0.009833 0.007486 +17 0.411949 0.148934 0.010429 0.007033 +12 0.198302 0.161184 0.008641 0.006125 +12 0.316895 0.158916 0.009833 0.005672 +13 0.750149 0.158462 0.009833 0.006125 +12 0.652265 0.157781 0.010131 0.006125 +13 0.718266 0.155966 0.009237 0.005218 +13 0.303784 0.156534 0.009833 0.006352 +12 0.213945 0.156193 0.010131 0.006125 +12 0.258790 0.156080 0.009237 0.006352 +12 0.243296 0.153698 0.008045 0.005672 +13 0.287694 0.153471 0.008641 0.005672 +12 0.667014 0.150749 0.009237 0.005672 +13 0.231079 0.150862 0.009833 0.006352 +13 0.704261 0.148253 0.009833 0.006125 +13 0.682509 0.145871 0.009237 0.005898 +12 0.249255 0.126361 0.009833 0.004537 +11 0.258343 0.111502 0.008343 0.005672 +12 0.866955 0.126588 0.009833 0.007260 +18 0.769219 0.123412 0.005066 0.004083 +12 0.769070 0.117854 0.004172 0.003857 +11 0.833433 0.123979 0.009535 0.005672 +12 0.381853 0.122505 0.008641 0.005898 +11 0.782479 0.121484 0.010131 0.006579 +12 0.899732 0.121143 0.009833 0.007260 +11 0.752831 0.118988 0.009237 0.005218 +12 0.365912 0.119442 0.009535 0.006125 +11 0.529797 0.118081 0.008939 0.005672 +11 0.486740 0.118081 0.009833 0.005672 +17 0.560042 0.118194 0.009833 0.006352 +12 0.343117 0.117173 0.008641 0.005672 +17 0.411949 0.117627 0.010429 0.007033 +11 0.704559 0.116606 0.009237 0.005445 +17 0.667014 0.116266 0.009237 0.005672 +12 0.198897 0.116039 0.008641 0.005672 +11 0.636621 0.113997 0.009237 0.005672 +13 0.318683 0.114338 0.009833 0.006352 +13 0.304678 0.111729 0.009237 0.005672 +13 0.215584 0.111048 0.008641 0.005672 +12 0.291567 0.108893 0.009237 0.006352 +12 0.243892 0.108779 0.009237 0.006579 +12 0.230930 0.106284 0.009535 0.006125 +12 0.382449 0.072028 0.006853 0.005672 +11 0.318683 0.066130 0.009237 0.006125 +12 0.605632 0.063294 0.008641 0.006352 +11 0.561681 0.061366 0.008343 0.006125 +11 0.289333 0.061139 0.007151 0.006125 +17 0.180721 0.060458 0.009833 0.007033 +11 0.531138 0.058530 0.009833 0.006352 +17 0.413886 0.056828 0.011323 0.007033 +17 0.638111 0.053539 0.010429 0.007260 +17 0.751788 0.053199 0.008343 0.007033 +17 0.864869 0.047981 0.011025 0.007033 +1 0.092819 0.112863 0.021752 0.040608 +0 0.090584 0.620803 0.023242 0.023820 +0 0.085369 0.304787 0.031883 0.039701 +0 0.091776 0.389179 0.023242 0.023367 +0 0.093713 0.154832 0.022348 0.023820 +0 0.093117 0.065903 0.021752 0.032895 +3 0.693534 0.146892 0.007449 0.015200 +5 0.332092 0.112636 0.008045 0.013838 +3 0.853844 0.183417 0.006853 0.012931 +4 0.889303 0.121937 0.006853 0.011570 +5 0.355036 0.116833 0.008641 0.015426 +5 0.118296 0.109233 0.008939 0.013385 +3 0.130364 0.062500 0.010429 0.020644 +3 0.656585 0.116039 0.007449 0.020644 +3 0.704559 0.347890 0.007449 0.020644 +3 0.187574 0.162545 0.007449 0.016107 +3 0.690852 0.244442 0.007449 0.015200 +3 0.305274 0.281420 0.008045 0.019283 +3 0.705304 0.391447 0.007747 0.019737 +1 0.088498 0.537545 0.022050 0.039701 +3 0.225715 0.287092 0.006257 0.019283 +5 0.690554 0.199750 0.006853 0.009301 +3 0.644368 0.281420 0.006853 0.020191 +3 0.240614 0.423662 0.007449 0.017468 +3 0.535906 0.197028 0.007449 0.016561 +3 0.794249 0.581103 0.007449 0.020191 +3 0.332986 0.583144 0.007449 0.017468 +3 0.708135 0.515767 0.006257 0.017015 +3 0.794696 0.606057 0.007151 0.017468 +3 0.620530 0.491720 0.007449 0.016561 +3 0.417014 0.653925 0.006853 0.019737 +5 0.150924 0.160277 0.008045 0.014746 +5 0.328516 0.158462 0.008045 0.014746 +3 0.188468 0.491039 0.007449 0.018829 +3 0.707837 0.427745 0.006257 0.012477 +5 0.830602 0.572028 0.008641 0.014746 +3 0.188170 0.211547 0.006853 0.019737 +1 0.090435 0.778244 0.022348 0.039247 +2 0.093415 0.202926 0.011621 0.015653 +3 0.521007 0.701792 0.006853 0.017922 +3 0.189362 0.116266 0.007449 0.019737 +3 0.621424 0.702473 0.007449 0.018829 +3 0.419100 0.700658 0.006853 0.017015 +3 0.619338 0.653244 0.007449 0.020191 +2 0.090435 0.719487 0.013409 0.017015 +3 0.744190 0.584279 0.007449 0.020191 +3 0.165226 0.415721 0.008045 0.020191 +3 0.683403 0.565676 0.007449 0.020644 +5 0.681615 0.894623 0.009237 0.014292 +2 0.094011 0.945894 0.018772 0.018829 +3 0.420292 0.932963 0.007449 0.016107 +1 0.091776 0.817264 0.022646 0.039247 +3 0.165524 0.359914 0.006853 0.015653 +3 0.422378 0.282101 0.006257 0.019283 +2 0.091031 0.670485 0.023540 0.018829 +3 0.685489 0.424569 0.006853 0.013385 +3 0.520113 0.651883 0.006853 0.018829 +3 0.164928 0.583371 0.007449 0.017922 +3 0.533522 0.282781 0.006853 0.018376 +3 0.516836 0.851520 0.006853 0.021552 +3 0.515793 0.762818 0.007151 0.019283 +3 0.655691 0.387591 0.007449 0.019283 +3 0.625149 0.248072 0.007151 0.018376 +3 0.442789 0.248979 0.007151 0.015653 +3 0.190554 0.280286 0.007449 0.021098 +3 0.187574 0.255104 0.007449 0.019737 +3 0.443832 0.205649 0.006853 0.016107 +3 0.684893 0.611502 0.007449 0.020644 +3 0.258045 0.618308 0.007747 0.020191 +3 0.709327 0.706556 0.006853 0.019283 +3 0.709327 0.658462 0.007449 0.020191 +5 0.117253 0.621257 0.008045 0.014746 +3 0.549017 0.059778 0.006257 0.019283 +3 0.710221 0.598798 0.007449 0.016107 +3 0.709029 0.574297 0.007449 0.020644 +3 0.308552 0.513498 0.006853 0.012477 +5 0.119636 0.863090 0.007449 0.012931 +1 0.090137 0.346983 0.021752 0.039701 +3 0.769070 0.611275 0.008343 0.020644 +3 0.683105 0.661411 0.007449 0.020644 +3 0.419398 0.891447 0.007449 0.015653 +3 0.333582 0.519397 0.006853 0.018829 +3 0.683999 0.710640 0.007449 0.021098 +3 0.768325 0.525295 0.007449 0.020191 +5 0.165226 0.801384 0.008641 0.014746 +3 0.395262 0.935458 0.007449 0.016561 +3 0.394964 0.895531 0.007449 0.019283 +3 0.888409 0.165268 0.007449 0.018376 +5 0.352950 0.161411 0.008045 0.014292 +3 0.208135 0.397346 0.008045 0.019283 +3 0.420143 0.253063 0.007151 0.019283 +3 0.663141 0.359914 0.006853 0.017468 +3 0.421782 0.211093 0.006853 0.019737 +3 0.793355 0.521665 0.007449 0.019283 +3 0.515197 0.821574 0.006555 0.016107 +5 0.150626 0.626248 0.008045 0.014746 +5 0.149583 0.487296 0.007747 0.014065 +5 0.132300 0.483893 0.007747 0.013612 +5 0.149285 0.349138 0.007151 0.014519 +5 0.134088 0.345508 0.007747 0.012704 +5 0.141240 0.338475 0.007747 0.014065 +5 0.148987 0.447595 0.007151 0.013612 +5 0.131704 0.444646 0.008343 0.014065 +5 0.140346 0.437613 0.007747 0.013612 +5 0.143623 0.857078 0.007151 0.013158 +0 0.131704 0.859120 0.015495 0.019964 +5 0.133790 0.303539 0.007747 0.014065 +5 0.116508 0.301270 0.007747 0.013158 +5 0.126043 0.293330 0.007747 0.011797 +5 0.150179 0.728902 0.007151 0.013612 +5 0.134386 0.727087 0.007747 0.013612 +5 0.141538 0.718693 0.007747 0.013158 +5 0.126341 0.242740 0.006555 0.013158 +5 0.151073 0.779492 0.007151 0.013158 +5 0.134684 0.776543 0.007747 0.013612 +5 0.142431 0.769737 0.007747 0.013612 +5 0.149583 0.581443 0.007151 0.014519 +5 0.132598 0.580082 0.007747 0.013612 +5 0.141538 0.571007 0.007747 0.013612 +5 0.143623 0.148820 0.007151 0.013158 +5 0.126639 0.148140 0.007747 0.011797 +5 0.151073 0.212568 0.007151 0.014519 +5 0.135280 0.210073 0.007747 0.014065 +5 0.143027 0.202132 0.007747 0.012704 +5 0.135876 0.909256 0.006555 0.012250 +5 0.121573 0.907895 0.007747 0.014065 +5 0.149434 0.394056 0.007449 0.013612 +5 0.141538 0.383621 0.008343 0.013612 +5 0.124255 0.436025 0.006555 0.013158 +5 0.132598 0.536525 0.007747 0.013612 +5 0.126341 0.336661 0.007747 0.013158 +5 0.133939 0.252042 0.007449 0.013612 +5 0.120083 0.814201 0.007151 0.013612 +5 0.127235 0.806488 0.008343 0.013612 +5 0.135280 0.817151 0.007747 0.014065 +5 0.121871 0.948730 0.007151 0.014065 +5 0.129619 0.941243 0.007151 0.013612 +5 0.128278 0.102768 0.008045 0.013612 +5 0.118594 0.207350 0.007747 0.014065 +5 0.126043 0.199864 0.007151 0.013612 +5 0.118594 0.723911 0.007151 0.014519 +5 0.123957 0.526996 0.007747 0.013612 +5 0.151073 0.306261 0.007747 0.014065 +5 0.142729 0.296279 0.007747 0.014065 +5 0.129917 0.621824 0.016091 0.017241 +5 0.141836 0.615699 0.007747 0.014065 +5 0.132002 0.676270 0.007151 0.013612 +5 0.117104 0.674229 0.007151 0.014973 +1 0.121871 0.665381 0.002384 0.010889 +3 0.853397 0.257033 0.005959 0.014519 +1 0.848033 0.254083 0.002384 0.010436 +5 0.117402 0.481624 0.007747 0.013612 +5 0.124851 0.474592 0.007151 0.013158 +5 0.137664 0.951225 0.007747 0.013612 +5 0.117402 0.576225 0.007151 0.013158 +5 0.125447 0.569192 0.007747 0.013612 +5 0.132896 0.391334 0.008343 0.013612 +5 0.117104 0.389065 0.007151 0.013612 +5 0.125149 0.382033 0.007747 0.014065 +3 0.086561 0.477881 0.007449 0.018376 +3 0.094458 0.477881 0.007151 0.018376 +3 0.071067 0.246030 0.007449 0.018376 +3 0.087157 0.246030 0.007449 0.018376 +3 0.095352 0.246030 0.007151 0.018376 +4 0.090435 0.904378 0.007449 0.018376 +3 0.098033 0.904378 0.007151 0.018376 +3 0.141687 0.531193 0.007449 0.018376 +5 0.149583 0.536865 0.007151 0.018376 +3 0.142282 0.246711 0.007449 0.018376 +5 0.150775 0.251928 0.007151 0.018376 +5 0.164631 0.818172 0.007449 0.013385 +3 0.143474 0.810231 0.007449 0.018376 +3 0.150477 0.815903 0.007151 0.018376 +5 0.135131 0.113884 0.007449 0.017241 +5 0.152563 0.113884 0.007151 0.017241 +3 0.088647 0.439769 0.007449 0.018376 +3 0.095948 0.439769 0.007151 0.018376 +4 0.080900 0.580422 0.007449 0.018376 +4 0.088349 0.575885 0.007449 0.018376 +5 0.095948 0.576565 0.007151 0.018376 +3 0.154052 0.951338 0.007151 0.015653 +4 0.118147 0.772346 0.007449 0.018376 +3 0.126043 0.770077 0.007151 0.018376 +5 0.144964 0.904378 0.007449 0.018376 +5 0.154052 0.910277 0.007151 0.018376 +3 0.140793 0.670712 0.007449 0.018376 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_14.jpg b/data_dataset/dvo/debug/debug_14.jpg new file mode 100644 index 0000000..77266ca Binary files /dev/null and b/data_dataset/dvo/debug/debug_14.jpg differ diff --git a/data_dataset/dvo/debug/debug_14.txt b/data_dataset/dvo/debug/debug_14.txt new file mode 100644 index 0000000..4ad95bb --- /dev/null +++ b/data_dataset/dvo/debug/debug_14.txt @@ -0,0 +1,529 @@ +10 0.546363 0.943612 0.007454 0.003857 +10 0.451849 0.943839 0.006857 0.004765 +9 0.431574 0.936578 0.008050 0.018380 +7 0.649523 0.940663 0.011032 0.013842 +7 0.413983 0.938847 0.012224 0.013842 +6 0.884168 0.939982 0.008050 0.019741 +6 0.825432 0.940322 0.006261 0.019968 +6 0.800686 0.939755 0.010435 0.019741 +8 0.172481 0.934876 0.012224 0.009076 +6 0.725552 0.939528 0.009243 0.020195 +6 0.614937 0.937713 0.009839 0.017926 +6 0.494782 0.936805 0.008050 0.017926 +6 0.376714 0.936124 0.005665 0.018834 +6 0.328414 0.935897 0.010435 0.018380 +6 0.254770 0.936124 0.009839 0.020195 +10 0.779517 0.896415 0.007454 0.002950 +9 0.431276 0.881439 0.008646 0.018834 +7 0.414580 0.882800 0.012224 0.011572 +8 0.173077 0.879964 0.012224 0.009076 +6 0.725850 0.884162 0.009839 0.017472 +6 0.255665 0.882573 0.010435 0.017472 +6 0.824240 0.883594 0.007454 0.019061 +6 0.800089 0.883935 0.005665 0.019741 +6 0.885361 0.883935 0.011628 0.020195 +6 0.496571 0.883027 0.010435 0.017472 +6 0.614639 0.881666 0.010435 0.020195 +6 0.563357 0.882346 0.010435 0.019287 +6 0.377311 0.882800 0.009243 0.018380 +6 0.329905 0.881892 0.011032 0.018380 +6 0.213476 0.881439 0.004770 0.022464 +6 0.548301 0.879396 0.006559 0.023372 +10 0.690966 0.843771 0.009839 0.005219 +10 0.457215 0.842410 0.018187 0.005219 +9 0.725253 0.837645 0.005665 0.027910 +9 0.619410 0.830837 0.008646 0.027456 +9 0.470632 0.831518 0.009243 0.028818 +9 0.861807 0.830837 0.010435 0.030179 +10 0.681723 0.828568 0.006857 0.004765 +9 0.649225 0.831972 0.008646 0.033356 +10 0.616726 0.826299 0.006857 0.002950 +10 0.208855 0.826980 0.008050 0.005219 +9 0.586911 0.828795 0.010435 0.034717 +9 0.340936 0.818584 0.012224 0.026095 +7 0.706172 0.811323 0.005665 0.012934 +10 0.448271 0.772294 0.006857 0.002950 +9 0.175462 0.767415 0.005069 0.018153 +9 0.415772 0.766621 0.008646 0.020649 +10 0.685897 0.720104 0.006261 0.002950 +8 0.414580 0.711709 0.009839 0.018834 +8 0.727340 0.635693 0.009839 0.012480 +7 0.197227 0.632290 0.012224 0.007942 +8 0.556500 0.632290 0.010435 0.007488 +8 0.464669 0.632743 0.009243 0.008850 +8 0.372242 0.632290 0.012821 0.008396 +6 0.800089 0.634332 0.009839 0.018834 +6 0.693649 0.632970 0.010435 0.018380 +6 0.308438 0.632970 0.010435 0.017926 +6 0.287865 0.633197 0.009839 0.018380 +9 0.499255 0.582709 0.011032 0.028137 +9 0.757752 0.574427 0.009243 0.010665 +7 0.728533 0.572385 0.012821 0.013842 +9 0.173375 0.572839 0.009243 0.037440 +6 0.645647 0.569889 0.010435 0.018380 +6 0.800089 0.569889 0.010435 0.017926 +6 0.862701 0.570343 0.010435 0.019287 +6 0.694544 0.570343 0.010435 0.019287 +10 0.658169 0.530633 0.008646 0.003404 +10 0.698718 0.519741 0.007454 0.004311 +10 0.913685 0.518380 0.006857 0.005219 +9 0.727937 0.518834 0.009839 0.031995 +10 0.085719 0.515657 0.006261 0.003857 +9 0.861210 0.519514 0.006857 0.033810 +9 0.842427 0.514295 0.008646 0.024280 +9 0.755069 0.518834 0.010435 0.033810 +10 0.669201 0.514069 0.010435 0.004765 +10 0.174270 0.513274 0.006857 0.003631 +6 0.228235 0.505673 0.009839 0.021557 +6 0.224657 0.451441 0.010435 0.018380 +6 0.196482 0.451441 0.010733 0.019287 +6 0.728980 0.452349 0.010733 0.024280 +10 0.538014 0.406059 0.009839 0.003404 +9 0.343023 0.398344 0.005069 0.025187 +10 0.365385 0.391536 0.006857 0.003404 +6 0.196929 0.395394 0.009839 0.019741 +6 0.588998 0.393351 0.010435 0.018834 +6 0.557990 0.393805 0.010435 0.018834 +8 0.402952 0.318471 0.012224 0.008396 +8 0.509094 0.318017 0.012224 0.007942 +8 0.614639 0.316655 0.012224 0.007488 +8 0.783989 0.315748 0.012224 0.007034 +6 0.235391 0.319151 0.009839 0.017926 +6 0.340638 0.319378 0.010435 0.019741 +6 0.304860 0.319378 0.010435 0.018834 +6 0.206172 0.319378 0.011032 0.019287 +6 0.724359 0.317336 0.009839 0.018380 +9 0.580650 0.269231 0.009243 0.025641 +9 0.890429 0.263785 0.009839 0.035171 +6 0.341234 0.263785 0.011032 0.018380 +6 0.305158 0.264012 0.010435 0.018834 +6 0.207364 0.262650 0.010435 0.017472 +6 0.235092 0.262650 0.005069 0.018380 +6 0.378205 0.262650 0.011032 0.018834 +10 0.485540 0.254255 0.006261 0.002496 +10 0.254621 0.211368 0.005963 0.003857 +10 0.846154 0.208418 0.007156 0.003404 +9 0.481067 0.212276 0.004472 0.022918 +7 0.517442 0.208418 0.006261 0.019287 +8 0.207961 0.203653 0.012224 0.008396 +6 0.340936 0.206149 0.009839 0.017472 +6 0.305605 0.205922 0.011330 0.017926 +6 0.378354 0.205469 0.007752 0.018834 +10 0.241055 0.164624 0.008050 0.003857 +7 0.207662 0.149194 0.012821 0.013842 +6 0.340340 0.147833 0.009839 0.017926 +6 0.377311 0.147379 0.009839 0.017926 +6 0.305158 0.147152 0.009839 0.017472 +10 0.309630 0.089744 0.006261 0.002496 +10 0.818277 0.088155 0.006261 0.002950 +10 0.516846 0.089290 0.010435 0.005219 +8 0.816190 0.091332 0.009243 0.019287 +9 0.752982 0.086113 0.004472 0.024280 +9 0.779815 0.088609 0.010435 0.023826 +9 0.374329 0.079986 0.004472 0.022010 +9 0.609869 0.082256 0.004472 0.027910 +9 0.594961 0.077944 0.009243 0.026095 +8 0.096452 0.033923 0.007454 0.014295 +18 0.540400 0.958589 0.006857 0.006580 +11 0.780262 0.955298 0.009541 0.006354 +11 0.682767 0.943386 0.008945 0.005673 +12 0.562761 0.942364 0.004472 0.004084 +11 0.663238 0.943045 0.008646 0.005900 +11 0.208557 0.943386 0.009243 0.006580 +13 0.187388 0.943386 0.008646 0.006580 +11 0.546512 0.942478 0.007752 0.005219 +11 0.375224 0.941684 0.005069 0.003631 +11 0.450954 0.942138 0.008646 0.005900 +11 0.309928 0.940776 0.007454 0.004992 +11 0.860465 0.936919 0.007156 0.005900 +11 0.780411 0.899024 0.009243 0.006354 +12 0.798450 0.888359 0.004770 0.003631 +11 0.682767 0.887225 0.008348 0.004992 +11 0.662791 0.887338 0.008945 0.005219 +11 0.210048 0.887906 0.006261 0.006354 +13 0.188432 0.887792 0.007752 0.006127 +12 0.431425 0.886885 0.007752 0.004765 +11 0.544574 0.886771 0.008646 0.005446 +11 0.309481 0.885410 0.008945 0.005446 +11 0.861360 0.880985 0.006559 0.006127 +11 0.074091 0.839120 0.004472 0.003631 +11 0.257156 0.834354 0.008646 0.005446 +11 0.256708 0.827661 0.009541 0.004311 +11 0.498211 0.834354 0.008348 0.005900 +11 0.498211 0.827887 0.008945 0.006127 +11 0.862701 0.832426 0.006261 0.004765 +11 0.862701 0.826866 0.008646 0.005900 +11 0.545170 0.832199 0.008050 0.004311 +11 0.545021 0.825618 0.007752 0.005673 +12 0.415772 0.831858 0.006261 0.004538 +11 0.416070 0.824824 0.007454 0.004538 +12 0.448569 0.831745 0.006261 0.004765 +12 0.449016 0.824711 0.007752 0.004311 +11 0.173673 0.830497 0.008050 0.004538 +11 0.175015 0.823916 0.007156 0.004538 +11 0.309034 0.830497 0.006857 0.005446 +11 0.310823 0.824484 0.005665 0.004311 +11 0.801729 0.829476 0.007156 0.005673 +11 0.801729 0.823122 0.008348 0.004311 +18 0.095558 0.828568 0.006857 0.004311 +11 0.828414 0.828682 0.009243 0.004992 +11 0.827967 0.835716 0.007752 0.005446 +11 0.727937 0.828909 0.008646 0.005900 +11 0.727937 0.834808 0.008646 0.005900 +11 0.617472 0.828909 0.008348 0.005900 +11 0.617472 0.834808 0.008348 0.005900 +11 0.379398 0.827547 0.009243 0.004992 +11 0.379100 0.834581 0.008050 0.005446 +11 0.911300 0.832312 0.009243 0.005900 +11 0.911300 0.826413 0.009243 0.005900 +11 0.781008 0.825959 0.007454 0.005446 +12 0.781008 0.831405 0.007454 0.005446 +12 0.682618 0.825845 0.008646 0.005673 +12 0.682618 0.831518 0.008646 0.005673 +11 0.651163 0.831518 0.008945 0.005673 +11 0.651163 0.825845 0.008945 0.005673 +12 0.565444 0.825618 0.009243 0.005673 +12 0.565444 0.831291 0.009243 0.005673 +12 0.332141 0.825051 0.008348 0.005446 +12 0.332141 0.830497 0.008348 0.005446 +12 0.208259 0.830157 0.008050 0.005673 +12 0.208259 0.824484 0.008050 0.005673 +11 0.887597 0.824143 0.008348 0.005900 +11 0.887597 0.830043 0.008348 0.005900 +12 0.703190 0.823349 0.007454 0.005219 +17 0.703190 0.828568 0.007454 0.005219 +12 0.471527 0.822895 0.008646 0.005219 +12 0.471527 0.828114 0.008646 0.005219 +12 0.588104 0.822782 0.009243 0.005446 +12 0.588104 0.828228 0.009243 0.005446 +12 0.352713 0.822442 0.008348 0.005673 +12 0.352713 0.828114 0.008348 0.005673 +12 0.229726 0.827547 0.008646 0.005446 +12 0.229726 0.822101 0.008646 0.005446 +11 0.744186 0.783299 0.009541 0.006354 +11 0.547406 0.782845 0.010733 0.007261 +11 0.651610 0.781938 0.009243 0.006807 +11 0.683214 0.778421 0.009243 0.006127 +11 0.512075 0.775471 0.009243 0.006127 +11 0.862999 0.773996 0.008646 0.004538 +11 0.271169 0.774790 0.009243 0.006127 +11 0.415772 0.772975 0.008646 0.004311 +11 0.174120 0.772521 0.009541 0.004765 +17 0.783840 0.773202 0.011330 0.007034 +17 0.310972 0.772748 0.010137 0.006127 +11 0.449761 0.769912 0.008646 0.006354 +17 0.210644 0.769685 0.009839 0.005900 +17 0.074389 0.756524 0.004472 0.005446 +11 0.651759 0.727252 0.009541 0.006354 +13 0.744335 0.726004 0.008646 0.006127 +11 0.547108 0.726798 0.011330 0.007715 +11 0.685003 0.722827 0.009243 0.006580 +11 0.512970 0.719991 0.009839 0.005900 +11 0.271318 0.719424 0.009541 0.006127 +11 0.861210 0.718062 0.008646 0.004311 +11 0.415176 0.716928 0.008646 0.004311 +17 0.782200 0.717608 0.010435 0.006580 +17 0.311568 0.717381 0.010137 0.006127 +11 0.173226 0.716928 0.008945 0.006127 +11 0.452147 0.714318 0.007454 0.005900 +11 0.210048 0.713864 0.009839 0.006807 +12 0.089893 0.705469 0.006857 0.004538 +11 0.911002 0.699342 0.008646 0.006807 +11 0.754323 0.638303 0.007752 0.004084 +12 0.739565 0.638416 0.007454 0.004311 +12 0.626118 0.638189 0.008945 0.004311 +11 0.842427 0.635920 0.008646 0.006127 +17 0.268038 0.635466 0.009541 0.006127 +17 0.626416 0.595530 0.008945 0.006127 +11 0.540400 0.593715 0.008646 0.005673 +17 0.347496 0.593374 0.010435 0.006807 +11 0.347197 0.577604 0.010435 0.007034 +11 0.470632 0.593488 0.009839 0.007488 +12 0.439028 0.592467 0.008646 0.006354 +12 0.558736 0.592353 0.008348 0.006580 +17 0.268634 0.592467 0.010137 0.007261 +17 0.268187 0.577263 0.010435 0.007715 +11 0.588849 0.592013 0.008945 0.006807 +12 0.491503 0.592013 0.008646 0.006807 +12 0.572302 0.589517 0.009243 0.006354 +12 0.454532 0.589290 0.008646 0.006354 +12 0.507454 0.589176 0.008348 0.006580 +11 0.756261 0.574654 0.008050 0.004311 +13 0.742099 0.574767 0.008348 0.005446 +11 0.174419 0.572385 0.005963 0.005673 +11 0.174717 0.565918 0.008348 0.005446 +11 0.843620 0.572498 0.009839 0.006354 +17 0.199314 0.567052 0.009839 0.006354 +17 0.199314 0.573406 0.009839 0.006354 +13 0.073792 0.544134 0.004472 0.004538 +11 0.801282 0.522918 0.007454 0.004765 +11 0.801133 0.515997 0.008348 0.005446 +11 0.697376 0.522918 0.008348 0.006127 +11 0.696333 0.516224 0.008646 0.005446 +11 0.912493 0.522351 0.008050 0.005446 +11 0.913089 0.515543 0.009243 0.004992 +12 0.754919 0.520309 0.005367 0.004084 +12 0.755069 0.513274 0.006857 0.005446 +12 0.862552 0.519628 0.004770 0.003631 +12 0.863447 0.512367 0.007752 0.004992 +11 0.843172 0.519855 0.007156 0.004538 +11 0.843769 0.512594 0.007752 0.005446 +11 0.728086 0.519968 0.005963 0.004765 +11 0.728831 0.512934 0.008050 0.005673 +12 0.646392 0.519628 0.007156 0.004992 +12 0.647585 0.512934 0.006559 0.004311 +11 0.626267 0.513728 0.009243 0.005900 +11 0.626267 0.519628 0.009243 0.005900 +17 0.540996 0.513955 0.011628 0.006807 +17 0.540996 0.520762 0.011628 0.006807 +17 0.440668 0.513161 0.010137 0.006580 +17 0.440668 0.519741 0.010137 0.006580 +11 0.226446 0.511913 0.007454 0.005900 +12 0.197823 0.511799 0.007454 0.005673 +11 0.173375 0.511232 0.008646 0.004992 +12 0.669797 0.510892 0.009243 0.005673 +12 0.669797 0.516565 0.009243 0.005673 +12 0.774597 0.516678 0.008348 0.005900 +12 0.774597 0.510778 0.008348 0.005900 +17 0.347346 0.510892 0.010733 0.006127 +12 0.347346 0.517018 0.010733 0.006127 +11 0.347346 0.527002 0.011330 0.007488 +12 0.886255 0.510438 0.009243 0.005673 +12 0.886255 0.516111 0.009243 0.005673 +17 0.267889 0.511119 0.010435 0.007034 +12 0.269678 0.519061 0.010435 0.006580 +17 0.269678 0.525641 0.010435 0.006580 +12 0.211837 0.508963 0.009243 0.006354 +17 0.439922 0.466644 0.009839 0.007034 +17 0.540549 0.466531 0.010733 0.007261 +17 0.347197 0.466417 0.010435 0.007034 +17 0.267740 0.466190 0.010137 0.007034 +12 0.807692 0.462446 0.008945 0.006354 +11 0.728235 0.459950 0.008050 0.004992 +11 0.174120 0.460404 0.008945 0.005900 +17 0.627907 0.460517 0.010137 0.006580 +17 0.844216 0.459950 0.011032 0.006354 +11 0.755814 0.457454 0.009541 0.006354 +11 0.087806 0.411845 0.003876 0.004084 +17 0.439177 0.410029 0.010137 0.007261 +11 0.807394 0.405718 0.009541 0.006354 +11 0.727042 0.403676 0.007454 0.004992 +11 0.538611 0.403676 0.008646 0.004992 +17 0.629100 0.403449 0.010733 0.006807 +17 0.844067 0.402995 0.010137 0.006807 +11 0.755069 0.400726 0.008050 0.006354 +12 0.403250 0.399365 0.007454 0.005900 +12 0.388193 0.396301 0.009541 0.006580 +11 0.174717 0.396301 0.009541 0.006580 +11 0.225104 0.396188 0.009541 0.006807 +11 0.365385 0.393578 0.007454 0.005673 +11 0.346601 0.390629 0.008646 0.006127 +17 0.267740 0.390969 0.009541 0.007261 +11 0.284138 0.329249 0.008348 0.005446 +11 0.183810 0.321647 0.009243 0.006580 +11 0.690817 0.320059 0.009541 0.006127 +12 0.872093 0.315748 0.004770 0.003857 +13 0.184705 0.272975 0.005665 0.004084 +12 0.185003 0.259814 0.007454 0.006354 +12 0.184407 0.244838 0.008646 0.006354 +12 0.284287 0.272861 0.008050 0.004311 +11 0.284287 0.261970 0.008050 0.004765 +12 0.284138 0.248468 0.009541 0.006807 +17 0.615236 0.271273 0.010435 0.006580 +12 0.233154 0.267415 0.004770 0.003857 +11 0.581544 0.260835 0.006857 0.005219 +11 0.548151 0.258679 0.008050 0.006354 +11 0.515951 0.258793 0.008646 0.006580 +17 0.845259 0.257545 0.010137 0.006354 +17 0.845259 0.263898 0.010137 0.006354 +11 0.891622 0.256751 0.008646 0.005673 +11 0.891622 0.262423 0.008646 0.005673 +12 0.485838 0.256864 0.006857 0.005900 +11 0.433512 0.256637 0.007156 0.005446 +17 0.761479 0.256524 0.010733 0.006580 +17 0.761479 0.263104 0.010733 0.006580 +17 0.692308 0.256410 0.009541 0.006807 +17 0.692308 0.263218 0.009541 0.006807 +11 0.412194 0.254368 0.008646 0.006354 +12 0.222868 0.212162 0.009243 0.006354 +11 0.184705 0.212276 0.009243 0.006580 +11 0.284287 0.211936 0.009243 0.006807 +11 0.690966 0.210688 0.011032 0.007034 +12 0.252832 0.209440 0.009541 0.006354 +11 0.760137 0.209553 0.010435 0.007942 +12 0.892218 0.206490 0.008050 0.004992 +11 0.875075 0.206263 0.007156 0.004538 +12 0.844514 0.206376 0.008050 0.004765 +12 0.237925 0.206830 0.008945 0.006580 +11 0.485092 0.205922 0.009541 0.006580 +11 0.582290 0.205582 0.009541 0.006354 +17 0.614490 0.205469 0.010733 0.007488 +12 0.908766 0.204221 0.007752 0.005900 +12 0.859720 0.204221 0.006261 0.005900 +12 0.412642 0.203994 0.007752 0.005446 +11 0.514460 0.203426 0.006857 0.005219 +11 0.434854 0.201271 0.009243 0.006354 +11 0.637299 0.158271 0.008646 0.006127 +13 0.535927 0.156229 0.005665 0.004311 +11 0.615534 0.156002 0.008646 0.004765 +17 0.758945 0.155548 0.008646 0.005219 +17 0.690519 0.155435 0.010733 0.006354 +17 0.845110 0.154640 0.010435 0.006580 +11 0.581544 0.153392 0.009243 0.006354 +11 0.547704 0.153392 0.008348 0.006354 +11 0.185003 0.152371 0.009243 0.005673 +12 0.223763 0.151917 0.009243 0.005673 +11 0.515951 0.151123 0.008050 0.004992 +11 0.284586 0.151350 0.009243 0.005446 +11 0.486583 0.151010 0.008945 0.005219 +12 0.252832 0.148968 0.008945 0.006127 +11 0.435152 0.148627 0.008646 0.006354 +11 0.413834 0.146358 0.008348 0.005446 +12 0.236732 0.146585 0.007752 0.005900 +12 0.844663 0.096551 0.010137 0.006580 +11 0.648629 0.091672 0.011628 0.004992 +11 0.660256 0.076696 0.008646 0.005900 +12 0.817233 0.085773 0.007156 0.004538 +12 0.801878 0.083504 0.009243 0.006354 +11 0.781157 0.081234 0.008348 0.005446 +11 0.757305 0.078852 0.008945 0.006127 +13 0.689475 0.079533 0.011032 0.007942 +11 0.236434 0.074541 0.008348 0.006127 +12 0.208855 0.074087 0.007454 0.006127 +12 0.185748 0.074200 0.008348 0.006354 +12 0.378801 0.073860 0.007454 0.006127 +11 0.613447 0.073519 0.008050 0.005900 +11 0.415027 0.073633 0.007752 0.006127 +11 0.285331 0.073633 0.008348 0.006127 +11 0.547853 0.073633 0.008646 0.006580 +11 0.342725 0.073066 0.008050 0.006354 +12 0.307394 0.073066 0.008348 0.006354 +12 0.634019 0.072839 0.007454 0.006354 +12 0.580352 0.072725 0.008646 0.006580 +12 0.512821 0.072385 0.007156 0.005900 +11 0.486732 0.072498 0.008646 0.006580 +12 0.433810 0.072385 0.007752 0.006354 +12 0.223315 0.071704 0.008348 0.006807 +12 0.322749 0.070683 0.009243 0.006127 +12 0.396989 0.070683 0.009243 0.006580 +12 0.527430 0.070456 0.008945 0.006580 +12 0.447376 0.070343 0.008646 0.006807 +12 0.596005 0.069889 0.007752 0.006354 +17 0.096601 0.036987 0.005367 0.005900 +3 0.142964 0.206830 0.011032 0.023372 +0 0.094365 0.508623 0.022361 0.024280 +0 0.091085 0.717835 0.015206 0.022464 +3 0.748211 0.210688 0.008050 0.022010 +5 0.535629 0.148287 0.006857 0.008850 +2 0.093470 0.263104 0.016398 0.019741 +5 0.747913 0.398117 0.011032 0.021103 +5 0.505367 0.200363 0.007752 0.017245 +5 0.503727 0.147039 0.008646 0.014976 +5 0.400865 0.141479 0.009243 0.013842 +3 0.439624 0.771160 0.006261 0.014295 +3 0.402355 0.203426 0.007454 0.018834 +5 0.570513 0.202065 0.008646 0.014749 +5 0.534436 0.256297 0.008646 0.015203 +5 0.647734 0.072952 0.008646 0.014749 +3 0.902654 0.514069 0.007454 0.020195 +3 0.501044 0.718629 0.007454 0.019061 +3 0.260435 0.774790 0.008050 0.017018 +5 0.475104 0.251532 0.009243 0.017018 +3 0.198122 0.768210 0.007454 0.018380 +2 0.094961 0.319378 0.012821 0.017018 +3 0.607185 0.828001 0.006857 0.020422 +2 0.092874 0.633651 0.018187 0.019287 +3 0.423822 0.255616 0.008050 0.021557 +1 0.093470 0.453483 0.022361 0.029272 +2 0.095707 0.881212 0.022063 0.018834 +0 0.094365 0.144429 0.019976 0.029272 +3 0.794126 0.404470 0.006857 0.018380 +1 0.094365 0.761629 0.021765 0.036533 +2 0.091682 0.935444 0.018784 0.018380 +2 0.094365 0.570570 0.016995 0.018380 +4 0.603906 0.205355 0.007454 0.011346 +3 0.473017 0.150329 0.008050 0.017926 +3 0.658468 0.515430 0.008050 0.018380 +5 0.334675 0.512026 0.008050 0.015657 +3 0.577072 0.827661 0.007454 0.018834 +3 0.686196 0.515203 0.007454 0.017926 +3 0.875820 0.518153 0.007454 0.014749 +5 0.148927 0.890061 0.008050 0.012026 +5 0.488521 0.824484 0.006857 0.013842 +3 0.261032 0.718743 0.006857 0.014749 +3 0.817084 0.829476 0.006857 0.024280 +5 0.148927 0.330497 0.008646 0.011119 +5 0.117919 0.508396 0.008646 0.014749 +5 0.133274 0.887679 0.008348 0.013161 +5 0.119857 0.885183 0.007752 0.015430 +5 0.141324 0.878148 0.007752 0.014069 +5 0.126714 0.874972 0.007156 0.014976 +5 0.133870 0.576810 0.007156 0.012253 +3 0.141920 0.574314 0.008945 0.017245 +5 0.133721 0.451327 0.007454 0.013615 +5 0.119559 0.449058 0.007156 0.013615 +3 0.144305 0.449512 0.016100 0.024506 +5 0.126118 0.441570 0.008348 0.014069 +5 0.119559 0.088949 0.008348 0.016791 +5 0.128503 0.081007 0.008348 0.014522 +5 0.119857 0.147720 0.008348 0.017245 +3 0.717651 0.828341 0.007752 0.024733 +5 0.133125 0.708418 0.007454 0.011346 +0 0.143858 0.704561 0.015802 0.021784 +5 0.117472 0.939415 0.007752 0.014069 +5 0.125522 0.930792 0.008348 0.014069 +5 0.132976 0.764693 0.007752 0.010438 +5 0.147883 0.273656 0.007752 0.011346 +5 0.133572 0.271160 0.006559 0.012707 +5 0.141622 0.260948 0.007156 0.014976 +5 0.126416 0.697527 0.008348 0.014069 +5 0.127311 0.259360 0.007156 0.016338 +4 0.120751 0.210574 0.005367 0.009530 +5 0.132230 0.208305 0.011628 0.019514 +5 0.119857 0.636260 0.007156 0.012253 +5 0.126714 0.628999 0.007752 0.013161 +1 0.129994 0.764466 0.001789 0.009984 +5 0.119559 0.761289 0.007156 0.015430 +5 0.126714 0.753347 0.007156 0.013161 +5 0.133870 0.325845 0.006559 0.012253 +5 0.127311 0.316088 0.007752 0.013615 +1 0.086762 0.818471 0.005367 0.022691 +5 0.133870 0.823009 0.007752 0.012707 +5 0.140727 0.813932 0.008348 0.013615 +0 0.117770 0.392330 0.007156 0.012707 +4 0.239714 0.834808 0.005963 0.010438 +3 0.245975 0.827774 0.006559 0.017245 +5 0.134168 0.639437 0.007156 0.010438 +5 0.141324 0.502609 0.007156 0.014522 +3 0.127609 0.504425 0.009541 0.022691 +4 0.135510 0.089290 0.008050 0.017018 +3 0.144305 0.089290 0.007752 0.017018 +3 0.142367 0.143068 0.008050 0.017018 +4 0.149374 0.149194 0.007752 0.017018 +5 0.128056 0.140799 0.008050 0.017018 +4 0.135063 0.147379 0.007752 0.017018 +3 0.765504 0.515317 0.008050 0.016791 +3 0.694544 0.826753 0.008050 0.017018 +3 0.141473 0.757091 0.008050 0.017018 +5 0.148479 0.764125 0.007752 0.017018 +5 0.119112 0.816769 0.008050 0.017018 +5 0.126714 0.813365 0.007752 0.017018 +3 0.461091 0.829703 0.008050 0.017018 +5 0.784884 0.517699 0.008050 0.017018 +3 0.790996 0.516111 0.007752 0.017018 +4 0.122391 0.388813 0.008050 0.017018 +5 0.132976 0.395621 0.007752 0.017018 +3 0.876118 0.829930 0.008050 0.017018 +5 0.140578 0.389494 0.008050 0.017018 +5 0.149076 0.396982 0.007752 0.017018 +3 0.169797 0.255616 0.008050 0.016565 +4 0.088104 0.091105 0.008050 0.017018 +4 0.099583 0.080667 0.007752 0.017018 +4 0.094365 0.697413 0.008050 0.017018 +3 0.100477 0.696959 0.007752 0.017018 +4 0.087507 0.396074 0.008050 0.017018 +4 0.094067 0.392898 0.008050 0.017018 +3 0.100775 0.392898 0.007752 0.017018 +5 0.132230 0.940663 0.008050 0.017018 +5 0.140877 0.936124 0.008050 0.017018 +5 0.149672 0.944293 0.007752 0.017018 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_15.jpg b/data_dataset/dvo/debug/debug_15.jpg new file mode 100644 index 0000000..e3e3a4a Binary files /dev/null and b/data_dataset/dvo/debug/debug_15.jpg differ diff --git a/data_dataset/dvo/debug/debug_15.txt b/data_dataset/dvo/debug/debug_15.txt new file mode 100644 index 0000000..bfddbbc --- /dev/null +++ b/data_dataset/dvo/debug/debug_15.txt @@ -0,0 +1,709 @@ +9 0.865901 0.951078 0.008652 0.027015 +9 0.828610 0.937003 0.006862 0.017934 +10 0.343825 0.936776 0.006265 0.004767 +7 0.513574 0.940409 0.011635 0.015664 +6 0.569660 0.937684 0.009248 0.018388 +6 0.318168 0.938365 0.009845 0.018842 +9 0.716736 0.940409 0.006265 0.030647 +6 0.404385 0.937003 0.008055 0.022020 +6 0.843228 0.937003 0.007458 0.018842 +6 0.627237 0.938593 0.009845 0.020204 +6 0.299075 0.937684 0.008652 0.017480 +6 0.469123 0.938138 0.007458 0.019750 +6 0.646032 0.937003 0.009248 0.017480 +6 0.483443 0.938365 0.008652 0.020204 +6 0.889469 0.890919 0.008055 0.019296 +6 0.845018 0.889103 0.009845 0.037457 +9 0.668109 0.880250 0.004475 0.027469 +10 0.626342 0.845516 0.006265 0.003859 +9 0.829505 0.840295 0.008055 0.018842 +6 0.844421 0.839614 0.010442 0.018388 +10 0.449433 0.832350 0.009248 0.003405 +10 0.516557 0.832123 0.006265 0.003405 +9 0.282070 0.840976 0.009845 0.024745 +9 0.297584 0.838252 0.005072 0.023837 +9 0.873061 0.794665 0.008055 0.038365 +9 0.482548 0.792622 0.008652 0.028377 +9 0.569362 0.790579 0.009248 0.034733 +6 0.845018 0.789217 0.009248 0.018388 +9 0.607846 0.792168 0.008652 0.030647 +9 0.279684 0.790125 0.006265 0.026561 +9 0.403192 0.792622 0.009845 0.027469 +6 0.832190 0.789898 0.007458 0.019750 +10 0.873359 0.781952 0.007458 0.002951 +9 0.316080 0.792395 0.009845 0.027469 +10 0.237023 0.781271 0.006862 0.002497 +9 0.214648 0.782860 0.009845 0.017934 +9 0.449732 0.791487 0.009845 0.029739 +9 0.515364 0.789898 0.009845 0.027015 +10 0.569958 0.780590 0.006862 0.003859 +9 0.348300 0.790125 0.009845 0.028377 +9 0.467631 0.789217 0.009845 0.031555 +9 0.298180 0.786266 0.009845 0.034279 +9 0.383204 0.785812 0.009248 0.033825 +9 0.551462 0.785585 0.006862 0.034733 +9 0.842333 0.744949 0.009248 0.019750 +6 0.890364 0.745403 0.008652 0.019750 +6 0.903490 0.745062 0.009845 0.019523 +6 0.687500 0.744268 0.009845 0.019750 +9 0.768944 0.733258 0.005668 0.020885 +9 0.514767 0.732009 0.008055 0.031101 +9 0.751939 0.680023 0.011038 0.015664 +7 0.175567 0.676617 0.012232 0.013394 +7 0.569660 0.679569 0.012828 0.020658 +7 0.374553 0.678207 0.012828 0.018388 +6 0.340245 0.674120 0.008652 0.017934 +6 0.314588 0.675255 0.009845 0.020204 +6 0.237619 0.673893 0.008652 0.018388 +6 0.720018 0.675028 0.010442 0.019296 +6 0.536844 0.674120 0.009248 0.018842 +6 0.513276 0.674574 0.009845 0.019750 +6 0.698240 0.673893 0.009845 0.017934 +6 0.802655 0.674120 0.011038 0.018842 +6 0.779385 0.674347 0.011038 0.019296 +6 0.632011 0.673553 0.009845 0.018161 +10 0.751641 0.634847 0.008652 0.004313 +7 0.569660 0.633485 0.012232 0.020204 +7 0.375149 0.632804 0.012232 0.018388 +6 0.878431 0.629625 0.010442 0.018842 +6 0.717930 0.628944 0.010442 0.018842 +6 0.800865 0.628490 0.010442 0.019296 +6 0.510591 0.628717 0.009845 0.019750 +6 0.697047 0.628717 0.010442 0.019296 +6 0.438097 0.628490 0.010442 0.019750 +6 0.338156 0.628263 0.009845 0.018842 +6 0.631116 0.628944 0.009845 0.019296 +6 0.777595 0.628263 0.010442 0.018842 +6 0.535949 0.628490 0.010442 0.019296 +6 0.313395 0.628490 0.010442 0.019296 +7 0.192870 0.581498 0.012828 0.013848 +7 0.257011 0.578320 0.012232 0.026107 +7 0.225984 0.586152 0.012232 0.023156 +8 0.617989 0.571283 0.008652 0.023837 +10 0.816080 0.559251 0.007458 0.003405 +10 0.339648 0.520658 0.006265 0.003405 +9 0.719123 0.523610 0.009845 0.027923 +10 0.540125 0.516345 0.007458 0.002951 +6 0.902595 0.521339 0.010442 0.019296 +9 0.591140 0.513848 0.004475 0.017934 +9 0.500447 0.513053 0.006862 0.019977 +6 0.879027 0.518842 0.009845 0.019750 +9 0.695853 0.521112 0.008652 0.023837 +10 0.776700 0.511351 0.006862 0.002951 +9 0.512977 0.520431 0.009248 0.026561 +10 0.310412 0.511351 0.006265 0.002951 +9 0.413932 0.520204 0.010442 0.027469 +10 0.778789 0.473893 0.011038 0.004313 +9 0.311903 0.469126 0.008055 0.022928 +10 0.414230 0.469353 0.006265 0.002951 +10 0.209576 0.468899 0.006265 0.003859 +9 0.207190 0.474801 0.009845 0.024745 +9 0.902595 0.472418 0.009248 0.030874 +6 0.514171 0.465040 0.009248 0.022928 +10 0.522524 0.413961 0.007458 0.004313 +9 0.643049 0.403859 0.006265 0.029512 +9 0.374254 0.407491 0.010442 0.044041 +10 0.375746 0.389671 0.006265 0.002497 +9 0.173180 0.362089 0.004475 0.029512 +9 0.505817 0.360272 0.006265 0.025880 +7 0.708980 0.352440 0.010442 0.013394 +7 0.490752 0.352667 0.012530 0.013848 +7 0.280579 0.351986 0.012828 0.012940 +6 0.212261 0.351759 0.007458 0.019296 +6 0.859636 0.351532 0.009845 0.018388 +6 0.664379 0.351532 0.008950 0.019750 +6 0.554296 0.350397 0.008353 0.018842 +6 0.773419 0.350965 0.006862 0.019069 +6 0.241199 0.349716 0.009248 0.018388 +6 0.632011 0.350965 0.010442 0.019523 +6 0.448837 0.349716 0.009248 0.017934 +6 0.346211 0.349943 0.009248 0.017934 +6 0.745078 0.305448 0.010442 0.019296 +6 0.312202 0.304086 0.009845 0.017934 +6 0.282369 0.304313 0.008652 0.019296 +10 0.523121 0.284336 0.008055 0.003859 +9 0.491796 0.292168 0.009845 0.034052 +7 0.510591 0.245516 0.004475 0.013394 +7 0.254624 0.244835 0.004475 0.012940 +7 0.873807 0.246198 0.009547 0.015664 +7 0.760740 0.245289 0.011337 0.016118 +7 0.843228 0.246879 0.012232 0.013394 +7 0.790871 0.246652 0.011933 0.013848 +7 0.729714 0.243019 0.012530 0.021566 +7 0.681981 0.246879 0.012530 0.013848 +7 0.650358 0.250738 0.011337 0.021566 +7 0.618437 0.246311 0.011933 0.013621 +7 0.572942 0.246425 0.012232 0.013394 +7 0.226134 0.244722 0.008950 0.013621 +7 0.434964 0.245743 0.006563 0.013394 +7 0.403938 0.245970 0.011337 0.013848 +10 0.509547 0.242338 0.006563 0.005221 +7 0.329952 0.245062 0.011337 0.013394 +7 0.195107 0.243473 0.012530 0.024291 +7 0.298329 0.241657 0.012530 0.027469 +10 0.358294 0.241090 0.008353 0.004994 +9 0.773270 0.247900 0.010143 0.025426 +10 0.634994 0.235187 0.008055 0.003178 +9 0.207936 0.242565 0.011337 0.026107 +7 0.526402 0.237798 0.006862 0.019750 +10 0.443168 0.181044 0.009845 0.004767 +8 0.214200 0.131101 0.008353 0.007491 +6 0.743437 0.136095 0.005967 0.018388 +6 0.312351 0.133371 0.010143 0.018842 +6 0.282070 0.133598 0.008055 0.019296 +9 0.523419 0.135868 0.009845 0.023837 +9 0.493288 0.132463 0.010442 0.027469 +10 0.235531 0.105675 0.011635 0.004313 +10 0.413037 0.105221 0.009845 0.003859 +10 0.494481 0.065267 0.006862 0.002951 +10 0.360829 0.062202 0.009248 0.004086 +10 0.345615 0.060726 0.007458 0.005221 +8 0.911695 0.034733 0.007757 0.013621 +12 0.672434 0.955051 0.009547 0.005448 +11 0.671241 0.939274 0.008353 0.005675 +11 0.216289 0.950851 0.008353 0.006129 +12 0.197942 0.950965 0.008652 0.006356 +11 0.813842 0.950057 0.008353 0.005902 +11 0.282220 0.947787 0.008353 0.004086 +12 0.365901 0.947900 0.008652 0.004767 +11 0.553401 0.947333 0.007757 0.004086 +11 0.535949 0.947787 0.008652 0.004994 +11 0.384845 0.947673 0.008353 0.005221 +13 0.712858 0.946992 0.005668 0.005221 +12 0.713753 0.941884 0.005072 0.003632 +11 0.449582 0.945062 0.009547 0.006356 +11 0.402446 0.942679 0.005370 0.003859 +12 0.687947 0.943246 0.006563 0.005448 +11 0.867094 0.942452 0.008055 0.006129 +12 0.871420 0.960159 0.008950 0.006129 +11 0.608443 0.939728 0.007458 0.006129 +11 0.748658 0.934733 0.005668 0.008400 +13 0.924821 0.915664 0.003580 0.006129 +11 0.872166 0.911918 0.008055 0.005902 +17 0.814588 0.901589 0.009845 0.006129 +11 0.741647 0.901589 0.005967 0.007491 +11 0.749254 0.886152 0.006265 0.010670 +12 0.250447 0.876844 0.008055 0.006583 +12 0.580698 0.875936 0.008055 0.005675 +12 0.418407 0.875596 0.007458 0.006356 +11 0.176909 0.873553 0.008950 0.005902 +11 0.349642 0.873666 0.008353 0.006583 +11 0.516856 0.872985 0.008652 0.007037 +17 0.283264 0.873553 0.010442 0.008173 +17 0.672584 0.873326 0.010442 0.008173 +17 0.610233 0.873099 0.010442 0.008173 +17 0.451521 0.872645 0.010442 0.007719 +12 0.215990 0.871283 0.008950 0.006810 +11 0.553699 0.870715 0.008353 0.006129 +11 0.385292 0.871056 0.008055 0.007264 +11 0.873210 0.860953 0.008950 0.006583 +11 0.872613 0.849943 0.008353 0.005448 +11 0.873658 0.836890 0.009248 0.006583 +11 0.671689 0.858456 0.007458 0.004313 +11 0.671539 0.851759 0.007757 0.004994 +11 0.688097 0.858229 0.009248 0.006129 +11 0.644391 0.853121 0.007160 0.004086 +11 0.644839 0.845970 0.007458 0.004313 +12 0.813842 0.849830 0.006563 0.004313 +12 0.813693 0.834506 0.008055 0.005448 +11 0.627237 0.847333 0.008055 0.005675 +11 0.626342 0.839274 0.007458 0.004994 +11 0.766110 0.835982 0.005370 0.003405 +12 0.237470 0.837003 0.006563 0.005902 +11 0.317870 0.836776 0.009248 0.006356 +11 0.484934 0.836663 0.008652 0.006583 +12 0.403490 0.836549 0.008652 0.006356 +11 0.569809 0.836549 0.008950 0.006810 +12 0.103968 0.834733 0.004475 0.004540 +11 0.609636 0.834166 0.011038 0.004767 +11 0.609636 0.838933 0.011038 0.004767 +12 0.086963 0.833712 0.004475 0.003859 +12 0.450179 0.834279 0.008353 0.005448 +12 0.515811 0.834393 0.008353 0.006129 +11 0.349344 0.834279 0.008353 0.005902 +13 0.174970 0.834279 0.006862 0.006356 +11 0.283264 0.833825 0.007458 0.005902 +11 0.216438 0.832123 0.008652 0.005675 +11 0.384099 0.831442 0.009248 0.006129 +11 0.301462 0.831555 0.009248 0.006810 +11 0.552804 0.830874 0.007160 0.006356 +11 0.468974 0.830988 0.009547 0.007037 +11 0.815185 0.805221 0.006862 0.005902 +12 0.815632 0.791714 0.007160 0.006129 +11 0.805489 0.788536 0.008950 0.007037 +12 0.816378 0.778434 0.009248 0.005902 +18 0.689141 0.804994 0.008950 0.005902 +11 0.673180 0.799092 0.009248 0.005902 +11 0.673180 0.804994 0.009248 0.005902 +11 0.874553 0.796935 0.006265 0.005675 +11 0.874702 0.789330 0.006563 0.004086 +11 0.873956 0.783541 0.007458 0.004313 +12 0.842631 0.794325 0.004475 0.004086 +11 0.628132 0.793984 0.008652 0.005221 +11 0.627685 0.786720 0.008950 0.005675 +11 0.645585 0.793530 0.008950 0.005675 +11 0.645585 0.799205 0.008950 0.005675 +12 0.926014 0.788763 0.004773 0.003405 +12 0.926163 0.782860 0.004475 0.004313 +12 0.404833 0.785698 0.008353 0.009081 +12 0.316826 0.783087 0.007160 0.004767 +12 0.316826 0.787855 0.007160 0.004767 +11 0.237023 0.783314 0.008055 0.005221 +11 0.237023 0.788536 0.008055 0.005221 +11 0.570555 0.783201 0.008055 0.005448 +11 0.570555 0.788649 0.008055 0.005448 +11 0.484487 0.783201 0.008950 0.005902 +11 0.484487 0.789103 0.008950 0.005902 +13 0.175567 0.781952 0.008055 0.005221 +13 0.175567 0.787174 0.008055 0.005221 +11 0.609039 0.781385 0.008652 0.005448 +11 0.609039 0.786833 0.008652 0.005448 +12 0.281623 0.781612 0.007757 0.005902 +11 0.281623 0.787514 0.007757 0.005902 +11 0.450477 0.781158 0.008353 0.005448 +11 0.450477 0.786606 0.008353 0.005448 +11 0.516259 0.780931 0.007458 0.005448 +11 0.516259 0.786379 0.007458 0.005448 +12 0.349493 0.780704 0.008652 0.005902 +12 0.349493 0.786606 0.008652 0.005902 +12 0.215692 0.778320 0.009547 0.005221 +11 0.215692 0.783541 0.009547 0.005221 +11 0.468974 0.778093 0.010143 0.005675 +11 0.468974 0.783768 0.010143 0.005675 +11 0.384845 0.777412 0.008950 0.005221 +11 0.384845 0.782633 0.008950 0.005221 +11 0.299523 0.777412 0.009547 0.005675 +11 0.299523 0.783087 0.009547 0.005675 +11 0.554296 0.776731 0.008950 0.006129 +11 0.554296 0.782860 0.008950 0.006129 +13 0.072792 0.766969 0.005370 0.007491 +12 0.212261 0.757435 0.011038 0.008854 +12 0.213902 0.719637 0.007160 0.005902 +13 0.072643 0.754824 0.005668 0.005902 +11 0.874553 0.751873 0.008055 0.006356 +12 0.873807 0.737798 0.006563 0.004540 +18 0.873061 0.724858 0.009248 0.005902 +12 0.815185 0.751078 0.006265 0.005675 +12 0.816080 0.740522 0.009248 0.006356 +12 0.815185 0.727015 0.008652 0.007491 +13 0.803103 0.738252 0.005967 0.003178 +13 0.578908 0.724858 0.007458 0.005902 +12 0.415125 0.724745 0.008055 0.006129 +12 0.246569 0.724404 0.007458 0.006356 +11 0.672136 0.722588 0.007757 0.007264 +11 0.516856 0.721907 0.008652 0.007264 +11 0.348300 0.721680 0.008055 0.006810 +11 0.175418 0.721453 0.009547 0.007719 +17 0.450626 0.721226 0.011038 0.008173 +17 0.608741 0.720885 0.009845 0.007946 +17 0.281623 0.720885 0.010740 0.007946 +11 0.552208 0.719523 0.007757 0.006129 +11 0.381712 0.719183 0.009248 0.006810 +11 0.607399 0.684336 0.006563 0.005221 +12 0.590543 0.684109 0.008055 0.005221 +11 0.675865 0.681725 0.009248 0.006356 +12 0.399761 0.681498 0.008353 0.005902 +11 0.289230 0.681498 0.009248 0.006356 +17 0.416915 0.681158 0.006862 0.006129 +11 0.488514 0.678774 0.008055 0.004994 +11 0.751342 0.678661 0.008652 0.005675 +12 0.207786 0.676504 0.008652 0.006810 +12 0.192273 0.676504 0.008652 0.006810 +12 0.855459 0.675936 0.009248 0.006129 +12 0.590841 0.638252 0.009248 0.004313 +11 0.608144 0.638025 0.008055 0.004767 +11 0.674374 0.635868 0.009248 0.006356 +11 0.416915 0.635641 0.008652 0.005902 +12 0.396629 0.635755 0.008652 0.006129 +11 0.288037 0.635641 0.008652 0.006356 +11 0.752983 0.633144 0.008950 0.005448 +11 0.488216 0.633258 0.009248 0.005675 +11 0.855609 0.630647 0.008950 0.006356 +12 0.256712 0.619750 0.008055 0.007264 +12 0.241647 0.617480 0.008950 0.006356 +11 0.210173 0.615437 0.008055 0.006356 +11 0.176462 0.612145 0.008055 0.006129 +18 0.775209 0.591033 0.010442 0.006129 +12 0.776104 0.557321 0.008652 0.006810 +12 0.240155 0.576277 0.008353 0.005675 +13 0.209278 0.571396 0.008652 0.006356 +11 0.632309 0.570942 0.008652 0.006356 +11 0.439290 0.568445 0.009248 0.005902 +17 0.676313 0.568558 0.010740 0.007037 +17 0.376641 0.568331 0.010442 0.006583 +17 0.290125 0.568104 0.010442 0.007491 +17 0.488813 0.566061 0.010442 0.007491 +17 0.571897 0.565834 0.010143 0.007491 +12 0.176163 0.564132 0.008055 0.006356 +17 0.855459 0.563678 0.011038 0.007719 +11 0.751790 0.561180 0.008950 0.005902 +12 0.815334 0.560953 0.006563 0.005902 +12 0.719869 0.560159 0.008353 0.006583 +17 0.774761 0.536663 0.007757 0.005448 +11 0.776551 0.513621 0.007160 0.005675 +11 0.176313 0.525766 0.010143 0.005902 +17 0.176313 0.531669 0.010143 0.005902 +11 0.855310 0.521566 0.008950 0.006129 +11 0.801163 0.519069 0.008055 0.005675 +11 0.720018 0.518615 0.008652 0.005221 +11 0.631712 0.518729 0.008652 0.005448 +11 0.539529 0.518842 0.008652 0.006129 +11 0.438395 0.518161 0.008055 0.004767 +11 0.338902 0.518729 0.008353 0.005902 +11 0.750597 0.516345 0.007757 0.006129 +12 0.674523 0.516345 0.007757 0.006129 +12 0.103520 0.516572 0.005967 0.006583 +11 0.570107 0.516232 0.008950 0.006356 +11 0.488067 0.516118 0.008353 0.006583 +11 0.287739 0.515778 0.009845 0.006356 +11 0.376044 0.515664 0.009845 0.006583 +11 0.696748 0.513848 0.006862 0.005675 +11 0.513574 0.513280 0.007458 0.004994 +11 0.605758 0.513621 0.007458 0.006129 +11 0.414529 0.513394 0.008055 0.006129 +11 0.311307 0.513394 0.007458 0.006129 +11 0.719869 0.477866 0.008950 0.004540 +11 0.538484 0.477753 0.008950 0.004313 +11 0.800865 0.477299 0.008652 0.005221 +11 0.632607 0.477185 0.008652 0.004994 +11 0.339946 0.477412 0.009248 0.005902 +11 0.438693 0.477185 0.008652 0.005902 +11 0.753282 0.475142 0.008353 0.005448 +12 0.674672 0.475028 0.008055 0.005221 +11 0.573837 0.474801 0.008652 0.006129 +12 0.488067 0.474688 0.008950 0.006356 +17 0.376939 0.474234 0.006862 0.005448 +17 0.288634 0.474461 0.009248 0.006356 +18 0.275507 0.472191 0.006862 0.004086 +11 0.696450 0.472418 0.006862 0.005448 +11 0.778490 0.472077 0.009248 0.005221 +11 0.607100 0.472304 0.008950 0.005675 +13 0.663932 0.471737 0.007458 0.004994 +18 0.559815 0.472077 0.008652 0.005675 +18 0.559815 0.477753 0.008652 0.005675 +11 0.311903 0.472077 0.008055 0.005675 +11 0.512381 0.471964 0.008652 0.005902 +18 0.477178 0.471396 0.006862 0.004767 +11 0.414379 0.471737 0.008950 0.005448 +12 0.254624 0.472077 0.009248 0.006129 +12 0.365006 0.471850 0.009248 0.006129 +11 0.239260 0.469126 0.009547 0.006583 +13 0.247763 0.454370 0.005072 0.003405 +11 0.208085 0.467083 0.007458 0.005221 +11 0.176163 0.464245 0.009845 0.006356 +11 0.903490 0.462089 0.007458 0.005675 +11 0.903490 0.467764 0.007458 0.005675 +11 0.854863 0.459478 0.007458 0.005448 +11 0.854863 0.464926 0.007458 0.005448 +11 0.880668 0.456981 0.008353 0.004994 +11 0.880668 0.461975 0.008353 0.004994 +11 0.174821 0.425653 0.006563 0.005448 +12 0.175716 0.407719 0.008950 0.005902 +13 0.453461 0.413394 0.005967 0.004540 +13 0.453908 0.395119 0.008652 0.007037 +12 0.815334 0.413621 0.007160 0.005448 +12 0.815185 0.395573 0.008055 0.006583 +12 0.643496 0.413394 0.006563 0.005448 +12 0.645137 0.395687 0.008055 0.006810 +11 0.777446 0.411124 0.006563 0.003632 +12 0.777297 0.393530 0.008652 0.006129 +11 0.752088 0.411578 0.007757 0.004540 +12 0.750447 0.394098 0.008055 0.005902 +11 0.570853 0.410556 0.006265 0.003859 +12 0.570853 0.393076 0.008652 0.006129 +12 0.375298 0.410443 0.006563 0.004540 +12 0.375000 0.391941 0.008353 0.006129 +18 0.633353 0.416459 0.008353 0.005675 +12 0.633353 0.410783 0.008353 0.005675 +17 0.490155 0.410102 0.009547 0.006129 +12 0.489857 0.393076 0.011337 0.007491 +12 0.289081 0.410102 0.010143 0.006583 +12 0.288783 0.392168 0.011337 0.007946 +17 0.605907 0.408400 0.010143 0.005902 +12 0.605161 0.391373 0.009248 0.007264 +11 0.414081 0.407832 0.007757 0.006129 +12 0.413783 0.390465 0.008353 0.007719 +18 0.239409 0.407605 0.008055 0.006129 +17 0.855907 0.395573 0.009547 0.007491 +12 0.676313 0.392963 0.011337 0.008173 +11 0.772226 0.355505 0.005668 0.004994 +11 0.415722 0.355051 0.005072 0.004086 +11 0.744332 0.352894 0.008950 0.006129 +12 0.726581 0.352894 0.009248 0.006129 +12 0.828013 0.352894 0.009845 0.006583 +11 0.602327 0.352781 0.009547 0.006356 +12 0.508652 0.352554 0.007160 0.005902 +11 0.177655 0.352440 0.008652 0.006129 +11 0.524314 0.352327 0.008652 0.006356 +11 0.312947 0.352440 0.009547 0.006583 +12 0.297882 0.352327 0.009248 0.006356 +11 0.384397 0.352100 0.009248 0.006356 +12 0.343825 0.301476 0.009845 0.006356 +17 0.603819 0.301589 0.010740 0.008400 +11 0.774612 0.294438 0.008652 0.005902 +11 0.712411 0.294325 0.009547 0.006129 +12 0.569660 0.291600 0.008055 0.006583 +17 0.828759 0.288876 0.010740 0.007491 +12 0.553699 0.287855 0.009547 0.007264 +11 0.522673 0.286493 0.007160 0.006356 +12 0.492989 0.283768 0.008055 0.006810 +17 0.386038 0.282406 0.009547 0.007719 +12 0.890215 0.247219 0.009547 0.006810 +12 0.826969 0.246879 0.007757 0.006129 +12 0.602774 0.246198 0.008652 0.006583 +12 0.385292 0.245289 0.008055 0.006129 +12 0.176014 0.244722 0.007160 0.005902 +13 0.462709 0.243473 0.004773 0.004767 +12 0.358294 0.241771 0.004773 0.004540 +12 0.664827 0.241544 0.009248 0.005902 +12 0.553550 0.240749 0.008652 0.006583 +12 0.448240 0.240409 0.008055 0.006356 +13 0.344272 0.240068 0.007160 0.006129 +12 0.774463 0.239274 0.008353 0.005448 +12 0.238514 0.239728 0.007458 0.006356 +12 0.858294 0.236776 0.007757 0.005902 +12 0.207936 0.234733 0.005967 0.005902 +12 0.312202 0.234733 0.008652 0.006356 +12 0.744779 0.234506 0.008652 0.006356 +12 0.633801 0.233939 0.009248 0.006129 +12 0.523717 0.233144 0.008055 0.005902 +13 0.418407 0.232463 0.009248 0.005902 +12 0.073091 0.237798 0.004773 0.022928 +12 0.712112 0.228036 0.008950 0.006129 +12 0.492840 0.227923 0.008353 0.007719 +12 0.282667 0.226107 0.009845 0.006356 +17 0.711814 0.202157 0.008950 0.007491 +17 0.712560 0.189557 0.010442 0.005448 +17 0.712560 0.195006 0.010442 0.005448 +17 0.492691 0.201930 0.011038 0.007491 +17 0.603222 0.201703 0.010740 0.007491 +17 0.603669 0.188309 0.008652 0.004313 +17 0.283413 0.200908 0.011933 0.007719 +11 0.283264 0.190465 0.009845 0.006810 +17 0.385889 0.200568 0.011635 0.007491 +12 0.385442 0.187060 0.011337 0.006810 +17 0.177357 0.200795 0.010442 0.007946 +17 0.177357 0.190125 0.009248 0.007491 +12 0.073091 0.201930 0.004773 0.012486 +12 0.097703 0.193076 0.005072 0.003405 +17 0.828311 0.191260 0.011635 0.006583 +17 0.828311 0.197843 0.011635 0.006583 +12 0.089946 0.150170 0.005072 0.005675 +12 0.604863 0.144722 0.009845 0.006129 +11 0.345764 0.142679 0.007757 0.003405 +11 0.711814 0.137684 0.008950 0.006129 +12 0.096957 0.136549 0.004773 0.003859 +11 0.775060 0.137457 0.008950 0.006129 +13 0.072792 0.137684 0.004773 0.007491 +13 0.072942 0.111010 0.003878 0.007264 +12 0.571748 0.134506 0.006265 0.005675 +12 0.828461 0.132917 0.009547 0.007037 +12 0.554893 0.131555 0.007160 0.006129 +11 0.524761 0.128604 0.007160 0.005675 +12 0.494481 0.126107 0.006862 0.006129 +17 0.387082 0.124858 0.010442 0.007719 +17 0.829206 0.100795 0.011635 0.007264 +17 0.829206 0.082293 0.010442 0.007491 +17 0.386784 0.093417 0.009845 0.006583 +12 0.387232 0.075596 0.010740 0.007264 +12 0.791468 0.090125 0.007757 0.005902 +12 0.790424 0.071737 0.008055 0.005448 +12 0.775805 0.087401 0.006265 0.005902 +12 0.776104 0.069012 0.009248 0.006356 +12 0.492989 0.086947 0.006265 0.005448 +12 0.492840 0.067877 0.008353 0.006356 +11 0.553699 0.086947 0.007160 0.005902 +12 0.553103 0.067764 0.008353 0.006583 +12 0.071897 0.086152 0.003580 0.005221 +11 0.745227 0.084904 0.008353 0.004086 +12 0.744033 0.066288 0.007757 0.005902 +12 0.360680 0.083428 0.006563 0.004767 +12 0.359785 0.064245 0.008353 0.006356 +12 0.093079 0.083087 0.007160 0.005902 +12 0.711814 0.082406 0.005967 0.005448 +12 0.711068 0.064359 0.008055 0.006583 +12 0.345465 0.081044 0.006563 0.004994 +12 0.345018 0.061862 0.008652 0.006583 +11 0.314141 0.077980 0.007757 0.004767 +12 0.313693 0.059478 0.008055 0.006356 +11 0.282965 0.074915 0.007458 0.006356 +12 0.282667 0.056754 0.007458 0.007264 +17 0.178103 0.073893 0.011337 0.006583 +12 0.177058 0.055392 0.010442 0.008627 +12 0.602774 0.063337 0.008652 0.008627 +18 0.922434 0.037344 0.010740 0.006129 +3 0.737918 0.677526 0.012828 0.023383 +3 0.276402 0.410556 0.008055 0.020204 +4 0.619779 0.477299 0.010442 0.015664 +4 0.593228 0.389898 0.010442 0.017026 +3 0.148717 0.183995 0.016408 0.025199 +4 0.839946 0.522701 0.009248 0.016572 +3 0.501641 0.471510 0.008055 0.020431 +3 0.301760 0.471623 0.008055 0.020658 +4 0.403192 0.390125 0.009845 0.017026 +3 0.579803 0.684109 0.008055 0.017934 +4 0.276402 0.390806 0.006862 0.010670 +3 0.276700 0.567877 0.007458 0.020658 +3 0.558920 0.513621 0.008055 0.015664 +3 0.386486 0.633939 0.007458 0.017934 +2 0.095316 0.675369 0.018795 0.019977 +4 0.401402 0.512940 0.010442 0.016572 +3 0.663932 0.569240 0.007458 0.013848 +3 0.664230 0.392622 0.006862 0.019296 +4 0.327118 0.518615 0.009845 0.015664 +4 0.443168 0.394892 0.011038 0.016572 +2 0.095913 0.305562 0.017601 0.018615 +4 0.526104 0.478207 0.010442 0.015664 +3 0.767751 0.472531 0.008055 0.020204 +3 0.364708 0.514415 0.007458 0.018615 +4 0.427058 0.477753 0.009248 0.016118 +4 0.300268 0.514075 0.009845 0.016572 +3 0.666319 0.411010 0.008652 0.019750 +4 0.441975 0.413053 0.009845 0.015664 +4 0.402297 0.408513 0.010442 0.016572 +3 0.765662 0.406924 0.008055 0.012486 +3 0.477178 0.393076 0.007458 0.019296 +3 0.663634 0.634847 0.006862 0.018842 +5 0.186008 0.947900 0.009248 0.015664 +3 0.476283 0.517480 0.006265 0.015664 +3 0.740006 0.632804 0.008055 0.017480 +4 0.618288 0.519069 0.009845 0.015664 +1 0.094720 0.745970 0.023568 0.040409 +5 0.846808 0.456413 0.009845 0.014756 +3 0.664529 0.681385 0.006862 0.020204 +3 0.278490 0.681385 0.008055 0.018842 +4 0.475984 0.679115 0.010442 0.017480 +3 0.386784 0.679569 0.007458 0.017480 +4 0.475089 0.633031 0.010442 0.017026 +3 0.276700 0.635074 0.007458 0.017026 +3 0.355161 0.949489 0.007458 0.023837 +2 0.093228 0.580477 0.021181 0.019977 +3 0.580400 0.637344 0.007458 0.020658 +4 0.475686 0.567650 0.009248 0.017934 +5 0.842930 0.627582 0.008652 0.013848 +2 0.099493 0.938025 0.012828 0.016799 +2 0.095316 0.890806 0.017601 0.019523 +5 0.229564 0.834506 0.011038 0.016345 +2 0.099493 0.627923 0.012232 0.016799 +5 0.805937 0.558116 0.009845 0.015664 +5 0.738514 0.472758 0.014021 0.020658 +5 0.525209 0.943133 0.008652 0.012940 +4 0.708383 0.519069 0.009845 0.016118 +3 0.426462 0.568104 0.007458 0.020658 +4 0.633204 0.396368 0.010442 0.016799 +3 0.703311 0.941998 0.006862 0.016572 +3 0.705698 0.562429 0.007458 0.018388 +3 0.275507 0.514529 0.006862 0.018388 +4 0.526700 0.518842 0.009248 0.016118 +4 0.764469 0.514529 0.009845 0.017026 +3 0.595316 0.472304 0.008055 0.019296 +1 0.095018 0.792281 0.022375 0.040409 +4 0.326820 0.476390 0.009248 0.017480 +3 0.742094 0.852100 0.007458 0.014756 +4 0.727476 0.948127 0.008652 0.014302 +4 0.765513 0.558002 0.009547 0.017253 +4 0.424970 0.518388 0.009845 0.016572 +4 0.788335 0.518615 0.009845 0.016572 +3 0.402894 0.472758 0.007458 0.017934 +3 0.477476 0.411237 0.008055 0.020204 +4 0.804743 0.726788 0.009248 0.012486 +4 0.789529 0.479115 0.008652 0.012032 +5 0.148568 0.682406 0.007757 0.014529 +5 0.139916 0.672872 0.007160 0.012713 +5 0.146181 0.125539 0.010143 0.014075 +3 0.664678 0.514415 0.006563 0.017253 +4 0.759248 0.743927 0.009547 0.015891 +4 0.750298 0.734620 0.009547 0.016345 +3 0.163186 0.833598 0.006563 0.019069 +5 0.123359 0.246765 0.008055 0.014075 +3 0.149016 0.246765 0.015215 0.024064 +4 0.758055 0.789103 0.010143 0.015437 +4 0.750000 0.781385 0.009547 0.016345 +4 0.767900 0.778320 0.009547 0.016118 +5 0.121420 0.466061 0.007160 0.014075 +3 0.144391 0.464472 0.010143 0.020885 +5 0.150656 0.587968 0.007757 0.013621 +5 0.141706 0.576844 0.007757 0.012259 +3 0.713305 0.843814 0.006563 0.019523 +5 0.142900 0.514188 0.008353 0.014075 +3 0.128282 0.514188 0.008950 0.016799 +5 0.121122 0.788876 0.008353 0.014075 +5 0.130072 0.785925 0.014320 0.023610 +4 0.702566 0.792281 0.006563 0.017253 +3 0.713305 0.790919 0.006563 0.019069 +5 0.138126 0.357321 0.007757 0.013621 +1 0.074284 0.357094 0.002983 0.012713 +3 0.735084 0.738252 0.006563 0.014529 +4 0.750298 0.834279 0.008950 0.015891 +0 0.121122 0.840863 0.007160 0.012713 +5 0.128282 0.576844 0.007160 0.014983 +5 0.162888 0.197730 0.007160 0.013167 +5 0.167959 0.187287 0.008950 0.014983 +2 0.099195 0.349489 0.010442 0.015210 +5 0.129475 0.346879 0.007160 0.013621 +1 0.267601 0.474007 0.002387 0.011351 +5 0.122912 0.183882 0.008353 0.014529 +5 0.121420 0.632463 0.007757 0.014529 +5 0.148866 0.637003 0.007757 0.012713 +5 0.141408 0.626788 0.007160 0.013167 +5 0.150955 0.898751 0.007757 0.014075 +4 0.123359 0.673439 0.008652 0.017026 +5 0.132160 0.678888 0.008353 0.017026 +3 0.072643 0.187401 0.008652 0.017026 +4 0.089499 0.181271 0.008353 0.017026 +3 0.142154 0.840295 0.008652 0.017026 +5 0.148568 0.842792 0.008353 0.017026 +3 0.130221 0.241884 0.008652 0.017026 +5 0.136933 0.247560 0.008353 0.017026 +3 0.144242 0.942679 0.008652 0.017026 +5 0.150656 0.945857 0.008353 0.017026 +3 0.130519 0.938138 0.008652 0.017026 +3 0.135143 0.942225 0.008353 0.017026 +3 0.128729 0.463678 0.008652 0.017026 +5 0.135143 0.466856 0.008353 0.017026 +3 0.721510 0.834847 0.008652 0.017026 +5 0.729266 0.842338 0.008652 0.017026 +3 0.736874 0.839614 0.008353 0.017026 +3 0.145734 0.417367 0.008652 0.017026 +3 0.150358 0.417367 0.008353 0.017026 +4 0.121868 0.411464 0.008652 0.017026 +5 0.134845 0.414188 0.008353 0.017026 +3 0.141856 0.745403 0.008652 0.017026 +5 0.147076 0.746084 0.008353 0.017026 +4 0.120376 0.740182 0.008652 0.017026 +5 0.132757 0.742906 0.008353 0.017026 +3 0.142154 0.789217 0.008652 0.017026 +5 0.147971 0.791941 0.008353 0.017026 +3 0.145436 0.351078 0.008652 0.017026 +3 0.152745 0.357435 0.008353 0.017026 +4 0.715245 0.743587 0.008652 0.017026 +4 0.721062 0.741090 0.008353 0.017026 +4 0.862619 0.784563 0.008652 0.016345 +3 0.127834 0.839841 0.008652 0.017026 +5 0.133652 0.841884 0.008353 0.017026 +4 0.121868 0.892281 0.008652 0.017026 +3 0.128580 0.889103 0.008353 0.017026 +3 0.893347 0.467423 0.008652 0.016799 +4 0.088455 0.470715 0.008652 0.017026 +4 0.095018 0.467991 0.008652 0.017026 +5 0.101730 0.471850 0.008353 0.017026 +3 0.091140 0.242111 0.008652 0.016118 +4 0.101134 0.242111 0.008353 0.016118 +3 0.925119 0.924518 0.007757 0.017026 +4 0.925119 0.937457 0.007757 0.017026 +3 0.130221 0.181952 0.008652 0.017026 +5 0.136038 0.185358 0.008353 0.017026 +4 0.089350 0.419637 0.008652 0.017026 +4 0.095913 0.415551 0.008652 0.017026 +3 0.102625 0.416232 0.008353 0.017026 +3 0.721808 0.784222 0.008652 0.017026 +5 0.731653 0.789444 0.008652 0.017026 +3 0.741647 0.797843 0.008353 0.017026 +4 0.925567 0.744268 0.007458 0.017026 +3 0.925567 0.764018 0.007458 0.017026 +4 0.719123 0.886606 0.008652 0.017026 +4 0.715245 0.897049 0.008652 0.017026 +3 0.857846 0.837457 0.008652 0.016799 +4 0.862768 0.837457 0.008353 0.016799 +5 0.134696 0.893644 0.008652 0.017026 +5 0.142303 0.890692 0.008353 0.017026 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_16.jpg b/data_dataset/dvo/debug/debug_16.jpg new file mode 100644 index 0000000..583e361 Binary files /dev/null and b/data_dataset/dvo/debug/debug_16.jpg differ diff --git a/data_dataset/dvo/debug/debug_16.txt b/data_dataset/dvo/debug/debug_16.txt new file mode 100644 index 0000000..5e48f32 --- /dev/null +++ b/data_dataset/dvo/debug/debug_16.txt @@ -0,0 +1,152 @@ +8 0.865500 0.936221 0.011670 0.007503 +7 0.597397 0.939632 0.011670 0.013415 +10 0.237133 0.935312 0.010473 0.002956 +8 0.741622 0.936221 0.011670 0.007503 +10 0.234440 0.933265 0.006284 0.002501 +6 0.621335 0.937131 0.009276 0.019327 +10 0.172801 0.895748 0.006284 0.002956 +8 0.741921 0.883242 0.012268 0.007049 +7 0.597397 0.888699 0.011670 0.008868 +6 0.622232 0.884379 0.009874 0.019327 +10 0.185368 0.875739 0.006284 0.002046 +10 0.509126 0.875057 0.008677 0.002501 +10 0.511520 0.871874 0.012268 0.002501 +10 0.164722 0.871419 0.010473 0.005230 +10 0.203321 0.837767 0.008677 0.003411 +7 0.597397 0.834129 0.011670 0.013415 +8 0.741622 0.830491 0.012867 0.007049 +7 0.169808 0.830036 0.007481 0.007958 +6 0.621933 0.831401 0.009276 0.017963 +10 0.403501 0.825944 0.009276 0.005230 +10 0.264961 0.816621 0.008677 0.002046 +10 0.248205 0.816394 0.008677 0.002501 +10 0.388839 0.817076 0.007481 0.004775 +7 0.833782 0.782515 0.011670 0.007503 +9 0.879264 0.778422 0.010473 0.026603 +10 0.213495 0.773079 0.006284 0.001819 +8 0.740425 0.772055 0.011670 0.007503 +7 0.596499 0.777967 0.009874 0.008413 +6 0.621634 0.773874 0.009874 0.019327 +10 0.852633 0.765689 0.007481 0.002956 +10 0.775434 0.730218 0.006284 0.004775 +10 0.773040 0.723624 0.006284 0.003411 +10 0.220676 0.719304 0.015859 0.002046 +10 0.522890 0.718395 0.007481 0.002046 +10 0.248504 0.716576 0.008079 0.002956 +10 0.507929 0.714870 0.013465 0.003638 +9 0.779922 0.715894 0.006882 0.022510 +9 0.390634 0.728058 0.013465 0.022738 +10 0.755087 0.712483 0.007481 0.002956 +10 0.535458 0.712256 0.023040 0.005230 +10 0.858917 0.646771 0.011670 0.005230 +8 0.719180 0.646771 0.011071 0.007049 +8 0.580341 0.646771 0.012268 0.007049 +10 0.192250 0.646771 0.011670 0.005230 +8 0.447487 0.646317 0.012268 0.007049 +8 0.312537 0.646317 0.011670 0.007049 +10 0.665919 0.602433 0.006284 0.003865 +10 0.529473 0.601523 0.008677 0.003865 +10 0.451077 0.601296 0.007481 0.003411 +7 0.693447 0.596749 0.012268 0.014325 +10 0.406792 0.581969 0.007481 0.002046 +10 0.552513 0.577194 0.022442 0.004320 +10 0.274536 0.548545 0.006284 0.003411 +10 0.620138 0.543770 0.009276 0.004775 +7 0.173100 0.543543 0.011670 0.013415 +10 0.144973 0.539222 0.006882 0.002956 +10 0.549820 0.535584 0.006284 0.002046 +9 0.331388 0.543543 0.008677 0.025239 +9 0.310144 0.542633 0.009276 0.023420 +10 0.292490 0.529673 0.013465 0.004775 +10 0.233543 0.524670 0.008079 0.003865 +10 0.217684 0.524443 0.020646 0.004320 +7 0.595901 0.490791 0.008677 0.014325 +9 0.459755 0.500796 0.011670 0.034334 +7 0.174895 0.486244 0.011670 0.013415 +10 0.860712 0.481924 0.011670 0.004775 +7 0.693447 0.485334 0.011071 0.002956 +6 0.731149 0.483288 0.009874 0.018417 +10 0.151257 0.443952 0.013465 0.003411 +10 0.749102 0.442360 0.007481 0.002956 +10 0.304758 0.442133 0.006882 0.003411 +9 0.908588 0.436903 0.008079 0.020236 +10 0.909485 0.429172 0.006284 0.002956 +10 0.836475 0.423943 0.012268 0.002501 +10 0.613256 0.420077 0.025434 0.003865 +10 0.212298 0.417349 0.006284 0.002046 +10 0.647666 0.356639 0.011670 0.005230 +10 0.546230 0.356639 0.011071 0.005230 +7 0.440305 0.356639 0.011071 0.007049 +7 0.324207 0.356639 0.011071 0.007049 +8 0.744614 0.356185 0.011670 0.007049 +8 0.859515 0.355957 0.011670 0.007503 +10 0.353531 0.324807 0.006284 0.004320 +10 0.546529 0.318668 0.006882 0.002956 +10 0.539647 0.317303 0.006284 0.002956 +7 0.304159 0.313211 0.014063 0.018417 +9 0.887343 0.319804 0.005087 0.024329 +10 0.779922 0.299795 0.006882 0.002501 +9 0.732346 0.305252 0.007481 0.026148 +10 0.404399 0.260687 0.006284 0.004320 +10 0.456463 0.249318 0.008677 0.005230 +10 0.346050 0.249318 0.006882 0.005230 +10 0.857421 0.248863 0.012268 0.005230 +7 0.737133 0.249318 0.011071 0.007958 +6 0.752095 0.251592 0.009874 0.017053 +7 0.554608 0.197249 0.009874 0.008413 +7 0.737133 0.195202 0.012268 0.013415 +7 0.655147 0.195430 0.012268 0.013870 +8 0.438211 0.192019 0.011670 0.007049 +10 0.324506 0.192019 0.011670 0.005230 +8 0.260473 0.194975 0.008079 0.022965 +10 0.864901 0.155639 0.012867 0.005230 +8 0.769449 0.141996 0.012268 0.017963 +9 0.256882 0.143815 0.009276 0.023420 +10 0.324806 0.140405 0.012268 0.004775 +10 0.425344 0.134038 0.008677 0.002956 +10 0.527379 0.078104 0.006882 0.003865 +11 0.518552 0.214870 0.009575 0.007276 +12 0.476810 0.066053 0.006284 0.022055 +5 0.109964 0.543770 0.020646 0.022965 +0 0.212298 0.252046 0.023040 0.024329 +0 0.090515 0.543315 0.012867 0.023874 +0 0.095601 0.771601 0.021843 0.033879 +5 0.237133 0.252501 0.008079 0.016144 +2 0.916367 0.305935 0.014063 0.013870 +2 0.092011 0.648136 0.015859 0.018872 +2 0.207510 0.358686 0.018253 0.019327 +0 0.096200 0.832083 0.023040 0.023874 +5 0.236236 0.312528 0.007481 0.015234 +2 0.209306 0.309573 0.019449 0.019327 +5 0.115949 0.599932 0.007481 0.013415 +3 0.342160 0.502842 0.006284 0.012960 +5 0.215889 0.731355 0.007481 0.011596 +3 0.822113 0.886198 0.006284 0.011141 +3 0.470527 0.505116 0.006882 0.016598 +2 0.092609 0.884152 0.019449 0.018872 +2 0.092908 0.595384 0.016457 0.018872 +4 0.275733 0.317758 0.015859 0.024784 +3 0.470227 0.546271 0.007481 0.016144 +5 0.118941 0.939404 0.007481 0.012960 +3 0.703920 0.712256 0.008079 0.020691 +5 0.118941 0.833220 0.008677 0.015234 +3 0.517504 0.731355 0.006284 0.019782 +4 0.292789 0.603115 0.006882 0.012506 +5 0.117445 0.719986 0.008079 0.017053 +4 0.211999 0.202933 0.007481 0.015689 +5 0.219031 0.202933 0.007181 0.015689 +4 0.206014 0.197704 0.007481 0.015689 +4 0.212298 0.192929 0.007481 0.015689 +4 0.218432 0.191792 0.007181 0.015689 +5 0.096948 0.934402 0.007181 0.015689 +4 0.206314 0.143588 0.007481 0.015689 +4 0.213495 0.140632 0.007481 0.015689 +5 0.220826 0.139950 0.007181 0.015689 +4 0.088420 0.724307 0.007481 0.015689 +4 0.095302 0.720668 0.007481 0.015689 +5 0.102334 0.725216 0.007181 0.015689 +4 0.087223 0.487381 0.007481 0.015689 +4 0.094704 0.483060 0.007481 0.015689 +4 0.087822 0.433492 0.007481 0.015689 +4 0.095003 0.428945 0.007481 0.015689 +5 0.102334 0.418713 0.007181 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_17.jpg b/data_dataset/dvo/debug/debug_17.jpg new file mode 100644 index 0000000..ddc2f9b Binary files /dev/null and b/data_dataset/dvo/debug/debug_17.jpg differ diff --git a/data_dataset/dvo/debug/debug_17.txt b/data_dataset/dvo/debug/debug_17.txt new file mode 100644 index 0000000..bf68805 --- /dev/null +++ b/data_dataset/dvo/debug/debug_17.txt @@ -0,0 +1,765 @@ +10 0.196888 0.948613 0.011370 0.005002 +10 0.342609 0.947249 0.011969 0.005002 +8 0.483244 0.945998 0.011969 0.006594 +7 0.660383 0.948045 0.011969 0.012506 +8 0.595452 0.945089 0.011370 0.006594 +9 0.505984 0.899500 0.007181 0.020919 +9 0.457810 0.900182 0.008977 0.015916 +10 0.539497 0.893361 0.005984 0.002729 +10 0.708259 0.892678 0.005984 0.002274 +9 0.674446 0.899727 0.008977 0.017735 +10 0.398265 0.888813 0.005984 0.002729 +8 0.195392 0.842542 0.011969 0.007049 +7 0.347995 0.844361 0.011969 0.013415 +7 0.492220 0.843224 0.011969 0.012960 +7 0.596948 0.842315 0.011969 0.012960 +9 0.628965 0.847658 0.008977 0.035016 +9 0.614602 0.847658 0.007780 0.035016 +10 0.693297 0.828558 0.010772 0.002274 +10 0.723818 0.828558 0.005984 0.004093 +10 0.836326 0.826967 0.007181 0.003638 +10 0.534111 0.826967 0.014363 0.004548 +10 0.851885 0.826739 0.005984 0.005002 +10 0.305506 0.814688 0.008378 0.001819 +10 0.223220 0.813779 0.010174 0.003638 +10 0.142430 0.812756 0.006583 0.002046 +10 0.241472 0.810255 0.009575 0.001592 +10 0.367145 0.809686 0.047876 0.003638 +10 0.736385 0.808322 0.010772 0.001819 +10 0.701077 0.803092 0.007181 0.003638 +9 0.291741 0.797635 0.009575 0.022738 +9 0.325554 0.799227 0.005386 0.019554 +7 0.818671 0.790359 0.005386 0.015462 +10 0.435966 0.762847 0.005984 0.001819 +10 0.295332 0.762847 0.011969 0.001819 +10 0.157092 0.760232 0.005984 0.001592 +10 0.143028 0.759663 0.007780 0.004548 +10 0.678935 0.755684 0.005984 0.001592 +10 0.578396 0.755798 0.005984 0.003183 +8 0.189408 0.701342 0.011969 0.006594 +10 0.330640 0.700318 0.011969 0.005002 +8 0.595153 0.699523 0.011969 0.006594 +8 0.461999 0.699750 0.012567 0.007049 +10 0.860563 0.698954 0.012567 0.005002 +8 0.725913 0.698613 0.010174 0.006594 +10 0.848893 0.667349 0.011969 0.001819 +10 0.691502 0.666098 0.009575 0.002501 +10 0.552813 0.665985 0.014662 0.004548 +7 0.311490 0.666326 0.011969 0.012960 +7 0.437463 0.664507 0.011370 0.009322 +7 0.632555 0.665643 0.011370 0.012506 +10 0.709455 0.661437 0.009575 0.004548 +10 0.343507 0.627217 0.006583 0.002046 +9 0.492519 0.619486 0.007780 0.024784 +7 0.440156 0.616985 0.011969 0.012506 +7 0.312687 0.617212 0.011969 0.012960 +7 0.841412 0.616075 0.011370 0.013415 +6 0.868043 0.614256 0.009575 0.017963 +9 0.339019 0.615734 0.009575 0.020919 +9 0.744764 0.607208 0.010772 0.021146 +10 0.699880 0.590950 0.011969 0.001819 +10 0.683124 0.590950 0.009575 0.001819 +10 0.683124 0.588449 0.014363 0.002274 +7 0.218731 0.580719 0.009575 0.017735 +10 0.892579 0.582992 0.005984 0.003183 +10 0.559545 0.572533 0.006583 0.003183 +7 0.370138 0.572419 0.011969 0.013415 +10 0.575105 0.567303 0.007780 0.002729 +7 0.500000 0.571737 0.011969 0.012960 +10 0.294734 0.563665 0.005984 0.001819 +9 0.284859 0.569918 0.005386 0.019327 +10 0.763016 0.562983 0.006583 0.004093 +9 0.320168 0.571737 0.010174 0.022965 +10 0.425793 0.533652 0.007181 0.001819 +10 0.301915 0.533652 0.005984 0.001819 +10 0.484440 0.533197 0.019150 0.002729 +10 0.640934 0.525466 0.007780 0.002729 +10 0.842908 0.525921 0.008378 0.004548 +9 0.409336 0.519100 0.008977 0.017735 +9 0.368342 0.518417 0.007181 0.020919 +9 0.436266 0.516371 0.004189 0.023192 +8 0.861460 0.471464 0.011969 0.007958 +10 0.723818 0.471123 0.011969 0.005002 +10 0.595153 0.471123 0.011969 0.005002 +10 0.450928 0.471123 0.011969 0.005002 +8 0.180431 0.470782 0.011969 0.006594 +8 0.310892 0.470555 0.011969 0.007049 +9 0.699581 0.448840 0.007780 0.012733 +10 0.255835 0.443838 0.007181 0.003183 +10 0.190904 0.439745 0.006583 0.003183 +7 0.623579 0.439177 0.011370 0.013415 +7 0.457510 0.439177 0.013166 0.013415 +7 0.318671 0.439177 0.011969 0.012506 +7 0.765111 0.438950 0.011969 0.013870 +9 0.804309 0.428263 0.004189 0.024329 +10 0.171753 0.420191 0.006583 0.002274 +10 0.162478 0.420646 0.007181 0.004093 +10 0.350987 0.399727 0.005984 0.004093 +7 0.625374 0.390291 0.012567 0.012960 +7 0.766008 0.390064 0.011370 0.013415 +7 0.330341 0.389154 0.013764 0.022510 +10 0.299521 0.376876 0.008378 0.002501 +10 0.436864 0.376762 0.008977 0.002729 +10 0.266906 0.374943 0.008977 0.004548 +10 0.408737 0.374716 0.012567 0.005002 +10 0.330042 0.362665 0.007181 0.001819 +10 0.358468 0.362892 0.013764 0.005002 +10 0.330042 0.360164 0.009575 0.002274 +10 0.808498 0.350159 0.008977 0.003183 +7 0.766308 0.345498 0.011969 0.012506 +7 0.625075 0.345725 0.011969 0.012960 +9 0.573609 0.347999 0.010772 0.023874 +10 0.742370 0.311733 0.013166 0.001819 +10 0.604129 0.311733 0.009575 0.001819 +10 0.463495 0.311733 0.010772 0.001819 +10 0.604129 0.309459 0.005984 0.001819 +10 0.764512 0.309231 0.008378 0.002274 +10 0.756732 0.310368 0.015560 0.004548 +10 0.461700 0.309686 0.016756 0.004093 +10 0.628965 0.310141 0.011969 0.001819 +10 0.672950 0.307412 0.005984 0.003183 +10 0.603531 0.306276 0.005984 0.001819 +10 0.179234 0.309004 0.006583 0.002274 +9 0.594255 0.297635 0.006583 0.015916 +10 0.784560 0.291724 0.008977 0.002729 +9 0.736385 0.297863 0.009575 0.016371 +10 0.642130 0.291496 0.006583 0.002274 +9 0.531119 0.297863 0.005984 0.016371 +10 0.456314 0.291496 0.007181 0.003183 +9 0.316876 0.297408 0.008378 0.018190 +10 0.255236 0.291041 0.008378 0.003183 +10 0.142729 0.289222 0.005984 0.003183 +8 0.727708 0.245907 0.012567 0.007049 +8 0.595153 0.246135 0.010772 0.007503 +8 0.858169 0.245907 0.010174 0.007049 +8 0.459306 0.246135 0.009575 0.007503 +10 0.200479 0.245566 0.012567 0.005002 +8 0.328845 0.245907 0.010772 0.007958 +9 0.864752 0.229081 0.005386 0.010687 +10 0.598743 0.229650 0.005984 0.005002 +10 0.774686 0.219873 0.015560 0.002729 +10 0.619689 0.211687 0.009575 0.003638 +9 0.872232 0.214984 0.009575 0.013415 +7 0.841712 0.213165 0.011969 0.013415 +7 0.473070 0.212710 0.011969 0.013415 +7 0.339019 0.212028 0.011969 0.012960 +7 0.199282 0.211801 0.012567 0.013415 +9 0.810592 0.212938 0.009575 0.022965 +9 0.603830 0.199750 0.010174 0.028422 +10 0.502394 0.190541 0.005984 0.003183 +10 0.770796 0.176216 0.008977 0.002729 +10 0.683722 0.173943 0.010772 0.002729 +10 0.613106 0.168940 0.005984 0.001819 +10 0.562537 0.164507 0.013764 0.003865 +7 0.842310 0.162460 0.011969 0.012960 +10 0.739976 0.158254 0.007181 0.002274 +10 0.767804 0.158026 0.006583 0.002729 +10 0.786355 0.153479 0.007780 0.002729 +10 0.726511 0.152115 0.006583 0.003638 +7 0.626272 0.154161 0.008378 0.016371 +10 0.608318 0.151887 0.005984 0.003183 +10 0.547277 0.152115 0.005984 0.003638 +8 0.229204 0.157344 0.008977 0.016371 +9 0.169360 0.157117 0.008977 0.016826 +9 0.140634 0.157117 0.008977 0.016826 +9 0.179533 0.154729 0.010174 0.022055 +9 0.582885 0.151205 0.010174 0.022283 +9 0.643028 0.151205 0.008378 0.022283 +9 0.427887 0.152342 0.010174 0.021828 +9 0.353381 0.152115 0.010772 0.021373 +10 0.280072 0.123579 0.006583 0.002046 +7 0.701376 0.122442 0.013764 0.008413 +10 0.618941 0.121191 0.012867 0.004548 +10 0.342908 0.120737 0.010174 0.003638 +10 0.354279 0.119600 0.008977 0.004093 +10 0.831538 0.112324 0.005984 0.002274 +9 0.786056 0.119714 0.009575 0.020236 +9 0.501795 0.121078 0.011969 0.023874 +9 0.229503 0.119031 0.011969 0.022510 +10 0.140335 0.108913 0.007181 0.002729 +10 0.552065 0.118236 0.007780 0.001819 +9 0.642579 0.110846 0.005685 0.022510 +10 0.896469 0.101864 0.007780 0.003183 +10 0.456912 0.075716 0.011969 0.002729 +10 0.431777 0.072874 0.008378 0.001592 +10 0.610712 0.074125 0.017953 0.005002 +10 0.169060 0.072760 0.008378 0.003183 +9 0.872232 0.062869 0.009575 0.022055 +9 0.811490 0.061164 0.007780 0.018645 +9 0.437463 0.059118 0.006583 0.030014 +18 0.732196 0.949068 0.007181 0.002274 +18 0.710952 0.949181 0.011370 0.002501 +13 0.724865 0.933038 0.008079 0.005684 +12 0.690604 0.933265 0.007780 0.006139 +12 0.756284 0.932583 0.008677 0.005684 +12 0.903202 0.932356 0.009276 0.006139 +12 0.872382 0.932697 0.008677 0.006821 +13 0.855027 0.929513 0.009874 0.006821 +13 0.837971 0.928263 0.009276 0.006139 +13 0.809246 0.911437 0.010473 0.006139 +12 0.808199 0.878354 0.008977 0.007276 +12 0.808049 0.924511 0.008079 0.006821 +13 0.772890 0.904502 0.007780 0.005912 +13 0.757780 0.902115 0.009276 0.006594 +13 0.741921 0.899955 0.008677 0.005457 +12 0.524087 0.898704 0.009874 0.006139 +13 0.571065 0.898704 0.010473 0.007049 +13 0.725763 0.897567 0.008677 0.005684 +13 0.661131 0.897794 0.008677 0.006139 +13 0.459156 0.896430 0.008079 0.005230 +13 0.492669 0.896317 0.006882 0.005912 +13 0.539348 0.895748 0.008079 0.005684 +13 0.675793 0.894952 0.008079 0.005002 +13 0.598594 0.895521 0.010473 0.006139 +13 0.349042 0.895521 0.010473 0.006139 +13 0.315081 0.895634 0.009575 0.006367 +13 0.708109 0.894839 0.008079 0.005684 +13 0.428336 0.894611 0.009874 0.006139 +13 0.381658 0.894725 0.007481 0.006367 +13 0.474716 0.894043 0.008079 0.005912 +13 0.174895 0.894156 0.009276 0.006139 +13 0.508827 0.893702 0.010473 0.006139 +13 0.284560 0.893702 0.009575 0.006139 +13 0.239976 0.893702 0.008977 0.006139 +13 0.208408 0.893815 0.009276 0.006367 +13 0.330341 0.893020 0.008977 0.005684 +13 0.693447 0.892337 0.008677 0.006139 +13 0.365051 0.892337 0.009575 0.006139 +13 0.397367 0.891655 0.007780 0.005684 +13 0.141831 0.891996 0.009575 0.006367 +13 0.441801 0.891428 0.009276 0.006139 +13 0.298624 0.890746 0.008977 0.005684 +13 0.190156 0.890973 0.009276 0.006139 +13 0.254039 0.890746 0.008378 0.006594 +12 0.224267 0.890746 0.009276 0.006594 +13 0.160533 0.888699 0.009276 0.007049 +12 0.872232 0.886767 0.008977 0.005912 +12 0.901706 0.886198 0.009874 0.006594 +13 0.853082 0.885061 0.009575 0.006139 +13 0.837074 0.881878 0.009874 0.006139 +17 0.284710 0.863461 0.009874 0.006594 +11 0.283812 0.845725 0.010473 0.006594 +13 0.382107 0.862551 0.008378 0.006594 +13 0.380162 0.844475 0.009276 0.005912 +11 0.428336 0.862324 0.009874 0.007049 +11 0.427738 0.844134 0.009874 0.006139 +13 0.397516 0.862324 0.009276 0.007049 +13 0.397217 0.844475 0.008677 0.005912 +13 0.522890 0.861869 0.009874 0.007049 +13 0.522591 0.843224 0.009276 0.006139 +11 0.568671 0.861187 0.009276 0.006594 +11 0.568971 0.842769 0.009874 0.006139 +13 0.539348 0.861414 0.010473 0.007049 +13 0.538450 0.843224 0.009874 0.006139 +13 0.627469 0.861073 0.009575 0.006821 +13 0.626122 0.842542 0.009276 0.005684 +13 0.612208 0.860846 0.008977 0.006821 +13 0.611909 0.842656 0.009575 0.005912 +13 0.757181 0.860391 0.009276 0.006821 +13 0.756583 0.842087 0.010473 0.006594 +12 0.725613 0.860391 0.009575 0.006821 +12 0.724865 0.842315 0.010473 0.006139 +12 0.661430 0.860391 0.009276 0.006821 +12 0.660682 0.842315 0.010174 0.006139 +13 0.808049 0.859936 0.008079 0.006821 +12 0.807451 0.841974 0.009874 0.006367 +12 0.692400 0.859823 0.010174 0.006594 +12 0.692250 0.842315 0.009874 0.006139 +12 0.822861 0.842315 0.010174 0.006139 +13 0.853232 0.842087 0.009874 0.006594 +13 0.838270 0.842087 0.009874 0.006594 +13 0.837672 0.824238 0.008677 0.005457 +13 0.837672 0.829695 0.008677 0.005457 +13 0.836774 0.787062 0.008677 0.005684 +13 0.852783 0.823897 0.008977 0.005684 +13 0.852783 0.829582 0.008977 0.005684 +13 0.852932 0.787176 0.009276 0.005912 +13 0.822262 0.823784 0.008977 0.005457 +12 0.822262 0.829241 0.008977 0.005457 +13 0.821664 0.787176 0.008378 0.005912 +18 0.877469 0.809118 0.012867 0.005230 +18 0.877469 0.814347 0.012867 0.005230 +11 0.865500 0.800250 0.009276 0.006139 +11 0.865500 0.806389 0.009276 0.006139 +13 0.872531 0.787062 0.008378 0.005684 +13 0.867145 0.855503 0.012567 0.007958 +13 0.872232 0.841860 0.009575 0.006139 +18 0.871783 0.824466 0.008677 0.005002 +11 0.871783 0.829468 0.008677 0.005002 +13 0.140485 0.801160 0.008677 0.005684 +13 0.189408 0.798317 0.008378 0.006367 +13 0.159037 0.798431 0.009874 0.006594 +13 0.223220 0.797863 0.008378 0.006367 +13 0.283214 0.796839 0.008079 0.006139 +13 0.253591 0.797181 0.008677 0.006821 +13 0.173998 0.795589 0.009874 0.006367 +13 0.238929 0.795134 0.009276 0.006367 +13 0.208408 0.795020 0.009276 0.006139 +13 0.299072 0.794566 0.008677 0.006139 +13 0.330940 0.793884 0.010174 0.005684 +13 0.364004 0.793656 0.009874 0.006139 +13 0.427738 0.793201 0.009874 0.006139 +13 0.397367 0.793088 0.008378 0.006821 +12 0.348594 0.791610 0.009575 0.005684 +13 0.314931 0.791610 0.009276 0.005684 +13 0.443597 0.791155 0.009276 0.005684 +13 0.381508 0.791269 0.009575 0.005912 +13 0.474865 0.790928 0.009575 0.006139 +13 0.539048 0.790246 0.008677 0.005684 +13 0.507331 0.790473 0.009874 0.006139 +13 0.677439 0.789563 0.009575 0.005230 +13 0.740425 0.789563 0.010473 0.006139 +13 0.707510 0.789450 0.009276 0.005912 +13 0.597098 0.789563 0.011071 0.007049 +13 0.492220 0.788085 0.008378 0.005912 +13 0.459007 0.787858 0.008977 0.006367 +13 0.523489 0.787517 0.008677 0.006594 +13 0.659934 0.786835 0.008677 0.006139 +12 0.570168 0.787290 0.011071 0.007049 +13 0.757181 0.786380 0.009276 0.006139 +13 0.725165 0.786153 0.009874 0.005684 +13 0.692400 0.786153 0.009575 0.005684 +13 0.773339 0.784334 0.009276 0.006594 +13 0.805506 0.781605 0.008977 0.005684 +12 0.660233 0.759550 0.004488 0.003411 +12 0.661430 0.732833 0.008079 0.006367 +13 0.801466 0.753979 0.011670 0.007731 +12 0.805955 0.732833 0.011071 0.004548 +13 0.140485 0.746248 0.008677 0.005912 +13 0.156493 0.743861 0.008977 0.005684 +13 0.189258 0.743179 0.009276 0.006139 +13 0.253890 0.742724 0.009276 0.006139 +13 0.223668 0.742951 0.009874 0.006594 +13 0.282914 0.741814 0.008677 0.006139 +13 0.172651 0.740564 0.008977 0.006367 +13 0.209306 0.740223 0.009874 0.007503 +13 0.396918 0.739313 0.009276 0.006594 +13 0.365799 0.739313 0.008079 0.006594 +13 0.331538 0.739541 0.010174 0.007049 +13 0.298474 0.739427 0.009874 0.006821 +13 0.237732 0.739654 0.008079 0.007276 +13 0.426092 0.738745 0.008977 0.007276 +13 0.315380 0.736585 0.009575 0.005684 +13 0.537852 0.736357 0.009874 0.006139 +13 0.473818 0.736244 0.009874 0.005912 +13 0.508229 0.735675 0.009276 0.005684 +13 0.442250 0.736016 0.009575 0.006367 +13 0.381658 0.735903 0.009874 0.006139 +13 0.349042 0.735675 0.008677 0.005684 +12 0.739078 0.734538 0.009575 0.006139 +13 0.705865 0.734425 0.008977 0.005912 +13 0.675045 0.734538 0.008977 0.006139 +13 0.596200 0.734993 0.010473 0.007049 +13 0.490425 0.733856 0.008977 0.006594 +12 0.459306 0.733743 0.008378 0.006367 +13 0.522591 0.733174 0.008079 0.007049 +13 0.757181 0.731924 0.008079 0.006367 +12 0.722621 0.732037 0.008378 0.006594 +13 0.691652 0.732265 0.009874 0.007049 +13 0.568821 0.732492 0.010772 0.007503 +18 0.773040 0.728286 0.008677 0.005457 +18 0.805955 0.728286 0.011071 0.004548 +18 0.805955 0.723738 0.011071 0.004548 +12 0.227858 0.657003 0.009874 0.006594 +12 0.735189 0.652456 0.008378 0.006594 +12 0.605476 0.651660 0.008677 0.005912 +12 0.764063 0.651319 0.008677 0.006139 +12 0.499252 0.651091 0.008079 0.005684 +12 0.469330 0.651319 0.009276 0.006139 +12 0.410682 0.651319 0.009276 0.006139 +13 0.811191 0.650637 0.009575 0.006594 +11 0.141233 0.649955 0.008977 0.007049 +12 0.198833 0.649159 0.009276 0.006367 +13 0.589767 0.649045 0.009575 0.007049 +12 0.371185 0.648818 0.009276 0.006594 +12 0.281269 0.649045 0.009575 0.007049 +12 0.720227 0.648590 0.009575 0.007049 +12 0.341412 0.648136 0.009575 0.007049 +13 0.869988 0.647453 0.011071 0.007503 +13 0.574955 0.646771 0.009874 0.006139 +13 0.703920 0.646317 0.008079 0.006139 +12 0.678636 0.643474 0.010174 0.006821 +12 0.546230 0.642678 0.008677 0.007049 +12 0.229054 0.612892 0.009874 0.006594 +12 0.498654 0.611983 0.008677 0.005684 +12 0.410981 0.612210 0.009874 0.006139 +12 0.470676 0.611983 0.010174 0.006594 +11 0.141682 0.610846 0.007481 0.005230 +12 0.199132 0.610505 0.008677 0.005457 +12 0.281418 0.610050 0.008677 0.005912 +12 0.370886 0.609709 0.008677 0.005684 +12 0.340365 0.609595 0.007481 0.005457 +11 0.546080 0.604934 0.009575 0.006139 +12 0.811490 0.603797 0.009575 0.005684 +13 0.734440 0.604025 0.009276 0.006139 +11 0.677887 0.604025 0.009874 0.006139 +13 0.605177 0.604025 0.009276 0.006139 +12 0.649461 0.602888 0.009276 0.005684 +13 0.780221 0.602433 0.009874 0.006594 +12 0.618642 0.601978 0.008677 0.005684 +13 0.748803 0.601069 0.009276 0.005684 +13 0.764662 0.599477 0.008677 0.006139 +12 0.634351 0.598909 0.008977 0.005912 +13 0.181478 0.581173 0.009276 0.005912 +12 0.153950 0.581060 0.009874 0.005684 +13 0.325404 0.580150 0.009874 0.005684 +13 0.296679 0.580150 0.009874 0.005684 +13 0.454518 0.577649 0.009575 0.006139 +18 0.449731 0.560709 0.005386 0.003183 +13 0.425643 0.577649 0.009276 0.006139 +12 0.433124 0.560709 0.005087 0.003183 +18 0.168612 0.576057 0.009874 0.005684 +13 0.141233 0.575830 0.008977 0.005230 +13 0.282017 0.575603 0.009276 0.005684 +12 0.340814 0.575375 0.009575 0.006139 +13 0.312837 0.575375 0.009874 0.006139 +12 0.690305 0.574693 0.009575 0.005684 +13 0.588121 0.574693 0.009276 0.005684 +13 0.559545 0.574693 0.007780 0.005684 +13 0.720078 0.574466 0.009276 0.006139 +12 0.469479 0.572533 0.009575 0.005912 +13 0.441203 0.572647 0.009276 0.006139 +13 0.410383 0.572647 0.009874 0.006139 +13 0.244614 0.572874 0.008677 0.006594 +13 0.229354 0.570600 0.007481 0.005684 +12 0.677588 0.569918 0.009276 0.006139 +13 0.575105 0.569691 0.007780 0.005684 +13 0.547576 0.569691 0.009575 0.005684 +13 0.706014 0.569350 0.009874 0.005912 +12 0.199132 0.568327 0.009276 0.005684 +13 0.883752 0.566962 0.009874 0.005684 +13 0.854728 0.566735 0.009276 0.006139 +13 0.779025 0.566735 0.009874 0.006139 +13 0.648564 0.566735 0.009874 0.006139 +13 0.912328 0.566508 0.009575 0.006594 +13 0.897516 0.564461 0.008677 0.005230 +13 0.839168 0.564461 0.008079 0.005230 +13 0.764363 0.564461 0.009276 0.005230 +13 0.631209 0.564461 0.007481 0.005230 +13 0.869689 0.564347 0.008079 0.005912 +12 0.811341 0.561960 0.009874 0.005684 +13 0.606074 0.562187 0.009874 0.006139 +12 0.735787 0.561733 0.009575 0.006139 +18 0.221125 0.527854 0.005386 0.002956 +13 0.141532 0.518076 0.010174 0.006139 +12 0.280820 0.517735 0.010473 0.006367 +13 0.198683 0.517849 0.010174 0.006594 +13 0.385847 0.517394 0.009874 0.006594 +13 0.341712 0.517394 0.010174 0.006594 +13 0.468881 0.515121 0.008378 0.005684 +13 0.410981 0.515234 0.008677 0.005912 +13 0.356523 0.515121 0.008677 0.005684 +12 0.327050 0.515121 0.009575 0.005684 +13 0.297277 0.515234 0.008677 0.005912 +13 0.245512 0.515234 0.009276 0.005912 +13 0.215589 0.515348 0.009276 0.006139 +13 0.455117 0.513756 0.008378 0.006594 +12 0.230251 0.513074 0.009874 0.006139 +13 0.810293 0.512619 0.009575 0.006139 +13 0.732645 0.512619 0.009276 0.006139 +13 0.603381 0.512506 0.008079 0.005912 +11 0.545332 0.512619 0.009276 0.006139 +13 0.514512 0.512733 0.009874 0.006367 +13 0.370736 0.512392 0.007780 0.005684 +11 0.677588 0.512278 0.009276 0.006367 +13 0.483393 0.512165 0.008677 0.006139 +13 0.425494 0.511937 0.008378 0.005684 +13 0.312687 0.512165 0.008378 0.006139 +13 0.826451 0.510346 0.010174 0.006139 +13 0.747756 0.510346 0.008378 0.006139 +13 0.886744 0.510118 0.008677 0.006594 +13 0.855177 0.510118 0.010174 0.006594 +13 0.648414 0.510118 0.009575 0.006594 +13 0.779324 0.509777 0.009276 0.006821 +13 0.618043 0.509891 0.008677 0.007049 +13 0.499252 0.509777 0.009276 0.006821 +13 0.441203 0.509891 0.009276 0.007049 +13 0.914423 0.509209 0.008378 0.006594 +13 0.841113 0.507617 0.008977 0.006139 +13 0.901107 0.507162 0.009874 0.006139 +13 0.869689 0.507162 0.009276 0.006139 +13 0.633752 0.507049 0.009575 0.005912 +12 0.763914 0.506708 0.008977 0.006139 +12 0.071364 0.455775 0.004488 0.007049 +12 0.489228 0.449864 0.009575 0.006139 +12 0.217086 0.449864 0.009874 0.006139 +12 0.348594 0.449636 0.009575 0.006594 +12 0.595751 0.447362 0.010174 0.005684 +12 0.169808 0.444861 0.009874 0.006139 +12 0.563285 0.442360 0.009276 0.005684 +12 0.533363 0.442133 0.009276 0.005230 +11 0.396020 0.442246 0.009276 0.005457 +12 0.191951 0.441905 0.008677 0.005684 +12 0.670108 0.439859 0.009874 0.006139 +11 0.256882 0.440769 0.010473 0.007958 +12 0.702124 0.439632 0.010473 0.006594 +12 0.141981 0.432128 0.009276 0.006139 +12 0.903501 0.429400 0.008677 0.005230 +12 0.736236 0.428945 0.009276 0.006139 +11 0.872681 0.421442 0.009276 0.006594 +11 0.808348 0.420987 0.008677 0.006594 +12 0.489826 0.398704 0.009575 0.005684 +12 0.459755 0.398704 0.009276 0.005684 +12 0.349940 0.398363 0.009874 0.005912 +11 0.320616 0.397567 0.009874 0.005230 +11 0.328546 0.381537 0.005386 0.003183 +13 0.442998 0.395748 0.009276 0.006139 +13 0.303710 0.395293 0.010174 0.006139 +11 0.099791 0.396203 0.010473 0.008868 +18 0.583782 0.393020 0.006583 0.004320 +12 0.584231 0.387676 0.006882 0.005457 +13 0.427588 0.393361 0.009575 0.005912 +13 0.288600 0.392792 0.009276 0.005684 +12 0.217983 0.392792 0.009276 0.005684 +12 0.142280 0.392792 0.009874 0.005684 +12 0.595302 0.390518 0.009874 0.005684 +12 0.563734 0.390746 0.010174 0.006139 +12 0.533812 0.390746 0.010174 0.006139 +12 0.396170 0.390405 0.010174 0.006367 +17 0.406044 0.374943 0.009575 0.003638 +12 0.255685 0.390291 0.009276 0.006139 +12 0.189557 0.390064 0.009874 0.006594 +12 0.701227 0.388245 0.009874 0.005684 +12 0.671454 0.388358 0.009575 0.005912 +12 0.168312 0.387904 0.008079 0.005912 +12 0.904399 0.385061 0.009276 0.005684 +12 0.735189 0.385289 0.008378 0.006139 +12 0.872382 0.382788 0.008677 0.005684 +11 0.808199 0.383015 0.008977 0.006139 +11 0.359216 0.362324 0.005087 0.002956 +13 0.367594 0.347999 0.008079 0.005230 +13 0.579593 0.356185 0.009575 0.006139 +13 0.549521 0.356071 0.009276 0.005912 +13 0.442699 0.356185 0.009874 0.006139 +13 0.412777 0.356071 0.008677 0.005912 +13 0.287702 0.355389 0.009874 0.006367 +13 0.256583 0.355275 0.009874 0.006139 +13 0.716038 0.354138 0.009575 0.005684 +13 0.856972 0.353683 0.010174 0.005684 +13 0.827199 0.353683 0.009276 0.005684 +12 0.686864 0.354025 0.009874 0.006367 +12 0.218731 0.353115 0.009575 0.005457 +13 0.565829 0.351182 0.009575 0.006139 +13 0.534710 0.351182 0.009575 0.006139 +13 0.427588 0.351182 0.009575 0.006139 +11 0.595153 0.350955 0.009575 0.006594 +13 0.395871 0.350728 0.009575 0.006139 +13 0.303112 0.350500 0.009575 0.005684 +13 0.274087 0.350500 0.009575 0.005684 +12 0.279324 0.333788 0.006882 0.002274 +12 0.190455 0.350273 0.009276 0.006139 +13 0.844255 0.348681 0.009874 0.005684 +13 0.808648 0.348568 0.010473 0.005457 +12 0.703621 0.348681 0.009874 0.005684 +13 0.670856 0.348681 0.008977 0.005684 +13 0.505087 0.348340 0.008977 0.005912 +12 0.169210 0.347317 0.009874 0.004775 +13 0.489378 0.345953 0.009874 0.005684 +13 0.919808 0.345498 0.009575 0.006594 +13 0.351586 0.345271 0.009575 0.006139 +12 0.142579 0.345157 0.009276 0.005912 +13 0.904399 0.343452 0.008079 0.005230 +11 0.737283 0.343565 0.008977 0.005457 +12 0.457959 0.343679 0.008079 0.005684 +12 0.320317 0.342883 0.009874 0.005912 +12 0.875224 0.340723 0.010174 0.006139 +12 0.777379 0.309914 0.004189 0.003638 +13 0.784411 0.293884 0.008677 0.005230 +18 0.478157 0.309914 0.007181 0.003638 +11 0.499402 0.309686 0.005984 0.004093 +12 0.506433 0.291269 0.010473 0.006367 +12 0.218881 0.295475 0.009874 0.006594 +12 0.737433 0.294111 0.008079 0.005684 +13 0.642130 0.294111 0.008378 0.005684 +13 0.596649 0.294111 0.008378 0.005684 +13 0.534261 0.294225 0.008677 0.005912 +12 0.396320 0.293884 0.009874 0.006139 +13 0.457660 0.293656 0.008677 0.006594 +12 0.255685 0.293315 0.008079 0.005912 +13 0.318821 0.292974 0.007481 0.006139 +12 0.191652 0.292974 0.009276 0.006139 +12 0.071364 0.292633 0.004488 0.005457 +13 0.718282 0.291382 0.009276 0.005684 +13 0.670257 0.291610 0.008378 0.006139 +13 0.871933 0.291155 0.009575 0.006139 +12 0.810443 0.291155 0.009276 0.006139 +12 0.751795 0.291155 0.008079 0.006139 +13 0.612657 0.291155 0.009874 0.006139 +13 0.580341 0.291269 0.009874 0.006367 +13 0.550269 0.291155 0.008977 0.006139 +13 0.473968 0.291155 0.009575 0.006139 +13 0.368043 0.290928 0.008977 0.006594 +13 0.335278 0.290814 0.009276 0.006367 +12 0.168013 0.290473 0.009874 0.006594 +13 0.887941 0.288995 0.008677 0.005457 +13 0.918761 0.288654 0.009276 0.005684 +13 0.768552 0.288768 0.009276 0.005912 +13 0.686715 0.288654 0.009575 0.005684 +13 0.627319 0.288654 0.009276 0.005684 +13 0.565530 0.289109 0.008977 0.006594 +13 0.490425 0.288881 0.008977 0.006139 +13 0.350688 0.288427 0.009575 0.006139 +12 0.141382 0.287403 0.009276 0.005912 +13 0.702723 0.286153 0.009276 0.006139 +13 0.903501 0.285698 0.008677 0.006139 +18 0.887792 0.221578 0.010174 0.003411 +11 0.777379 0.216917 0.008977 0.007731 +11 0.785907 0.202933 0.009276 0.006139 +11 0.715440 0.211346 0.005984 0.005684 +12 0.723668 0.198272 0.008079 0.005912 +12 0.640634 0.211232 0.007181 0.007731 +11 0.647367 0.192246 0.007481 0.005684 +12 0.812089 0.205775 0.008378 0.005457 +12 0.901107 0.205434 0.007481 0.005684 +12 0.873878 0.205662 0.010473 0.006139 +12 0.740425 0.201114 0.009874 0.006139 +11 0.412627 0.197590 0.008378 0.006367 +11 0.412029 0.188608 0.008977 0.006594 +12 0.366697 0.196908 0.006284 0.005457 +12 0.366996 0.188950 0.009276 0.006367 +11 0.279324 0.196453 0.008677 0.005912 +11 0.278127 0.188608 0.008677 0.007503 +12 0.680281 0.196339 0.008677 0.006594 +12 0.502543 0.192246 0.008677 0.005684 +12 0.502543 0.197931 0.008677 0.005684 +12 0.605326 0.190655 0.009575 0.007049 +12 0.574506 0.190655 0.009575 0.007049 +12 0.545631 0.190655 0.009874 0.007049 +12 0.229952 0.188608 0.009276 0.007503 +11 0.140036 0.188154 0.008977 0.006594 +18 0.712448 0.171669 0.005984 0.002729 +12 0.710503 0.155070 0.008079 0.005002 +11 0.358019 0.166894 0.009276 0.003183 +13 0.368043 0.152001 0.008378 0.006139 +13 0.872083 0.165530 0.009874 0.005912 +11 0.450180 0.165075 0.005685 0.006821 +13 0.458109 0.146203 0.008378 0.006367 +13 0.917714 0.162460 0.009575 0.006139 +13 0.886744 0.162460 0.009874 0.006139 +13 0.755087 0.162688 0.009874 0.006594 +12 0.812986 0.160641 0.008378 0.005230 +12 0.812837 0.152910 0.010473 0.006139 +13 0.767355 0.160641 0.008079 0.005230 +13 0.740126 0.160641 0.008677 0.006139 +13 0.902154 0.160186 0.009575 0.006139 +13 0.694644 0.157913 0.008677 0.006139 +13 0.786355 0.155525 0.006583 0.005002 +12 0.680580 0.155412 0.008079 0.005684 +13 0.230251 0.153593 0.008079 0.005684 +13 0.198683 0.153706 0.007780 0.005912 +13 0.141532 0.153251 0.007181 0.005457 +13 0.170706 0.153138 0.008079 0.005684 +13 0.619838 0.152910 0.008677 0.006139 +13 0.502543 0.152569 0.008079 0.006367 +13 0.472621 0.152228 0.008677 0.006594 +13 0.443746 0.152001 0.008378 0.006139 +12 0.412777 0.152228 0.008677 0.006594 +13 0.339916 0.151774 0.009575 0.006594 +13 0.309844 0.151774 0.009874 0.006594 +13 0.279324 0.151546 0.008677 0.006139 +13 0.725165 0.150409 0.009874 0.005684 +13 0.632855 0.150296 0.008378 0.005457 +13 0.606972 0.150182 0.009276 0.006139 +13 0.574955 0.150068 0.009874 0.005912 +13 0.545482 0.150068 0.009575 0.005912 +13 0.244913 0.148590 0.008079 0.005684 +13 0.215290 0.148590 0.009874 0.005684 +13 0.187163 0.148249 0.008677 0.005912 +13 0.157241 0.148136 0.009874 0.006594 +13 0.519300 0.147112 0.008677 0.006367 +13 0.428636 0.146771 0.008079 0.006594 +13 0.384051 0.146658 0.008677 0.006367 +13 0.324207 0.146771 0.008677 0.006594 +13 0.353680 0.146317 0.008378 0.006139 +13 0.487283 0.145634 0.008079 0.006139 +13 0.294883 0.145862 0.008677 0.006594 +13 0.649461 0.144725 0.008079 0.006139 +13 0.589767 0.145407 0.008378 0.007503 +13 0.560592 0.144270 0.008677 0.007049 +12 0.694045 0.123693 0.003890 0.004093 +12 0.687612 0.123693 0.004788 0.004093 +18 0.314782 0.122556 0.011370 0.005457 +13 0.309096 0.107094 0.008378 0.005457 +18 0.713794 0.121305 0.005087 0.003865 +12 0.902005 0.119031 0.009276 0.005684 +12 0.874177 0.116644 0.009874 0.006367 +12 0.813884 0.116530 0.008977 0.006139 +13 0.857421 0.114256 0.007481 0.005230 +13 0.828845 0.114256 0.008378 0.005230 +13 0.787552 0.114029 0.008378 0.005230 +12 0.501795 0.113347 0.007181 0.005230 +12 0.229653 0.111755 0.007481 0.004775 +13 0.843357 0.111528 0.009276 0.006139 +12 0.740126 0.111642 0.009874 0.006367 +11 0.140784 0.111301 0.008079 0.005684 +11 0.413974 0.110618 0.009276 0.006139 +12 0.723668 0.109595 0.008079 0.005912 +12 0.279174 0.109709 0.009575 0.006139 +12 0.678636 0.106867 0.008378 0.005912 +12 0.339916 0.104934 0.009575 0.006594 +13 0.648713 0.104138 0.009575 0.005912 +13 0.588121 0.104025 0.009874 0.005684 +12 0.367594 0.102547 0.008677 0.006367 +12 0.604877 0.101296 0.008677 0.005684 +11 0.544434 0.100728 0.008677 0.006367 +12 0.599491 0.086630 0.009874 0.006821 +11 0.777080 0.071055 0.007181 0.004320 +12 0.786355 0.054798 0.008977 0.006367 +12 0.902005 0.059345 0.009276 0.006367 +12 0.874028 0.056844 0.009575 0.006821 +13 0.814034 0.057412 0.009276 0.007958 +13 0.857121 0.055593 0.009276 0.006139 +13 0.827798 0.054457 0.009276 0.006594 +11 0.545033 0.054457 0.008677 0.006594 +12 0.367893 0.053547 0.009874 0.006594 +11 0.279174 0.052865 0.008378 0.006139 +12 0.740874 0.052865 0.009575 0.007049 +12 0.228905 0.052524 0.008977 0.006367 +12 0.199431 0.052410 0.009276 0.007049 +13 0.843058 0.052183 0.009874 0.007503 +12 0.413674 0.051273 0.009276 0.007503 +13 0.723519 0.050136 0.007780 0.006139 +12 0.183872 0.050250 0.008079 0.006821 +12 0.443297 0.048658 0.008677 0.006821 +13 0.168013 0.047863 0.008677 0.006139 +12 0.679982 0.047181 0.009276 0.006594 +12 0.472920 0.046726 0.009276 0.007503 +13 0.648414 0.044679 0.008977 0.006139 +18 0.502843 0.044679 0.009276 0.006139 +12 0.141083 0.044679 0.009874 0.007958 +12 0.603232 0.042178 0.008378 0.007503 +0 0.093806 0.617440 0.023040 0.022965 +2 0.091113 0.438495 0.021245 0.019782 +0 0.095302 0.846862 0.023639 0.023420 +0 0.093806 0.159959 0.023040 0.023874 +1 0.092609 0.071510 0.021843 0.039791 +4 0.778426 0.154047 0.009874 0.014779 +2 0.089916 0.247726 0.020048 0.019327 +2 0.090515 0.209982 0.018851 0.018417 +3 0.206014 0.389609 0.006882 0.014779 +5 0.725165 0.339814 0.018253 0.017963 +1 0.092908 0.112892 0.021245 0.039791 +5 0.115051 0.213620 0.008079 0.014779 +5 0.114752 0.159732 0.007481 0.014325 +5 0.115350 0.251137 0.008677 0.014325 +5 0.115649 0.388245 0.008079 0.013870 +1 0.092908 0.341860 0.022442 0.034789 +3 0.158438 0.444861 0.007481 0.019782 +2 0.093507 0.905980 0.021245 0.019782 +3 0.415470 0.392337 0.006882 0.017508 +2 0.091412 0.666326 0.019449 0.019782 +1 0.094105 0.806162 0.022442 0.039336 +0 0.093507 0.570600 0.022442 0.033879 +5 0.115051 0.476694 0.008079 0.015234 +3 0.276930 0.391201 0.007481 0.019782 +2 0.091412 0.704297 0.018253 0.018417 +1 0.094405 0.766144 0.021843 0.033879 +5 0.118642 0.954638 0.008079 0.015234 +2 0.095302 0.951910 0.020048 0.018872 +1 0.092759 0.299454 0.021544 0.038654 +0 0.089467 0.389723 0.013764 0.022738 +4 0.088719 0.473283 0.008079 0.014779 +4 0.096649 0.471010 0.007780 0.014779 +4 0.086924 0.529445 0.008079 0.014779 +4 0.093806 0.525352 0.008079 0.014779 +3 0.100838 0.534447 0.007780 0.014779 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_18.jpg b/data_dataset/dvo/debug/debug_18.jpg new file mode 100644 index 0000000..211e94c Binary files /dev/null and b/data_dataset/dvo/debug/debug_18.jpg differ diff --git a/data_dataset/dvo/debug/debug_18.txt b/data_dataset/dvo/debug/debug_18.txt new file mode 100644 index 0000000..4251369 --- /dev/null +++ b/data_dataset/dvo/debug/debug_18.txt @@ -0,0 +1,693 @@ +8 0.895572 0.940314 0.011969 0.007049 +7 0.745063 0.940996 0.012567 0.007503 +8 0.829144 0.940314 0.010772 0.007049 +10 0.209156 0.939518 0.011969 0.005002 +6 0.457810 0.940769 0.008977 0.017963 +6 0.300419 0.940769 0.010174 0.017963 +8 0.896469 0.907572 0.012567 0.007049 +7 0.849192 0.908481 0.011370 0.007958 +8 0.211251 0.905525 0.012567 0.006594 +6 0.714243 0.908254 0.009575 0.017508 +6 0.612807 0.907799 0.010174 0.017508 +6 0.459306 0.908254 0.009575 0.017508 +6 0.300718 0.906889 0.009575 0.017508 +8 0.896768 0.865962 0.011969 0.006594 +8 0.208259 0.864825 0.011370 0.007049 +6 0.713645 0.868008 0.009575 0.016144 +6 0.301616 0.866417 0.010174 0.018417 +9 0.570916 0.837199 0.007780 0.023192 +10 0.725314 0.822192 0.008977 0.002274 +10 0.145422 0.819009 0.007780 0.003183 +8 0.269300 0.827308 0.007780 0.023874 +10 0.895572 0.783993 0.013166 0.005002 +10 0.514662 0.783993 0.012567 0.005002 +8 0.832735 0.784106 0.011969 0.007503 +10 0.746559 0.783538 0.011969 0.005002 +10 0.645422 0.783538 0.011969 0.005002 +8 0.359665 0.783879 0.010174 0.007049 +8 0.210652 0.783652 0.012567 0.006594 +7 0.820168 0.737267 0.011969 0.013870 +6 0.855476 0.737040 0.009575 0.015234 +6 0.298624 0.736130 0.010174 0.017053 +6 0.136445 0.735675 0.008977 0.017963 +7 0.821065 0.698158 0.008977 0.012960 +6 0.855775 0.698158 0.010174 0.015689 +6 0.137642 0.696567 0.010174 0.018872 +6 0.298324 0.695884 0.009575 0.018417 +10 0.181329 0.673261 0.011370 0.002729 +10 0.182825 0.669850 0.011969 0.002274 +10 0.359964 0.669168 0.015560 0.003638 +7 0.821664 0.659050 0.011370 0.012960 +6 0.855177 0.658367 0.010174 0.016144 +9 0.176242 0.661551 0.008378 0.028877 +9 0.210353 0.663597 0.007181 0.037517 +9 0.405446 0.655525 0.009575 0.026830 +9 0.244464 0.655070 0.010772 0.026830 +7 0.299820 0.619941 0.012567 0.012960 +7 0.138241 0.619486 0.012567 0.013870 +9 0.371933 0.608117 0.008378 0.025693 +10 0.559844 0.577308 0.014363 0.001819 +10 0.547277 0.577308 0.008378 0.001819 +10 0.251646 0.574579 0.010772 0.001819 +10 0.558648 0.572874 0.009575 0.001592 +9 0.731299 0.575375 0.007780 0.019327 +10 0.312986 0.570828 0.013764 0.002046 +7 0.823459 0.574920 0.010174 0.012960 +10 0.145123 0.570032 0.008378 0.001819 +6 0.856673 0.574466 0.009575 0.017508 +10 0.645123 0.565484 0.006583 0.002729 +9 0.477558 0.559345 0.007780 0.020009 +9 0.567325 0.562074 0.005386 0.019100 +10 0.361161 0.523306 0.007181 0.002501 +6 0.738181 0.523079 0.005984 0.012960 +10 0.147516 0.516826 0.005984 0.004548 +7 0.486236 0.518531 0.011969 0.012960 +6 0.621185 0.516257 0.010174 0.018417 +6 0.782466 0.515803 0.009575 0.018417 +10 0.456014 0.508413 0.007780 0.002274 +10 0.400060 0.473283 0.005984 0.002501 +10 0.159785 0.466121 0.031718 0.005002 +7 0.179832 0.460778 0.007181 0.013870 +6 0.620886 0.466235 0.009575 0.016598 +6 0.780670 0.465325 0.009575 0.018417 +10 0.786954 0.430423 0.010174 0.004548 +10 0.633453 0.430423 0.005984 0.004548 +10 0.704668 0.428377 0.009575 0.002274 +10 0.868642 0.427467 0.008378 0.002274 +7 0.829743 0.427353 0.009575 0.003411 +8 0.675943 0.426899 0.013166 0.005230 +10 0.704967 0.425648 0.006583 0.002274 +10 0.871634 0.424511 0.011969 0.001819 +9 0.527528 0.422806 0.009575 0.029332 +10 0.567624 0.418827 0.005984 0.004093 +9 0.781568 0.419509 0.010174 0.022283 +7 0.171155 0.415530 0.011370 0.013415 +9 0.855775 0.414961 0.004189 0.023192 +9 0.689108 0.415757 0.011969 0.023874 +10 0.860862 0.405412 0.005984 0.002729 +10 0.141532 0.405639 0.005984 0.003183 +10 0.898564 0.403593 0.007181 0.002729 +9 0.537403 0.410982 0.012567 0.031605 +9 0.410832 0.384948 0.007181 0.008186 +10 0.171454 0.367894 0.008378 0.005002 +7 0.622681 0.370737 0.011969 0.012960 +7 0.567923 0.370964 0.012567 0.013415 +7 0.783662 0.370282 0.011969 0.012960 +10 0.555057 0.333561 0.011969 0.001819 +10 0.662777 0.328217 0.011969 0.001592 +10 0.648414 0.328104 0.011969 0.001819 +10 0.380311 0.327990 0.014363 0.002046 +10 0.471873 0.327080 0.015560 0.002046 +10 0.349192 0.327080 0.021544 0.002046 +10 0.226511 0.327080 0.008378 0.002046 +10 0.328845 0.326967 0.009575 0.002274 +10 0.298324 0.326285 0.008378 0.001819 +10 0.492220 0.326739 0.015560 0.004548 +10 0.390186 0.326739 0.013764 0.004548 +10 0.470676 0.324466 0.010772 0.001819 +10 0.347995 0.324693 0.016756 0.002274 +10 0.702274 0.320941 0.007181 0.001592 +9 0.835129 0.310823 0.004788 0.022283 +10 0.565829 0.272169 0.009575 0.002729 +10 0.468582 0.271601 0.007780 0.002046 +10 0.431179 0.270805 0.005984 0.001819 +10 0.423998 0.271032 0.005984 0.002274 +10 0.422501 0.268304 0.006583 0.002274 +7 0.701077 0.270691 0.011969 0.012960 +10 0.677738 0.264893 0.005984 0.003638 +6 0.808797 0.267963 0.009575 0.017508 +10 0.675045 0.261482 0.008977 0.004093 +9 0.300120 0.254889 0.008378 0.028649 +10 0.616697 0.228513 0.008378 0.004548 +10 0.269599 0.225216 0.013166 0.002046 +10 0.485637 0.224648 0.009575 0.005002 +10 0.554458 0.223965 0.005984 0.004548 +10 0.454518 0.224193 0.014363 0.005002 +10 0.270796 0.222715 0.005984 0.002046 +7 0.700778 0.223852 0.012567 0.012960 +6 0.806703 0.221351 0.010174 0.017963 +8 0.672950 0.223852 0.009575 0.022965 +9 0.537702 0.213620 0.008378 0.024329 +9 0.421604 0.209072 0.013166 0.034334 +10 0.827648 0.179627 0.007780 0.004093 +10 0.497606 0.169623 0.011969 0.004093 +10 0.479952 0.169395 0.007780 0.004548 +10 0.465889 0.169395 0.008378 0.004548 +9 0.617893 0.166212 0.008378 0.017735 +7 0.438659 0.163597 0.012567 0.013415 +8 0.540395 0.160755 0.008977 0.018645 +7 0.564333 0.160528 0.013764 0.018190 +9 0.871335 0.164734 0.008977 0.027513 +10 0.616098 0.129150 0.007181 0.004093 +10 0.814482 0.128240 0.010174 0.005002 +7 0.606822 0.123238 0.012567 0.017735 +10 0.356373 0.122556 0.011969 0.001819 +10 0.160084 0.123238 0.009575 0.004093 +10 0.487133 0.121760 0.017355 0.002501 +10 0.372531 0.121191 0.008378 0.002729 +10 0.490425 0.119145 0.014363 0.002274 +9 0.831239 0.119600 0.004189 0.018190 +10 0.821963 0.115734 0.005984 0.001819 +8 0.301616 0.120850 0.011370 0.023420 +8 0.248953 0.113347 0.008977 0.008413 +9 0.210054 0.119145 0.008977 0.020009 +9 0.845601 0.121191 0.010174 0.025011 +10 0.166667 0.110050 0.005984 0.003183 +10 0.351885 0.106185 0.007780 0.002729 +10 0.765709 0.100955 0.020347 0.005002 +10 0.702274 0.098226 0.011969 0.002274 +10 0.692998 0.099136 0.013764 0.005002 +10 0.356373 0.074807 0.014363 0.002729 +10 0.576002 0.073897 0.005984 0.001819 +10 0.907540 0.073442 0.007181 0.001819 +10 0.739378 0.074807 0.013166 0.004548 +10 0.895572 0.072988 0.009575 0.002729 +10 0.486535 0.071851 0.007780 0.002274 +10 0.615799 0.072306 0.013764 0.004093 +9 0.912926 0.070714 0.008378 0.008186 +9 0.752543 0.065371 0.008378 0.022510 +9 0.768103 0.064688 0.011969 0.020236 +9 0.842908 0.058436 0.009575 0.022283 +9 0.329743 0.066735 0.004189 0.016144 +9 0.870736 0.056162 0.010174 0.022283 +9 0.144823 0.057412 0.011370 0.034789 +9 0.465589 0.054570 0.007780 0.036380 +11 0.528127 0.954070 0.009575 0.005912 +11 0.371335 0.953729 0.009575 0.006139 +11 0.813285 0.921442 0.009575 0.006139 +11 0.758677 0.921442 0.009874 0.006139 +11 0.657540 0.920759 0.009874 0.005684 +11 0.528576 0.920077 0.010473 0.006139 +11 0.371783 0.919623 0.009874 0.006139 +11 0.657092 0.884720 0.005386 0.003638 +11 0.656942 0.878581 0.009874 0.005002 +11 0.372681 0.885175 0.008677 0.005912 +11 0.372531 0.878467 0.009575 0.005684 +11 0.530521 0.884607 0.007780 0.005230 +11 0.529773 0.878467 0.009276 0.005684 +11 0.814034 0.879604 0.009276 0.006139 +11 0.814034 0.885744 0.009276 0.006139 +11 0.758677 0.879150 0.009874 0.006139 +11 0.758677 0.885289 0.009874 0.006139 +12 0.097397 0.873920 0.005685 0.004775 +13 0.547427 0.845271 0.008677 0.005684 +11 0.838719 0.845043 0.009575 0.006139 +12 0.736385 0.845043 0.009575 0.006139 +13 0.477558 0.845271 0.008977 0.006594 +12 0.638989 0.844588 0.008677 0.006139 +12 0.388241 0.844475 0.008677 0.005912 +13 0.320916 0.844588 0.009276 0.006139 +13 0.231897 0.844134 0.009575 0.006139 +11 0.884201 0.842087 0.008977 0.006594 +11 0.814931 0.841974 0.008677 0.006367 +12 0.759126 0.841405 0.009575 0.007049 +12 0.714093 0.841405 0.009276 0.007049 +13 0.659336 0.841405 0.009874 0.007049 +12 0.616098 0.841633 0.009575 0.007503 +14 0.565081 0.841405 0.009276 0.007049 +13 0.531269 0.841519 0.009874 0.007276 +14 0.496709 0.841405 0.009575 0.007049 +13 0.460952 0.841633 0.009276 0.007503 +13 0.373429 0.841405 0.008977 0.007049 +14 0.339019 0.841405 0.009575 0.007049 +13 0.303860 0.841633 0.009874 0.007503 +13 0.248803 0.841405 0.009874 0.007049 +14 0.405895 0.841064 0.009276 0.007276 +13 0.215440 0.840950 0.010174 0.007049 +13 0.164722 0.839131 0.009276 0.006139 +11 0.913375 0.836858 0.009276 0.006139 +12 0.781119 0.835834 0.009276 0.005912 +12 0.679384 0.835721 0.009276 0.005684 +13 0.512717 0.835834 0.009874 0.005912 +13 0.424895 0.835948 0.008977 0.006139 +13 0.355775 0.835721 0.009575 0.005684 +13 0.138241 0.835721 0.009575 0.005684 +13 0.582286 0.835493 0.008977 0.006139 +13 0.266457 0.835493 0.009276 0.006139 +13 0.181927 0.835607 0.009575 0.006367 +13 0.198384 0.830264 0.009575 0.005684 +18 0.772890 0.820146 0.007780 0.005457 +12 0.419958 0.743406 0.006284 0.003865 +11 0.258378 0.743179 0.003890 0.005230 +12 0.276032 0.741360 0.005685 0.004320 +12 0.266158 0.743065 0.007481 0.004093 +17 0.273190 0.730673 0.007780 0.004775 +11 0.430281 0.740678 0.006583 0.005684 +11 0.373579 0.740678 0.009276 0.005684 +12 0.212597 0.740905 0.009276 0.006139 +12 0.788001 0.740223 0.008677 0.005684 +17 0.457959 0.740564 0.010473 0.006367 +17 0.626122 0.740223 0.010473 0.006594 +11 0.423399 0.704184 0.005984 0.004093 +12 0.265859 0.703615 0.005685 0.004320 +11 0.431927 0.701114 0.006284 0.004775 +12 0.458109 0.701228 0.008378 0.005912 +17 0.458408 0.685653 0.010174 0.006594 +12 0.275733 0.700887 0.006284 0.005230 +11 0.212597 0.701114 0.009276 0.005684 +12 0.213345 0.687472 0.009575 0.007503 +12 0.788001 0.700887 0.007481 0.006139 +12 0.788300 0.685880 0.010473 0.006139 +17 0.625524 0.700659 0.009276 0.006594 +17 0.626122 0.685198 0.010473 0.007503 +18 0.372681 0.687244 0.012268 0.007958 +11 0.373130 0.701228 0.009575 0.005912 +13 0.788450 0.669623 0.010174 0.006367 +13 0.790993 0.620396 0.009874 0.006139 +12 0.787552 0.651660 0.007780 0.005002 +13 0.787552 0.656662 0.007780 0.005002 +17 0.626272 0.669736 0.010772 0.006594 +17 0.626272 0.650978 0.010772 0.005912 +17 0.626272 0.656889 0.010772 0.005912 +17 0.458558 0.669850 0.010473 0.007731 +17 0.457660 0.656776 0.009874 0.005684 +17 0.457810 0.633811 0.010174 0.006594 +11 0.456762 0.620168 0.010473 0.006594 +12 0.301466 0.653706 0.009874 0.005457 +12 0.301466 0.659163 0.009874 0.005457 +12 0.138091 0.653820 0.009874 0.005684 +12 0.138091 0.659504 0.009874 0.005684 +12 0.339467 0.651774 0.008079 0.005230 +12 0.339467 0.657003 0.008079 0.005230 +12 0.177588 0.651774 0.008677 0.005230 +12 0.177588 0.657003 0.008677 0.005230 +17 0.457660 0.651091 0.009874 0.005684 +12 0.374327 0.649159 0.010174 0.005457 +12 0.374327 0.654616 0.010174 0.005457 +12 0.213645 0.649159 0.010174 0.005457 +12 0.213645 0.654616 0.010174 0.005457 +12 0.407092 0.646089 0.009276 0.004775 +12 0.407092 0.650864 0.009276 0.004775 +12 0.246409 0.646089 0.009874 0.005684 +12 0.246409 0.651774 0.009874 0.005684 +17 0.625524 0.633811 0.010473 0.006594 +17 0.625524 0.620168 0.009276 0.006594 +13 0.875823 0.631082 0.009575 0.005684 +13 0.893627 0.628354 0.008079 0.005684 +13 0.858169 0.628467 0.008977 0.005912 +18 0.808199 0.623352 0.009575 0.005684 +13 0.910832 0.620850 0.008977 0.006139 +13 0.823908 0.620396 0.008677 0.006139 +12 0.338570 0.617553 0.009874 0.005912 +13 0.177588 0.617667 0.009874 0.006139 +13 0.840963 0.615393 0.009874 0.006139 +11 0.373429 0.599932 0.008378 0.006139 +11 0.213196 0.599704 0.009276 0.005684 +13 0.626571 0.580832 0.006583 0.005230 +12 0.626870 0.565371 0.008977 0.006139 +12 0.790395 0.575148 0.009874 0.006594 +13 0.721873 0.572874 0.009276 0.005684 +13 0.696140 0.570373 0.010473 0.006139 +13 0.738929 0.570146 0.009874 0.006594 +13 0.644973 0.567872 0.008677 0.005684 +13 0.756134 0.564916 0.008378 0.006139 +13 0.662178 0.565030 0.008977 0.006367 +12 0.554458 0.560823 0.008977 0.006139 +13 0.163226 0.558322 0.008677 0.006139 +13 0.538749 0.557754 0.009276 0.006367 +13 0.324506 0.557867 0.009276 0.006594 +13 0.679084 0.557640 0.008677 0.007049 +12 0.572861 0.557412 0.008079 0.007503 +13 0.484740 0.555593 0.009575 0.005684 +13 0.177738 0.555252 0.010174 0.005912 +13 0.300269 0.555139 0.009874 0.006594 +13 0.341263 0.554684 0.009276 0.006594 +13 0.139587 0.554570 0.009276 0.006367 +12 0.589019 0.553092 0.009276 0.007049 +13 0.502394 0.552865 0.009575 0.006594 +13 0.458109 0.553092 0.008977 0.007049 +13 0.358019 0.552865 0.009276 0.006594 +13 0.392430 0.552410 0.009874 0.006594 +13 0.229952 0.552410 0.009276 0.006594 +13 0.194943 0.552524 0.008677 0.006821 +13 0.408139 0.550136 0.008977 0.006594 +11 0.374476 0.549909 0.009874 0.006139 +17 0.213495 0.550136 0.009874 0.006594 +13 0.246858 0.549227 0.008977 0.006594 +13 0.516457 0.547635 0.009575 0.007049 +13 0.425943 0.547181 0.009874 0.007049 +13 0.265560 0.547067 0.009874 0.006821 +11 0.528426 0.528649 0.009575 0.006367 +12 0.912478 0.523533 0.005087 0.003865 +12 0.749102 0.523533 0.006284 0.004320 +11 0.754937 0.510346 0.005984 0.005230 +12 0.758528 0.520350 0.005984 0.004320 +18 0.318522 0.519327 0.009276 0.002274 +12 0.859964 0.520691 0.008977 0.005457 +12 0.923698 0.519895 0.005984 0.004320 +11 0.692250 0.520805 0.008677 0.006139 +17 0.332436 0.515689 0.010772 0.005002 +12 0.339467 0.503183 0.009276 0.006367 +12 0.250748 0.514097 0.004788 0.003638 +12 0.257780 0.498181 0.008677 0.006367 +11 0.179384 0.514325 0.006284 0.005002 +12 0.187163 0.493065 0.009874 0.006139 +12 0.454518 0.510800 0.008378 0.005230 +13 0.416966 0.508413 0.009874 0.005912 +12 0.359366 0.505798 0.009575 0.006139 +12 0.291293 0.500455 0.009874 0.007276 +12 0.208259 0.495794 0.009575 0.007049 +12 0.141382 0.490791 0.009276 0.007049 +11 0.527379 0.478058 0.009276 0.006139 +17 0.068971 0.481128 0.004488 0.017735 +12 0.912178 0.472260 0.005685 0.003638 +11 0.748504 0.472601 0.006284 0.004320 +11 0.753890 0.458276 0.005087 0.003865 +12 0.758079 0.470100 0.006284 0.004775 +12 0.691951 0.470555 0.009276 0.005684 +12 0.922202 0.469191 0.005386 0.003865 +11 0.861161 0.469645 0.008977 0.005684 +18 0.407840 0.468054 0.005386 0.003411 +18 0.162178 0.465666 0.007780 0.002274 +11 0.333333 0.466007 0.006583 0.007503 +13 0.340963 0.452137 0.009874 0.006139 +11 0.455715 0.460209 0.008378 0.005912 +12 0.416816 0.457481 0.009575 0.005912 +12 0.361610 0.454866 0.009276 0.006139 +12 0.292789 0.449750 0.009276 0.006821 +13 0.258378 0.446908 0.009874 0.006594 +12 0.210802 0.444407 0.009276 0.007049 +13 0.189856 0.441337 0.009276 0.006367 +12 0.140485 0.439518 0.009874 0.007276 +13 0.470826 0.421214 0.009874 0.006139 +12 0.529025 0.418486 0.009575 0.005230 +12 0.529025 0.423715 0.009575 0.005230 +13 0.455266 0.418713 0.008677 0.005684 +13 0.488630 0.418599 0.009575 0.006367 +12 0.568671 0.421214 0.009276 0.005684 +12 0.568671 0.415530 0.009276 0.005684 +13 0.506134 0.415985 0.009874 0.006594 +12 0.384051 0.415871 0.009874 0.006367 +12 0.622681 0.413597 0.008977 0.005457 +12 0.622681 0.419054 0.008977 0.005457 +13 0.399312 0.413483 0.008079 0.005230 +12 0.373579 0.412574 0.004488 0.003411 +12 0.783064 0.413142 0.008977 0.005457 +12 0.783064 0.418599 0.008977 0.005457 +13 0.361011 0.413370 0.009276 0.005912 +12 0.814034 0.410414 0.008079 0.005457 +12 0.814034 0.415871 0.008079 0.005457 +12 0.657241 0.410528 0.009276 0.005684 +12 0.657241 0.416212 0.009276 0.005684 +13 0.308648 0.410755 0.009874 0.006139 +13 0.416966 0.408822 0.009874 0.005912 +13 0.325554 0.408481 0.009575 0.005230 +12 0.693447 0.408026 0.009874 0.005230 +12 0.693447 0.413256 0.009874 0.005230 +14 0.860413 0.407685 0.008677 0.005457 +12 0.860413 0.413142 0.008677 0.005457 +13 0.291891 0.408026 0.009874 0.006139 +12 0.897666 0.405412 0.008378 0.005457 +12 0.897666 0.410869 0.008378 0.005457 +12 0.734141 0.405412 0.008677 0.005457 +12 0.734141 0.410869 0.008677 0.005457 +12 0.225763 0.405866 0.009276 0.006367 +13 0.209904 0.403706 0.009874 0.006594 +12 0.141083 0.403251 0.009874 0.005684 +12 0.141083 0.408936 0.009874 0.005684 +13 0.340963 0.403024 0.009874 0.006139 +12 0.241921 0.403024 0.009276 0.006139 +13 0.258079 0.398022 0.009276 0.007049 +13 0.471724 0.373920 0.009874 0.006139 +12 0.529473 0.371191 0.009874 0.006139 +13 0.487582 0.371305 0.009874 0.006367 +13 0.456164 0.371191 0.010473 0.006139 +12 0.814931 0.370509 0.009874 0.005684 +12 0.656942 0.370737 0.009874 0.006139 +13 0.505835 0.369145 0.008079 0.005684 +12 0.384051 0.368690 0.007481 0.005684 +13 0.360413 0.365962 0.009276 0.005684 +13 0.401556 0.365962 0.010174 0.006594 +12 0.309695 0.363802 0.009575 0.005912 +13 0.325554 0.361187 0.009575 0.006139 +13 0.292639 0.361187 0.009575 0.006139 +13 0.418163 0.360960 0.009874 0.006594 +13 0.225613 0.358686 0.008977 0.005684 +13 0.210652 0.356980 0.008977 0.005912 +12 0.241921 0.356412 0.009276 0.005684 +18 0.141831 0.356526 0.007780 0.005912 +11 0.140335 0.368804 0.007181 0.005912 +13 0.341861 0.356185 0.008079 0.006139 +11 0.693447 0.352774 0.008677 0.006594 +11 0.861909 0.352547 0.008677 0.007049 +12 0.258079 0.350500 0.009276 0.006594 +12 0.329743 0.321510 0.005984 0.004093 +12 0.340365 0.301728 0.009874 0.006367 +13 0.554309 0.316621 0.009276 0.006139 +12 0.542938 0.313893 0.008079 0.004320 +13 0.568671 0.314120 0.009276 0.005684 +13 0.529174 0.314120 0.009276 0.005684 +13 0.507780 0.312074 0.008378 0.006139 +13 0.799372 0.311505 0.008677 0.005912 +13 0.640186 0.311619 0.009874 0.006139 +13 0.586026 0.311278 0.009276 0.006367 +12 0.457959 0.309231 0.009276 0.006821 +13 0.785159 0.308777 0.009575 0.006821 +13 0.658588 0.309004 0.009575 0.007276 +13 0.623728 0.309118 0.009276 0.007503 +13 0.815230 0.307981 0.009276 0.006139 +13 0.418462 0.307071 0.009276 0.006139 +13 0.718881 0.306617 0.008079 0.006139 +13 0.882107 0.305366 0.008378 0.005457 +18 0.884351 0.323784 0.008079 0.002274 +13 0.675943 0.305707 0.008378 0.006139 +13 0.840215 0.305139 0.008977 0.005912 +13 0.693746 0.304116 0.010473 0.006594 +12 0.365500 0.304343 0.009874 0.007049 +13 0.897516 0.303092 0.008677 0.006367 +13 0.735189 0.303433 0.008977 0.007049 +13 0.160233 0.302296 0.008677 0.005684 +13 0.751496 0.300591 0.008677 0.005912 +13 0.915171 0.299568 0.009276 0.005684 +13 0.143926 0.299568 0.009575 0.006594 +12 0.293836 0.299454 0.008977 0.007276 +12 0.176691 0.299341 0.008079 0.007049 +13 0.259425 0.297067 0.008977 0.006139 +13 0.192998 0.296953 0.009575 0.005912 +11 0.732645 0.280809 0.009276 0.006367 +11 0.575254 0.267053 0.006882 0.003411 +12 0.582885 0.256253 0.008977 0.006367 +11 0.501795 0.266712 0.006583 0.003638 +12 0.510473 0.250682 0.008378 0.006139 +12 0.441053 0.265234 0.005386 0.003411 +12 0.450030 0.246362 0.008378 0.005684 +12 0.675494 0.263756 0.008677 0.005002 +13 0.646768 0.260914 0.009874 0.006594 +13 0.600539 0.258413 0.009575 0.006139 +12 0.387193 0.256367 0.010174 0.005684 +12 0.208408 0.255912 0.009276 0.005684 +18 0.211999 0.294111 0.009276 0.006594 +11 0.143028 0.255684 0.009575 0.006139 +18 0.928336 0.254206 0.004488 0.003638 +12 0.872681 0.254775 0.009276 0.006139 +11 0.331837 0.253183 0.009575 0.006594 +12 0.246409 0.253183 0.008677 0.006594 +12 0.541143 0.253070 0.009276 0.007276 +12 0.265560 0.251137 0.008677 0.006139 +12 0.467235 0.248408 0.009874 0.007049 +12 0.282615 0.248181 0.009874 0.006594 +12 0.301167 0.245907 0.008079 0.005684 +12 0.421454 0.244316 0.009276 0.007049 +11 0.732196 0.234311 0.009575 0.006139 +13 0.590365 0.226012 0.009575 0.004093 +18 0.441053 0.218622 0.005386 0.002956 +12 0.674596 0.217258 0.008079 0.004775 +13 0.646619 0.214188 0.008977 0.005912 +18 0.601287 0.212028 0.009874 0.006139 +12 0.918163 0.210095 0.005685 0.004093 +13 0.583034 0.209754 0.009276 0.006139 +12 0.873130 0.208845 0.009575 0.006139 +11 0.144225 0.208959 0.009575 0.006367 +12 0.387343 0.208618 0.009276 0.006594 +12 0.209755 0.208618 0.008977 0.006594 +11 0.333782 0.206912 0.009874 0.006821 +12 0.540245 0.206571 0.009874 0.007049 +12 0.247457 0.206571 0.009575 0.007049 +13 0.510922 0.204070 0.009276 0.006594 +12 0.265859 0.203615 0.009276 0.005684 +12 0.467385 0.201683 0.010174 0.007276 +12 0.284710 0.201114 0.009874 0.007049 +13 0.450479 0.199295 0.008677 0.006139 +12 0.302663 0.197476 0.008677 0.006139 +12 0.420856 0.196567 0.008079 0.006139 +17 0.324207 0.183492 0.006284 0.005002 +17 0.324207 0.177012 0.006284 0.005230 +14 0.332885 0.163824 0.010473 0.007049 +14 0.332885 0.148136 0.010473 0.006594 +17 0.134800 0.182242 0.005087 0.003865 +12 0.136595 0.175762 0.008079 0.004548 +14 0.144973 0.162915 0.010473 0.007049 +14 0.144375 0.145407 0.010473 0.005684 +14 0.144375 0.151091 0.010473 0.005684 +17 0.239078 0.175421 0.007181 0.005230 +17 0.239078 0.180650 0.007181 0.005230 +17 0.238929 0.145180 0.009276 0.006139 +14 0.244315 0.137221 0.012867 0.004775 +18 0.244315 0.127672 0.012867 0.004775 +12 0.244315 0.132447 0.012867 0.004775 +18 0.248205 0.113574 0.008677 0.005684 +13 0.688659 0.168486 0.009874 0.006367 +12 0.608917 0.167121 0.004788 0.003638 +13 0.609216 0.161323 0.007780 0.004775 +17 0.103531 0.168940 0.006583 0.008186 +12 0.733842 0.166098 0.009276 0.005230 +12 0.733842 0.171328 0.009276 0.005230 +13 0.702124 0.166326 0.008079 0.005684 +13 0.674297 0.166553 0.007481 0.006139 +12 0.421155 0.163824 0.008677 0.006139 +12 0.421005 0.150864 0.009575 0.006139 +12 0.766457 0.163029 0.008677 0.005457 +13 0.766457 0.168486 0.008677 0.005457 +13 0.619539 0.163370 0.009276 0.006139 +13 0.633303 0.161323 0.008079 0.005684 +13 0.598444 0.161323 0.008977 0.005684 +12 0.809246 0.160641 0.008079 0.005230 +12 0.809246 0.165871 0.008079 0.005230 +13 0.715889 0.160982 0.008079 0.005912 +13 0.554608 0.158822 0.008677 0.006139 +12 0.834381 0.157572 0.008079 0.005457 +12 0.834381 0.163029 0.008079 0.005457 +13 0.646619 0.156321 0.007181 0.004775 +14 0.568821 0.156435 0.007181 0.005912 +13 0.541592 0.156321 0.008378 0.005684 +12 0.872382 0.155298 0.008677 0.005457 +12 0.872382 0.160755 0.008677 0.005457 +13 0.480850 0.154047 0.010174 0.005684 +12 0.905296 0.152569 0.008677 0.005457 +12 0.905296 0.158026 0.008677 0.005457 +13 0.467834 0.151774 0.009874 0.005684 +13 0.497756 0.151432 0.009874 0.005912 +13 0.583184 0.151091 0.009575 0.006139 +17 0.073758 0.149500 0.004488 0.007503 +13 0.513315 0.145180 0.008677 0.007049 +12 0.421005 0.144725 0.009575 0.006139 +13 0.331688 0.128809 0.006882 0.005230 +13 0.332436 0.110960 0.010174 0.005912 +12 0.150060 0.130173 0.012268 0.007958 +12 0.146768 0.105730 0.009276 0.006367 +12 0.147666 0.137449 0.007481 0.004320 +12 0.637642 0.126762 0.004788 0.003865 +18 0.555805 0.125057 0.005087 0.003183 +13 0.754788 0.123352 0.008079 0.006139 +12 0.575105 0.121191 0.007780 0.005457 +12 0.583782 0.108686 0.006583 0.005002 +13 0.767654 0.120737 0.007481 0.005457 +13 0.732645 0.120850 0.008079 0.005684 +13 0.714991 0.118577 0.008677 0.003865 +13 0.821664 0.117894 0.007181 0.005230 +13 0.781269 0.117894 0.007181 0.005230 +11 0.859216 0.115166 0.006284 0.004320 +12 0.676242 0.116075 0.008378 0.006139 +13 0.835577 0.115166 0.009276 0.006139 +13 0.809695 0.115393 0.009575 0.006594 +13 0.847846 0.113347 0.006882 0.005230 +12 0.646020 0.113347 0.007780 0.005230 +11 0.421454 0.113802 0.009276 0.006139 +12 0.301616 0.113233 0.007780 0.005002 +12 0.210802 0.113574 0.007481 0.005684 +12 0.193746 0.113461 0.008079 0.005912 +12 0.602035 0.111073 0.009575 0.006139 +13 0.179683 0.110732 0.009276 0.006367 +12 0.352484 0.108572 0.007780 0.005684 +14 0.165320 0.108345 0.009276 0.006139 +12 0.541293 0.106298 0.007780 0.005684 +12 0.370886 0.106298 0.009276 0.005684 +13 0.743716 0.102319 0.005087 0.003183 +13 0.512418 0.103797 0.009276 0.006139 +12 0.388540 0.103342 0.009276 0.006139 +12 0.467235 0.100614 0.008677 0.006139 +11 0.873878 0.097203 0.009276 0.006594 +18 0.088420 0.088336 0.006284 0.006139 +12 0.093806 0.075603 0.005087 0.003411 +12 0.099192 0.064347 0.008677 0.007276 +12 0.639138 0.069236 0.005386 0.003411 +12 0.647217 0.053547 0.008378 0.006594 +13 0.754488 0.063893 0.008677 0.006367 +14 0.767953 0.061278 0.008079 0.005684 +13 0.733244 0.061050 0.009276 0.005230 +13 0.820766 0.059459 0.008378 0.006594 +13 0.715290 0.058777 0.009276 0.007049 +13 0.780820 0.058208 0.008677 0.006821 +13 0.834381 0.056162 0.009276 0.006367 +13 0.807451 0.056503 0.008079 0.007049 +12 0.676391 0.056503 0.009276 0.007049 +13 0.893178 0.053547 0.008977 0.005684 +11 0.422651 0.053888 0.009276 0.006367 +11 0.248654 0.053774 0.009575 0.006139 +12 0.210503 0.053092 0.008677 0.005684 +12 0.302065 0.052865 0.008677 0.006139 +12 0.195392 0.052979 0.008977 0.006367 +13 0.850090 0.052183 0.008977 0.006594 +12 0.600987 0.051046 0.009276 0.007049 +12 0.334680 0.050705 0.009276 0.007276 +12 0.179683 0.050477 0.009276 0.006821 +14 0.906194 0.050364 0.009276 0.007503 +13 0.871335 0.050364 0.008378 0.007503 +13 0.583034 0.049454 0.009276 0.007503 +13 0.165021 0.047863 0.008677 0.006139 +13 0.919958 0.047294 0.009276 0.006821 +12 0.352334 0.047181 0.008677 0.006594 +12 0.542639 0.045816 0.008677 0.006594 +12 0.370886 0.045475 0.008677 0.006821 +12 0.146170 0.044793 0.009276 0.007276 +18 0.512717 0.043201 0.008677 0.005912 +18 0.390335 0.042633 0.009276 0.006594 +18 0.468133 0.041269 0.009276 0.006594 +5 0.106972 0.414848 0.023040 0.022510 +0 0.088719 0.658367 0.022442 0.023874 +2 0.088420 0.516257 0.018253 0.017963 +2 0.087822 0.907344 0.018253 0.017963 +2 0.092908 0.222260 0.018851 0.018417 +0 0.091113 0.162460 0.014063 0.023420 +4 0.744913 0.063552 0.008677 0.015689 +2 0.088121 0.940996 0.018851 0.018872 +5 0.113555 0.470100 0.008677 0.014779 +2 0.091113 0.269100 0.018851 0.018417 +2 0.089318 0.735903 0.023639 0.017963 +4 0.871484 0.305707 0.009276 0.016144 +4 0.882855 0.051046 0.010473 0.014325 +0 0.087522 0.414620 0.012867 0.022965 +5 0.111460 0.572647 0.008079 0.015234 +0 0.089916 0.867553 0.023639 0.022965 +5 0.111460 0.659050 0.008079 0.014325 +5 0.129114 0.549454 0.006284 0.009777 +2 0.087223 0.697249 0.020646 0.018872 +3 0.739826 0.472601 0.005685 0.011596 +4 0.372382 0.415075 0.009276 0.012960 +3 0.827499 0.306162 0.007481 0.018872 +3 0.412478 0.741587 0.005685 0.010232 +1 0.088121 0.620168 0.022442 0.030241 +5 0.112059 0.911664 0.008079 0.013870 +4 0.709605 0.572874 0.009874 0.015689 +3 0.909785 0.211346 0.004488 0.009322 +3 0.415171 0.702251 0.005087 0.008868 +1 0.113854 0.224079 0.003291 0.010232 +4 0.375673 0.368918 0.013465 0.016144 +5 0.111759 0.699977 0.008677 0.014325 +3 0.151855 0.555139 0.007481 0.016598 +5 0.111460 0.867326 0.009276 0.014325 +3 0.313435 0.555821 0.006284 0.017053 +4 0.152753 0.839586 0.010473 0.014325 +2 0.100239 0.078899 0.010174 0.013188 +4 0.103830 0.160641 0.008378 0.014325 +5 0.110413 0.161551 0.008378 0.014325 +5 0.117295 0.161551 0.008378 0.014325 +4 0.084979 0.366189 0.008378 0.014325 +4 0.096349 0.362551 0.008378 0.014325 +4 0.088570 0.793201 0.008378 0.014325 +5 0.094554 0.793201 0.008378 0.014325 +4 0.082585 0.787290 0.008378 0.014325 +4 0.093357 0.782970 0.008378 0.014325 +4 0.087971 0.580150 0.008378 0.011596 +5 0.094554 0.580150 0.008378 0.011596 +4 0.081987 0.575375 0.008378 0.014325 +4 0.093956 0.571282 0.008378 0.014325 +4 0.087074 0.116075 0.008378 0.014325 +4 0.093656 0.112210 0.008378 0.014325 +5 0.100539 0.111755 0.008378 0.014325 +4 0.085877 0.326398 0.008378 0.014325 +4 0.097546 0.322078 0.008378 0.014325 +4 0.087971 0.828217 0.008378 0.012960 +5 0.094554 0.828217 0.008378 0.012960 +4 0.081987 0.823897 0.008378 0.014325 +4 0.092759 0.818895 0.008378 0.014325 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_19.jpg b/data_dataset/dvo/debug/debug_19.jpg new file mode 100644 index 0000000..7503e83 Binary files /dev/null and b/data_dataset/dvo/debug/debug_19.jpg differ diff --git a/data_dataset/dvo/debug/debug_19.txt b/data_dataset/dvo/debug/debug_19.txt new file mode 100644 index 0000000..2ab74ff --- /dev/null +++ b/data_dataset/dvo/debug/debug_19.txt @@ -0,0 +1,476 @@ +7 0.723818 0.945998 0.011969 0.015689 +6 0.187014 0.900523 0.009575 0.018417 +10 0.476361 0.892224 0.010174 0.003183 +10 0.149910 0.867894 0.010772 0.003638 +10 0.615200 0.867440 0.006583 0.003638 +10 0.761221 0.847658 0.007780 0.002274 +10 0.783363 0.801728 0.006583 0.003183 +10 0.761520 0.801501 0.005984 0.003638 +8 0.371335 0.795816 0.005984 0.016826 +10 0.271394 0.784675 0.011969 0.001819 +10 0.486834 0.783765 0.011969 0.001819 +10 0.412029 0.781378 0.009575 0.001592 +10 0.475165 0.748295 0.007780 0.002729 +10 0.215440 0.743747 0.007780 0.002729 +6 0.763315 0.749090 0.007181 0.021146 +9 0.615799 0.746817 0.012567 0.021146 +10 0.615500 0.713279 0.005984 0.004548 +9 0.741771 0.710209 0.004788 0.038881 +10 0.637343 0.696226 0.007780 0.003183 +9 0.385996 0.696680 0.005386 0.022738 +9 0.189707 0.694861 0.010174 0.028195 +10 0.251945 0.651432 0.006583 0.002729 +6 0.191203 0.644725 0.009575 0.017963 +6 0.887193 0.643815 0.009575 0.017963 +6 0.696589 0.643361 0.008977 0.017963 +6 0.596649 0.643133 0.008977 0.017508 +6 0.493716 0.643361 0.008977 0.017963 +6 0.396469 0.643133 0.009575 0.017508 +6 0.293537 0.643133 0.009575 0.018417 +6 0.792639 0.643133 0.009575 0.018417 +7 0.355177 0.553547 0.011969 0.012960 +7 0.253441 0.553774 0.011969 0.013415 +7 0.153202 0.554002 0.012567 0.013870 +9 0.653800 0.537403 0.004788 0.034334 +7 0.658588 0.489654 0.011969 0.012506 +8 0.560144 0.487381 0.011370 0.007958 +7 0.751346 0.489654 0.011969 0.013415 +7 0.455117 0.487381 0.011969 0.008868 +8 0.357570 0.487153 0.011969 0.008413 +7 0.254937 0.489654 0.012567 0.013415 +7 0.152005 0.489654 0.012567 0.013415 +9 0.519150 0.491473 0.007181 0.042519 +10 0.621185 0.439973 0.006583 0.004548 +10 0.419808 0.439063 0.007181 0.002729 +10 0.299222 0.416098 0.006583 0.004093 +10 0.494315 0.414052 0.006583 0.004548 +7 0.704369 0.395748 0.012567 0.017053 +10 0.253740 0.397908 0.006583 0.002274 +7 0.658588 0.398477 0.011969 0.012960 +7 0.558947 0.398477 0.011370 0.012960 +7 0.752843 0.398249 0.012567 0.013415 +8 0.876421 0.329354 0.013166 0.006594 +8 0.668163 0.329354 0.008378 0.007503 +10 0.561640 0.328786 0.011969 0.005002 +8 0.452124 0.328217 0.011969 0.007049 +8 0.357570 0.328217 0.009575 0.007958 +8 0.271394 0.328217 0.011969 0.007958 +8 0.182226 0.327990 0.011969 0.007503 +9 0.909336 0.236698 0.005984 0.021373 +9 0.461101 0.231355 0.004788 0.030696 +9 0.697786 0.222033 0.005386 0.023874 +9 0.765410 0.192474 0.008977 0.022055 +9 0.243866 0.189291 0.009575 0.022055 +10 0.810592 0.164961 0.008378 0.002501 +10 0.297726 0.162574 0.007181 0.004548 +10 0.479653 0.161210 0.009575 0.002729 +9 0.740874 0.136767 0.010174 0.029786 +9 0.339318 0.129945 0.008977 0.021601 +9 0.106224 0.122783 0.005984 0.025921 +8 0.637642 0.116189 0.009575 0.018190 +10 0.197187 0.110960 0.016756 0.002274 +10 0.694494 0.109823 0.008378 0.001819 +10 0.893776 0.104366 0.005984 0.001819 +10 0.874028 0.103456 0.007181 0.001819 +10 0.465290 0.105048 0.008977 0.002729 +9 0.848294 0.077080 0.004788 0.021373 +9 0.781867 0.078558 0.009575 0.025239 +8 0.667265 0.069236 0.012567 0.007503 +8 0.558348 0.069691 0.010174 0.009322 +8 0.453321 0.069009 0.010772 0.007958 +8 0.358468 0.068099 0.008977 0.007958 +6 0.740575 0.071737 0.009575 0.016144 +9 0.893776 0.071623 0.009575 0.022283 +9 0.911430 0.069350 0.005386 0.025011 +15 0.076900 0.954297 0.003591 0.004093 +16 0.077050 0.822078 0.005087 0.004320 +11 0.151257 0.951910 0.009874 0.006139 +11 0.674895 0.951228 0.009874 0.006594 +11 0.633303 0.951000 0.009276 0.006139 +11 0.566577 0.951114 0.009874 0.006367 +11 0.214243 0.951228 0.009575 0.006594 +11 0.849342 0.950773 0.010473 0.006594 +11 0.761071 0.950659 0.009874 0.006367 +11 0.418761 0.950773 0.009874 0.006594 +12 0.349192 0.951000 0.009575 0.007049 +17 0.256583 0.951000 0.009874 0.007049 +17 0.474417 0.950887 0.011071 0.007276 +11 0.149312 0.908140 0.009575 0.005912 +11 0.889886 0.901432 0.010174 0.006139 +17 0.798175 0.901546 0.009874 0.006367 +17 0.707211 0.901774 0.009874 0.006821 +12 0.608019 0.901887 0.009575 0.007049 +11 0.759725 0.899159 0.009575 0.005230 +12 0.636445 0.899386 0.009575 0.005684 +11 0.849791 0.898931 0.007780 0.005684 +11 0.676092 0.899159 0.009874 0.006139 +11 0.511969 0.896544 0.009575 0.006367 +12 0.385996 0.896771 0.008977 0.006821 +11 0.567475 0.896430 0.010473 0.007049 +11 0.475464 0.894497 0.008977 0.005002 +12 0.420407 0.894384 0.008378 0.005684 +12 0.067175 0.893702 0.004488 0.005230 +12 0.352035 0.888927 0.009874 0.006594 +11 0.257481 0.879377 0.009276 0.007503 +18 0.290844 0.876876 0.008977 0.006139 +11 0.292938 0.832765 0.009575 0.006139 +18 0.313136 0.872783 0.005685 0.004320 +18 0.406643 0.865052 0.011969 0.004320 +11 0.890784 0.852547 0.010174 0.005684 +11 0.798923 0.852660 0.010772 0.006821 +11 0.709455 0.852433 0.010174 0.006367 +12 0.607870 0.852547 0.009874 0.006594 +12 0.387642 0.852547 0.011071 0.006594 +11 0.850688 0.849818 0.008977 0.005684 +11 0.760922 0.849818 0.007780 0.005684 +11 0.675643 0.850045 0.007780 0.006139 +12 0.636146 0.849932 0.008977 0.005912 +11 0.475015 0.847431 0.009874 0.006367 +12 0.422651 0.847317 0.010473 0.007049 +11 0.350539 0.845498 0.008677 0.006139 +11 0.568971 0.845043 0.009874 0.006139 +11 0.513615 0.844816 0.009276 0.006594 +12 0.215889 0.835948 0.008677 0.007049 +12 0.189707 0.835948 0.008977 0.007049 +11 0.255984 0.834811 0.009874 0.006594 +18 0.151855 0.827535 0.008677 0.006594 +12 0.170856 0.801387 0.008378 0.005230 +12 0.294285 0.801160 0.008677 0.005684 +12 0.258528 0.801160 0.008977 0.005684 +12 0.216487 0.801273 0.008677 0.005912 +12 0.189557 0.801046 0.008677 0.005457 +12 0.276032 0.800705 0.009276 0.005684 +11 0.874776 0.800364 0.009874 0.005912 +11 0.850090 0.800250 0.009575 0.005684 +12 0.760772 0.800023 0.009276 0.005230 +11 0.695093 0.800364 0.009575 0.005912 +12 0.635996 0.800364 0.009874 0.005912 +12 0.608618 0.800364 0.009575 0.005912 +12 0.588270 0.800364 0.009575 0.005912 +12 0.569868 0.799909 0.009276 0.005002 +12 0.532615 0.800023 0.007780 0.005230 +12 0.513914 0.800136 0.008677 0.005457 +12 0.495063 0.800023 0.009276 0.005230 +12 0.473668 0.800023 0.008977 0.005230 +12 0.421005 0.800477 0.009575 0.006139 +12 0.387044 0.800250 0.008677 0.005684 +12 0.370586 0.800250 0.008677 0.005684 +12 0.351586 0.800477 0.009575 0.006139 +12 0.312687 0.800477 0.008977 0.006139 +11 0.783064 0.799682 0.009575 0.005457 +18 0.675344 0.800023 0.009575 0.006139 +12 0.151855 0.795589 0.009874 0.005457 +12 0.151855 0.801046 0.009874 0.005457 +18 0.188809 0.765462 0.007181 0.005230 +11 0.852035 0.756139 0.009874 0.005684 +11 0.761071 0.756139 0.009874 0.005684 +11 0.676990 0.755798 0.008677 0.005002 +13 0.635548 0.755684 0.010174 0.006594 +11 0.890335 0.753865 0.009874 0.005684 +11 0.799072 0.753297 0.010473 0.006367 +11 0.707810 0.753183 0.009874 0.006139 +12 0.607121 0.753297 0.009575 0.006367 +17 0.616697 0.739427 0.007181 0.002729 +17 0.513914 0.753183 0.009276 0.006139 +11 0.475613 0.750568 0.007481 0.005457 +12 0.421155 0.750682 0.009874 0.005684 +11 0.293238 0.748636 0.008378 0.006139 +11 0.566577 0.748408 0.008677 0.006594 +11 0.350688 0.748295 0.008977 0.006367 +11 0.257481 0.746135 0.008079 0.005684 +12 0.215589 0.746135 0.008079 0.005684 +11 0.151257 0.743633 0.009874 0.007049 +18 0.179683 0.721805 0.009276 0.007958 +12 0.190754 0.686107 0.008677 0.007503 +18 0.837672 0.702365 0.005087 0.003183 +18 0.624327 0.701342 0.004488 0.003411 +12 0.636595 0.698727 0.008677 0.006367 +11 0.852334 0.698272 0.009276 0.006367 +11 0.761370 0.698386 0.009276 0.006594 +11 0.677887 0.698386 0.009874 0.006594 +11 0.709007 0.696112 0.009874 0.005684 +12 0.608618 0.696112 0.009575 0.005684 +11 0.892430 0.695884 0.009276 0.006139 +11 0.798923 0.695884 0.009575 0.006139 +11 0.514811 0.695884 0.009276 0.006139 +12 0.421005 0.693383 0.008977 0.006594 +11 0.474417 0.693042 0.008677 0.006821 +11 0.296379 0.690996 0.009276 0.007276 +12 0.389288 0.690541 0.008378 0.007276 +11 0.568971 0.690427 0.008677 0.007958 +12 0.216338 0.688608 0.009575 0.006139 +11 0.257780 0.688381 0.008677 0.006594 +18 0.352334 0.684970 0.008677 0.006139 +11 0.150958 0.681332 0.009276 0.007049 +11 0.848294 0.659050 0.009575 0.006139 +11 0.454369 0.659050 0.009276 0.006139 +18 0.354728 0.656321 0.009874 0.006139 +11 0.751496 0.656094 0.009874 0.006594 +11 0.656792 0.653820 0.009575 0.006594 +11 0.253890 0.653365 0.009276 0.005684 +11 0.558498 0.651091 0.009276 0.006594 +11 0.152902 0.651091 0.009575 0.006594 +18 0.161430 0.630969 0.005087 0.004548 +17 0.848743 0.613574 0.010473 0.007049 +17 0.455566 0.613802 0.010473 0.007503 +17 0.752543 0.609709 0.007780 0.005684 +11 0.355775 0.610618 0.010772 0.007503 +17 0.656643 0.608572 0.010473 0.007049 +17 0.256284 0.607663 0.010473 0.007049 +11 0.153651 0.605844 0.009874 0.007049 +17 0.560293 0.605048 0.010473 0.007276 +11 0.207361 0.561278 0.004189 0.004320 +13 0.214393 0.538881 0.009276 0.006821 +12 0.172801 0.551501 0.008677 0.005684 +12 0.276032 0.548317 0.009276 0.006594 +12 0.378366 0.546498 0.009276 0.005684 +12 0.518103 0.543770 0.009874 0.006594 +12 0.494764 0.541382 0.008677 0.005457 +12 0.473519 0.538995 0.008079 0.006139 +12 0.455416 0.536153 0.009575 0.006821 +12 0.315230 0.535925 0.008677 0.007276 +12 0.192849 0.535812 0.009276 0.007049 +12 0.617893 0.533765 0.008977 0.006594 +12 0.417115 0.533538 0.010174 0.006139 +13 0.295183 0.532856 0.009276 0.006594 +12 0.598743 0.531833 0.008977 0.007276 +12 0.719779 0.531492 0.008677 0.007503 +12 0.890036 0.529559 0.009276 0.006367 +12 0.399013 0.530355 0.009874 0.007958 +12 0.699731 0.529445 0.009276 0.007049 +11 0.559396 0.528536 0.009874 0.007049 +12 0.870586 0.527399 0.009874 0.007503 +12 0.909186 0.526376 0.009276 0.007276 +11 0.657989 0.525352 0.008378 0.007049 +18 0.848594 0.524102 0.010174 0.006367 +18 0.751795 0.522851 0.011670 0.007503 +12 0.811341 0.508981 0.009874 0.007049 +12 0.811490 0.490337 0.009575 0.006139 +11 0.516756 0.508527 0.008378 0.007049 +11 0.516607 0.490109 0.009276 0.006594 +13 0.417265 0.508640 0.009276 0.007276 +13 0.417265 0.489882 0.008677 0.006139 +11 0.473519 0.508186 0.009276 0.006821 +11 0.472472 0.490109 0.008378 0.005684 +11 0.379862 0.508299 0.009276 0.007503 +11 0.378965 0.489995 0.009276 0.006367 +11 0.773788 0.507731 0.009575 0.007276 +11 0.773040 0.490337 0.011071 0.006139 +11 0.580491 0.504434 0.007780 0.006139 +11 0.579443 0.498295 0.008079 0.004775 +11 0.172651 0.504661 0.008378 0.006594 +11 0.172950 0.497840 0.006583 0.003865 +11 0.677588 0.501592 0.008079 0.005002 +12 0.678785 0.494202 0.005685 0.003865 +13 0.315081 0.500910 0.008378 0.005002 +13 0.315679 0.494202 0.007780 0.004775 +12 0.717385 0.501251 0.008677 0.006139 +12 0.716786 0.495111 0.007481 0.004775 +11 0.275284 0.500341 0.008977 0.006594 +11 0.276032 0.493861 0.006882 0.004093 +12 0.618492 0.498295 0.009575 0.005684 +12 0.618492 0.503979 0.009575 0.005684 +11 0.214393 0.497840 0.009276 0.005684 +12 0.214393 0.503524 0.009276 0.005684 +17 0.851137 0.484993 0.010473 0.006367 +17 0.851137 0.491360 0.010473 0.006367 +13 0.618941 0.441564 0.006882 0.005002 +12 0.811789 0.441678 0.007181 0.006139 +12 0.418612 0.441223 0.008378 0.005230 +13 0.214243 0.441451 0.008378 0.005684 +17 0.659635 0.441451 0.011670 0.006594 +17 0.456164 0.441451 0.010473 0.006594 +17 0.255087 0.441110 0.010473 0.006821 +12 0.752843 0.439177 0.009575 0.006594 +12 0.559994 0.439063 0.008677 0.006367 +12 0.356822 0.438495 0.009276 0.006139 +11 0.152454 0.438608 0.009874 0.006367 +17 0.852334 0.433720 0.010473 0.007503 +12 0.077648 0.430537 0.003890 0.005230 +12 0.213645 0.408254 0.008977 0.006594 +12 0.212597 0.390518 0.008079 0.005684 +12 0.517504 0.406662 0.007481 0.005230 +12 0.517804 0.388245 0.008079 0.006594 +12 0.585129 0.406435 0.012268 0.005684 +12 0.581089 0.390973 0.009575 0.005684 +12 0.315530 0.405298 0.007481 0.004775 +12 0.315081 0.387335 0.009575 0.006594 +12 0.190455 0.404957 0.006882 0.005457 +12 0.189856 0.387676 0.009276 0.006367 +12 0.494165 0.403706 0.008677 0.006594 +12 0.493567 0.385857 0.009276 0.006367 +12 0.295781 0.403251 0.009276 0.006594 +12 0.295183 0.385061 0.009276 0.006594 +17 0.151855 0.403251 0.008677 0.006594 +12 0.151406 0.385061 0.008977 0.005684 +12 0.474865 0.401205 0.010174 0.006139 +12 0.472621 0.382788 0.008677 0.006594 +18 0.252543 0.400750 0.006583 0.006139 +13 0.455266 0.398249 0.009874 0.006594 +13 0.454369 0.379604 0.008079 0.006594 +12 0.358019 0.397681 0.010473 0.007276 +12 0.357421 0.379832 0.010473 0.007049 +12 0.679982 0.388699 0.009276 0.006594 +12 0.774686 0.386198 0.009575 0.006139 +12 0.252095 0.381651 0.009276 0.006139 +12 0.619838 0.378467 0.008677 0.006139 +12 0.719779 0.376194 0.009874 0.007049 +13 0.599791 0.376421 0.010473 0.007503 +12 0.812986 0.373238 0.009575 0.006594 +13 0.699731 0.373238 0.010473 0.006594 +13 0.792639 0.370737 0.008977 0.007049 +16 0.077349 0.310027 0.004488 0.007958 +17 0.853531 0.300705 0.010473 0.007049 +17 0.426242 0.299795 0.011670 0.007049 +11 0.744315 0.296839 0.011071 0.007503 +11 0.340515 0.295930 0.011370 0.007503 +17 0.637493 0.295248 0.010473 0.007049 +17 0.244614 0.292974 0.011071 0.007049 +11 0.534859 0.290928 0.009874 0.008413 +11 0.153950 0.290018 0.011670 0.008413 +12 0.067923 0.275921 0.004788 0.006139 +12 0.078546 0.234993 0.004488 0.003411 +12 0.077947 0.224989 0.005685 0.012506 +12 0.914871 0.230787 0.009874 0.006367 +12 0.895123 0.228286 0.008677 0.005912 +13 0.873728 0.226353 0.010174 0.006594 +11 0.636146 0.224989 0.008977 0.007503 +13 0.464692 0.224534 0.008378 0.006594 +11 0.243417 0.223852 0.008677 0.006139 +12 0.852184 0.223624 0.010772 0.007503 +11 0.782316 0.221805 0.009276 0.006594 +17 0.535458 0.222260 0.011071 0.008413 +17 0.153651 0.220441 0.011071 0.008413 +11 0.372531 0.218508 0.008977 0.006367 +11 0.744165 0.218167 0.010174 0.008413 +13 0.700628 0.217030 0.008677 0.007049 +11 0.427139 0.216803 0.009874 0.007503 +12 0.296230 0.215780 0.008977 0.006367 +11 0.339767 0.215439 0.009874 0.007503 +14 0.077947 0.203502 0.005685 0.006367 +13 0.079892 0.194634 0.004788 0.008640 +14 0.077349 0.155753 0.004488 0.003638 +11 0.743118 0.189063 0.007481 0.006594 +17 0.338570 0.189291 0.011071 0.007958 +11 0.338869 0.170191 0.009276 0.007958 +11 0.153052 0.186789 0.008677 0.006594 +12 0.766308 0.186335 0.007780 0.006594 +14 0.637193 0.185653 0.008677 0.006139 +12 0.533962 0.185312 0.009276 0.006821 +12 0.804458 0.183606 0.009276 0.006594 +11 0.245512 0.183606 0.008079 0.006594 +17 0.244913 0.170191 0.010473 0.007958 +11 0.182525 0.183606 0.008977 0.006594 +11 0.660383 0.183038 0.008977 0.006367 +11 0.557151 0.182697 0.010174 0.006594 +12 0.596050 0.180537 0.008977 0.005002 +11 0.279773 0.181105 0.007780 0.006139 +12 0.078546 0.181787 0.006882 0.008413 +13 0.102184 0.178149 0.005087 0.002956 +14 0.109665 0.177012 0.004488 0.005230 +12 0.492071 0.176899 0.008079 0.005912 +17 0.851885 0.173602 0.009575 0.006594 +17 0.852035 0.184288 0.008677 0.007049 +17 0.743268 0.173261 0.011370 0.007731 +12 0.420257 0.170873 0.005685 0.004775 +12 0.430431 0.169850 0.010473 0.008186 +14 0.077648 0.145521 0.005087 0.004093 +15 0.077947 0.140632 0.005685 0.004320 +11 0.785757 0.129036 0.008977 0.006594 +12 0.595153 0.128695 0.009575 0.006821 +13 0.702723 0.126762 0.008677 0.005684 +12 0.375224 0.127103 0.007181 0.006367 +11 0.851287 0.126194 0.007181 0.005457 +12 0.851436 0.118349 0.009874 0.006139 +11 0.742519 0.126307 0.008677 0.005684 +12 0.915021 0.125853 0.006583 0.005684 +13 0.574806 0.125625 0.008378 0.005230 +15 0.202573 0.126080 0.008378 0.006139 +14 0.077947 0.129718 0.005685 0.014325 +12 0.080341 0.119941 0.004488 0.004320 +15 0.077947 0.107094 0.005685 0.014552 +15 0.078546 0.089814 0.006882 0.005457 +15 0.078546 0.095271 0.006882 0.005457 +12 0.079743 0.060141 0.009276 0.006139 +15 0.182077 0.124261 0.008079 0.003865 +12 0.491173 0.125284 0.008677 0.006367 +18 0.425643 0.124716 0.006882 0.006139 +12 0.680431 0.123806 0.008378 0.006139 +13 0.295931 0.123920 0.006583 0.006367 +11 0.341263 0.123920 0.008079 0.006821 +13 0.340215 0.115393 0.010174 0.008413 +13 0.896020 0.123579 0.009276 0.006594 +11 0.639138 0.121987 0.005984 0.003865 +11 0.534560 0.123124 0.008079 0.006594 +13 0.466038 0.122783 0.008677 0.005912 +18 0.467834 0.138245 0.005685 0.002729 +12 0.876122 0.121078 0.008378 0.005230 +14 0.276631 0.121646 0.008079 0.006367 +13 0.447038 0.120282 0.006583 0.004548 +11 0.154698 0.120964 0.005984 0.005912 +12 0.247606 0.118463 0.005087 0.004093 +11 0.742669 0.117894 0.011370 0.007958 +15 0.096200 0.111301 0.009874 0.008413 +12 0.106972 0.076967 0.007481 0.006139 +12 0.096948 0.078331 0.005984 0.003411 +11 0.095601 0.069236 0.008677 0.007503 +12 0.105476 0.060255 0.009276 0.008186 +13 0.105476 0.051842 0.005685 0.004093 +18 0.559994 0.070373 0.007481 0.002956 +11 0.783214 0.070714 0.007481 0.005002 +12 0.852184 0.070487 0.007181 0.005912 +14 0.876122 0.067872 0.008378 0.006139 +12 0.181777 0.066508 0.006284 0.005230 +14 0.895422 0.064916 0.006882 0.005684 +13 0.916068 0.062756 0.008079 0.006821 +0 0.101287 0.798431 0.022442 0.023874 +2 0.099791 0.599704 0.020646 0.020236 +2 0.100090 0.283424 0.018851 0.018872 +2 0.100090 0.857776 0.018851 0.019782 +5 0.125224 0.067872 0.009276 0.015234 +2 0.098893 0.644952 0.021245 0.019782 +2 0.099791 0.945543 0.021843 0.020691 +2 0.100090 0.902115 0.020048 0.021146 +2 0.098893 0.552865 0.020048 0.020236 +5 0.123728 0.394611 0.008677 0.013870 +5 0.839168 0.481924 0.008079 0.013870 +5 0.124327 0.333902 0.008677 0.016144 +5 0.124925 0.602433 0.008677 0.014779 +5 0.124327 0.287062 0.008677 0.015234 +5 0.124925 0.648363 0.008677 0.016598 +4 0.461251 0.847090 0.009874 0.016598 +5 0.124925 0.111983 0.008677 0.013415 +5 0.124028 0.488063 0.008079 0.013415 +4 0.407690 0.847090 0.009276 0.012051 +5 0.463046 0.890746 0.008677 0.014779 +4 0.749701 0.698386 0.009874 0.016598 +5 0.245212 0.742497 0.008677 0.013870 +5 0.625224 0.846635 0.008677 0.014779 +4 0.664123 0.698840 0.009874 0.015689 +1 0.100090 0.443270 0.022442 0.040246 +5 0.409485 0.890746 0.008079 0.014779 +1 0.100987 0.708845 0.021843 0.041155 +4 0.204518 0.836403 0.009874 0.016144 +5 0.203621 0.742269 0.009276 0.014325 +5 0.124327 0.555593 0.008677 0.013870 +5 0.125224 0.904616 0.008079 0.014325 +5 0.125524 0.240905 0.008677 0.013870 +1 0.100688 0.396885 0.022442 0.040246 +5 0.124626 0.440769 0.008079 0.014325 +5 0.839767 0.847317 0.008079 0.014325 +0 0.839168 0.697249 0.009276 0.008868 +4 0.243118 0.835039 0.009276 0.016144 +5 0.124028 0.706571 0.008079 0.014779 +1 0.100688 0.751364 0.022442 0.036153 +5 0.244913 0.877785 0.008079 0.009777 +0 0.097546 0.489768 0.014363 0.023647 +3 0.094405 0.327535 0.008677 0.014779 +4 0.104129 0.327535 0.008378 0.014779 +4 0.107121 0.118577 0.008378 0.014779 +4 0.094405 0.235448 0.008677 0.014779 +5 0.104728 0.235448 0.008378 0.014779 +4 0.308648 0.904388 0.008677 0.014779 +5 0.317774 0.903251 0.008378 0.014779 +3 0.078097 0.208163 0.004788 0.014779 +4 0.312238 0.861642 0.008677 0.014779 +5 0.321364 0.862096 0.008378 0.014779 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_2.jpg b/data_dataset/dvo/debug/debug_2.jpg new file mode 100644 index 0000000..5103195 Binary files /dev/null and b/data_dataset/dvo/debug/debug_2.jpg differ diff --git a/data_dataset/dvo/debug/debug_2.txt b/data_dataset/dvo/debug/debug_2.txt new file mode 100644 index 0000000..6ec740a --- /dev/null +++ b/data_dataset/dvo/debug/debug_2.txt @@ -0,0 +1,592 @@ +7 0.873279 0.945771 0.011670 0.015689 +7 0.772142 0.945771 0.011670 0.013870 +8 0.203321 0.942133 0.011071 0.008413 +7 0.689856 0.944861 0.012268 0.013870 +8 0.628815 0.942360 0.011071 0.009777 +7 0.586625 0.944179 0.011670 0.013415 +7 0.388839 0.942815 0.012268 0.011596 +6 0.648564 0.943952 0.011071 0.019327 +6 0.449282 0.943042 0.009874 0.018417 +6 0.258977 0.943270 0.009874 0.018872 +10 0.475613 0.848454 0.008677 0.003865 +10 0.487283 0.829582 0.006882 0.003411 +10 0.789198 0.825034 0.006284 0.003411 +10 0.874776 0.824807 0.008677 0.003865 +10 0.773639 0.824579 0.008677 0.004320 +9 0.666816 0.828445 0.008079 0.034789 +9 0.650658 0.820714 0.008079 0.021146 +10 0.608169 0.823897 0.006882 0.004775 +10 0.241921 0.818440 0.006882 0.002956 +10 0.701825 0.806162 0.006284 0.002956 +10 0.451376 0.767508 0.012867 0.005684 +8 0.431628 0.766598 0.011670 0.008413 +6 0.566577 0.768645 0.009874 0.018872 +8 0.430730 0.709072 0.011071 0.008868 +6 0.222172 0.710437 0.010473 0.018872 +6 0.259874 0.710891 0.010473 0.019782 +6 0.450778 0.710209 0.010473 0.019327 +9 0.700628 0.526717 0.008677 0.028877 +10 0.230850 0.519895 0.007481 0.004320 +10 0.763465 0.514438 0.007481 0.003411 +10 0.683573 0.514438 0.009276 0.003411 +10 0.288300 0.471919 0.009874 0.003865 +10 0.155147 0.454638 0.006882 0.004775 +9 0.447786 0.454184 0.010473 0.022055 +10 0.562986 0.445543 0.008677 0.002956 +7 0.673698 0.321623 0.012268 0.014325 +8 0.612358 0.319122 0.011670 0.009322 +6 0.634800 0.320487 0.011071 0.019327 +6 0.265560 0.320259 0.011071 0.018872 +8 0.674297 0.258413 0.012268 0.008868 +7 0.612657 0.259095 0.012268 0.010232 +8 0.298474 0.258186 0.012268 0.008413 +6 0.635099 0.259322 0.010473 0.020691 +6 0.264662 0.258640 0.011670 0.019327 +10 0.692849 0.208390 0.007481 0.003411 +9 0.513016 0.209982 0.011670 0.032970 +9 0.480102 0.212938 0.008079 0.027058 +9 0.575853 0.210437 0.009276 0.035698 +9 0.366697 0.210664 0.011071 0.036153 +9 0.801167 0.207253 0.008677 0.030241 +10 0.786206 0.205889 0.007481 0.004775 +10 0.744913 0.205889 0.008677 0.004775 +9 0.223369 0.210891 0.010473 0.037517 +9 0.206314 0.210891 0.011071 0.037517 +9 0.853830 0.207708 0.008677 0.032060 +10 0.594704 0.205434 0.007481 0.004775 +9 0.557301 0.208618 0.010473 0.033879 +9 0.466038 0.208845 0.011071 0.034334 +10 0.292490 0.188154 0.006284 0.002046 +10 0.276032 0.187017 0.010473 0.004320 +9 0.754189 0.199636 0.010473 0.029104 +10 0.890335 0.184743 0.006284 0.004320 +10 0.317624 0.150182 0.006284 0.003411 +9 0.654548 0.143020 0.008677 0.018645 +10 0.153052 0.139040 0.008677 0.005684 +6 0.834680 0.139950 0.009874 0.017508 +7 0.802065 0.139495 0.011670 0.013870 +6 0.450180 0.139040 0.010473 0.019327 +6 0.400808 0.137904 0.009874 0.018872 +10 0.412178 0.092883 0.006284 0.004320 +8 0.154249 0.075603 0.008677 0.020691 +7 0.634500 0.079013 0.012867 0.008413 +8 0.266158 0.079013 0.012268 0.007503 +7 0.205715 0.078331 0.008677 0.007958 +7 0.612358 0.080377 0.012867 0.013870 +6 0.226661 0.080377 0.009874 0.017508 +6 0.366996 0.079695 0.010473 0.018872 +6 0.745811 0.078558 0.010473 0.019327 +12 0.507780 0.958504 0.008977 0.006594 +12 0.484740 0.958504 0.008977 0.006594 +11 0.789497 0.951683 0.009276 0.006594 +11 0.750898 0.951569 0.008677 0.006367 +12 0.604428 0.950432 0.008977 0.005912 +11 0.180730 0.950887 0.008977 0.006821 +13 0.077199 0.951342 0.005984 0.007731 +11 0.564034 0.950205 0.009575 0.006367 +17 0.219479 0.950318 0.009874 0.006594 +11 0.406942 0.949750 0.008977 0.006367 +12 0.316577 0.949864 0.010174 0.006594 +12 0.295033 0.949864 0.010174 0.006594 +11 0.366397 0.949409 0.009276 0.006594 +18 0.809246 0.943724 0.008079 0.005230 +12 0.896619 0.932697 0.009276 0.005912 +13 0.708707 0.931901 0.009276 0.006139 +12 0.450479 0.886312 0.009874 0.006821 +12 0.468582 0.884266 0.008977 0.005457 +13 0.510024 0.884152 0.009276 0.006139 +12 0.429982 0.883697 0.007780 0.006139 +17 0.221873 0.882674 0.009874 0.007731 +12 0.564782 0.881537 0.009874 0.006367 +12 0.487133 0.881537 0.010174 0.006367 +11 0.368492 0.881082 0.008677 0.006367 +13 0.534111 0.878922 0.008977 0.005684 +11 0.873878 0.874602 0.009276 0.006139 +11 0.751496 0.874716 0.009874 0.006367 +12 0.708707 0.874034 0.009276 0.005912 +12 0.691652 0.874375 0.009874 0.006594 +12 0.667415 0.874034 0.009276 0.005912 +12 0.205566 0.874261 0.009575 0.006367 +17 0.791442 0.874147 0.010174 0.007049 +12 0.649013 0.873920 0.008977 0.006594 +12 0.628665 0.873806 0.009575 0.006367 +13 0.605326 0.873920 0.009575 0.006594 +12 0.586924 0.873579 0.009874 0.006821 +12 0.184022 0.868690 0.009575 0.007049 +12 0.368492 0.831514 0.009874 0.006367 +12 0.511969 0.828558 0.009575 0.005912 +12 0.511969 0.834470 0.009575 0.005912 +12 0.319120 0.828104 0.009874 0.005912 +12 0.319120 0.834015 0.009874 0.005912 +11 0.182226 0.826967 0.008977 0.005457 +11 0.182226 0.832424 0.008977 0.005457 +12 0.565679 0.826512 0.009276 0.005457 +12 0.565679 0.831969 0.009276 0.005457 +18 0.486984 0.826171 0.008079 0.005684 +12 0.486984 0.831855 0.008079 0.005684 +12 0.469479 0.832083 0.009575 0.006139 +12 0.469479 0.825944 0.009575 0.006139 +12 0.450928 0.825830 0.009575 0.005912 +12 0.450928 0.831742 0.009575 0.005912 +12 0.432077 0.831742 0.008977 0.005912 +12 0.432077 0.825830 0.008977 0.005912 +12 0.409785 0.831628 0.009874 0.006139 +12 0.409785 0.825489 0.009874 0.006139 +12 0.391083 0.831628 0.009575 0.006139 +11 0.391083 0.825489 0.009575 0.006139 +18 0.297726 0.825603 0.009575 0.006367 +12 0.297726 0.831969 0.009575 0.006367 +12 0.818522 0.825148 0.008677 0.006367 +12 0.810293 0.822533 0.008977 0.005684 +12 0.278725 0.829127 0.009874 0.005684 +12 0.278725 0.823442 0.009874 0.005684 +12 0.874925 0.822419 0.008977 0.005457 +12 0.874925 0.827876 0.008977 0.005457 +12 0.854279 0.827876 0.009575 0.005457 +12 0.854279 0.822419 0.009575 0.005457 +12 0.837223 0.822419 0.009575 0.005457 +12 0.837223 0.827876 0.009575 0.005457 +12 0.791143 0.827535 0.008977 0.005230 +12 0.791143 0.822306 0.008977 0.005230 +12 0.774087 0.827876 0.009575 0.005457 +12 0.774087 0.822419 0.009575 0.005457 +12 0.752843 0.822647 0.008977 0.005912 +12 0.752843 0.828558 0.008977 0.005912 +12 0.649312 0.822306 0.007780 0.005230 +18 0.649312 0.827535 0.007780 0.005230 +12 0.204817 0.822192 0.008677 0.005002 +12 0.204817 0.827194 0.008677 0.005002 +11 0.204817 0.832196 0.008677 0.005002 +12 0.668013 0.821510 0.009276 0.005457 +12 0.668013 0.826967 0.009276 0.005457 +12 0.630610 0.827649 0.008677 0.005912 +12 0.630610 0.821737 0.008677 0.005912 +12 0.606822 0.827308 0.009575 0.005684 +12 0.606822 0.821623 0.009575 0.005684 +12 0.587672 0.821396 0.008977 0.005230 +12 0.587672 0.826626 0.008977 0.005230 +12 0.259725 0.820714 0.008977 0.005684 +12 0.259725 0.826398 0.008977 0.005684 +18 0.238779 0.820714 0.008977 0.005684 +12 0.238779 0.826398 0.008977 0.005684 +18 0.238779 0.832083 0.008977 0.005684 +12 0.220975 0.820714 0.009276 0.005684 +12 0.220975 0.826398 0.009276 0.005684 +12 0.220975 0.832083 0.009276 0.005684 +12 0.899013 0.819463 0.009276 0.005912 +12 0.899013 0.825375 0.009276 0.005912 +12 0.710353 0.819009 0.008977 0.005912 +12 0.710353 0.824920 0.008977 0.005912 +12 0.691951 0.819009 0.009276 0.005912 +12 0.691951 0.824920 0.009276 0.005912 +12 0.836176 0.770578 0.009276 0.006367 +12 0.259126 0.770123 0.009575 0.006367 +18 0.153052 0.768531 0.006284 0.004093 +13 0.896619 0.768190 0.009276 0.006139 +12 0.854728 0.767963 0.009276 0.005684 +12 0.809096 0.767622 0.007181 0.005912 +12 0.240126 0.767167 0.009276 0.005912 +13 0.318971 0.766826 0.008378 0.006139 +12 0.277977 0.766940 0.009575 0.006367 +12 0.874626 0.765234 0.009575 0.006594 +11 0.753591 0.765121 0.009276 0.006367 +18 0.182376 0.765348 0.009874 0.006821 +12 0.295931 0.764779 0.009575 0.006594 +11 0.368791 0.763984 0.009276 0.006821 +13 0.910383 0.762733 0.008079 0.006139 +12 0.707810 0.762392 0.008079 0.005457 +13 0.334381 0.761141 0.008677 0.006594 +12 0.692101 0.759663 0.008977 0.006367 +17 0.608468 0.759891 0.009874 0.007731 +11 0.875823 0.701910 0.009575 0.006367 +17 0.792639 0.702592 0.010174 0.007731 +11 0.182077 0.702024 0.009874 0.006594 +12 0.296529 0.701342 0.009575 0.006139 +11 0.367445 0.700887 0.008977 0.006139 +12 0.321813 0.698613 0.009874 0.006139 +12 0.774237 0.694748 0.009874 0.007503 +12 0.649611 0.693838 0.009575 0.006594 +12 0.487283 0.693952 0.009276 0.007731 +13 0.709455 0.691451 0.008378 0.006367 +12 0.668462 0.691792 0.008977 0.007049 +12 0.629264 0.691564 0.009575 0.006594 +12 0.511221 0.691110 0.009276 0.006594 +12 0.753291 0.688836 0.009874 0.007503 +11 0.565679 0.688154 0.009276 0.007049 +12 0.691652 0.687813 0.009874 0.007276 +13 0.725015 0.685425 0.009575 0.007049 +17 0.875823 0.649159 0.009575 0.006367 +11 0.701676 0.632219 0.008977 0.006139 +18 0.152902 0.636653 0.008977 0.005912 +18 0.152902 0.630741 0.008977 0.005912 +17 0.183573 0.630286 0.009874 0.006821 +17 0.766008 0.629604 0.010174 0.007276 +11 0.342460 0.628467 0.009276 0.006821 +17 0.251496 0.628581 0.010473 0.007049 +11 0.482196 0.626307 0.008677 0.006139 +11 0.423399 0.626080 0.008977 0.005684 +17 0.362208 0.625739 0.010473 0.006821 +11 0.563435 0.623920 0.009575 0.006821 +17 0.501047 0.623465 0.009874 0.006821 +13 0.621783 0.623579 0.010174 0.007958 +11 0.668761 0.621533 0.008977 0.006594 +11 0.703321 0.596862 0.009276 0.006367 +12 0.764811 0.594588 0.008977 0.006367 +11 0.184022 0.595043 0.010772 0.007276 +11 0.340215 0.593565 0.008378 0.006139 +17 0.251945 0.593906 0.010174 0.006821 +12 0.172352 0.592769 0.005984 0.004548 +11 0.481747 0.591291 0.009575 0.006139 +11 0.424596 0.591291 0.009575 0.006139 +17 0.361759 0.591178 0.010174 0.006821 +17 0.620586 0.588563 0.009575 0.006139 +11 0.563734 0.588563 0.008977 0.006139 +17 0.500000 0.588108 0.009575 0.007049 +11 0.668163 0.586062 0.009575 0.006594 +12 0.780670 0.585948 0.009575 0.006821 +12 0.798923 0.580491 0.010174 0.006367 +12 0.153800 0.576626 0.005984 0.005002 +12 0.815081 0.575148 0.010174 0.006594 +12 0.834081 0.566849 0.009276 0.006367 +13 0.895272 0.565030 0.008977 0.006367 +12 0.852783 0.564234 0.008977 0.006594 +12 0.877020 0.561505 0.009575 0.007503 +13 0.909186 0.558777 0.009276 0.006594 +11 0.250898 0.525807 0.006882 0.004775 +11 0.252244 0.519441 0.009575 0.005684 +12 0.252244 0.513756 0.009575 0.005684 +17 0.780521 0.525580 0.009276 0.005684 +12 0.780820 0.511482 0.008677 0.005684 +12 0.780820 0.517167 0.008677 0.005684 +12 0.764512 0.525807 0.008378 0.006139 +12 0.764662 0.511482 0.008677 0.005684 +11 0.764662 0.517167 0.008677 0.005684 +12 0.814782 0.525466 0.008977 0.006367 +12 0.814782 0.511482 0.009575 0.005684 +11 0.814782 0.517167 0.009575 0.005684 +12 0.798624 0.525239 0.008378 0.005912 +12 0.798175 0.511710 0.008677 0.005230 +12 0.798175 0.516940 0.008677 0.005230 +12 0.304458 0.525693 0.009874 0.005912 +12 0.304458 0.519782 0.009874 0.005912 +12 0.304309 0.511482 0.009575 0.006594 +12 0.545332 0.520009 0.008079 0.006821 +12 0.545931 0.509550 0.009276 0.007276 +12 0.285757 0.519100 0.009575 0.005912 +12 0.285757 0.525011 0.009575 0.005912 +12 0.285607 0.512278 0.009276 0.006367 +13 0.897516 0.519327 0.009874 0.006821 +12 0.441352 0.517508 0.008378 0.005912 +12 0.441352 0.523420 0.008378 0.005912 +12 0.440604 0.509322 0.009276 0.006821 +12 0.424297 0.517394 0.008977 0.005684 +11 0.424297 0.523079 0.008977 0.005684 +12 0.423848 0.509550 0.009276 0.006367 +12 0.874626 0.517053 0.009575 0.005912 +12 0.701526 0.528877 0.009874 0.005912 +12 0.701526 0.517053 0.009874 0.005912 +12 0.701526 0.522965 0.009874 0.005912 +12 0.232196 0.516598 0.008977 0.005002 +12 0.232196 0.521601 0.008977 0.005002 +12 0.216637 0.516826 0.008977 0.005457 +12 0.216637 0.522283 0.008977 0.005457 +12 0.200030 0.516598 0.008677 0.005002 +12 0.200030 0.521601 0.008677 0.005002 +12 0.183573 0.516712 0.008677 0.005230 +12 0.183573 0.521942 0.008677 0.005230 +12 0.580940 0.514552 0.009276 0.005457 +12 0.580042 0.506708 0.007481 0.006139 +12 0.580940 0.520009 0.009276 0.005457 +12 0.719629 0.514325 0.009575 0.005912 +12 0.720826 0.522624 0.010772 0.006139 +11 0.720826 0.528763 0.010772 0.006139 +13 0.909934 0.514097 0.009575 0.006367 +12 0.849491 0.514097 0.009575 0.006367 +12 0.857870 0.516598 0.009575 0.006367 +12 0.268402 0.513756 0.008378 0.005684 +12 0.268402 0.519441 0.008378 0.005684 +12 0.268402 0.525125 0.008378 0.005684 +12 0.684770 0.511937 0.009276 0.005684 +12 0.684770 0.517622 0.009276 0.005684 +12 0.684770 0.525921 0.009874 0.006367 +12 0.407391 0.511937 0.008677 0.005684 +12 0.407391 0.517622 0.008677 0.005684 +12 0.407391 0.523306 0.008677 0.005684 +12 0.391083 0.511824 0.008378 0.005457 +12 0.391083 0.517281 0.008378 0.005457 +11 0.391083 0.522738 0.008378 0.005457 +12 0.833932 0.511482 0.009575 0.005684 +12 0.833932 0.517167 0.009575 0.005684 +17 0.343208 0.511369 0.010772 0.005457 +17 0.343208 0.516826 0.010772 0.005457 +17 0.343208 0.522283 0.010772 0.005457 +12 0.347546 0.497499 0.011071 0.007731 +12 0.527828 0.520123 0.008378 0.005684 +12 0.527828 0.508754 0.008378 0.005684 +12 0.527828 0.514438 0.008378 0.005684 +12 0.482795 0.508640 0.009874 0.005457 +12 0.482795 0.514097 0.009874 0.005457 +12 0.482795 0.519554 0.009874 0.005457 +12 0.489378 0.495794 0.007481 0.004775 +12 0.668013 0.506821 0.009276 0.005457 +12 0.668013 0.512278 0.009276 0.005457 +12 0.668013 0.517735 0.009276 0.005457 +12 0.563435 0.506821 0.008378 0.006367 +12 0.563585 0.514666 0.008677 0.005684 +12 0.563585 0.520350 0.008677 0.005684 +17 0.620886 0.506253 0.010772 0.006139 +17 0.834979 0.463392 0.009276 0.006821 +12 0.702873 0.461460 0.008977 0.006594 +12 0.251795 0.457822 0.008677 0.005684 +17 0.766008 0.456799 0.010174 0.007276 +13 0.734141 0.456003 0.009874 0.006594 +12 0.684919 0.455775 0.009575 0.007049 +12 0.392130 0.455548 0.009276 0.006594 +13 0.303262 0.455548 0.009874 0.006594 +12 0.232047 0.455434 0.009874 0.006367 +12 0.269150 0.455093 0.009874 0.006594 +12 0.528576 0.453047 0.009276 0.006139 +12 0.407391 0.453161 0.009874 0.006367 +13 0.442101 0.452819 0.009276 0.006594 +12 0.374327 0.452592 0.009575 0.006139 +12 0.286206 0.452592 0.009276 0.006139 +11 0.184620 0.452592 0.009575 0.006139 +12 0.546230 0.450887 0.009874 0.006367 +12 0.668761 0.450773 0.009575 0.007049 +13 0.581239 0.450659 0.009276 0.006821 +12 0.512867 0.450546 0.009575 0.006594 +12 0.424446 0.450546 0.009276 0.006594 +17 0.342609 0.450432 0.009575 0.006367 +13 0.319270 0.450091 0.009575 0.006594 +12 0.652154 0.448045 0.008677 0.006139 +12 0.563285 0.448045 0.008079 0.006139 +11 0.482196 0.447931 0.008677 0.005912 +13 0.455715 0.447704 0.008378 0.005457 +11 0.620886 0.445543 0.009575 0.006594 +13 0.593806 0.445430 0.008677 0.006367 +11 0.798773 0.391542 0.009874 0.006821 +17 0.835278 0.385516 0.011071 0.007503 +12 0.721125 0.383583 0.008977 0.006367 +11 0.183423 0.383583 0.009575 0.006367 +11 0.287253 0.381082 0.008977 0.006821 +11 0.764213 0.378467 0.008977 0.007049 +12 0.702723 0.378467 0.009276 0.007049 +11 0.425793 0.378695 0.009575 0.007503 +11 0.342310 0.378126 0.008977 0.007276 +11 0.483543 0.376307 0.008977 0.006367 +11 0.620886 0.376194 0.009575 0.007049 +11 0.563435 0.375625 0.009575 0.006821 +17 0.217534 0.375853 0.010772 0.007276 +12 0.686565 0.373352 0.009276 0.007731 +17 0.363106 0.371760 0.009874 0.008186 +17 0.500748 0.369714 0.009874 0.007731 +11 0.639138 0.367781 0.008977 0.007503 +17 0.692101 0.327308 0.009575 0.006594 +11 0.316278 0.327194 0.009575 0.006367 +12 0.449731 0.324920 0.009575 0.006367 +12 0.834231 0.324352 0.008977 0.006139 +12 0.802364 0.321623 0.009874 0.006139 +13 0.503142 0.321737 0.009276 0.006367 +12 0.465440 0.321737 0.009874 0.006367 +13 0.892430 0.321396 0.009276 0.006594 +12 0.853980 0.321396 0.008977 0.006594 +12 0.418612 0.321623 0.010174 0.007049 +11 0.744464 0.319009 0.008977 0.005457 +12 0.484590 0.319350 0.008677 0.006139 +12 0.873130 0.318895 0.008378 0.006139 +11 0.555506 0.319009 0.009276 0.006367 +11 0.366697 0.319009 0.009874 0.006367 +17 0.183573 0.318440 0.009874 0.007049 +13 0.906792 0.316280 0.009276 0.006367 +13 0.518402 0.316280 0.010473 0.006367 +12 0.835577 0.283879 0.009874 0.006139 +12 0.449282 0.283652 0.009874 0.006594 +13 0.502992 0.280809 0.009575 0.007276 +12 0.466637 0.280468 0.009874 0.007503 +13 0.891831 0.280014 0.009276 0.007503 +12 0.419509 0.280014 0.009575 0.007503 +12 0.854428 0.279332 0.009874 0.007049 +12 0.802214 0.279786 0.009575 0.007958 +11 0.366397 0.278536 0.010473 0.007276 +11 0.745512 0.277740 0.009874 0.006594 +11 0.556703 0.277399 0.009276 0.006821 +12 0.485039 0.277399 0.009575 0.006821 +11 0.182974 0.277740 0.011071 0.007503 +12 0.873878 0.276944 0.009276 0.006821 +13 0.906643 0.274898 0.008977 0.006367 +12 0.519150 0.274557 0.009575 0.006594 +12 0.692400 0.266485 0.008977 0.005912 +11 0.317325 0.266371 0.009276 0.006594 +12 0.654698 0.209300 0.006583 0.003411 +12 0.182974 0.215553 0.008677 0.005457 +12 0.182675 0.203274 0.009276 0.005912 +12 0.182974 0.210095 0.008677 0.005457 +12 0.557002 0.209982 0.007481 0.005684 +12 0.557002 0.215666 0.007481 0.005684 +12 0.557600 0.202819 0.008677 0.005912 +12 0.513016 0.205207 0.007481 0.006139 +12 0.513016 0.211346 0.007481 0.006139 +12 0.504638 0.203161 0.009276 0.005684 +12 0.892579 0.203502 0.009575 0.006367 +12 0.900060 0.211687 0.009575 0.006367 +12 0.874327 0.208845 0.008977 0.005684 +12 0.874327 0.203161 0.008977 0.005684 +12 0.803112 0.203047 0.008977 0.005457 +12 0.803112 0.208504 0.008977 0.005457 +12 0.766008 0.203047 0.008977 0.005457 +12 0.766008 0.208504 0.008977 0.005457 +12 0.746260 0.203047 0.008977 0.005457 +12 0.746260 0.208504 0.008977 0.005457 +12 0.692699 0.211460 0.009575 0.006367 +13 0.700778 0.203502 0.009575 0.006367 +12 0.675344 0.203161 0.008977 0.005684 +12 0.675344 0.208845 0.008977 0.005684 +12 0.635548 0.203047 0.007780 0.005457 +12 0.635548 0.208504 0.007780 0.005457 +12 0.613854 0.203047 0.008677 0.005457 +12 0.613854 0.208504 0.008677 0.005457 +12 0.485937 0.203047 0.008977 0.005457 +12 0.485937 0.208504 0.008977 0.005457 +11 0.450030 0.208504 0.008977 0.005457 +12 0.450030 0.203047 0.008977 0.005457 +12 0.420706 0.203274 0.008977 0.005912 +12 0.386744 0.203161 0.008079 0.005684 +11 0.386744 0.208845 0.008079 0.005684 +11 0.367145 0.215098 0.008977 0.005912 +12 0.367145 0.203274 0.008977 0.005912 +12 0.367145 0.209186 0.008977 0.005912 +12 0.316577 0.203502 0.009575 0.006367 +11 0.324955 0.211460 0.009575 0.006367 +12 0.297876 0.209186 0.009276 0.005912 +12 0.297876 0.203274 0.009276 0.005912 +11 0.297876 0.215098 0.009276 0.005912 +12 0.282466 0.203274 0.008977 0.005912 +12 0.282466 0.209186 0.008977 0.005912 +11 0.282466 0.215098 0.008977 0.005912 +12 0.263914 0.208845 0.008977 0.005684 +12 0.263914 0.203161 0.008977 0.005684 +12 0.263914 0.214529 0.008977 0.005684 +11 0.240425 0.215098 0.008677 0.005912 +12 0.240425 0.203274 0.008677 0.005912 +12 0.240425 0.209186 0.008677 0.005912 +12 0.223968 0.203161 0.009276 0.005684 +12 0.223968 0.208845 0.009276 0.005684 +12 0.224117 0.215325 0.006583 0.003638 +12 0.206613 0.213961 0.009276 0.005457 +12 0.206613 0.203047 0.009276 0.005457 +12 0.206613 0.208504 0.009276 0.005457 +12 0.855326 0.202706 0.008079 0.005684 +12 0.855326 0.208390 0.008079 0.005684 +12 0.834530 0.202819 0.009575 0.005912 +12 0.834530 0.208731 0.009575 0.005912 +12 0.785458 0.202706 0.009575 0.005684 +12 0.785458 0.208390 0.009575 0.005684 +12 0.594105 0.208390 0.009874 0.005684 +12 0.594105 0.202706 0.009874 0.005684 +12 0.577050 0.202706 0.009276 0.005684 +12 0.577050 0.208390 0.009276 0.005684 +18 0.466487 0.202706 0.009575 0.005684 +12 0.466487 0.208390 0.009575 0.005684 +11 0.403651 0.203047 0.009575 0.006367 +12 0.873878 0.159618 0.009276 0.007731 +11 0.485637 0.159277 0.009575 0.007049 +12 0.634351 0.151319 0.008977 0.006594 +12 0.264512 0.151432 0.008977 0.006821 +13 0.692699 0.148590 0.008977 0.005684 +12 0.611909 0.148477 0.008977 0.005457 +13 0.315380 0.148590 0.008977 0.005684 +12 0.281418 0.148590 0.009276 0.005684 +12 0.241472 0.148590 0.009575 0.005684 +12 0.654548 0.148249 0.008677 0.005912 +11 0.182226 0.146203 0.009575 0.006367 +11 0.745961 0.145862 0.009575 0.006594 +12 0.674596 0.145862 0.009276 0.006594 +11 0.367145 0.145862 0.009575 0.006594 +12 0.297277 0.145862 0.009874 0.006594 +11 0.556104 0.145634 0.009874 0.007049 +13 0.333184 0.143133 0.009276 0.005684 +13 0.708408 0.143133 0.009874 0.006594 +12 0.907241 0.137904 0.008977 0.006139 +13 0.907989 0.127103 0.006882 0.004548 +12 0.183273 0.100500 0.009276 0.007731 +18 0.152902 0.079695 0.005386 0.003411 +13 0.153351 0.073670 0.006882 0.005002 +12 0.400958 0.080719 0.008977 0.006367 +12 0.785009 0.080377 0.009874 0.006594 +11 0.556254 0.067190 0.009575 0.006594 +12 0.502992 0.064916 0.010772 0.006594 +12 0.892130 0.064461 0.009874 0.006594 +11 0.451077 0.062187 0.009276 0.007503 +13 0.432974 0.062074 0.009575 0.007276 +13 0.816727 0.061619 0.009874 0.007276 +11 0.835428 0.060937 0.010174 0.007731 +4 0.104877 0.393020 0.022442 0.033424 +0 0.104877 0.200432 0.022442 0.024784 +0 0.102184 0.829582 0.023040 0.025239 +1 0.105177 0.451000 0.021843 0.034789 +0 0.104877 0.513302 0.022442 0.023874 +2 0.104578 0.319577 0.014662 0.019327 +4 0.103980 0.077876 0.021843 0.033424 +4 0.884949 0.518304 0.009874 0.014779 +4 0.152454 0.315939 0.009874 0.014779 +3 0.524387 0.879377 0.006882 0.015689 +4 0.610862 0.624488 0.009874 0.017053 +2 0.101287 0.259777 0.017654 0.020691 +2 0.104578 0.578104 0.015859 0.019782 +4 0.171005 0.631082 0.009874 0.016598 +5 0.170407 0.597431 0.008677 0.012960 +1 0.102484 0.712710 0.022442 0.042519 +2 0.104578 0.886653 0.013465 0.018417 +1 0.101885 0.770464 0.022442 0.042519 +2 0.101586 0.945316 0.018253 0.020236 +4 0.501047 0.834357 0.009276 0.015689 +2 0.104877 0.631310 0.012867 0.018872 +4 0.128516 0.504889 0.009874 0.014325 +4 0.153800 0.580719 0.008378 0.013643 +0 0.144823 0.568668 0.008378 0.013188 +4 0.126870 0.626421 0.009575 0.014097 +4 0.144225 0.622556 0.008378 0.013643 +4 0.137044 0.080036 0.008378 0.013643 +4 0.128366 0.070259 0.008977 0.014097 +4 0.144823 0.066166 0.008378 0.015007 +4 0.153501 0.391087 0.008977 0.016371 +4 0.127169 0.385857 0.008977 0.015007 +4 0.154997 0.448613 0.008378 0.014097 +4 0.152603 0.826739 0.009575 0.014552 +4 0.134051 0.711687 0.008378 0.013643 +4 0.152603 0.261482 0.008378 0.014552 +4 0.144225 0.252387 0.008378 0.016371 +4 0.154698 0.511596 0.008977 0.016371 +4 0.137343 0.451342 0.008977 0.014097 +4 0.128665 0.442701 0.008378 0.014097 +4 0.152603 0.197135 0.009575 0.014097 +4 0.145123 0.188040 0.007780 0.012278 +4 0.142729 0.756935 0.008977 0.015007 +4 0.152005 0.887676 0.009575 0.014552 +4 0.143028 0.878126 0.008378 0.014552 +4 0.135847 0.138472 0.008378 0.015007 +4 0.127469 0.130514 0.008378 0.012733 +4 0.134949 0.318781 0.007780 0.016371 +0 0.142729 0.305593 0.010174 0.014552 +4 0.135248 0.262847 0.008378 0.014552 +4 0.127169 0.256025 0.008977 0.015462 +4 0.128815 0.574011 0.009874 0.014779 +5 0.135248 0.580832 0.009575 0.014779 +4 0.124626 0.941451 0.009874 0.014779 +5 0.132855 0.946226 0.009575 0.014779 +4 0.143178 0.936903 0.009874 0.014779 +4 0.152005 0.945771 0.009575 0.014779 +4 0.142879 0.381651 0.009874 0.014779 +4 0.134800 0.394839 0.009874 0.014779 +4 0.144674 0.127217 0.009874 0.014779 +3 0.153202 0.130400 0.009575 0.014779 +4 0.125823 0.821851 0.009874 0.014779 +4 0.134500 0.830264 0.009874 0.014779 +4 0.143028 0.820032 0.009575 0.014779 +4 0.097696 0.141087 0.009874 0.014779 +4 0.106523 0.136312 0.009575 0.014779 +4 0.137792 0.513756 0.009874 0.014779 +4 0.146020 0.502615 0.009575 0.014779 +4 0.125823 0.759777 0.009874 0.014779 +4 0.134051 0.767963 0.009575 0.014779 +3 0.678636 0.817303 0.009575 0.014779 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_20.jpg b/data_dataset/dvo/debug/debug_20.jpg new file mode 100644 index 0000000..3185b8e Binary files /dev/null and b/data_dataset/dvo/debug/debug_20.jpg differ diff --git a/data_dataset/dvo/debug/debug_20.txt b/data_dataset/dvo/debug/debug_20.txt new file mode 100644 index 0000000..b2e89a1 --- /dev/null +++ b/data_dataset/dvo/debug/debug_20.txt @@ -0,0 +1,463 @@ +10 0.789348 0.961801 0.008977 0.003183 +10 0.730700 0.901774 0.008977 0.003183 +10 0.729803 0.897453 0.005984 0.002729 +10 0.922501 0.855844 0.005984 0.003183 +10 0.833034 0.855161 0.008977 0.003638 +10 0.175643 0.806048 0.007181 0.003638 +10 0.216936 0.792860 0.008378 0.001819 +10 0.900658 0.791951 0.007780 0.003638 +10 0.186715 0.786721 0.007780 0.003183 +10 0.169060 0.787176 0.017953 0.005002 +10 0.628665 0.781946 0.007181 0.002729 +10 0.418013 0.782401 0.016756 0.003638 +10 0.883004 0.740109 0.015560 0.001819 +10 0.901556 0.737267 0.007181 0.001592 +10 0.710054 0.700091 0.005984 0.002729 +9 0.800419 0.692701 0.010772 0.025693 +9 0.701975 0.692474 0.012567 0.025239 +10 0.809994 0.681901 0.005984 0.002729 +10 0.711251 0.681901 0.009575 0.002729 +9 0.697786 0.635630 0.005386 0.020691 +7 0.259725 0.628809 0.012567 0.007049 +7 0.172651 0.631992 0.011969 0.013415 +8 0.419509 0.628126 0.012567 0.006594 +8 0.345302 0.627899 0.012567 0.007049 +6 0.747157 0.631082 0.009575 0.017963 +6 0.663974 0.630628 0.009575 0.018872 +6 0.190006 0.630855 0.009575 0.018417 +6 0.570616 0.629491 0.009575 0.018417 +6 0.475165 0.629945 0.008977 0.019327 +10 0.172352 0.583902 0.013764 0.005002 +7 0.288749 0.584470 0.011969 0.012960 +9 0.647217 0.584584 0.008378 0.042747 +9 0.404847 0.584470 0.009575 0.022965 +7 0.862956 0.571737 0.012567 0.013870 +6 0.898863 0.573101 0.008977 0.018417 +6 0.789647 0.571510 0.004788 0.019782 +9 0.144823 0.573556 0.005386 0.025693 +7 0.287552 0.538313 0.011969 0.014325 +7 0.862358 0.536721 0.012567 0.012960 +6 0.898863 0.536266 0.008977 0.019327 +9 0.346499 0.492724 0.007780 0.027285 +9 0.267205 0.494998 0.008378 0.031833 +7 0.173250 0.489654 0.011969 0.012506 +7 0.859665 0.488745 0.011969 0.012506 +6 0.191203 0.488972 0.009575 0.017508 +6 0.747756 0.489427 0.009575 0.019327 +6 0.475464 0.487153 0.009575 0.017508 +6 0.403950 0.487381 0.010174 0.017963 +6 0.240874 0.487835 0.009575 0.017963 +6 0.665769 0.486698 0.005984 0.017508 +6 0.322561 0.486926 0.010174 0.017963 +10 0.624476 0.476808 0.005984 0.001819 +6 0.746260 0.440769 0.008977 0.018417 +7 0.172352 0.437131 0.012567 0.012960 +8 0.594853 0.433492 0.012567 0.006594 +8 0.503591 0.434175 0.011969 0.007958 +8 0.260922 0.433492 0.012567 0.006594 +8 0.420108 0.433265 0.012567 0.007049 +8 0.342310 0.433265 0.012567 0.007049 +6 0.665470 0.438040 0.006583 0.018417 +6 0.190604 0.434629 0.009575 0.017963 +10 0.832735 0.394043 0.005984 0.002729 +8 0.595153 0.386198 0.011969 0.007503 +8 0.500898 0.386198 0.010174 0.007503 +7 0.172950 0.389382 0.012567 0.012960 +8 0.418612 0.385971 0.010772 0.007049 +8 0.342609 0.385744 0.011969 0.006594 +8 0.258229 0.385744 0.013166 0.006594 +10 0.875224 0.380400 0.011969 0.002729 +6 0.748055 0.387108 0.008977 0.017508 +6 0.667564 0.387108 0.009575 0.017508 +6 0.192101 0.386880 0.010174 0.017963 +9 0.939856 0.393702 0.004788 0.033424 +10 0.843806 0.376535 0.006583 0.003183 +10 0.631658 0.322874 0.011969 0.005002 +8 0.890784 0.322760 0.011969 0.007049 +8 0.815081 0.322760 0.011370 0.007049 +8 0.729204 0.322760 0.010772 0.007049 +8 0.455715 0.322760 0.009575 0.007049 +7 0.263615 0.325716 0.011969 0.012960 +7 0.172053 0.325489 0.011969 0.012506 +8 0.365649 0.322078 0.012567 0.006594 +6 0.283363 0.323442 0.009575 0.017508 +9 0.527528 0.278195 0.009575 0.015234 +10 0.529025 0.273306 0.008977 0.003183 +7 0.488031 0.280127 0.008378 0.018190 +10 0.061939 0.270350 0.005984 0.003638 +9 0.381209 0.278877 0.004189 0.024784 +10 0.485338 0.224193 0.006583 0.003183 +10 0.311191 0.224193 0.007780 0.003183 +10 0.874925 0.135971 0.006583 0.003183 +8 0.247457 0.136539 0.011969 0.026603 +8 0.665470 0.082879 0.006583 0.014779 +10 0.732196 0.077990 0.009575 0.002729 +9 0.682825 0.089245 0.004189 0.035698 +9 0.557151 0.083333 0.008977 0.023874 +9 0.461400 0.078899 0.012567 0.025011 +9 0.529324 0.081969 0.009575 0.023874 +9 0.382705 0.079013 0.005984 0.026148 +9 0.135847 0.069463 0.006583 0.017053 +9 0.283962 0.074238 0.010772 0.028422 +7 0.207062 0.065825 0.010174 0.015234 +12 0.921753 0.949181 0.008677 0.006139 +11 0.866846 0.948499 0.009575 0.005684 +12 0.830790 0.948613 0.009276 0.005912 +11 0.767205 0.948272 0.008977 0.005230 +11 0.729354 0.948045 0.008677 0.005684 +11 0.668911 0.947249 0.008677 0.005002 +17 0.364303 0.947249 0.009874 0.005912 +17 0.470527 0.946908 0.010473 0.006139 +17 0.262418 0.947021 0.010772 0.006367 +17 0.148713 0.946908 0.010772 0.006139 +17 0.571514 0.946680 0.011370 0.006594 +12 0.922651 0.901774 0.008677 0.005912 +11 0.868193 0.901432 0.009874 0.006139 +11 0.832136 0.901432 0.009575 0.006139 +11 0.767804 0.900296 0.008378 0.004775 +12 0.731299 0.899727 0.008977 0.005457 +11 0.668312 0.899727 0.009874 0.006367 +17 0.570168 0.899159 0.011071 0.006139 +17 0.364752 0.899500 0.011370 0.006821 +17 0.470227 0.899386 0.011071 0.007503 +17 0.261370 0.899045 0.011071 0.006821 +11 0.147965 0.898931 0.011670 0.007503 +12 0.922501 0.854025 0.009575 0.005912 +11 0.868941 0.853911 0.008977 0.005684 +12 0.833034 0.853229 0.009575 0.005684 +11 0.766457 0.852774 0.009874 0.006139 +11 0.732196 0.852547 0.009575 0.005684 +11 0.668612 0.852319 0.009276 0.006139 +17 0.261520 0.852319 0.010174 0.006139 +17 0.570018 0.852206 0.010174 0.006821 +17 0.471424 0.852092 0.011071 0.006594 +17 0.365649 0.852092 0.011370 0.006594 +17 0.149761 0.852319 0.010473 0.007049 +12 0.909186 0.810709 0.009276 0.006594 +12 0.866697 0.810482 0.009276 0.006139 +11 0.767804 0.809800 0.010174 0.005684 +11 0.669509 0.809573 0.008677 0.006139 +12 0.364901 0.809573 0.009874 0.006139 +12 0.326601 0.809573 0.008677 0.006139 +11 0.260772 0.809573 0.008677 0.006139 +12 0.224865 0.809573 0.009874 0.006139 +12 0.205416 0.809459 0.009276 0.005912 +12 0.569420 0.809231 0.009575 0.006367 +12 0.535458 0.809118 0.008677 0.006139 +11 0.469779 0.809345 0.008977 0.006594 +12 0.923100 0.807867 0.009575 0.006367 +12 0.890485 0.807754 0.008977 0.006139 +11 0.832735 0.807412 0.009575 0.006367 +12 0.731747 0.807071 0.009874 0.006594 +13 0.187612 0.806844 0.009575 0.006139 +12 0.593357 0.803661 0.009575 0.006139 +18 0.591263 0.788313 0.007780 0.005457 +12 0.608468 0.801387 0.008677 0.006139 +12 0.407989 0.801614 0.009874 0.006594 +13 0.147965 0.801614 0.009276 0.006594 +18 0.105326 0.801046 0.005984 0.005457 +12 0.433273 0.798886 0.008977 0.005684 +12 0.634351 0.798658 0.008977 0.006139 +18 0.388689 0.787517 0.006583 0.003865 +12 0.389737 0.804457 0.009276 0.005912 +18 0.172651 0.786721 0.007181 0.002274 +13 0.175045 0.804343 0.008977 0.005684 +12 0.907092 0.760459 0.009874 0.006139 +12 0.868193 0.760687 0.008677 0.006594 +11 0.767355 0.759663 0.009276 0.006367 +11 0.669360 0.759777 0.009575 0.006594 +11 0.147367 0.759095 0.009276 0.006139 +17 0.262567 0.758754 0.011071 0.006821 +12 0.923848 0.757049 0.009874 0.005684 +12 0.889437 0.756821 0.009276 0.006139 +12 0.833932 0.756821 0.009575 0.006139 +12 0.732047 0.756594 0.009276 0.005684 +11 0.469330 0.757617 0.011670 0.007731 +11 0.222172 0.756594 0.009276 0.005684 +17 0.365500 0.756594 0.011071 0.006594 +17 0.568821 0.756253 0.010772 0.006821 +12 0.767953 0.706571 0.010473 0.006594 +12 0.667115 0.706571 0.009874 0.006594 +11 0.631508 0.706457 0.010473 0.006367 +11 0.569569 0.706116 0.009874 0.006594 +12 0.469031 0.706116 0.009874 0.006594 +12 0.430880 0.706116 0.008977 0.006594 +11 0.362956 0.706116 0.009575 0.006594 +12 0.259575 0.706230 0.009874 0.006821 +12 0.221424 0.706116 0.010174 0.006594 +11 0.148713 0.706344 0.009575 0.007049 +13 0.681628 0.704070 0.003591 0.004320 +12 0.793238 0.701796 0.009575 0.006139 +12 0.693148 0.701342 0.009276 0.006139 +12 0.495063 0.700887 0.009276 0.006139 +12 0.285607 0.700773 0.009276 0.006821 +12 0.907690 0.699523 0.009276 0.006139 +11 0.866098 0.699409 0.009276 0.005912 +12 0.809545 0.699068 0.009874 0.006139 +12 0.708857 0.698727 0.008378 0.005457 +12 0.303262 0.697931 0.007481 0.004775 +12 0.922950 0.696567 0.009276 0.006594 +12 0.889437 0.696453 0.009276 0.006367 +12 0.833333 0.696567 0.009575 0.006594 +12 0.730999 0.696339 0.009575 0.006139 +12 0.537253 0.695657 0.009874 0.006594 +12 0.328546 0.695657 0.009575 0.006594 +12 0.315829 0.692246 0.005087 0.003411 +17 0.834530 0.640405 0.010772 0.007049 +11 0.510024 0.636994 0.009276 0.006594 +11 0.787104 0.629718 0.008677 0.005684 +11 0.701077 0.629718 0.008977 0.005684 +12 0.146170 0.627331 0.009276 0.006367 +11 0.606074 0.626535 0.009874 0.006594 +17 0.831987 0.592542 0.010473 0.006821 +12 0.830790 0.574466 0.009276 0.007049 +12 0.606224 0.587199 0.008977 0.006139 +17 0.614452 0.577649 0.006284 0.003865 +12 0.624028 0.584925 0.009874 0.006139 +11 0.570168 0.584925 0.008677 0.006139 +12 0.071664 0.584357 0.003890 0.007276 +12 0.531568 0.582310 0.009276 0.005912 +12 0.508977 0.579923 0.010174 0.006139 +11 0.433722 0.579923 0.008677 0.006139 +12 0.062238 0.579241 0.005386 0.005684 +17 0.645721 0.579809 0.006583 0.009095 +11 0.406194 0.577422 0.007481 0.005684 +12 0.366697 0.577535 0.008677 0.005912 +11 0.786804 0.577422 0.008677 0.006594 +12 0.349342 0.576057 0.009874 0.006594 +12 0.270347 0.575830 0.009874 0.006139 +18 0.749850 0.574579 0.010174 0.006367 +17 0.751197 0.582310 0.010473 0.006367 +12 0.478306 0.574693 0.009874 0.006594 +12 0.667115 0.573329 0.011071 0.004775 +11 0.245212 0.572647 0.009874 0.006139 +12 0.208109 0.572419 0.009874 0.006594 +12 0.191801 0.569691 0.008977 0.006594 +11 0.323908 0.568781 0.009276 0.006594 +11 0.147965 0.565257 0.008079 0.005912 +12 0.071364 0.542406 0.004488 0.009322 +12 0.830341 0.540018 0.008378 0.005457 +12 0.571514 0.537517 0.010174 0.006821 +12 0.605925 0.535357 0.009575 0.006139 +12 0.529473 0.535357 0.008677 0.006139 +11 0.432525 0.532742 0.009874 0.006367 +12 0.624177 0.532515 0.008977 0.006821 +12 0.509725 0.532515 0.009874 0.006821 +11 0.405296 0.530355 0.008677 0.007049 +12 0.366697 0.529900 0.008677 0.006139 +17 0.749252 0.538427 0.011370 0.005002 +11 0.749252 0.528422 0.011370 0.005002 +17 0.749252 0.533424 0.011370 0.005002 +11 0.666517 0.528990 0.011071 0.006139 +12 0.666517 0.535130 0.011071 0.006139 +12 0.667115 0.578104 0.011071 0.004775 +17 0.667115 0.582879 0.011071 0.004775 +12 0.348444 0.527967 0.009276 0.006821 +12 0.268253 0.527740 0.009276 0.006367 +11 0.477409 0.527285 0.009874 0.006367 +12 0.209007 0.525352 0.009276 0.006139 +11 0.244614 0.525011 0.008677 0.006367 +12 0.191801 0.522851 0.008977 0.006594 +11 0.324357 0.521714 0.008977 0.006139 +11 0.146918 0.517849 0.009575 0.006594 +11 0.508378 0.501023 0.008378 0.004775 +17 0.509425 0.493975 0.006882 0.004320 +12 0.624177 0.500796 0.008977 0.005230 +12 0.624626 0.494202 0.007481 0.004775 +12 0.095601 0.498749 0.005087 0.003865 +11 0.785458 0.497385 0.009575 0.005684 +12 0.146768 0.496135 0.008079 0.004093 +12 0.146320 0.489654 0.008378 0.005684 +11 0.103381 0.496589 0.006284 0.008640 +11 0.701526 0.494884 0.009276 0.006139 +12 0.708857 0.475443 0.007181 0.006367 +12 0.603680 0.494657 0.008677 0.005684 +12 0.603680 0.500341 0.008677 0.005684 +13 0.830042 0.494657 0.010174 0.006594 +11 0.431927 0.494316 0.008677 0.005912 +11 0.431927 0.500227 0.008677 0.005912 +11 0.269001 0.489541 0.009575 0.005457 +11 0.269001 0.494998 0.009575 0.005457 +11 0.347546 0.489200 0.008677 0.005684 +11 0.347546 0.494884 0.008677 0.005684 +11 0.785607 0.455548 0.009874 0.006594 +11 0.702124 0.452592 0.009276 0.006139 +11 0.830640 0.452365 0.008977 0.006594 +12 0.920856 0.449864 0.009874 0.006139 +11 0.147217 0.440086 0.009575 0.006594 +17 0.085428 0.404843 0.005087 0.005230 +11 0.701227 0.400296 0.009874 0.006139 +12 0.920856 0.399841 0.009874 0.006139 +12 0.898863 0.400068 0.010174 0.006594 +11 0.785458 0.400182 0.009575 0.006821 +13 0.878815 0.397681 0.009575 0.005912 +13 0.862059 0.394839 0.009575 0.006139 +12 0.831987 0.392224 0.009276 0.005457 +11 0.147367 0.392337 0.009276 0.005684 +12 0.071813 0.382333 0.004189 0.005684 +11 0.146768 0.328672 0.009276 0.005684 +12 0.152603 0.309686 0.004189 0.003638 +12 0.245811 0.320941 0.008677 0.005684 +18 0.918462 0.292292 0.005087 0.003865 +13 0.457959 0.280241 0.008079 0.005230 +11 0.246709 0.280241 0.009276 0.005230 +17 0.612956 0.277967 0.010473 0.007049 +13 0.149611 0.277058 0.010772 0.007958 +17 0.528426 0.275352 0.007780 0.005457 +12 0.487133 0.275466 0.008977 0.005684 +11 0.353082 0.275239 0.008977 0.006139 +12 0.309246 0.275125 0.008677 0.005912 +12 0.283214 0.274898 0.008079 0.005457 +17 0.874177 0.275011 0.011071 0.006594 +18 0.815230 0.275011 0.010473 0.007503 +17 0.555057 0.272738 0.010174 0.006594 +11 0.429084 0.272624 0.009575 0.006367 +11 0.384800 0.272624 0.008977 0.006367 +17 0.703022 0.272283 0.011071 0.008413 +13 0.072561 0.261596 0.004488 0.003411 +12 0.458857 0.232037 0.008677 0.006139 +12 0.612059 0.229309 0.011071 0.007049 +11 0.529473 0.226808 0.008079 0.006594 +12 0.485488 0.226694 0.008079 0.006367 +11 0.352035 0.226580 0.009276 0.006139 +12 0.311341 0.226467 0.009276 0.005912 +12 0.282914 0.226239 0.008677 0.005457 +17 0.872681 0.226580 0.010473 0.007049 +12 0.816427 0.226580 0.010473 0.007049 +17 0.703770 0.224761 0.010772 0.007049 +11 0.555206 0.224534 0.008677 0.006594 +11 0.429683 0.224079 0.009575 0.006594 +11 0.384500 0.224079 0.008378 0.006594 +17 0.151257 0.221237 0.009874 0.006367 +11 0.246110 0.218849 0.009276 0.006139 +17 0.149312 0.199295 0.009575 0.007049 +11 0.486984 0.191451 0.009874 0.005912 +11 0.247606 0.191223 0.009874 0.006367 +12 0.431777 0.190996 0.010174 0.006821 +12 0.309096 0.190882 0.009575 0.006594 +11 0.530072 0.190996 0.011071 0.007276 +17 0.352633 0.190769 0.010473 0.007276 +11 0.612657 0.183834 0.009874 0.005230 +12 0.758677 0.183151 0.008677 0.005684 +12 0.729952 0.180878 0.009874 0.006594 +12 0.663375 0.180878 0.009575 0.006594 +12 0.815978 0.180650 0.010772 0.007049 +11 0.704219 0.178604 0.008677 0.005684 +17 0.873878 0.177353 0.010473 0.005912 +17 0.873878 0.183265 0.010473 0.005912 +11 0.907092 0.137563 0.009874 0.006367 +11 0.874028 0.134266 0.008977 0.005230 +12 0.486385 0.133583 0.006882 0.004320 +13 0.429533 0.133697 0.008677 0.005002 +11 0.385099 0.134038 0.008977 0.005684 +11 0.816427 0.134266 0.010473 0.007049 +17 0.704817 0.134266 0.011071 0.007049 +17 0.613854 0.134266 0.011071 0.007049 +17 0.529174 0.134038 0.010473 0.006594 +11 0.351735 0.130855 0.009874 0.006594 +12 0.309545 0.130741 0.008079 0.006367 +11 0.248504 0.129150 0.008079 0.004548 +11 0.248504 0.133697 0.008079 0.004548 +12 0.286355 0.128809 0.007181 0.004320 +11 0.191053 0.128809 0.009276 0.004320 +12 0.088420 0.128695 0.008677 0.006821 +18 0.086924 0.146089 0.006882 0.006139 +11 0.148713 0.130855 0.009575 0.006139 +12 0.148713 0.124716 0.009575 0.006139 +12 0.099791 0.119486 0.006284 0.004775 +11 0.747756 0.095612 0.013764 0.004320 +11 0.759276 0.078104 0.007481 0.006594 +11 0.702723 0.082879 0.009276 0.007049 +12 0.731448 0.080605 0.009276 0.006139 +12 0.663226 0.080150 0.009276 0.006139 +12 0.090215 0.078899 0.007481 0.004548 +13 0.643776 0.077649 0.008677 0.006594 +11 0.558797 0.077422 0.006284 0.006139 +12 0.489078 0.074920 0.006882 0.003865 +11 0.530072 0.075034 0.008079 0.005002 +17 0.875075 0.075603 0.009276 0.007049 +12 0.817923 0.075489 0.011071 0.007731 +12 0.612208 0.072306 0.008378 0.006821 +12 0.461999 0.071510 0.008378 0.007049 +12 0.386445 0.071396 0.007481 0.006821 +11 0.354428 0.068554 0.009276 0.005684 +12 0.311341 0.068554 0.009276 0.005684 +11 0.151257 0.068668 0.009874 0.005912 +13 0.137044 0.064802 0.008378 0.004548 +11 0.429982 0.065484 0.008977 0.006821 +12 0.285458 0.065825 0.008977 0.007503 +13 0.208408 0.065371 0.008079 0.006594 +11 0.245811 0.060368 0.008677 0.006594 +0 0.097098 0.795930 0.024835 0.023420 +0 0.690455 0.077649 0.007481 0.008413 +3 0.735338 0.536266 0.011071 0.020691 +3 0.860413 0.182697 0.007481 0.019327 +4 0.894225 0.138358 0.009276 0.015234 +4 0.472920 0.274784 0.010473 0.016144 +3 0.746110 0.183151 0.007481 0.019327 +0 0.091712 0.179513 0.014063 0.023874 +5 0.117744 0.225443 0.008677 0.014779 +3 0.598893 0.181560 0.011071 0.022510 +3 0.773339 0.456230 0.006882 0.018872 +4 0.515410 0.276148 0.010473 0.017053 +4 0.340963 0.274557 0.009874 0.015689 +4 0.515111 0.226126 0.011071 0.014325 +3 0.139288 0.221805 0.007481 0.017508 +2 0.092011 0.324352 0.019449 0.018872 +3 0.820916 0.694065 0.006284 0.016144 +5 0.117145 0.583561 0.008677 0.015234 +4 0.298773 0.275011 0.010473 0.016598 +5 0.115949 0.534902 0.008677 0.014325 +3 0.163226 0.803661 0.007481 0.016144 +3 0.525284 0.695430 0.007481 0.015234 +2 0.093208 0.937131 0.017056 0.019327 +3 0.559994 0.584925 0.007481 0.021601 +3 0.559396 0.538313 0.007481 0.020236 +4 0.772442 0.497613 0.009874 0.017053 +2 0.095302 0.890291 0.024835 0.020236 +3 0.720078 0.694065 0.006882 0.017053 +4 0.482496 0.701569 0.009276 0.014779 +4 0.378366 0.802751 0.009276 0.013415 +4 0.581538 0.803661 0.009874 0.016144 +3 0.623429 0.799795 0.007481 0.018417 +4 0.274835 0.701569 0.009276 0.016598 +5 0.116547 0.489654 0.008677 0.014779 +4 0.298175 0.226126 0.010473 0.016144 +2 0.092011 0.842997 0.020646 0.020236 +4 0.782615 0.700887 0.008677 0.014325 +0 0.093208 0.273192 0.023040 0.032060 +5 0.115949 0.434629 0.008677 0.015689 +5 0.117744 0.846407 0.008677 0.015234 +5 0.117445 0.941223 0.008079 0.014779 +3 0.500150 0.635402 0.008677 0.017963 +5 0.117445 0.740450 0.008079 0.015234 +5 0.119240 0.796157 0.008079 0.014779 +5 0.117145 0.894839 0.008677 0.014779 +3 0.421454 0.799113 0.008079 0.020691 +5 0.090814 0.489427 0.013465 0.024329 +4 0.774536 0.576739 0.009276 0.016144 +5 0.117594 0.178490 0.008977 0.013188 +4 0.101137 0.069463 0.008378 0.016144 +4 0.085727 0.437585 0.008677 0.016144 +4 0.097546 0.432810 0.008378 0.016144 +4 0.094105 0.749773 0.008677 0.013415 +5 0.101137 0.749773 0.008378 0.013415 +4 0.088121 0.746135 0.008677 0.016144 +4 0.099342 0.740450 0.008378 0.016144 +4 0.088121 0.696339 0.008677 0.016144 +4 0.099342 0.691337 0.008378 0.016144 +3 0.093507 0.591519 0.008677 0.013415 +5 0.098743 0.591519 0.008378 0.013415 +4 0.086326 0.586744 0.008677 0.016144 +5 0.098743 0.581742 0.008378 0.016144 +4 0.085428 0.390746 0.008677 0.016144 +4 0.095153 0.386198 0.008378 0.016144 +4 0.917864 0.279332 0.008677 0.016144 +5 0.926990 0.279559 0.008378 0.016144 +4 0.087223 0.230218 0.008677 0.016144 +4 0.094105 0.226353 0.008677 0.016144 +5 0.101137 0.226126 0.008378 0.016144 +4 0.088121 0.538540 0.008677 0.016144 +4 0.099940 0.535130 0.008378 0.016144 +4 0.920257 0.230218 0.008677 0.016144 +5 0.929384 0.230218 0.008378 0.016144 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_21.jpg b/data_dataset/dvo/debug/debug_21.jpg new file mode 100644 index 0000000..4b6c50e Binary files /dev/null and b/data_dataset/dvo/debug/debug_21.jpg differ diff --git a/data_dataset/dvo/debug/debug_21.txt b/data_dataset/dvo/debug/debug_21.txt new file mode 100644 index 0000000..8cecb97 --- /dev/null +++ b/data_dataset/dvo/debug/debug_21.txt @@ -0,0 +1,590 @@ +6 0.484440 0.940769 0.009575 0.017053 +6 0.160084 0.940769 0.009575 0.018872 +6 0.875524 0.940086 0.010174 0.017508 +6 0.681029 0.940541 0.008977 0.018417 +6 0.292639 0.940541 0.008977 0.017508 +6 0.346200 0.939859 0.009575 0.017963 +6 0.778276 0.939177 0.009575 0.017508 +6 0.541592 0.939404 0.008977 0.017963 +10 0.409635 0.902456 0.005984 0.002729 +6 0.296529 0.897794 0.009575 0.018417 +6 0.156493 0.897567 0.009575 0.017963 +6 0.348594 0.895748 0.009575 0.017963 +6 0.485039 0.895975 0.009575 0.018417 +6 0.544285 0.895293 0.009575 0.017963 +10 0.215141 0.854252 0.007181 0.004548 +9 0.542190 0.857435 0.008977 0.033652 +10 0.157391 0.852206 0.008977 0.004093 +7 0.197487 0.848909 0.011370 0.013415 +7 0.179832 0.849136 0.011969 0.012960 +7 0.257929 0.848909 0.011370 0.013415 +10 0.841712 0.844930 0.007181 0.005002 +7 0.450329 0.848226 0.011969 0.012960 +7 0.393178 0.848226 0.011370 0.012960 +7 0.372831 0.848681 0.012567 0.014779 +7 0.783662 0.847999 0.011969 0.013415 +7 0.738480 0.847999 0.011370 0.013415 +7 0.646619 0.847544 0.011969 0.013415 +7 0.586475 0.847999 0.011370 0.013415 +7 0.567624 0.847999 0.011969 0.013415 +10 0.679533 0.839472 0.005984 0.005002 +10 0.479653 0.837426 0.007181 0.001819 +10 0.347995 0.796498 0.007181 0.002729 +10 0.285159 0.763984 0.011969 0.005002 +8 0.192101 0.764097 0.011370 0.006594 +10 0.873728 0.763529 0.012567 0.005002 +10 0.475165 0.763529 0.011370 0.005002 +8 0.378217 0.763643 0.011370 0.006594 +10 0.769300 0.763074 0.011969 0.005002 +8 0.671155 0.763415 0.011969 0.007049 +10 0.571514 0.763074 0.011370 0.005002 +7 0.334829 0.716576 0.011969 0.013415 +7 0.289946 0.717030 0.011969 0.013415 +6 0.153800 0.716348 0.008977 0.018417 +6 0.765111 0.715666 0.009575 0.018872 +6 0.615200 0.714302 0.008977 0.017963 +6 0.416816 0.714757 0.009575 0.018872 +6 0.518851 0.714529 0.008977 0.018417 +7 0.331837 0.675193 0.011969 0.013415 +7 0.287552 0.675193 0.011969 0.013415 +6 0.153800 0.674966 0.008977 0.018417 +6 0.766906 0.673829 0.009575 0.017963 +6 0.415619 0.674284 0.009575 0.018872 +6 0.891382 0.673602 0.009575 0.017508 +6 0.517056 0.674284 0.010174 0.018872 +6 0.614901 0.672692 0.009575 0.018417 +6 0.712148 0.673147 0.008977 0.018417 +10 0.214542 0.635061 0.005984 0.004548 +10 0.633453 0.633470 0.008378 0.004093 +10 0.152902 0.633242 0.007181 0.003638 +10 0.590365 0.633242 0.008378 0.004548 +10 0.536505 0.632788 0.008378 0.003638 +9 0.331538 0.636198 0.008977 0.033197 +10 0.910832 0.628013 0.007780 0.003183 +9 0.692101 0.632901 0.008378 0.024329 +7 0.855476 0.626535 0.010772 0.010687 +7 0.804608 0.627672 0.011969 0.012960 +7 0.784261 0.627672 0.009575 0.012960 +10 0.673848 0.624375 0.007780 0.005002 +7 0.576601 0.627899 0.011969 0.013415 +7 0.479653 0.627899 0.011969 0.013415 +7 0.419509 0.627444 0.012567 0.012506 +7 0.259725 0.627444 0.012567 0.012506 +7 0.195392 0.627444 0.010772 0.013415 +7 0.374327 0.627444 0.011969 0.013415 +7 0.179832 0.627899 0.011969 0.014325 +10 0.531119 0.616871 0.009575 0.002729 +10 0.320766 0.614825 0.007780 0.005002 +10 0.574506 0.576398 0.007780 0.002729 +10 0.880910 0.540700 0.011370 0.005002 +10 0.698384 0.540700 0.012567 0.005002 +8 0.789946 0.540359 0.011370 0.006594 +6 0.616397 0.543315 0.008977 0.017963 +7 0.554159 0.572874 0.004189 0.079809 +10 0.851287 0.488404 0.005984 0.002274 +10 0.657989 0.482947 0.007181 0.003183 +6 0.296529 0.477831 0.010772 0.018872 +6 0.688809 0.476012 0.008977 0.017963 +6 0.550269 0.476467 0.009575 0.018872 +6 0.355476 0.476239 0.008977 0.018417 +6 0.154698 0.476921 0.009575 0.018872 +6 0.495512 0.476012 0.010174 0.017963 +6 0.885099 0.475784 0.008977 0.018417 +6 0.782466 0.475557 0.009575 0.017963 +6 0.885398 0.440086 0.009575 0.017963 +6 0.550868 0.439404 0.009575 0.018417 +6 0.496709 0.439404 0.010174 0.018417 +6 0.353980 0.438950 0.009575 0.018417 +6 0.686715 0.437813 0.009575 0.017963 +6 0.156493 0.438040 0.009575 0.018417 +6 0.783662 0.437358 0.009575 0.017963 +6 0.298025 0.437585 0.010174 0.018417 +10 0.479354 0.399500 0.006583 0.004548 +10 0.154698 0.397681 0.009575 0.003638 +10 0.277379 0.397681 0.007181 0.004548 +10 0.671753 0.397453 0.008378 0.005002 +9 0.495811 0.401319 0.008378 0.033652 +10 0.688809 0.394497 0.006583 0.004548 +9 0.514961 0.398590 0.008378 0.033652 +9 0.296529 0.398363 0.009575 0.033197 +7 0.179234 0.390064 0.011969 0.013415 +10 0.848594 0.386085 0.007780 0.005002 +7 0.785159 0.388927 0.011370 0.012960 +7 0.742968 0.389609 0.011969 0.013415 +7 0.656194 0.389609 0.011969 0.014325 +7 0.455416 0.389609 0.010174 0.013415 +7 0.396768 0.389154 0.011370 0.012506 +7 0.380311 0.389382 0.011969 0.012960 +7 0.262118 0.389382 0.012567 0.012960 +7 0.198983 0.389836 0.011969 0.013870 +7 0.590365 0.390291 0.011969 0.015689 +7 0.571215 0.389382 0.011969 0.013870 +10 0.489826 0.378126 0.007181 0.002729 +9 0.396469 0.305480 0.009575 0.022510 +9 0.353980 0.306162 0.009575 0.022965 +6 0.885996 0.246135 0.009575 0.018417 +6 0.533812 0.245907 0.007780 0.018872 +6 0.672950 0.245680 0.009575 0.018417 +6 0.735787 0.245225 0.009575 0.018417 +6 0.474267 0.244770 0.009575 0.018417 +10 0.441352 0.211687 0.005984 0.002729 +9 0.197786 0.208731 0.007181 0.017735 +6 0.885099 0.206344 0.010174 0.017963 +6 0.735189 0.206116 0.009575 0.018417 +6 0.672352 0.206116 0.009575 0.018417 +6 0.475763 0.205434 0.008977 0.018872 +6 0.532914 0.204297 0.009575 0.018417 +6 0.143028 0.206344 0.006583 0.023420 +10 0.675344 0.167804 0.005984 0.005002 +10 0.886296 0.166212 0.006583 0.004548 +10 0.692998 0.165075 0.008977 0.004093 +10 0.904548 0.163029 0.007181 0.003638 +7 0.841712 0.157913 0.010772 0.012960 +7 0.780072 0.157231 0.011969 0.013415 +7 0.761221 0.157231 0.011370 0.013415 +7 0.637044 0.157003 0.010772 0.012960 +7 0.557151 0.156776 0.011370 0.013415 +9 0.320766 0.158026 0.008977 0.034561 +7 0.578097 0.156321 0.012567 0.013415 +7 0.441053 0.156776 0.012567 0.013415 +9 0.355476 0.158254 0.008977 0.036835 +9 0.893477 0.158822 0.007780 0.026603 +10 0.481747 0.139154 0.007780 0.002274 +8 0.262717 0.117667 0.007780 0.016144 +9 0.733393 0.065143 0.004788 0.023874 +9 0.354578 0.057867 0.008378 0.024784 +10 0.151107 0.050023 0.009575 0.002274 +11 0.587971 0.954866 0.009575 0.005684 +11 0.843357 0.951910 0.009276 0.006139 +11 0.738480 0.949409 0.008977 0.005684 +11 0.645871 0.946680 0.009276 0.005684 +11 0.260024 0.944861 0.009575 0.005684 +11 0.393327 0.944634 0.009276 0.006139 +11 0.198235 0.940200 0.009276 0.006367 +11 0.451676 0.936903 0.008677 0.006139 +17 0.843208 0.908254 0.010174 0.007049 +17 0.739976 0.905070 0.010772 0.007049 +17 0.646469 0.902797 0.010473 0.007049 +11 0.259725 0.901205 0.008977 0.005684 +12 0.410832 0.900409 0.009575 0.005912 +12 0.390335 0.900523 0.009276 0.006139 +12 0.215589 0.896089 0.009276 0.005457 +12 0.197038 0.896089 0.009276 0.005457 +12 0.606822 0.892337 0.009575 0.006139 +12 0.586475 0.892224 0.009575 0.005912 +11 0.452274 0.892565 0.009874 0.006594 +13 0.879563 0.862437 0.007481 0.004548 +13 0.879862 0.856298 0.009276 0.005912 +12 0.410682 0.862892 0.008079 0.005457 +12 0.410233 0.856185 0.008378 0.005684 +13 0.681478 0.862324 0.008677 0.005230 +13 0.681329 0.855730 0.008977 0.005684 +12 0.467235 0.859368 0.008677 0.005230 +12 0.467086 0.853229 0.008977 0.006139 +12 0.347846 0.859482 0.008079 0.005457 +12 0.347397 0.853683 0.008378 0.005230 +11 0.800569 0.859254 0.008677 0.005457 +12 0.800569 0.853229 0.008677 0.006139 +12 0.862956 0.858572 0.010174 0.005912 +12 0.862956 0.864484 0.010174 0.005912 +12 0.663226 0.858572 0.009874 0.005912 +12 0.663226 0.864484 0.009874 0.005912 +12 0.276930 0.857094 0.009874 0.005684 +12 0.276930 0.862779 0.009874 0.005684 +12 0.505236 0.854138 0.008677 0.004775 +12 0.504788 0.847999 0.009575 0.005684 +12 0.899162 0.853797 0.008378 0.005457 +12 0.899162 0.859254 0.008378 0.005457 +11 0.756583 0.853342 0.009276 0.005457 +11 0.756583 0.858799 0.009276 0.005457 +12 0.701227 0.853342 0.008677 0.005457 +12 0.701227 0.858799 0.008677 0.005457 +13 0.293686 0.853456 0.009874 0.005684 +13 0.293686 0.859141 0.009874 0.005684 +12 0.605775 0.858686 0.009276 0.005684 +12 0.605775 0.853001 0.009276 0.005684 +11 0.215440 0.857435 0.008977 0.005457 +12 0.215440 0.851978 0.008977 0.005457 +12 0.313585 0.851410 0.010174 0.005230 +12 0.313585 0.856639 0.010174 0.005230 +12 0.543986 0.850614 0.008977 0.005457 +12 0.543986 0.856071 0.008977 0.005457 +12 0.486385 0.850728 0.009874 0.005684 +12 0.486385 0.856412 0.009874 0.005684 +12 0.156942 0.854593 0.009276 0.005684 +12 0.156942 0.848909 0.009276 0.005684 +11 0.196140 0.812301 0.009874 0.006139 +11 0.156344 0.812301 0.009276 0.006139 +11 0.587822 0.808890 0.009276 0.005684 +11 0.543836 0.809118 0.009874 0.006139 +17 0.452873 0.809118 0.009874 0.006139 +11 0.782914 0.801273 0.009276 0.005912 +11 0.740126 0.801387 0.009874 0.006139 +17 0.647516 0.801387 0.010174 0.007049 +18 0.439707 0.798317 0.006284 0.004548 +11 0.393178 0.798886 0.009575 0.005684 +11 0.347846 0.799113 0.008079 0.006139 +17 0.259874 0.799341 0.010473 0.006594 +17 0.844554 0.795930 0.010473 0.007049 +13 0.068671 0.760573 0.005087 0.004548 +11 0.195242 0.731014 0.009276 0.006367 +11 0.259575 0.727831 0.009874 0.006367 +12 0.307899 0.725216 0.009575 0.005684 +11 0.805655 0.722260 0.009276 0.006139 +11 0.677289 0.722260 0.009874 0.006139 +11 0.374776 0.722033 0.009276 0.006594 +11 0.573758 0.714984 0.006284 0.004320 +11 0.858917 0.714302 0.009276 0.005684 +11 0.481598 0.714416 0.008677 0.005912 +11 0.573160 0.690427 0.009874 0.006139 +11 0.196589 0.689063 0.009575 0.006139 +12 0.259575 0.686107 0.009874 0.006594 +12 0.307600 0.683606 0.008977 0.005230 +12 0.804309 0.680309 0.010174 0.005912 +11 0.678486 0.680537 0.009874 0.006367 +11 0.374925 0.680650 0.009575 0.006594 +12 0.823309 0.680196 0.009874 0.006594 +11 0.482496 0.677922 0.009276 0.005684 +11 0.857720 0.672692 0.009276 0.006139 +12 0.435667 0.638131 0.009575 0.006139 +12 0.435518 0.630286 0.008677 0.005912 +12 0.391981 0.638131 0.010174 0.006139 +12 0.391083 0.630173 0.008378 0.005684 +18 0.499551 0.635744 0.008677 0.005912 +11 0.499551 0.641655 0.008677 0.005912 +12 0.287852 0.635744 0.008977 0.005912 +12 0.287852 0.641655 0.008977 0.005912 +18 0.519300 0.632788 0.009874 0.005457 +12 0.519300 0.638245 0.009874 0.005457 +12 0.307151 0.638245 0.010473 0.005457 +12 0.307151 0.632788 0.010473 0.005457 +12 0.215440 0.632901 0.008977 0.005684 +13 0.215440 0.638586 0.008977 0.005684 +12 0.875374 0.636312 0.008677 0.005684 +12 0.875374 0.630628 0.008677 0.005684 +12 0.592011 0.630514 0.009276 0.005457 +11 0.592011 0.635971 0.009276 0.005457 +12 0.537403 0.630400 0.008977 0.005230 +12 0.537403 0.635630 0.008977 0.005230 +12 0.634351 0.635857 0.008977 0.005684 +11 0.634351 0.630173 0.008977 0.005684 +12 0.333034 0.635175 0.009575 0.005230 +12 0.333034 0.629945 0.009575 0.005230 +12 0.154548 0.635857 0.009276 0.005684 +12 0.154548 0.630173 0.009276 0.005684 +12 0.893926 0.627899 0.009874 0.005684 +12 0.893926 0.633583 0.009874 0.005684 +12 0.912627 0.625512 0.008977 0.005457 +12 0.912627 0.630969 0.008977 0.005457 +12 0.821514 0.625171 0.007481 0.005684 +12 0.821514 0.630855 0.007481 0.005684 +12 0.693896 0.625057 0.008977 0.005457 +12 0.693896 0.630514 0.008977 0.005457 +12 0.767504 0.622328 0.009575 0.005457 +18 0.767504 0.627785 0.009575 0.005457 +13 0.712747 0.622328 0.008977 0.005457 +13 0.712747 0.627785 0.008977 0.005457 +12 0.729653 0.619941 0.009276 0.005230 +12 0.729653 0.625171 0.009276 0.005230 +11 0.858318 0.591291 0.010473 0.007049 +11 0.154847 0.583674 0.009874 0.006367 +11 0.419060 0.580832 0.009276 0.006139 +11 0.197187 0.580832 0.009575 0.006139 +11 0.374177 0.578445 0.008079 0.005457 +11 0.618043 0.578331 0.008677 0.005684 +11 0.574357 0.578331 0.008677 0.005684 +17 0.482196 0.578331 0.009874 0.006594 +17 0.260473 0.578445 0.010473 0.006821 +12 0.844554 0.575375 0.005685 0.004320 +11 0.804758 0.575830 0.008677 0.006139 +11 0.767804 0.575489 0.010174 0.006367 +17 0.679234 0.575830 0.010174 0.007049 +11 0.154997 0.523647 0.008977 0.006367 +11 0.418163 0.520009 0.009874 0.007276 +11 0.197636 0.520123 0.009276 0.007503 +11 0.574656 0.518304 0.009276 0.006594 +17 0.482196 0.517849 0.011071 0.007503 +11 0.373878 0.517394 0.009874 0.006594 +17 0.260473 0.517394 0.010473 0.007503 +11 0.395871 0.491587 0.009575 0.005912 +11 0.851735 0.486016 0.009276 0.005684 +11 0.744315 0.483515 0.009874 0.006139 +11 0.657241 0.481128 0.009276 0.005912 +11 0.198235 0.481241 0.009276 0.006139 +11 0.589168 0.478286 0.009575 0.006594 +11 0.456463 0.478286 0.009874 0.006594 +11 0.261819 0.473283 0.009575 0.006594 +13 0.068971 0.460778 0.004488 0.004320 +13 0.068671 0.449181 0.005087 0.002956 +11 0.396020 0.453388 0.009874 0.005912 +11 0.851137 0.447817 0.009874 0.005684 +11 0.743716 0.444975 0.009874 0.006367 +11 0.656942 0.443042 0.009874 0.006139 +11 0.197487 0.442815 0.009575 0.005684 +11 0.588719 0.439973 0.009874 0.006367 +11 0.456463 0.440086 0.009874 0.006594 +11 0.261370 0.435084 0.009874 0.006594 +11 0.222771 0.404388 0.008079 0.005230 +12 0.223519 0.397794 0.009575 0.005684 +12 0.478905 0.403706 0.008079 0.005684 +12 0.479503 0.397567 0.009276 0.005230 +12 0.671903 0.401205 0.008079 0.004320 +12 0.672352 0.394839 0.008977 0.006139 +17 0.497157 0.400750 0.007481 0.004320 +12 0.497457 0.394952 0.009276 0.006367 +12 0.624476 0.399841 0.007181 0.006139 +12 0.616846 0.397453 0.008677 0.005912 +18 0.094853 0.398931 0.005984 0.004320 +13 0.069569 0.400637 0.005685 0.010914 +18 0.810144 0.397453 0.008677 0.005912 +11 0.817923 0.399500 0.008677 0.005912 +11 0.154997 0.400409 0.008977 0.005457 +11 0.154997 0.394952 0.008977 0.005457 +11 0.101436 0.396544 0.007780 0.008640 +11 0.760922 0.394497 0.009575 0.005457 +12 0.760922 0.399955 0.009575 0.005457 +11 0.550120 0.399955 0.009276 0.005457 +11 0.550120 0.394497 0.009276 0.005457 +12 0.415171 0.394611 0.009276 0.005684 +12 0.415171 0.400296 0.009276 0.005684 +12 0.278576 0.394611 0.009575 0.005684 +12 0.278576 0.400296 0.009575 0.005684 +13 0.869539 0.394156 0.010174 0.005684 +13 0.869539 0.399841 0.010174 0.005684 +13 0.689856 0.392337 0.008677 0.005684 +12 0.689856 0.398022 0.008677 0.005684 +12 0.355027 0.397681 0.009276 0.005457 +11 0.355027 0.392224 0.009276 0.005457 +12 0.885548 0.391883 0.009874 0.005684 +12 0.885548 0.397567 0.009874 0.005684 +12 0.516457 0.391883 0.008977 0.005684 +12 0.516457 0.397567 0.008977 0.005684 +13 0.298175 0.391883 0.009276 0.005684 +12 0.298175 0.397567 0.009276 0.005684 +12 0.707959 0.389495 0.008378 0.005457 +12 0.707959 0.394952 0.008378 0.005457 +12 0.317026 0.389154 0.009874 0.005684 +12 0.317026 0.394839 0.009874 0.005684 +12 0.904997 0.388813 0.009276 0.005912 +12 0.904997 0.394725 0.009276 0.005912 +11 0.396020 0.360277 0.008677 0.006139 +11 0.355027 0.359823 0.009276 0.006139 +17 0.263166 0.359141 0.011071 0.007503 +17 0.456912 0.352547 0.010174 0.006139 +17 0.659037 0.346862 0.010473 0.006594 +13 0.249102 0.345043 0.005685 0.003865 +11 0.155595 0.344816 0.009575 0.006139 +11 0.591263 0.344361 0.008977 0.006139 +11 0.551017 0.344361 0.008677 0.006139 +11 0.198534 0.344588 0.009874 0.006594 +17 0.852035 0.341633 0.011071 0.007049 +11 0.786804 0.339018 0.009874 0.006367 +11 0.744016 0.339131 0.009276 0.006594 +11 0.397516 0.299000 0.008079 0.005457 +11 0.354728 0.299113 0.007481 0.005684 +17 0.262867 0.299113 0.010473 0.006594 +12 0.069270 0.294111 0.003890 0.004775 +17 0.457660 0.292065 0.010473 0.007049 +17 0.658438 0.286721 0.010473 0.007276 +12 0.249102 0.284334 0.006284 0.005230 +11 0.551017 0.284106 0.008677 0.006594 +11 0.197636 0.284106 0.009276 0.006594 +11 0.155147 0.284106 0.009276 0.006594 +11 0.589617 0.283993 0.009276 0.007276 +17 0.851287 0.281605 0.010772 0.007049 +11 0.786056 0.279332 0.008977 0.007049 +11 0.744016 0.279332 0.008079 0.007049 +13 0.069868 0.253865 0.005087 0.003411 +12 0.197038 0.253865 0.008079 0.005230 +11 0.140485 0.253752 0.008677 0.005002 +11 0.440604 0.253979 0.009276 0.006367 +11 0.575853 0.253638 0.009276 0.006594 +17 0.321215 0.253638 0.011071 0.006594 +17 0.242669 0.253411 0.010772 0.007049 +11 0.841712 0.249773 0.009575 0.006139 +11 0.780820 0.246362 0.009874 0.006594 +11 0.635996 0.246362 0.008677 0.006594 +12 0.575105 0.214529 0.008977 0.005684 +11 0.441951 0.214188 0.009575 0.005912 +12 0.197786 0.213734 0.007780 0.005002 +11 0.140784 0.214188 0.009276 0.005912 +17 0.321065 0.213620 0.010772 0.006594 +17 0.241622 0.213847 0.009874 0.007049 +11 0.842460 0.210209 0.009874 0.006139 +11 0.779922 0.207026 0.009276 0.006139 +11 0.637044 0.206912 0.008977 0.005912 +12 0.657241 0.173829 0.006882 0.005230 +12 0.658139 0.167462 0.008677 0.006139 +11 0.241472 0.170191 0.009575 0.006139 +12 0.179683 0.170191 0.009276 0.006139 +12 0.140036 0.170191 0.008378 0.006139 +11 0.799072 0.174056 0.009276 0.006139 +12 0.799072 0.167917 0.009276 0.006139 +12 0.198534 0.167235 0.008677 0.006594 +12 0.163824 0.167235 0.008677 0.006594 +12 0.867145 0.165985 0.008977 0.005912 +12 0.867145 0.171896 0.008977 0.005912 +12 0.735338 0.165416 0.008677 0.005684 +12 0.735338 0.171101 0.008677 0.005684 +13 0.886894 0.163142 0.008977 0.005684 +13 0.886894 0.168827 0.008977 0.005684 +12 0.694045 0.162233 0.008677 0.005684 +12 0.694045 0.167917 0.008677 0.005684 +12 0.906044 0.160300 0.008977 0.005457 +11 0.906044 0.165757 0.008977 0.005457 +12 0.595901 0.156889 0.008677 0.005912 +12 0.595901 0.162801 0.008677 0.005912 +12 0.460353 0.156321 0.008079 0.005684 +12 0.460353 0.162005 0.008079 0.005684 +12 0.533962 0.159845 0.009276 0.005457 +12 0.533962 0.154388 0.009276 0.005457 +13 0.475613 0.154388 0.008079 0.005457 +13 0.475613 0.159845 0.008079 0.005457 +11 0.356074 0.159732 0.010174 0.005684 +11 0.356074 0.154047 0.010174 0.005684 +12 0.492071 0.151319 0.009276 0.005684 +12 0.492071 0.157003 0.009276 0.005684 +11 0.321963 0.157003 0.008977 0.005684 +11 0.321963 0.151319 0.008977 0.005684 +12 0.675045 0.149272 0.003591 0.004320 +12 0.674895 0.171555 0.007481 0.006139 +12 0.673998 0.165075 0.008079 0.005002 +11 0.275135 0.154388 0.008677 0.005457 +11 0.275135 0.148931 0.008677 0.005457 +12 0.179832 0.128126 0.009575 0.006594 +11 0.240874 0.127444 0.008378 0.006139 +12 0.140485 0.127672 0.008677 0.006594 +12 0.197038 0.124716 0.008079 0.006139 +13 0.162926 0.124829 0.009276 0.006367 +18 0.263166 0.119372 0.005087 0.003638 +11 0.780521 0.119714 0.009276 0.005230 +11 0.736385 0.120168 0.008378 0.006139 +17 0.637792 0.119941 0.011071 0.006594 +11 0.274835 0.116871 0.009276 0.005912 +11 0.321514 0.113802 0.009276 0.005230 +13 0.262418 0.114256 0.008378 0.006139 +12 0.842160 0.112437 0.007481 0.007049 +11 0.356224 0.111414 0.010473 0.006821 +13 0.623279 0.109595 0.007780 0.005912 +11 0.574207 0.109709 0.007181 0.006139 +11 0.534560 0.109482 0.009276 0.005684 +17 0.442101 0.109027 0.011071 0.006594 +12 0.139138 0.071396 0.007181 0.004548 +12 0.179982 0.071396 0.008677 0.005002 +12 0.198833 0.069009 0.009276 0.006594 +13 0.163674 0.069009 0.009575 0.006594 +12 0.070018 0.061619 0.004788 0.005002 +11 0.242071 0.061392 0.008977 0.005912 +11 0.779773 0.059686 0.007780 0.006139 +11 0.737133 0.059345 0.007481 0.006367 +17 0.637792 0.059459 0.011071 0.007503 +11 0.275583 0.056048 0.008977 0.006139 +11 0.322412 0.053092 0.008677 0.006594 +11 0.356373 0.051728 0.007780 0.008413 +17 0.842310 0.051046 0.010772 0.007958 +11 0.532615 0.049454 0.009575 0.006594 +11 0.574357 0.048886 0.009874 0.006367 +17 0.442101 0.048431 0.011071 0.007276 +18 0.915171 0.039905 0.006882 0.004775 +4 0.093507 0.107663 0.022442 0.033879 +0 0.095601 0.848454 0.023040 0.023874 +2 0.088420 0.477149 0.020646 0.019782 +4 0.263166 0.056730 0.009874 0.014779 +3 0.153052 0.066735 0.006284 0.016598 +2 0.089617 0.716121 0.020646 0.021146 +2 0.089019 0.438950 0.021843 0.020691 +4 0.406493 0.518986 0.009276 0.015234 +5 0.116248 0.069009 0.008079 0.008413 +5 0.116547 0.108117 0.008677 0.013870 +2 0.090814 0.205207 0.020646 0.019782 +4 0.185667 0.580605 0.009276 0.015689 +3 0.343956 0.109027 0.006284 0.015689 +1 0.092908 0.070600 0.022442 0.034334 +4 0.854728 0.171101 0.009276 0.016144 +4 0.348743 0.050364 0.015859 0.019327 +2 0.091113 0.244316 0.018851 0.018872 +4 0.210503 0.402797 0.009874 0.016598 +4 0.467235 0.402115 0.009874 0.015234 +4 0.603381 0.397567 0.009276 0.016144 +2 0.094105 0.897112 0.018851 0.019327 +2 0.094704 0.941223 0.015260 0.017508 +4 0.798773 0.397340 0.009874 0.016598 +2 0.088420 0.674739 0.020646 0.020236 +0 0.092609 0.627217 0.023040 0.023420 +0 0.092908 0.582196 0.022442 0.031605 +4 0.186565 0.521487 0.009874 0.015689 +0 0.092908 0.340041 0.022442 0.030241 +5 0.116248 0.248181 0.008079 0.015689 +1 0.095302 0.358458 0.005685 0.011596 +4 0.407989 0.579695 0.009874 0.013870 +4 0.123878 0.721237 0.008378 0.015462 +4 0.116098 0.712597 0.008378 0.015462 +3 0.393776 0.158026 0.007181 0.017735 +4 0.124177 0.342656 0.008977 0.016826 +4 0.115799 0.334698 0.008977 0.014552 +4 0.133154 0.331969 0.008977 0.015462 +4 0.117893 0.842428 0.008378 0.014097 +4 0.118492 0.893361 0.008378 0.015916 +5 0.394375 0.245339 0.005984 0.008640 +4 0.402753 0.240337 0.009575 0.015916 +4 0.122980 0.299227 0.008977 0.016371 +4 0.114602 0.291724 0.008977 0.015007 +0 0.132555 0.287631 0.008977 0.013188 +5 0.116697 0.154843 0.007181 0.013188 +4 0.124476 0.767622 0.008378 0.014552 +4 0.115799 0.758299 0.008977 0.015007 +4 0.131658 0.755798 0.008378 0.015462 +4 0.115500 0.619600 0.008378 0.015916 +4 0.123579 0.442701 0.008977 0.015916 +4 0.114901 0.435198 0.009575 0.016371 +4 0.131358 0.431787 0.008977 0.015916 +4 0.126272 0.804684 0.008378 0.015916 +4 0.116996 0.796498 0.008977 0.014097 +4 0.133154 0.793315 0.008977 0.014097 +4 0.132555 0.530696 0.008977 0.016371 +4 0.115799 0.473397 0.008977 0.015462 +4 0.411430 0.111187 0.008977 0.014097 +4 0.419808 0.098681 0.008977 0.015462 +4 0.123279 0.678490 0.008378 0.016371 +4 0.114901 0.670532 0.008378 0.015916 +4 0.131059 0.668031 0.008378 0.015462 +4 0.411430 0.066166 0.008977 0.015916 +4 0.420108 0.055025 0.009575 0.014552 +4 0.119689 0.936562 0.008378 0.013188 +4 0.116397 0.382674 0.008977 0.016826 +4 0.403800 0.149045 0.009276 0.015689 +4 0.411580 0.156321 0.009276 0.015689 +4 0.419210 0.145862 0.008977 0.015689 +4 0.127319 0.900750 0.009276 0.015689 +4 0.133154 0.899159 0.008977 0.015689 +4 0.410981 0.248636 0.009276 0.015689 +4 0.419210 0.238404 0.008977 0.015689 +3 0.393477 0.066735 0.008977 0.015689 +4 0.124327 0.627899 0.009276 0.015689 +4 0.131358 0.618122 0.008977 0.015689 +4 0.396619 0.209982 0.009276 0.015689 +4 0.403052 0.201114 0.008977 0.015689 +4 0.410981 0.208618 0.009276 0.015689 +4 0.418013 0.199295 0.008977 0.015689 +4 0.115350 0.534447 0.009276 0.015689 +4 0.123579 0.541951 0.008977 0.015689 +4 0.087522 0.303206 0.009276 0.015689 +4 0.100239 0.289563 0.008977 0.015689 +4 0.124327 0.481014 0.009276 0.015689 +4 0.131358 0.471237 0.008977 0.015689 +5 0.395422 0.108117 0.009276 0.015689 +4 0.403052 0.102888 0.008977 0.015689 +3 0.345452 0.161096 0.009276 0.015689 +4 0.123728 0.390064 0.009276 0.015689 +4 0.132555 0.380286 0.008977 0.015689 +3 0.095601 0.812074 0.009276 0.012506 +5 0.100838 0.812074 0.008977 0.012506 +4 0.089019 0.808208 0.009276 0.015689 +4 0.099641 0.803206 0.008977 0.015689 +4 0.088121 0.545362 0.009276 0.015689 +5 0.100838 0.539905 0.008977 0.015689 +4 0.115649 0.575603 0.009276 0.015689 +4 0.124028 0.583788 0.009276 0.015689 +4 0.132555 0.573329 0.008977 0.015689 +4 0.087522 0.768645 0.009276 0.015689 +4 0.100838 0.774329 0.008977 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_22.jpg b/data_dataset/dvo/debug/debug_22.jpg new file mode 100644 index 0000000..596f490 Binary files /dev/null and b/data_dataset/dvo/debug/debug_22.jpg differ diff --git a/data_dataset/dvo/debug/debug_22.txt b/data_dataset/dvo/debug/debug_22.txt new file mode 100644 index 0000000..09668c3 --- /dev/null +++ b/data_dataset/dvo/debug/debug_22.txt @@ -0,0 +1,489 @@ +7 0.861161 0.934857 0.011370 0.013415 +10 0.807600 0.931787 0.008378 0.005002 +7 0.775583 0.935312 0.011370 0.013415 +7 0.684620 0.932128 0.011370 0.008868 +8 0.204668 0.931446 0.011370 0.007503 +7 0.162478 0.931673 0.011969 0.009777 +7 0.808498 0.888245 0.010174 0.013870 +7 0.774087 0.888472 0.011969 0.013415 +10 0.684321 0.884948 0.008378 0.005002 +7 0.162777 0.887335 0.011370 0.012960 +9 0.709755 0.884834 0.007780 0.024329 +7 0.163674 0.838677 0.011969 0.010232 +7 0.202873 0.839814 0.011370 0.013415 +10 0.632855 0.790814 0.007181 0.005002 +7 0.482047 0.794338 0.011969 0.013415 +7 0.262717 0.793656 0.012567 0.012960 +7 0.591861 0.791382 0.011370 0.008413 +7 0.531119 0.791155 0.010772 0.007958 +7 0.361161 0.793884 0.011969 0.013415 +7 0.303411 0.798886 0.010174 0.024329 +7 0.634650 0.751819 0.011969 0.012960 +7 0.529324 0.751592 0.011969 0.013415 +7 0.483543 0.751819 0.011370 0.012960 +7 0.409635 0.752046 0.009575 0.013415 +7 0.361161 0.751819 0.011969 0.012960 +7 0.264213 0.751592 0.011969 0.013415 +8 0.636744 0.704070 0.010174 0.009322 +9 0.407241 0.710664 0.009575 0.023420 +10 0.506284 0.625057 0.008977 0.004548 +8 0.263315 0.608345 0.011370 0.007958 +7 0.204369 0.610846 0.010772 0.012960 +7 0.166667 0.610618 0.011969 0.013415 +7 0.757929 0.610164 0.011969 0.013415 +7 0.660084 0.610164 0.011370 0.013415 +7 0.606224 0.610164 0.010174 0.013415 +7 0.567026 0.610618 0.011969 0.013415 +7 0.459605 0.610391 0.012567 0.013870 +7 0.401855 0.610391 0.011969 0.013870 +7 0.362956 0.610164 0.011969 0.013415 +7 0.799521 0.609936 0.012567 0.012960 +10 0.862358 0.599591 0.007780 0.002729 +10 0.511670 0.584129 0.007780 0.004548 +8 0.292041 0.572078 0.013764 0.017735 +10 0.704069 0.573670 0.005984 0.002729 +6 0.523938 0.579241 0.004788 0.015234 +7 0.205266 0.569463 0.012567 0.012960 +7 0.757032 0.569009 0.011370 0.012960 +8 0.632855 0.566508 0.004788 0.007958 +7 0.608618 0.569236 0.011370 0.013415 +7 0.461101 0.569236 0.011969 0.013415 +7 0.403052 0.569236 0.011969 0.013415 +7 0.361161 0.566962 0.010772 0.008868 +7 0.264811 0.569236 0.011969 0.013415 +7 0.163375 0.569463 0.011370 0.013870 +7 0.856673 0.568781 0.011969 0.013415 +7 0.798624 0.569009 0.011969 0.013870 +7 0.661879 0.569009 0.012567 0.013870 +10 0.374028 0.533197 0.007780 0.004548 +10 0.874327 0.532287 0.007780 0.004548 +10 0.471275 0.469759 0.007181 0.004093 +7 0.577499 0.475330 0.011370 0.009322 +8 0.211550 0.472487 0.004788 0.020464 +9 0.124177 0.434061 0.005984 0.016371 +10 0.569719 0.383356 0.008977 0.003183 +9 0.611909 0.392565 0.010772 0.023874 +7 0.671753 0.330946 0.011969 0.012506 +8 0.862358 0.327990 0.011370 0.007503 +7 0.766008 0.328899 0.011370 0.009322 +7 0.806703 0.330264 0.011370 0.012960 +6 0.205566 0.331173 0.008378 0.018417 +6 0.512268 0.330719 0.008977 0.017508 +6 0.297427 0.330946 0.008977 0.017963 +6 0.577499 0.330491 0.008977 0.017963 +6 0.355476 0.330491 0.008977 0.017963 +9 0.716038 0.327308 0.007181 0.025239 +8 0.863256 0.283197 0.011969 0.008868 +7 0.806703 0.285471 0.011370 0.013415 +10 0.764811 0.281946 0.007780 0.005002 +10 0.690904 0.248977 0.005984 0.002729 +8 0.859964 0.236812 0.011370 0.007958 +7 0.807301 0.238631 0.011370 0.012506 +7 0.671753 0.239086 0.011969 0.013415 +10 0.779174 0.199409 0.006583 0.004548 +7 0.296230 0.196453 0.010174 0.016826 +7 0.582585 0.193838 0.011969 0.013870 +8 0.515859 0.190882 0.011370 0.007958 +8 0.400958 0.190882 0.011370 0.007958 +7 0.360862 0.193383 0.012567 0.012960 +8 0.268103 0.191337 0.011370 0.008868 +7 0.616996 0.192929 0.011370 0.012960 +10 0.206762 0.149841 0.009575 0.004548 +7 0.494614 0.148363 0.004788 0.008413 +7 0.616996 0.150864 0.011370 0.012506 +7 0.581089 0.151091 0.012567 0.012960 +10 0.513764 0.147340 0.007181 0.004093 +7 0.403950 0.150864 0.010174 0.012506 +7 0.361161 0.151319 0.011969 0.013415 +7 0.263615 0.147908 0.008378 0.007503 +8 0.169360 0.148363 0.011370 0.007503 +7 0.470676 0.151091 0.011969 0.013870 +8 0.698983 0.143361 0.006583 0.007503 +9 0.514363 0.113120 0.009575 0.020691 +9 0.766308 0.113802 0.009575 0.023874 +9 0.805805 0.111073 0.008378 0.026603 +9 0.613405 0.108345 0.008977 0.024784 +8 0.196888 0.065143 0.011370 0.006594 +6 0.580790 0.068099 0.009575 0.017053 +8 0.503591 0.065371 0.011969 0.007958 +8 0.391083 0.064688 0.013166 0.007503 +8 0.293537 0.065143 0.013166 0.008413 +11 0.409037 0.951000 0.010174 0.006139 +11 0.362507 0.950546 0.008677 0.006139 +17 0.481299 0.950318 0.010473 0.006594 +17 0.591861 0.949864 0.010174 0.006594 +17 0.266158 0.950091 0.009874 0.007049 +12 0.881059 0.945543 0.009276 0.006139 +13 0.898115 0.942815 0.008677 0.005230 +12 0.916966 0.940314 0.009276 0.005684 +12 0.703621 0.940541 0.009874 0.006139 +11 0.220078 0.939632 0.008677 0.006139 +11 0.180132 0.939632 0.010174 0.006139 +12 0.722621 0.938154 0.009575 0.005912 +18 0.829294 0.935425 0.009874 0.005912 +12 0.792041 0.935425 0.009575 0.005912 +12 0.742220 0.935425 0.009276 0.005912 +18 0.135548 0.929172 0.005984 0.003411 +11 0.407690 0.904161 0.009276 0.006139 +17 0.593357 0.903479 0.010174 0.006594 +11 0.361011 0.903024 0.009874 0.005684 +17 0.265260 0.903706 0.010473 0.007049 +17 0.481149 0.903251 0.010174 0.007049 +12 0.880910 0.899386 0.008977 0.005684 +13 0.898414 0.896203 0.009276 0.005684 +12 0.916517 0.893929 0.009575 0.005684 +12 0.703471 0.893815 0.009575 0.005457 +11 0.181029 0.893020 0.009575 0.005684 +11 0.219479 0.892792 0.009874 0.006139 +12 0.721873 0.891201 0.009276 0.005684 +12 0.791293 0.888927 0.009276 0.005684 +12 0.830192 0.888699 0.009276 0.006139 +12 0.741023 0.888699 0.009276 0.006139 +17 0.481149 0.857208 0.010772 0.006821 +17 0.593507 0.856639 0.011071 0.006594 +11 0.409785 0.856412 0.009276 0.006139 +11 0.360114 0.856412 0.009874 0.006139 +17 0.265859 0.856867 0.010473 0.007049 +11 0.219330 0.845953 0.009575 0.006139 +11 0.179084 0.845953 0.009276 0.006139 +12 0.919958 0.822988 0.009276 0.006594 +11 0.885248 0.822874 0.009276 0.006367 +12 0.863256 0.822533 0.008977 0.006594 +11 0.707510 0.822533 0.009874 0.006594 +11 0.794584 0.821396 0.008677 0.005230 +11 0.774536 0.822192 0.009874 0.006821 +11 0.741771 0.822306 0.009575 0.007049 +12 0.688211 0.822306 0.009575 0.007049 +12 0.829593 0.820941 0.008079 0.006139 +12 0.280820 0.809914 0.009276 0.005912 +12 0.301765 0.807299 0.009276 0.005230 +13 0.864602 0.805252 0.008677 0.006594 +13 0.777379 0.804911 0.010174 0.006821 +13 0.689856 0.804570 0.009874 0.006139 +12 0.609964 0.804343 0.009276 0.005684 +12 0.554608 0.804570 0.009874 0.006139 +12 0.322711 0.804457 0.009276 0.005912 +12 0.651406 0.802069 0.009575 0.005684 +12 0.380910 0.802183 0.009575 0.005912 +11 0.433573 0.799795 0.009575 0.005684 +13 0.899461 0.799795 0.010174 0.006594 +13 0.809844 0.799341 0.010473 0.006594 +13 0.724117 0.799227 0.010174 0.006821 +11 0.504039 0.797067 0.009276 0.005684 +13 0.166367 0.791382 0.010772 0.007049 +13 0.207062 0.786153 0.009575 0.006594 +12 0.282166 0.762733 0.009575 0.006139 +13 0.688959 0.762278 0.009874 0.006139 +13 0.776332 0.762278 0.009276 0.007049 +13 0.302214 0.759777 0.008977 0.005684 +13 0.864153 0.757844 0.010174 0.006367 +11 0.609665 0.757617 0.009874 0.005912 +11 0.554758 0.757731 0.010174 0.006139 +12 0.322113 0.757503 0.009276 0.005684 +13 0.810742 0.757276 0.009874 0.006139 +13 0.723668 0.757162 0.009874 0.006367 +12 0.652753 0.755116 0.008677 0.005457 +12 0.381059 0.754775 0.009874 0.005684 +11 0.433423 0.752387 0.009276 0.006367 +12 0.504339 0.749886 0.009874 0.005912 +13 0.900509 0.749659 0.011071 0.006367 +13 0.163824 0.744543 0.009874 0.006139 +13 0.206463 0.739313 0.009575 0.006594 +11 0.530820 0.708845 0.010174 0.005684 +17 0.811789 0.706344 0.009575 0.006139 +17 0.778426 0.706344 0.009874 0.006139 +11 0.595601 0.706116 0.009276 0.005684 +11 0.482795 0.706230 0.009874 0.005912 +11 0.205416 0.706230 0.009276 0.005912 +17 0.690305 0.706003 0.009575 0.006367 +11 0.162627 0.705889 0.009874 0.006139 +11 0.637792 0.703843 0.009874 0.005684 +11 0.408438 0.703615 0.007780 0.005230 +18 0.866846 0.701228 0.009575 0.006821 +11 0.362507 0.700773 0.009874 0.005912 +17 0.265859 0.700318 0.010473 0.006821 +12 0.071364 0.662119 0.004488 0.005002 +11 0.530072 0.647226 0.009874 0.006139 +11 0.482196 0.645862 0.009874 0.007049 +11 0.205266 0.645634 0.010174 0.007503 +11 0.163974 0.645180 0.009575 0.006594 +11 0.813435 0.644497 0.008079 0.007049 +11 0.595601 0.644611 0.009276 0.007276 +12 0.778875 0.643588 0.009575 0.006139 +17 0.689258 0.643929 0.007481 0.007731 +11 0.406942 0.642678 0.008977 0.006139 +18 0.636894 0.641542 0.009276 0.005684 +17 0.867295 0.639723 0.010473 0.007503 +11 0.361909 0.639495 0.009874 0.007049 +17 0.265410 0.639723 0.009575 0.007503 +12 0.877768 0.620850 0.009874 0.006139 +12 0.897816 0.618349 0.009276 0.005684 +11 0.680880 0.616075 0.009874 0.005684 +11 0.687313 0.598681 0.004189 0.003638 +12 0.918013 0.615848 0.010174 0.006139 +12 0.701825 0.613461 0.009874 0.005912 +12 0.479354 0.613120 0.008378 0.006139 +11 0.818522 0.610846 0.009874 0.006139 +12 0.720377 0.610846 0.009874 0.006139 +12 0.507481 0.610846 0.009575 0.006139 +11 0.779473 0.610618 0.010174 0.006594 +12 0.628516 0.608231 0.009276 0.005457 +12 0.589019 0.608117 0.009276 0.006139 +12 0.528276 0.608117 0.008677 0.006139 +12 0.226960 0.606185 0.009276 0.005912 +12 0.186565 0.606298 0.009874 0.006139 +11 0.287403 0.603342 0.009276 0.005684 +12 0.308049 0.600841 0.009874 0.006139 +12 0.861311 0.598340 0.009276 0.004775 +12 0.423698 0.597999 0.008977 0.005912 +12 0.382855 0.597885 0.009874 0.005684 +12 0.324955 0.598113 0.009575 0.006139 +12 0.875972 0.579809 0.009874 0.005912 +13 0.897816 0.576967 0.009276 0.005684 +12 0.680281 0.574579 0.009874 0.006367 +12 0.918163 0.574238 0.010473 0.006594 +12 0.702274 0.571851 0.009575 0.005457 +12 0.479503 0.571965 0.008079 0.005684 +12 0.817624 0.569463 0.010473 0.006139 +12 0.778725 0.569463 0.010473 0.006139 +12 0.720527 0.569463 0.010174 0.006139 +12 0.510323 0.569463 0.009874 0.006139 +13 0.630012 0.566962 0.009874 0.005684 +13 0.587074 0.566849 0.009575 0.005457 +12 0.530072 0.566962 0.009874 0.005684 +12 0.225464 0.564688 0.008677 0.006594 +12 0.188061 0.564688 0.010473 0.006594 +12 0.286206 0.561733 0.009276 0.006139 +12 0.306104 0.559573 0.009575 0.005457 +12 0.425194 0.556503 0.009575 0.005684 +12 0.383752 0.556730 0.010473 0.006139 +12 0.325404 0.556617 0.009874 0.005912 +11 0.694195 0.538313 0.008378 0.003865 +12 0.705416 0.523533 0.009874 0.006139 +13 0.665021 0.532174 0.009276 0.006139 +18 0.759575 0.531264 0.010473 0.007049 +13 0.463645 0.526717 0.009874 0.007049 +13 0.570317 0.526262 0.010772 0.007049 +13 0.267654 0.523761 0.010473 0.006594 +13 0.165619 0.523761 0.009874 0.006594 +12 0.859515 0.523192 0.010473 0.006367 +13 0.363256 0.523533 0.010174 0.007049 +13 0.800569 0.523079 0.009874 0.007049 +13 0.611161 0.521260 0.009276 0.006139 +13 0.510024 0.520805 0.010473 0.007049 +13 0.897666 0.517963 0.010174 0.006821 +13 0.207810 0.514211 0.009276 0.006594 +13 0.404249 0.510914 0.008977 0.006367 +13 0.306703 0.510800 0.008977 0.007049 +13 0.462448 0.487835 0.009874 0.006594 +13 0.569420 0.487040 0.010772 0.006821 +13 0.267654 0.484425 0.010473 0.006139 +13 0.165320 0.484425 0.010473 0.006139 +13 0.361610 0.484425 0.010473 0.007049 +13 0.510024 0.481924 0.010473 0.006594 +13 0.609665 0.481696 0.009874 0.007049 +13 0.207959 0.479650 0.010772 0.006594 +13 0.403800 0.477262 0.009874 0.006367 +13 0.307750 0.477149 0.010473 0.007049 +13 0.761071 0.473624 0.011071 0.006367 +13 0.666068 0.473852 0.010174 0.006821 +13 0.705416 0.468963 0.009874 0.006139 +13 0.859814 0.468622 0.009874 0.006367 +13 0.801167 0.468508 0.009874 0.006139 +13 0.897816 0.463165 0.010473 0.006367 +18 0.570467 0.446112 0.010473 0.005912 +11 0.610263 0.445884 0.009874 0.006367 +17 0.463645 0.446226 0.009874 0.007049 +11 0.166218 0.443724 0.009874 0.005684 +11 0.206314 0.443497 0.009874 0.006139 +11 0.800269 0.437358 0.009276 0.005684 +11 0.759575 0.437585 0.009874 0.006139 +17 0.665619 0.437813 0.010473 0.006594 +18 0.450778 0.435539 0.005685 0.003865 +11 0.403800 0.435766 0.009874 0.006139 +11 0.362657 0.435766 0.009575 0.006139 +17 0.267654 0.435994 0.010473 0.007503 +17 0.860712 0.430082 0.010473 0.006594 +11 0.569569 0.385402 0.008677 0.005457 +11 0.612807 0.385061 0.008977 0.005684 +12 0.072561 0.385630 0.004488 0.007731 +17 0.463046 0.384720 0.011071 0.006821 +11 0.208707 0.382219 0.009874 0.006367 +11 0.167714 0.382106 0.009276 0.006139 +18 0.450479 0.376648 0.005087 0.003411 +11 0.802065 0.376876 0.009276 0.005684 +11 0.760174 0.376876 0.008079 0.005684 +17 0.666966 0.377331 0.008378 0.006594 +11 0.405895 0.374034 0.009276 0.006367 +11 0.362956 0.373693 0.009575 0.006594 +17 0.268851 0.373693 0.010473 0.007503 +17 0.861909 0.368236 0.010473 0.007503 +11 0.473519 0.347090 0.009276 0.006139 +11 0.264662 0.347090 0.009276 0.006139 +11 0.166816 0.344816 0.009874 0.006139 +12 0.691203 0.338904 0.008977 0.006139 +12 0.710203 0.336176 0.009874 0.006139 +11 0.781867 0.333674 0.009575 0.005684 +12 0.730551 0.333674 0.009874 0.005684 +11 0.823459 0.333674 0.009575 0.006594 +12 0.881358 0.330946 0.009874 0.006594 +11 0.402603 0.329013 0.007481 0.005457 +11 0.616248 0.328786 0.008677 0.005912 +12 0.898863 0.328217 0.008378 0.006594 +12 0.918911 0.325375 0.009575 0.006367 +11 0.359216 0.302410 0.008079 0.005912 +11 0.618342 0.301160 0.009276 0.006139 +11 0.581538 0.301160 0.009874 0.006139 +17 0.473818 0.301387 0.011071 0.006594 +11 0.401706 0.301273 0.010473 0.006367 +17 0.268253 0.300932 0.010473 0.006594 +17 0.168312 0.299113 0.010473 0.006594 +12 0.690604 0.293429 0.008977 0.006139 +12 0.709306 0.290700 0.009276 0.006139 +18 0.783363 0.288085 0.010174 0.005457 +12 0.731299 0.288199 0.008977 0.005684 +13 0.823309 0.287744 0.009874 0.005684 +12 0.880760 0.285357 0.009874 0.006367 +12 0.897367 0.282742 0.007181 0.005684 +12 0.919808 0.280014 0.010174 0.005684 +11 0.580940 0.255230 0.009874 0.006139 +11 0.403950 0.255457 0.010174 0.006594 +11 0.359216 0.255230 0.009276 0.006139 +17 0.472920 0.255457 0.010473 0.007503 +17 0.266906 0.255116 0.010174 0.006821 +11 0.617744 0.254320 0.009276 0.006139 +17 0.169210 0.252729 0.009874 0.006594 +12 0.691951 0.246930 0.009276 0.005912 +12 0.709605 0.244657 0.009874 0.005912 +11 0.823609 0.241814 0.009276 0.005684 +12 0.781718 0.241246 0.008079 0.004548 +12 0.730700 0.241814 0.010174 0.006594 +12 0.879414 0.239427 0.008977 0.006367 +12 0.897816 0.237040 0.008079 0.006139 +12 0.919360 0.234311 0.009276 0.006139 +11 0.284560 0.209754 0.009575 0.006139 +11 0.291592 0.191905 0.006882 0.004093 +12 0.303112 0.207026 0.009575 0.006139 +11 0.596200 0.204070 0.009276 0.006594 +12 0.538450 0.203843 0.009874 0.006139 +11 0.320168 0.203956 0.010174 0.006367 +11 0.222472 0.204070 0.009874 0.006594 +11 0.185667 0.204070 0.009276 0.006594 +12 0.632406 0.201342 0.009874 0.005684 +11 0.377618 0.201569 0.010174 0.006139 +11 0.429084 0.199068 0.009575 0.005684 +12 0.490874 0.196567 0.010473 0.006139 +13 0.672651 0.194065 0.008378 0.006594 +13 0.766308 0.192929 0.010174 0.007049 +18 0.168462 0.191792 0.005984 0.004775 +13 0.860114 0.190882 0.009276 0.005684 +18 0.139437 0.181219 0.007181 0.004548 +18 0.138390 0.186676 0.008079 0.005002 +13 0.896619 0.180650 0.008079 0.006139 +13 0.711251 0.180650 0.008977 0.006139 +13 0.810144 0.180423 0.009874 0.006594 +12 0.282765 0.161551 0.009575 0.006139 +13 0.672950 0.161323 0.010772 0.006594 +12 0.302513 0.159277 0.008378 0.006139 +13 0.768103 0.159959 0.010772 0.008413 +13 0.862059 0.158140 0.010772 0.006594 +11 0.539198 0.156435 0.010174 0.005912 +12 0.321215 0.156548 0.009874 0.006139 +11 0.223668 0.156548 0.009874 0.006139 +11 0.184919 0.156548 0.008977 0.006139 +12 0.596499 0.156321 0.009874 0.006594 +18 0.131059 0.153820 0.004788 0.003411 +13 0.642280 0.153024 0.005087 0.003638 +12 0.378965 0.153706 0.009276 0.005002 +13 0.630610 0.153365 0.008677 0.005230 +13 0.896170 0.153365 0.010772 0.006139 +13 0.808648 0.153138 0.010473 0.006594 +13 0.711700 0.153251 0.010473 0.006821 +12 0.431628 0.151319 0.010473 0.006594 +18 0.614452 0.149045 0.005087 0.004775 +13 0.491023 0.148704 0.008378 0.005002 +18 0.138989 0.144270 0.008079 0.004775 +18 0.138989 0.139495 0.008079 0.004775 +12 0.860862 0.116758 0.009575 0.005684 +11 0.515111 0.107094 0.007481 0.005457 +12 0.848145 0.106298 0.005685 0.004775 +11 0.807301 0.106298 0.008378 0.005684 +11 0.767504 0.106298 0.007780 0.005684 +12 0.673399 0.106753 0.010473 0.006594 +11 0.582436 0.104479 0.009276 0.006594 +11 0.474566 0.102319 0.008977 0.005912 +11 0.614752 0.101637 0.007481 0.005457 +11 0.404698 0.099704 0.008079 0.006139 +11 0.209455 0.099932 0.008977 0.006594 +11 0.171005 0.099818 0.009874 0.006367 +11 0.362956 0.097203 0.009575 0.005684 +17 0.270497 0.093793 0.010772 0.007049 +11 0.615949 0.060141 0.008079 0.005230 +18 0.140934 0.058777 0.007780 0.004320 +12 0.862208 0.056503 0.011071 0.007049 +12 0.806403 0.046726 0.007181 0.005684 +12 0.766308 0.046498 0.008378 0.006139 +17 0.675494 0.047294 0.011071 0.007731 +5 0.120138 0.610846 0.018253 0.022510 +2 0.091113 0.838904 0.018851 0.017508 +2 0.093208 0.284106 0.019449 0.018417 +2 0.093507 0.330491 0.018851 0.019327 +0 0.098594 0.150637 0.023040 0.023420 +2 0.092609 0.931901 0.018253 0.017053 +4 0.496559 0.610164 0.006284 0.012960 +2 0.090814 0.609936 0.018253 0.019782 +0 0.092908 0.525807 0.023639 0.024329 +3 0.542340 0.755912 0.006882 0.014325 +2 0.090515 0.568327 0.021245 0.020236 +4 0.130311 0.067417 0.009874 0.013415 +1 0.092908 0.435994 0.022442 0.039336 +4 0.419659 0.799341 0.009276 0.012960 +1 0.092011 0.709300 0.023040 0.038427 +0 0.094105 0.388699 0.022442 0.032970 +0 0.092609 0.663597 0.021843 0.031605 +0 0.093507 0.750910 0.022442 0.024329 +2 0.096200 0.885516 0.019449 0.017963 +0 0.098294 0.192929 0.023639 0.023420 +4 0.124476 0.843111 0.008378 0.016371 +4 0.114602 0.835607 0.008977 0.014097 +4 0.135248 0.833561 0.008378 0.014552 +4 0.123878 0.889950 0.007181 0.012733 +4 0.114303 0.882447 0.009575 0.015007 +0 0.125075 0.474079 0.008378 0.010459 +4 0.116098 0.466803 0.008378 0.014097 +4 0.135847 0.464302 0.008378 0.014552 +4 0.125075 0.526376 0.008378 0.013188 +4 0.134949 0.515689 0.008977 0.014552 +4 0.123878 0.794907 0.008378 0.013643 +4 0.114901 0.785812 0.008378 0.015462 +4 0.134351 0.784220 0.007780 0.014097 +4 0.115200 0.564120 0.008977 0.015007 +4 0.124177 0.708049 0.008977 0.015462 +4 0.114303 0.700091 0.008378 0.015007 +4 0.134051 0.697362 0.008378 0.015916 +4 0.114901 0.658026 0.008378 0.015462 +4 0.132256 0.654843 0.009575 0.015462 +4 0.124776 0.390177 0.008977 0.016371 +4 0.135548 0.379945 0.008977 0.014097 +4 0.119390 0.279673 0.008977 0.013643 +4 0.130760 0.108004 0.008977 0.015916 +4 0.121783 0.098681 0.008977 0.013643 +4 0.120586 0.234197 0.008977 0.012733 +4 0.122980 0.752160 0.008977 0.015462 +4 0.114602 0.743747 0.008977 0.012278 +4 0.132555 0.741019 0.008977 0.014097 +4 0.119838 0.184743 0.009276 0.013415 +4 0.128965 0.192474 0.008977 0.013415 +5 0.086924 0.789336 0.009276 0.013415 +4 0.100239 0.793201 0.008977 0.013415 +5 0.129713 0.234311 0.009276 0.013415 +4 0.137343 0.233174 0.008977 0.013415 +4 0.092310 0.069236 0.009276 0.013415 +5 0.105027 0.072874 0.008977 0.013415 +3 0.098594 0.114029 0.009276 0.011596 +5 0.103830 0.114029 0.008977 0.011596 +5 0.090814 0.109254 0.009276 0.013415 +5 0.103830 0.105616 0.008977 0.013415 +4 0.097696 0.463961 0.009276 0.013415 +5 0.098294 0.483743 0.009276 0.013415 +4 0.086924 0.477376 0.009276 0.013415 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_23.jpg b/data_dataset/dvo/debug/debug_23.jpg new file mode 100644 index 0000000..f58dca2 Binary files /dev/null and b/data_dataset/dvo/debug/debug_23.jpg differ diff --git a/data_dataset/dvo/debug/debug_23.txt b/data_dataset/dvo/debug/debug_23.txt new file mode 100644 index 0000000..7fd7c3d --- /dev/null +++ b/data_dataset/dvo/debug/debug_23.txt @@ -0,0 +1,266 @@ +7 0.891674 0.935868 0.010146 0.012032 +9 0.279469 0.932690 0.004476 0.023837 +7 0.892569 0.880931 0.010146 0.013848 +9 0.281707 0.877753 0.008356 0.023837 +10 0.685765 0.835414 0.005968 0.001816 +10 0.477469 0.832463 0.007162 0.002270 +10 0.440764 0.832690 0.013727 0.004540 +8 0.700686 0.833031 0.009549 0.007491 +10 0.475679 0.829285 0.008356 0.002270 +9 0.604446 0.812826 0.009251 0.019296 +9 0.427186 0.819637 0.010445 0.027923 +7 0.532378 0.811918 0.011340 0.017480 +7 0.335124 0.818048 0.009549 0.020658 +7 0.281110 0.817140 0.012534 0.017934 +7 0.397493 0.814642 0.012534 0.013394 +7 0.635333 0.814529 0.011937 0.013621 +10 0.605491 0.809308 0.005968 0.001816 +7 0.575052 0.815323 0.011937 0.015210 +6 0.910922 0.814529 0.009848 0.017253 +10 0.234258 0.797957 0.005968 0.001816 +10 0.172486 0.785244 0.008953 0.004994 +10 0.671143 0.779569 0.005968 0.001816 +10 0.404058 0.777299 0.006565 0.004540 +10 0.884811 0.767083 0.008356 0.003632 +10 0.678902 0.716345 0.005968 0.002043 +10 0.173679 0.716913 0.013727 0.004540 +10 0.197851 0.716005 0.015518 0.004540 +10 0.880782 0.710783 0.013429 0.004540 +9 0.218741 0.699659 0.012534 0.037684 +6 0.171889 0.637344 0.005968 0.023837 +8 0.406744 0.540182 0.004775 0.020204 +9 0.184124 0.538252 0.008356 0.031782 +7 0.385258 0.537230 0.011937 0.013394 +8 0.168308 0.534279 0.011340 0.008400 +7 0.586392 0.537003 0.009549 0.013394 +7 0.267681 0.536776 0.011937 0.012940 +7 0.714712 0.536776 0.008356 0.002497 +7 0.475679 0.536549 0.008953 0.012940 +9 0.422859 0.540295 0.008356 0.026788 +10 0.405551 0.531896 0.005968 0.002270 +7 0.891077 0.532917 0.006565 0.007037 +9 0.498359 0.537344 0.010146 0.029966 +9 0.349448 0.538820 0.009549 0.027923 +9 0.327663 0.541544 0.010146 0.029739 +10 0.441361 0.527128 0.005968 0.002724 +9 0.204118 0.539047 0.011340 0.027923 +10 0.351238 0.526901 0.007162 0.002724 +9 0.552969 0.534279 0.009549 0.032463 +10 0.720680 0.501249 0.005968 0.003632 +10 0.322292 0.467196 0.013130 0.004994 +7 0.490600 0.463564 0.010743 0.011351 +10 0.483438 0.434506 0.007162 0.001816 +8 0.288571 0.427242 0.013727 0.016799 +10 0.721576 0.429285 0.005968 0.002270 +10 0.538944 0.429512 0.015518 0.004994 +7 0.214861 0.357208 0.011340 0.012940 +7 0.167114 0.357435 0.012534 0.014302 +7 0.215458 0.304767 0.011340 0.013394 +7 0.166219 0.304994 0.011937 0.012940 +10 0.276932 0.291260 0.007759 0.003632 +10 0.593256 0.267650 0.005968 0.001816 +9 0.392420 0.260045 0.004178 0.019296 +10 0.631155 0.252213 0.007759 0.002724 +10 0.435094 0.252440 0.010743 0.003632 +9 0.268577 0.242338 0.008356 0.030647 +10 0.570874 0.200681 0.006565 0.003178 +10 0.512683 0.195006 0.007162 0.003632 +9 0.684273 0.199546 0.007759 0.025426 +9 0.827216 0.202270 0.008356 0.015891 +9 0.735004 0.195687 0.008953 0.027696 +7 0.770815 0.191714 0.011340 0.012486 +7 0.859445 0.190352 0.010743 0.010216 +9 0.807968 0.198184 0.010445 0.025880 +9 0.717398 0.197730 0.011937 0.025426 +7 0.662787 0.191487 0.008953 0.002497 +7 0.269173 0.189671 0.011937 0.013394 +10 0.176813 0.180704 0.006267 0.001816 +10 0.797672 0.129171 0.005968 0.001816 +10 0.695613 0.128717 0.011937 0.003178 +10 0.696210 0.126220 0.011937 0.002724 +10 0.472695 0.123723 0.007759 0.003178 +9 0.607281 0.132917 0.008356 0.024291 +9 0.369442 0.127242 0.004178 0.023383 +10 0.710534 0.119183 0.019099 0.004086 +10 0.667562 0.086266 0.005968 0.001816 +10 0.858848 0.071283 0.008356 0.003178 +9 0.136974 0.070261 0.010146 0.025653 +10 0.607580 0.052213 0.008356 0.003178 +17 0.173381 0.926447 0.010743 0.007719 +17 0.401074 0.907946 0.010743 0.007037 +12 0.637869 0.867877 0.010445 0.007264 +12 0.173232 0.871964 0.009848 0.007719 +17 0.399731 0.852781 0.010445 0.008400 +12 0.401820 0.767877 0.011638 0.007491 +13 0.171292 0.774461 0.011937 0.007037 +12 0.283050 0.774120 0.010445 0.006810 +13 0.533721 0.768104 0.011041 0.006583 +13 0.220531 0.755619 0.010146 0.007491 +13 0.332736 0.755165 0.010146 0.007037 +13 0.788869 0.750170 0.011041 0.007037 +13 0.472993 0.749716 0.011937 0.007491 +13 0.692629 0.749035 0.010743 0.007037 +13 0.578484 0.749035 0.011041 0.007491 +12 0.169054 0.693417 0.009848 0.007491 +12 0.218591 0.687628 0.010445 0.007719 +12 0.358550 0.687287 0.009251 0.007491 +11 0.281409 0.687514 0.010146 0.007946 +12 0.638168 0.686947 0.009848 0.007719 +17 0.716055 0.679796 0.009251 0.007491 +17 0.478812 0.636436 0.011041 0.007037 +17 0.268278 0.629285 0.010146 0.006810 +11 0.844972 0.620091 0.009251 0.007491 +17 0.718442 0.618956 0.010445 0.007491 +17 0.478812 0.586606 0.010445 0.007264 +17 0.717845 0.567423 0.009848 0.007946 +12 0.169502 0.499773 0.011340 0.007946 +13 0.267681 0.498070 0.010743 0.007719 +13 0.386452 0.497276 0.010743 0.007491 +13 0.478962 0.492963 0.010146 0.007037 +13 0.590570 0.492509 0.010146 0.007491 +12 0.718442 0.487060 0.010445 0.007037 +12 0.204267 0.481839 0.011041 0.006583 +12 0.331095 0.479115 0.010445 0.007037 +13 0.424202 0.478661 0.010445 0.007491 +13 0.637272 0.473666 0.010445 0.007037 +13 0.525067 0.473666 0.010445 0.007037 +13 0.784393 0.468558 0.011041 0.006810 +13 0.895404 0.468218 0.011041 0.007037 +18 0.571322 0.373099 0.010445 0.007491 +17 0.271710 0.373099 0.010445 0.007491 +17 0.473590 0.372758 0.010743 0.007719 +17 0.861981 0.359705 0.010445 0.007037 +17 0.666667 0.346765 0.010146 0.007037 +17 0.272904 0.322020 0.010445 0.007037 +17 0.571173 0.320885 0.010743 0.007491 +17 0.473739 0.320318 0.011041 0.008173 +17 0.664130 0.294779 0.011041 0.007491 +13 0.071471 0.283995 0.005670 0.018615 +17 0.666816 0.246879 0.011041 0.007037 +12 0.571024 0.243927 0.010445 0.007037 +12 0.415100 0.238593 0.010146 0.006810 +12 0.071471 0.220658 0.005670 0.029966 +13 0.215309 0.195119 0.011638 0.007946 +13 0.214861 0.187287 0.010146 0.006810 +13 0.166517 0.194438 0.011340 0.006583 +13 0.166517 0.201022 0.011340 0.006583 +13 0.859893 0.155278 0.011041 0.007264 +13 0.767980 0.155392 0.011041 0.007491 +13 0.662936 0.154711 0.011041 0.007491 +17 0.271262 0.117026 0.010743 0.007491 +17 0.117875 0.069807 0.008356 0.008854 +11 0.165622 0.050057 0.009549 0.007491 +12 0.270218 0.045516 0.010445 0.007946 +1 0.096837 0.131328 0.022381 0.039274 +1 0.097135 0.479569 0.022381 0.040182 +4 0.139511 0.347446 0.009848 0.013848 +1 0.098030 0.428490 0.022978 0.038820 +3 0.890033 0.067764 0.007460 0.018842 +3 0.882871 0.468445 0.007460 0.017480 +2 0.099224 0.253916 0.012235 0.016572 +0 0.084602 0.537003 0.020591 0.023383 +3 0.303044 0.416005 0.006864 0.016118 +3 0.625933 0.527696 0.007460 0.018842 +4 0.542375 0.407151 0.010445 0.014756 +4 0.833632 0.619864 0.006864 0.012486 +4 0.155476 0.501362 0.009549 0.016572 +3 0.159206 0.772191 0.007460 0.017934 +3 0.770665 0.468785 0.007460 0.015891 +3 0.903760 0.545176 0.008057 0.020204 +2 0.097732 0.355846 0.018204 0.018842 +2 0.099523 0.302724 0.013429 0.016118 +1 0.098627 0.719750 0.022381 0.034733 +3 0.706207 0.620772 0.006267 0.012032 +4 0.514026 0.526334 0.006864 0.011578 +3 0.601761 0.529966 0.008057 0.016118 +5 0.489555 0.524291 0.006864 0.011578 +3 0.465682 0.584222 0.006864 0.016118 +4 0.463593 0.415551 0.010445 0.013848 +4 0.460907 0.197843 0.009848 0.015210 +2 0.098926 0.591260 0.020591 0.020204 +5 0.321397 0.924064 0.009549 0.015210 +4 0.707401 0.486606 0.007460 0.012486 +4 0.465085 0.635528 0.007460 0.012486 +5 0.520889 0.764018 0.008654 0.013848 +3 0.320352 0.756754 0.007460 0.017480 +3 0.232319 0.685017 0.007460 0.021112 +5 0.735154 0.678888 0.008057 0.012032 +3 0.914354 0.180704 0.007162 0.015891 +3 0.269919 0.685471 0.007460 0.015664 +3 0.412862 0.683655 0.006864 0.014302 +4 0.864070 0.681612 0.009251 0.011578 +3 0.832140 0.488876 0.007460 0.013848 +2 0.097434 0.641430 0.020591 0.019750 +5 0.627425 0.763791 0.008057 0.013394 +3 0.272307 0.771510 0.006864 0.017026 +1 0.102059 0.814415 0.022680 0.040636 +4 0.708296 0.809194 0.006267 0.010216 +3 0.654879 0.685925 0.007460 0.016118 +5 0.539391 0.526107 0.007460 0.014756 +3 0.839899 0.680477 0.007460 0.013848 +1 0.099821 0.764472 0.022381 0.036095 +2 0.101611 0.881158 0.019397 0.019750 +3 0.833632 0.568785 0.006267 0.017480 +5 0.773053 0.533598 0.008057 0.011124 +3 0.831543 0.407151 0.007460 0.020204 +5 0.519696 0.686379 0.008057 0.013848 +3 0.156520 0.416005 0.007460 0.020204 +5 0.388093 0.764245 0.008057 0.012940 +3 0.207252 0.755392 0.006864 0.016118 +3 0.207252 0.687741 0.007460 0.016118 +4 0.863175 0.749943 0.009251 0.013848 +5 0.321546 0.869126 0.009251 0.015210 +5 0.681737 0.677980 0.007460 0.013848 +2 0.101910 0.934960 0.018204 0.020204 +4 0.131603 0.765267 0.008953 0.012713 +4 0.122053 0.755959 0.008953 0.014983 +4 0.139361 0.750965 0.008953 0.013167 +4 0.131304 0.646538 0.008953 0.014075 +4 0.121456 0.637457 0.009549 0.014983 +4 0.130707 0.478320 0.008953 0.014529 +4 0.119666 0.468785 0.009549 0.013621 +4 0.138168 0.118048 0.008953 0.013167 +4 0.128320 0.259251 0.008953 0.015891 +4 0.119069 0.250851 0.009549 0.016345 +4 0.121755 0.530079 0.008356 0.014529 +4 0.139660 0.526674 0.009549 0.014983 +4 0.130707 0.595914 0.008356 0.013621 +4 0.122053 0.586379 0.008953 0.014529 +4 0.128320 0.307605 0.009549 0.016345 +4 0.136974 0.296935 0.008953 0.015891 +4 0.142942 0.929852 0.008953 0.014075 +4 0.119815 0.181839 0.008654 0.015437 +4 0.129514 0.714415 0.009549 0.015437 +4 0.121158 0.706243 0.008953 0.016345 +4 0.137869 0.701703 0.008953 0.014529 +5 0.542077 0.811805 0.008057 0.014529 +3 0.649955 0.528717 0.005968 0.019069 +5 0.658311 0.519410 0.005968 0.015891 +4 0.123545 0.804767 0.008356 0.014529 +4 0.129215 0.426788 0.009549 0.015891 +4 0.119666 0.419523 0.009549 0.015891 +4 0.139063 0.417026 0.008953 0.016345 +4 0.129812 0.360045 0.008953 0.015891 +4 0.119964 0.352327 0.009549 0.015891 +4 0.124739 0.877185 0.010146 0.015891 +3 0.341540 0.819637 0.007460 0.015210 +5 0.348403 0.824177 0.007460 0.015210 +3 0.362280 0.818275 0.007162 0.015210 +3 0.097135 0.073893 0.007460 0.015210 +5 0.104446 0.080704 0.007162 0.015210 +3 0.594897 0.809648 0.007460 0.015210 +5 0.798418 0.530874 0.007460 0.015210 +3 0.168756 0.818275 0.007460 0.015210 +3 0.174873 0.824858 0.007162 0.015210 +3 0.218293 0.527469 0.007460 0.015210 +4 0.132647 0.812145 0.007460 0.015210 +4 0.142047 0.800341 0.007162 0.015210 +4 0.680245 0.538820 0.007460 0.015210 +5 0.689943 0.538820 0.007162 0.015210 +4 0.063712 0.296595 0.007460 0.015210 +4 0.750075 0.817594 0.007460 0.012940 +3 0.755595 0.817594 0.007162 0.012940 +4 0.738436 0.883655 0.007460 0.015210 +4 0.743957 0.881612 0.007162 0.015210 +4 0.883468 0.685812 0.007460 0.013621 +5 0.888392 0.685812 0.007162 0.013621 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_24.jpg b/data_dataset/dvo/debug/debug_24.jpg new file mode 100644 index 0000000..20f11a6 Binary files /dev/null and b/data_dataset/dvo/debug/debug_24.jpg differ diff --git a/data_dataset/dvo/debug/debug_24.txt b/data_dataset/dvo/debug/debug_24.txt new file mode 100644 index 0000000..591eceb --- /dev/null +++ b/data_dataset/dvo/debug/debug_24.txt @@ -0,0 +1,735 @@ +8 0.491622 0.943724 0.010772 0.008413 +10 0.342310 0.943156 0.011370 0.005002 +7 0.174446 0.946680 0.011969 0.013415 +8 0.607720 0.943042 0.011969 0.007049 +8 0.735189 0.942588 0.011969 0.007049 +8 0.866547 0.941678 0.012567 0.007049 +6 0.209156 0.946226 0.009575 0.017963 +10 0.358169 0.909050 0.010772 0.002274 +10 0.345601 0.908595 0.011969 0.003183 +10 0.239976 0.901774 0.006583 0.002274 +7 0.467684 0.904161 0.011969 0.012960 +7 0.743567 0.903934 0.011969 0.013415 +7 0.169659 0.903706 0.011969 0.012960 +7 0.879713 0.903479 0.011370 0.013415 +7 0.439557 0.896658 0.007181 0.008868 +6 0.687313 0.899386 0.005984 0.022510 +10 0.391083 0.873693 0.005984 0.001592 +10 0.775284 0.865166 0.005984 0.002729 +10 0.154099 0.861983 0.007181 0.002729 +10 0.651107 0.860391 0.007780 0.002274 +9 0.352484 0.862437 0.005386 0.018645 +7 0.467983 0.860050 0.012567 0.012960 +9 0.435069 0.867099 0.010174 0.027058 +7 0.313884 0.857208 0.010772 0.018190 +10 0.400060 0.850159 0.007181 0.002729 +10 0.320766 0.850387 0.007780 0.003183 +10 0.706463 0.846180 0.005984 0.002501 +10 0.441352 0.833106 0.007181 0.002274 +10 0.442549 0.830377 0.005984 0.002274 +10 0.161580 0.820600 0.042490 0.003638 +9 0.347995 0.818440 0.009575 0.026148 +7 0.401556 0.818668 0.008977 0.018417 +10 0.744464 0.811050 0.007780 0.002729 +10 0.335428 0.806503 0.005984 0.002729 +9 0.250748 0.810937 0.008977 0.023874 +10 0.707062 0.804911 0.011969 0.005002 +10 0.764811 0.777626 0.006583 0.002274 +10 0.367145 0.774216 0.026332 0.004548 +10 0.503890 0.773533 0.006583 0.004093 +10 0.626571 0.764893 0.008977 0.003183 +7 0.499701 0.720896 0.012567 0.012960 +8 0.657391 0.717258 0.011969 0.006594 +10 0.879713 0.716689 0.011370 0.005002 +8 0.774686 0.717030 0.011969 0.007049 +6 0.531718 0.718849 0.009575 0.017963 +10 0.211550 0.693724 0.007181 0.001819 +10 0.384500 0.689859 0.010772 0.002274 +7 0.670856 0.682924 0.012567 0.013415 +7 0.533214 0.683151 0.012567 0.012960 +10 0.261819 0.678945 0.009575 0.003183 +7 0.892280 0.682469 0.011370 0.013415 +7 0.785159 0.682924 0.011370 0.013415 +9 0.141831 0.684743 0.012567 0.026148 +10 0.311789 0.647340 0.007780 0.004548 +10 0.470078 0.643929 0.009575 0.002274 +10 0.559844 0.643588 0.009575 0.002046 +10 0.487433 0.643247 0.022741 0.003638 +10 0.141233 0.643020 0.007780 0.003183 +9 0.511071 0.641201 0.005386 0.007731 +10 0.465889 0.638472 0.008378 0.003183 +10 0.768103 0.637790 0.009575 0.002729 +10 0.769300 0.634607 0.008378 0.002729 +8 0.637044 0.634948 0.008378 0.005684 +10 0.876122 0.633925 0.007780 0.005002 +10 0.656194 0.633470 0.008378 0.004093 +10 0.462896 0.623693 0.007181 0.002729 +10 0.400359 0.601637 0.006583 0.004093 +9 0.459007 0.589245 0.005386 0.023420 +10 0.431777 0.582083 0.005984 0.002274 +7 0.193896 0.587995 0.005386 0.020464 +10 0.620287 0.550023 0.005984 0.001819 +10 0.386894 0.550023 0.008378 0.001819 +10 0.164273 0.549568 0.005984 0.002729 +10 0.370138 0.547749 0.007181 0.001819 +10 0.301765 0.545589 0.005685 0.001592 +7 0.497307 0.550364 0.012567 0.013870 +10 0.232196 0.546612 0.007780 0.005002 +6 0.531418 0.548090 0.008977 0.018417 +9 0.252244 0.542519 0.009575 0.029559 +9 0.149910 0.539336 0.008378 0.024557 +9 0.240874 0.541041 0.010772 0.022510 +6 0.166068 0.492838 0.008378 0.017963 +8 0.557750 0.435766 0.007780 0.012960 +10 0.456314 0.437244 0.007181 0.002729 +10 0.166667 0.437017 0.009575 0.003183 +8 0.656493 0.436221 0.007780 0.012960 +7 0.762118 0.435994 0.004788 0.012506 +10 0.879414 0.432697 0.007181 0.002729 +10 0.658588 0.432697 0.009575 0.002729 +7 0.352184 0.405980 0.013166 0.027967 +10 0.248354 0.395634 0.012567 0.005002 +6 0.167864 0.397794 0.009575 0.017963 +10 0.654997 0.350841 0.005984 0.001819 +10 0.246260 0.347885 0.011969 0.005002 +6 0.464692 0.351864 0.008378 0.017963 +6 0.169060 0.350728 0.009575 0.017508 +8 0.768402 0.343452 0.012567 0.008413 +10 0.623279 0.319236 0.007181 0.004093 +10 0.749551 0.314006 0.005984 0.002729 +10 0.842609 0.312187 0.008977 0.003638 +9 0.279473 0.315712 0.006583 0.024784 +6 0.169060 0.309118 0.009575 0.017963 +10 0.755236 0.257617 0.008977 0.004548 +7 0.310293 0.253411 0.011969 0.012960 +9 0.650509 0.246817 0.008977 0.012506 +9 0.532316 0.238290 0.004788 0.029104 +10 0.746559 0.211460 0.007181 0.005002 +7 0.308498 0.206116 0.011969 0.012960 +9 0.789048 0.206457 0.005984 0.042292 +10 0.848893 0.155753 0.005984 0.003638 +10 0.777080 0.154616 0.005984 0.003183 +10 0.394674 0.152342 0.011969 0.005002 +10 0.295332 0.152342 0.011969 0.005002 +10 0.191203 0.152342 0.011969 0.005002 +9 0.774087 0.154388 0.008378 0.022283 +6 0.696290 0.154275 0.009575 0.017508 +9 0.529623 0.152797 0.007780 0.023647 +6 0.461700 0.153365 0.009575 0.017508 +6 0.803710 0.152910 0.008977 0.017508 +6 0.582885 0.153138 0.008977 0.017963 +10 0.294734 0.110960 0.005984 0.003183 +8 0.368043 0.107890 0.007780 0.012051 +7 0.215141 0.106980 0.011969 0.012960 +7 0.410533 0.106071 0.011370 0.012960 +10 0.707959 0.098226 0.007780 0.005002 +9 0.751047 0.102660 0.013764 0.026148 +10 0.298923 0.092542 0.013166 0.002729 +10 0.617893 0.092997 0.008378 0.004548 +10 0.633453 0.067531 0.010772 0.004548 +7 0.214542 0.067417 0.011969 0.012960 +7 0.410233 0.066962 0.011969 0.012960 +9 0.900359 0.066280 0.007181 0.041610 +9 0.650209 0.055480 0.008378 0.023647 +12 0.142280 0.925193 0.008079 0.006367 +12 0.652454 0.914393 0.009276 0.005684 +12 0.773639 0.914052 0.009874 0.005912 +12 0.908438 0.913483 0.010174 0.006594 +12 0.601885 0.909277 0.009874 0.006367 +11 0.684171 0.906662 0.009276 0.005684 +12 0.627618 0.906889 0.008677 0.006139 +11 0.817175 0.906207 0.009575 0.005684 +11 0.392729 0.905070 0.005685 0.003411 +12 0.400209 0.894156 0.008677 0.006139 +12 0.575853 0.896771 0.009276 0.005457 +12 0.531568 0.896658 0.009276 0.005684 +12 0.502095 0.896658 0.008977 0.005684 +12 0.435667 0.896658 0.005386 0.005684 +13 0.142729 0.893702 0.009575 0.006139 +12 0.355177 0.891428 0.008977 0.006139 +13 0.335577 0.888927 0.008677 0.005684 +12 0.292190 0.886085 0.010473 0.007276 +13 0.256284 0.882674 0.009276 0.005912 +13 0.068671 0.880741 0.005087 0.002956 +12 0.068971 0.870282 0.004488 0.004775 +12 0.211400 0.881651 0.008079 0.006594 +12 0.909785 0.867099 0.009276 0.004775 +12 0.880910 0.867326 0.008977 0.005230 +12 0.775733 0.867553 0.009276 0.005684 +12 0.744165 0.867553 0.009575 0.005684 +18 0.098594 0.865393 0.008677 0.005912 +18 0.093208 0.868804 0.008677 0.005912 +13 0.859216 0.864825 0.009874 0.005684 +13 0.726511 0.865052 0.010174 0.006139 +13 0.502394 0.863006 0.008378 0.005684 +13 0.847098 0.862551 0.009575 0.005684 +13 0.713495 0.862551 0.009276 0.005684 +12 0.651257 0.862551 0.008079 0.005684 +12 0.576601 0.862779 0.010174 0.006139 +13 0.549521 0.860505 0.009276 0.006139 +13 0.517654 0.860277 0.010174 0.005684 +12 0.682825 0.860050 0.010174 0.006139 +12 0.624925 0.860050 0.009276 0.006139 +13 0.370586 0.860050 0.010473 0.006139 +12 0.817475 0.859595 0.010174 0.006139 +13 0.534560 0.857890 0.010473 0.005457 +12 0.435667 0.857663 0.008977 0.005002 +12 0.435667 0.862665 0.008977 0.005002 +13 0.385398 0.858004 0.008977 0.005684 +13 0.356373 0.857776 0.009575 0.005230 +12 0.600987 0.857776 0.010473 0.006139 +13 0.305655 0.855048 0.009276 0.006139 +13 0.290993 0.852774 0.009276 0.005230 +13 0.400359 0.852774 0.008977 0.006139 +13 0.321514 0.852547 0.008079 0.005684 +13 0.227110 0.850045 0.009575 0.006139 +13 0.242220 0.847317 0.008677 0.006139 +13 0.211400 0.847317 0.010473 0.006139 +13 0.173399 0.847544 0.009874 0.006594 +13 0.142430 0.847317 0.008977 0.006139 +13 0.337822 0.846862 0.009575 0.007049 +13 0.188959 0.842087 0.008677 0.006594 +13 0.157690 0.842087 0.008378 0.006594 +13 0.258677 0.841746 0.009276 0.006821 +11 0.392130 0.826626 0.006882 0.003865 +12 0.400958 0.814006 0.008977 0.005912 +13 0.681628 0.826626 0.010174 0.005684 +13 0.712896 0.826398 0.010473 0.006139 +13 0.859665 0.825944 0.010174 0.006139 +13 0.831089 0.825716 0.009874 0.005684 +18 0.296379 0.824011 0.006882 0.005002 +12 0.651855 0.824011 0.009276 0.005457 +18 0.327499 0.821737 0.005087 0.003183 +12 0.575554 0.821737 0.009874 0.005912 +13 0.726212 0.821282 0.009575 0.005912 +13 0.697636 0.821396 0.009874 0.006139 +12 0.627319 0.821623 0.010473 0.006594 +13 0.234889 0.819577 0.019749 0.002501 +18 0.169808 0.819463 0.006882 0.002274 +18 0.160233 0.819463 0.011670 0.002274 +18 0.148414 0.819463 0.006583 0.002274 +13 0.845452 0.820714 0.009874 0.005684 +12 0.815829 0.820941 0.009276 0.006139 +17 0.823908 0.807754 0.006284 0.005684 +12 0.601885 0.818895 0.009874 0.005684 +12 0.533064 0.818895 0.009874 0.005684 +13 0.790395 0.818440 0.008677 0.005684 +13 0.923100 0.817985 0.008378 0.005684 +11 0.249402 0.815598 0.007481 0.003638 +12 0.258378 0.803661 0.009874 0.006139 +11 0.179384 0.817076 0.005685 0.007049 +12 0.502543 0.816394 0.009874 0.006139 +13 0.437911 0.816508 0.009874 0.006367 +13 0.775733 0.815939 0.009276 0.006139 +13 0.908438 0.815484 0.009575 0.006139 +13 0.484291 0.814234 0.008079 0.005457 +13 0.453770 0.814120 0.008677 0.006139 +12 0.744315 0.813097 0.008079 0.005002 +12 0.881059 0.812869 0.009276 0.005457 +13 0.470227 0.811392 0.009874 0.006139 +12 0.354728 0.811392 0.009276 0.006139 +12 0.335877 0.808890 0.008079 0.005684 +13 0.068522 0.808549 0.003591 0.006367 +12 0.291143 0.806162 0.009575 0.006594 +12 0.189258 0.803433 0.009276 0.005684 +12 0.211999 0.800932 0.008079 0.006139 +12 0.142130 0.800705 0.009575 0.006594 +13 0.068821 0.775239 0.004189 0.005230 +12 0.070018 0.766712 0.006583 0.005912 +11 0.393477 0.771714 0.007181 0.005912 +12 0.401706 0.754093 0.009276 0.006139 +11 0.326451 0.770350 0.007780 0.005002 +12 0.335129 0.748863 0.008977 0.005684 +11 0.248354 0.770578 0.007181 0.007276 +18 0.256583 0.744543 0.008677 0.006139 +12 0.654698 0.769213 0.010174 0.006367 +11 0.683573 0.767053 0.009276 0.005684 +12 0.627020 0.767053 0.008677 0.005684 +13 0.879862 0.766371 0.008079 0.005230 +13 0.744016 0.766598 0.010473 0.005684 +12 0.816427 0.766371 0.008079 0.005684 +13 0.760473 0.764097 0.009874 0.006139 +12 0.601885 0.764211 0.009874 0.006367 +13 0.924895 0.763756 0.009575 0.006367 +13 0.895871 0.763756 0.009575 0.006367 +13 0.791891 0.763643 0.010473 0.006139 +13 0.909635 0.761596 0.008977 0.005684 +12 0.578546 0.761824 0.008677 0.006139 +13 0.776631 0.761369 0.009874 0.006139 +12 0.531568 0.758868 0.009276 0.006594 +11 0.140485 0.758186 0.008677 0.006139 +12 0.503142 0.756708 0.009874 0.006821 +12 0.436116 0.755571 0.008677 0.006367 +13 0.483842 0.754320 0.008378 0.005684 +12 0.452573 0.753752 0.009276 0.006367 +13 0.469629 0.751592 0.008677 0.006594 +12 0.355027 0.751251 0.008079 0.006821 +12 0.292490 0.746021 0.009874 0.007276 +12 0.210203 0.741132 0.009276 0.007503 +11 0.210353 0.723852 0.009575 0.005684 +12 0.402304 0.723852 0.009276 0.005684 +11 0.294285 0.723852 0.009874 0.005684 +12 0.363405 0.723738 0.010473 0.005912 +11 0.141382 0.723283 0.009276 0.005457 +12 0.463944 0.716121 0.010473 0.005684 +13 0.190156 0.683606 0.009874 0.006139 +13 0.261071 0.681105 0.009276 0.005684 +13 0.176092 0.681332 0.008079 0.006139 +12 0.914423 0.680650 0.008977 0.005684 +12 0.913974 0.672692 0.010473 0.006139 +12 0.808648 0.680650 0.009276 0.005684 +12 0.808348 0.672920 0.009874 0.005684 +11 0.742519 0.680650 0.007481 0.005684 +17 0.742819 0.672920 0.010473 0.005684 +11 0.848743 0.680423 0.009276 0.006139 +11 0.848444 0.672692 0.009874 0.006139 +12 0.464243 0.678604 0.009874 0.006139 +13 0.343956 0.678604 0.009874 0.006139 +13 0.245212 0.678377 0.009874 0.005684 +17 0.247905 0.693952 0.006284 0.006367 +13 0.158139 0.678377 0.009276 0.006594 +13 0.328396 0.676103 0.009874 0.005684 +13 0.228007 0.676103 0.009575 0.005684 +13 0.141682 0.676103 0.008079 0.005684 +13 0.431329 0.675421 0.009874 0.007049 +13 0.403800 0.673602 0.011071 0.006139 +13 0.310742 0.673374 0.009276 0.005684 +13 0.210353 0.673715 0.010174 0.006367 +18 0.715290 0.670646 0.005685 0.002956 +13 0.294734 0.671101 0.008977 0.005684 +13 0.387044 0.670873 0.009874 0.006139 +13 0.364303 0.668031 0.008677 0.005912 +12 0.567923 0.661437 0.008378 0.006367 +11 0.615949 0.660300 0.008079 0.006821 +13 0.693597 0.659391 0.009575 0.006821 +13 0.365200 0.646885 0.006882 0.007276 +12 0.366098 0.633356 0.009874 0.006594 +11 0.389737 0.644497 0.006882 0.005230 +13 0.397516 0.628581 0.009276 0.006139 +13 0.141083 0.641428 0.009874 0.005457 +13 0.210802 0.638813 0.009276 0.006594 +13 0.156643 0.638813 0.009874 0.006594 +13 0.228755 0.636539 0.009276 0.005684 +12 0.174596 0.636539 0.009874 0.005684 +13 0.294285 0.636312 0.009874 0.006139 +13 0.245512 0.633583 0.009276 0.006139 +13 0.189856 0.633583 0.010473 0.006139 +13 0.310742 0.633356 0.009276 0.006594 +13 0.263315 0.631082 0.010174 0.005684 +13 0.382705 0.630969 0.010174 0.006367 +13 0.329294 0.630855 0.009874 0.006139 +13 0.345751 0.628354 0.009874 0.006594 +13 0.567475 0.626080 0.009276 0.005684 +13 0.500150 0.626080 0.009874 0.005684 +13 0.462747 0.626080 0.008079 0.005684 +13 0.414572 0.626307 0.009874 0.006139 +13 0.535159 0.626080 0.010473 0.006594 +13 0.616846 0.625625 0.007481 0.006594 +13 0.431927 0.623465 0.009874 0.005912 +13 0.849042 0.623010 0.011071 0.006821 +13 0.743716 0.623124 0.011071 0.007049 +13 0.583483 0.620623 0.009575 0.005684 +13 0.551317 0.620850 0.009276 0.006139 +13 0.517504 0.620850 0.009874 0.006139 +13 0.671604 0.620623 0.010473 0.006594 +13 0.481598 0.620055 0.009874 0.007276 +13 0.895721 0.617894 0.009874 0.006594 +13 0.786804 0.617894 0.011071 0.006594 +13 0.138390 0.602206 0.010473 0.006139 +13 0.156643 0.599932 0.009874 0.005230 +13 0.210802 0.599704 0.009276 0.005684 +13 0.228007 0.597203 0.010174 0.006139 +13 0.174446 0.597203 0.010174 0.006139 +13 0.294285 0.596976 0.009874 0.006594 +13 0.362956 0.594475 0.008378 0.005230 +13 0.311041 0.594475 0.009874 0.005230 +13 0.244315 0.594475 0.009276 0.005230 +13 0.191053 0.594702 0.009276 0.005684 +13 0.380162 0.591746 0.010473 0.006139 +13 0.327798 0.591746 0.009874 0.006139 +13 0.261969 0.591860 0.009874 0.006367 +12 0.535607 0.589700 0.009575 0.005684 +13 0.397367 0.589700 0.009575 0.005684 +11 0.692699 0.589472 0.008378 0.006139 +11 0.616248 0.589472 0.009874 0.006139 +12 0.567774 0.589472 0.009874 0.006139 +13 0.344853 0.589359 0.009276 0.005912 +12 0.916068 0.589018 0.009874 0.006139 +11 0.850539 0.586744 0.010473 0.006139 +12 0.743866 0.586744 0.010174 0.006139 +13 0.517355 0.586858 0.009575 0.006367 +13 0.414572 0.586858 0.009874 0.006367 +13 0.498654 0.584698 0.008079 0.005684 +12 0.764662 0.584243 0.008677 0.005684 +13 0.431927 0.584243 0.008677 0.005684 +12 0.462448 0.582083 0.009874 0.005912 +12 0.786655 0.581742 0.009575 0.006139 +12 0.808947 0.579354 0.009874 0.005912 +13 0.188659 0.540359 0.010473 0.006139 +13 0.174297 0.537972 0.009276 0.005912 +13 0.260174 0.537176 0.008677 0.007049 +13 0.156643 0.535243 0.008677 0.005912 +13 0.342759 0.534902 0.008677 0.006139 +13 0.243118 0.534447 0.009276 0.006139 +13 0.328097 0.531946 0.009276 0.006594 +13 0.226960 0.531946 0.009276 0.006594 +13 0.140186 0.531719 0.009276 0.006139 +12 0.671305 0.530355 0.009874 0.006139 +12 0.808498 0.529673 0.008977 0.005684 +11 0.742220 0.529673 0.009276 0.005684 +13 0.396320 0.529900 0.009276 0.006139 +12 0.693896 0.529218 0.009575 0.005684 +13 0.311341 0.529445 0.009276 0.006139 +13 0.208857 0.528990 0.008977 0.006139 +12 0.848444 0.526944 0.008677 0.006594 +13 0.654099 0.527399 0.008977 0.007503 +13 0.414273 0.526717 0.009276 0.007049 +13 0.378665 0.526489 0.008677 0.006594 +13 0.293387 0.526376 0.009276 0.007276 +12 0.873429 0.524557 0.009575 0.006367 +13 0.636894 0.524443 0.009276 0.006139 +13 0.429384 0.523761 0.009575 0.005684 +13 0.361610 0.523533 0.009276 0.006139 +12 0.615949 0.522624 0.009276 0.007049 +12 0.894823 0.522169 0.009276 0.007049 +18 0.463345 0.520464 0.009276 0.006367 +18 0.915470 0.519668 0.009874 0.005684 +11 0.140934 0.496930 0.009575 0.005684 +11 0.673549 0.496817 0.009575 0.006367 +11 0.622531 0.496703 0.009276 0.006139 +11 0.465440 0.496703 0.009874 0.006139 +11 0.427738 0.496476 0.009874 0.005684 +11 0.266008 0.496703 0.009575 0.006139 +11 0.212298 0.496817 0.009874 0.006367 +11 0.894075 0.496248 0.010174 0.006139 +11 0.840664 0.496248 0.009874 0.006139 +17 0.527379 0.496476 0.010473 0.006594 +17 0.729952 0.496021 0.011071 0.006594 +17 0.320616 0.496248 0.011071 0.007049 +17 0.141233 0.468054 0.010174 0.007049 +13 0.842160 0.467599 0.010473 0.007049 +13 0.624028 0.467372 0.011071 0.006594 +13 0.525434 0.467599 0.010174 0.007049 +13 0.427439 0.467372 0.010473 0.006594 +13 0.215141 0.467372 0.010772 0.006594 +13 0.729653 0.467144 0.010473 0.007049 +13 0.321664 0.467030 0.010772 0.006821 +13 0.465889 0.448954 0.010772 0.006139 +13 0.894524 0.448727 0.009874 0.006594 +13 0.780072 0.448613 0.010772 0.006367 +13 0.674446 0.448727 0.011370 0.006594 +13 0.565081 0.448727 0.010473 0.006594 +13 0.371335 0.448386 0.010772 0.005912 +13 0.264961 0.448727 0.010473 0.006594 +13 0.170706 0.448727 0.010473 0.006594 +12 0.370437 0.418031 0.010174 0.007049 +12 0.483692 0.417690 0.009276 0.007276 +11 0.428037 0.417576 0.009276 0.007049 +12 0.388839 0.417690 0.009874 0.007276 +11 0.139437 0.417576 0.008977 0.007049 +11 0.138989 0.399386 0.009276 0.006139 +13 0.353232 0.416212 0.009276 0.006139 +11 0.621783 0.415757 0.010174 0.006139 +12 0.524985 0.415871 0.009276 0.006367 +11 0.728905 0.412688 0.008977 0.005457 +12 0.545332 0.412915 0.009276 0.005912 +11 0.690904 0.412460 0.009575 0.005912 +13 0.338570 0.412347 0.008677 0.006594 +11 0.840365 0.409845 0.009276 0.006139 +12 0.796978 0.409732 0.009874 0.005912 +12 0.563734 0.409618 0.010174 0.006594 +12 0.319420 0.409504 0.009874 0.006367 +11 0.911730 0.407344 0.009575 0.005684 +12 0.581987 0.407344 0.009575 0.005684 +12 0.097397 0.403479 0.005087 0.005230 +12 0.623130 0.370509 0.009276 0.006594 +12 0.726661 0.367781 0.009276 0.005684 +12 0.642430 0.366871 0.008378 0.005684 +12 0.837672 0.364598 0.009874 0.005684 +12 0.672053 0.364598 0.008977 0.005684 +12 0.747008 0.364370 0.009276 0.006139 +12 0.857870 0.361528 0.009575 0.005912 +12 0.779922 0.361642 0.009276 0.006139 +12 0.691203 0.361642 0.008977 0.006139 +11 0.427139 0.359709 0.008677 0.005457 +11 0.426840 0.351523 0.009276 0.005912 +12 0.893776 0.359368 0.009575 0.006139 +12 0.798773 0.359141 0.009874 0.005684 +13 0.525733 0.359368 0.010772 0.006139 +13 0.525883 0.351410 0.009874 0.006594 +11 0.533662 0.338108 0.006284 0.005002 +17 0.534111 0.331401 0.004189 0.003865 +12 0.913076 0.356526 0.009874 0.005912 +11 0.141382 0.353911 0.009276 0.005230 +11 0.141382 0.359141 0.009276 0.005230 +18 0.323908 0.345043 0.012867 0.004775 +17 0.319719 0.353683 0.010473 0.005684 +17 0.319719 0.359368 0.010473 0.005684 +18 0.323908 0.335493 0.012867 0.004775 +13 0.323908 0.340268 0.012867 0.004775 +12 0.139737 0.313324 0.007181 0.005912 +12 0.140485 0.300250 0.009874 0.006139 +12 0.690455 0.308436 0.009874 0.005230 +12 0.673100 0.308436 0.008677 0.005230 +12 0.284710 0.308095 0.008079 0.005457 +12 0.268552 0.308208 0.008677 0.005684 +12 0.389587 0.307981 0.010174 0.006139 +11 0.320018 0.307867 0.009874 0.005912 +12 0.800419 0.305139 0.009575 0.005912 +12 0.779025 0.305252 0.009874 0.006139 +13 0.655745 0.305252 0.009874 0.006139 +12 0.580790 0.305252 0.009575 0.006139 +11 0.525733 0.305252 0.010174 0.006139 +12 0.425793 0.305252 0.010174 0.006139 +13 0.248205 0.305252 0.009874 0.006139 +12 0.911879 0.302979 0.009276 0.005230 +13 0.640634 0.302979 0.009575 0.005230 +12 0.447786 0.302979 0.009276 0.005230 +13 0.233393 0.303320 0.008977 0.005912 +12 0.892430 0.302979 0.009276 0.006139 +13 0.760323 0.302751 0.010174 0.005684 +12 0.620437 0.300477 0.009874 0.005684 +13 0.872382 0.300136 0.009874 0.005912 +13 0.743118 0.300136 0.009874 0.005912 +12 0.464841 0.300250 0.009874 0.006139 +12 0.215290 0.300023 0.009874 0.006594 +13 0.855476 0.297976 0.009575 0.006139 +12 0.728157 0.297749 0.009874 0.005684 +12 0.484889 0.297522 0.009276 0.006139 +12 0.836774 0.295248 0.009276 0.006139 +18 0.378516 0.261482 0.013166 0.005002 +18 0.919659 0.253183 0.005087 0.002956 +12 0.331538 0.248636 0.009575 0.005684 +11 0.270796 0.248863 0.009575 0.006139 +12 0.233543 0.248863 0.009276 0.006139 +12 0.216038 0.248977 0.009575 0.006367 +11 0.805955 0.248067 0.009874 0.006367 +18 0.911730 0.246021 0.005984 0.004093 +18 0.911580 0.251364 0.005685 0.003865 +13 0.199880 0.246930 0.008977 0.005912 +12 0.850539 0.246135 0.008677 0.005230 +12 0.368193 0.246362 0.008079 0.005684 +11 0.697487 0.245907 0.008378 0.005684 +13 0.183872 0.244088 0.009276 0.006594 +18 0.171604 0.242269 0.006284 0.003411 +12 0.879563 0.243179 0.008677 0.005684 +12 0.744913 0.243179 0.009874 0.005684 +12 0.394075 0.243406 0.009575 0.006139 +12 0.160832 0.241587 0.009874 0.006139 +11 0.582735 0.241132 0.009874 0.006139 +12 0.412478 0.241019 0.009276 0.005912 +12 0.765859 0.240678 0.008677 0.006139 +12 0.627917 0.238290 0.009276 0.005912 +12 0.429832 0.237494 0.009276 0.006139 +12 0.658139 0.235562 0.009874 0.006821 +11 0.463046 0.235448 0.009874 0.006594 +12 0.509725 0.232492 0.008677 0.006139 +12 0.537552 0.229877 0.009276 0.007276 +18 0.377469 0.213734 0.011670 0.004093 +18 0.792789 0.203615 0.005087 0.003411 +11 0.805356 0.201342 0.009874 0.005684 +11 0.270646 0.201683 0.009276 0.006367 +12 0.233244 0.201569 0.009874 0.006139 +12 0.214991 0.201569 0.009276 0.006139 +12 0.330491 0.201342 0.009276 0.006594 +13 0.793387 0.198272 0.005087 0.003183 +12 0.849940 0.199068 0.009276 0.005684 +11 0.698534 0.199068 0.009276 0.005684 +12 0.369539 0.199068 0.008977 0.005684 +13 0.199880 0.199181 0.009575 0.005912 +13 0.185518 0.196680 0.009575 0.005457 +12 0.880461 0.196567 0.009276 0.006139 +12 0.744016 0.196453 0.009276 0.005912 +12 0.393627 0.196567 0.009874 0.006139 +12 0.766158 0.194065 0.009276 0.005684 +12 0.161580 0.194065 0.008977 0.005684 +11 0.583633 0.193838 0.009276 0.006139 +12 0.411430 0.193838 0.009575 0.006139 +12 0.628366 0.190882 0.009575 0.005684 +12 0.429084 0.190655 0.008977 0.006139 +11 0.463944 0.188608 0.009276 0.006594 +12 0.656643 0.188381 0.009276 0.007049 +12 0.508229 0.185198 0.009276 0.006139 +12 0.539647 0.183379 0.009276 0.007049 +12 0.860413 0.161551 0.006284 0.003411 +12 0.871484 0.158367 0.008079 0.005230 +12 0.871484 0.163597 0.008079 0.005230 +12 0.886595 0.153365 0.008378 0.005230 +12 0.886595 0.158595 0.008378 0.005230 +12 0.849342 0.153365 0.009276 0.005230 +12 0.849342 0.158595 0.009276 0.005230 +12 0.760622 0.152569 0.008977 0.005457 +12 0.760622 0.158026 0.008977 0.005457 +12 0.775883 0.147794 0.008378 0.005002 +12 0.775883 0.152797 0.008378 0.005002 +12 0.744016 0.147908 0.008079 0.005230 +12 0.744016 0.153138 0.008079 0.005230 +12 0.651257 0.147908 0.008079 0.005230 +12 0.651257 0.153138 0.008079 0.005230 +12 0.531418 0.145293 0.008378 0.005457 +12 0.531418 0.150750 0.008378 0.005457 +12 0.665320 0.142906 0.009874 0.005230 +12 0.665320 0.148136 0.009874 0.005230 +12 0.629713 0.143020 0.009276 0.005457 +12 0.629713 0.148477 0.009276 0.005457 +12 0.548324 0.139495 0.009276 0.005684 +12 0.548324 0.145180 0.009276 0.005684 +11 0.508378 0.139609 0.008977 0.005912 +11 0.508378 0.145521 0.008977 0.005912 +18 0.496260 0.118463 0.011670 0.003638 +12 0.804159 0.119259 0.009276 0.006139 +12 0.827798 0.117212 0.009276 0.005684 +12 0.848743 0.116985 0.009276 0.006139 +11 0.697187 0.116985 0.008977 0.006139 +11 0.703920 0.099704 0.005087 0.003411 +12 0.875075 0.114484 0.008079 0.005684 +18 0.687762 0.113461 0.004488 0.003638 +12 0.234590 0.114484 0.009575 0.005684 +12 0.722472 0.114029 0.009276 0.005684 +12 0.744913 0.111983 0.008677 0.006139 +12 0.582735 0.111755 0.009874 0.005684 +12 0.270796 0.111983 0.009575 0.006139 +12 0.767804 0.109368 0.008977 0.005457 +18 0.569719 0.109141 0.007780 0.005002 +18 0.569719 0.114143 0.007780 0.005002 +12 0.294135 0.109368 0.009575 0.005457 +12 0.631209 0.109254 0.009874 0.006139 +12 0.602932 0.109254 0.009575 0.006139 +12 0.464542 0.106867 0.009276 0.005912 +12 0.430281 0.106867 0.008977 0.005912 +12 0.656194 0.106526 0.009575 0.006139 +18 0.370138 0.106526 0.009575 0.006139 +12 0.312537 0.106526 0.009276 0.006139 +12 0.511221 0.104366 0.009276 0.005457 +12 0.487283 0.104479 0.009276 0.005684 +12 0.332136 0.104252 0.010174 0.005230 +12 0.537852 0.101637 0.009874 0.006367 +11 0.162777 0.096749 0.009575 0.006594 +12 0.068971 0.089245 0.004488 0.009322 +12 0.070317 0.058890 0.007181 0.006367 +11 0.285607 0.071282 0.005685 0.002956 +12 0.293088 0.051046 0.008677 0.006139 +18 0.605027 0.069463 0.011969 0.004775 +13 0.600987 0.051046 0.009276 0.006139 +12 0.125075 0.062869 0.007780 0.004320 +12 0.804907 0.061619 0.008977 0.006367 +18 0.115949 0.060596 0.008079 0.005230 +12 0.697187 0.059459 0.008378 0.005684 +13 0.847846 0.059004 0.008079 0.005684 +12 0.826601 0.058549 0.009276 0.005684 +18 0.134201 0.056503 0.006882 0.003411 +12 0.234740 0.057526 0.009276 0.006367 +12 0.720527 0.056844 0.008977 0.005912 +12 0.874476 0.056048 0.009276 0.006139 +11 0.271245 0.055025 0.009276 0.005912 +12 0.744315 0.054002 0.008677 0.005684 +12 0.583932 0.054229 0.009874 0.006139 +12 0.765859 0.051501 0.008677 0.006139 +12 0.628516 0.051160 0.009276 0.006367 +12 0.462448 0.049000 0.008677 0.006594 +12 0.656643 0.048772 0.009276 0.007049 +12 0.312537 0.048658 0.009276 0.006821 +12 0.429982 0.048545 0.009575 0.007503 +11 0.370886 0.048545 0.009874 0.007503 +12 0.510174 0.047181 0.008977 0.006594 +12 0.484440 0.046044 0.008378 0.006139 +12 0.331239 0.045816 0.009575 0.006594 +12 0.538600 0.043543 0.008977 0.006594 +11 0.163226 0.040359 0.008677 0.007503 +0 0.090515 0.632901 0.023639 0.023874 +5 0.815829 0.054457 0.008079 0.013870 +4 0.615649 0.050819 0.009874 0.015689 +3 0.866397 0.055366 0.008677 0.017508 +1 0.088121 0.553547 0.022442 0.033424 +4 0.282017 0.051728 0.009276 0.013870 +3 0.866697 0.113120 0.006882 0.016598 +3 0.710802 0.114711 0.006284 0.017053 +3 0.709904 0.055821 0.006882 0.012960 +0 0.092908 0.103115 0.022442 0.032060 +4 0.381957 0.243633 0.009276 0.014779 +4 0.497457 0.044225 0.009276 0.013415 +3 0.837373 0.056048 0.006882 0.017963 +3 0.451376 0.234084 0.006882 0.019327 +4 0.521095 0.150409 0.008677 0.012960 +1 0.090814 0.815484 0.023040 0.038881 +5 0.114452 0.306617 0.008079 0.012506 +5 0.530371 0.179513 0.006882 0.014779 +0 0.089916 0.769554 0.022442 0.031605 +3 0.838570 0.117667 0.005685 0.012051 +3 0.839467 0.248181 0.007481 0.014779 +4 0.617145 0.192474 0.009276 0.013415 +3 0.527977 0.229081 0.006882 0.012051 +4 0.499252 0.103797 0.009276 0.014325 +4 0.380760 0.195884 0.009276 0.013870 +4 0.732346 0.243179 0.008677 0.012051 +5 0.282615 0.110391 0.008079 0.012960 +3 0.918163 0.103570 0.006882 0.017508 +3 0.765859 0.815257 0.006284 0.012960 +2 0.086026 0.492838 0.019449 0.018417 +3 0.732944 0.055366 0.007481 0.019327 +0 0.088719 0.588336 0.022442 0.032970 +5 0.924147 0.088108 0.006882 0.011141 +3 0.735039 0.149727 0.006882 0.015234 +3 0.640485 0.861187 0.006882 0.016598 +3 0.703022 0.861187 0.007481 0.016598 +3 0.794285 0.248636 0.006882 0.013870 +4 0.618043 0.107890 0.009874 0.014325 +3 0.898414 0.815484 0.006882 0.013415 +0 0.088121 0.306162 0.022442 0.031605 +5 0.759874 0.105161 0.007481 0.013415 +5 0.758079 0.047863 0.008677 0.014325 +2 0.088420 0.252501 0.020646 0.018872 +2 0.089617 0.205207 0.020646 0.018872 +5 0.113854 0.859368 0.009276 0.014779 +5 0.114752 0.808436 0.008677 0.013870 +2 0.089617 0.719077 0.019449 0.018872 +5 0.113854 0.722487 0.008079 0.014779 +3 0.591712 0.907572 0.006284 0.015689 +5 0.114752 0.949864 0.008677 0.015689 +4 0.731448 0.197249 0.009276 0.012960 +3 0.642280 0.148363 0.006882 0.018872 +5 0.113256 0.588790 0.008079 0.014779 +2 0.090814 0.681787 0.023040 0.018872 +5 0.114452 0.684970 0.008079 0.014325 +5 0.114452 0.899159 0.008079 0.012506 +5 0.113256 0.631992 0.008079 0.013870 +4 0.172501 0.197476 0.009276 0.016144 +3 0.450778 0.188381 0.006882 0.018872 +4 0.734440 0.111073 0.006882 0.010687 +5 0.837672 0.195657 0.006284 0.014325 +4 0.123279 0.256480 0.008378 0.012733 +4 0.115200 0.248749 0.007780 0.014552 +4 0.125075 0.210323 0.008378 0.013188 +4 0.115799 0.201910 0.008977 0.013643 +3 0.911430 0.199181 0.005984 0.015462 +4 0.125075 0.104593 0.008378 0.015462 +4 0.116397 0.095498 0.008977 0.012733 +4 0.135248 0.094361 0.008378 0.015007 +1 0.080790 0.398136 0.005984 0.022283 +5 0.618492 0.138472 0.006583 0.013188 +0 0.917714 0.155070 0.005386 0.009095 +3 0.910233 0.147794 0.007181 0.018190 +3 0.917115 0.062983 0.006583 0.015916 +3 0.908438 0.054116 0.005984 0.014552 +5 0.932675 0.153024 0.006583 0.010459 +4 0.924297 0.144839 0.006583 0.011369 +3 0.072561 0.854138 0.008079 0.014325 +4 0.082286 0.857094 0.007780 0.014325 +4 0.094255 0.943497 0.007780 0.014325 +4 0.086326 0.069463 0.008079 0.014325 +4 0.093507 0.064916 0.008079 0.014325 +5 0.100838 0.071055 0.007780 0.014325 +3 0.683573 0.197590 0.008079 0.012733 +4 0.687911 0.197590 0.007780 0.012733 +4 0.116996 0.147340 0.007780 0.014097 +4 0.089019 0.355048 0.008079 0.014325 +5 0.094853 0.356185 0.007780 0.014325 +4 0.082436 0.351864 0.008079 0.014325 +4 0.094255 0.338677 0.007780 0.014325 +5 0.087223 0.444407 0.008079 0.014325 +5 0.094853 0.442588 0.007780 0.014325 +4 0.704518 0.685880 0.008079 0.014325 +3 0.714243 0.689063 0.007780 0.014325 +4 0.084530 0.905980 0.008079 0.014325 +4 0.091113 0.902569 0.008079 0.014325 +5 0.097846 0.892565 0.007780 0.014325 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_25.jpg b/data_dataset/dvo/debug/debug_25.jpg new file mode 100644 index 0000000..b8bb698 Binary files /dev/null and b/data_dataset/dvo/debug/debug_25.jpg differ diff --git a/data_dataset/dvo/debug/debug_25.txt b/data_dataset/dvo/debug/debug_25.txt new file mode 100644 index 0000000..4ce69d6 --- /dev/null +++ b/data_dataset/dvo/debug/debug_25.txt @@ -0,0 +1,748 @@ +10 0.375524 0.953274 0.007181 0.002046 +10 0.884201 0.951910 0.008378 0.002046 +10 0.381508 0.951114 0.008378 0.001819 +10 0.883902 0.949523 0.006583 0.002274 +10 0.252843 0.949295 0.007181 0.001819 +10 0.292340 0.950205 0.008378 0.004548 +10 0.269001 0.950205 0.009575 0.004548 +7 0.534710 0.951228 0.010772 0.013415 +9 0.317475 0.946339 0.008378 0.008186 +6 0.650509 0.948272 0.008977 0.017508 +10 0.504788 0.941110 0.005984 0.002729 +6 0.759126 0.936448 0.005984 0.012051 +9 0.278576 0.937358 0.009575 0.029332 +10 0.407840 0.909504 0.014363 0.002274 +10 0.386894 0.907799 0.008378 0.002046 +7 0.534710 0.904388 0.011969 0.013415 +6 0.650209 0.902569 0.009575 0.017963 +10 0.450329 0.868349 0.005984 0.001819 +10 0.728905 0.867667 0.013764 0.005002 +10 0.887193 0.862892 0.007181 0.001819 +9 0.649910 0.860846 0.008977 0.024557 +7 0.252244 0.856412 0.011969 0.012960 +7 0.830341 0.855275 0.009575 0.012506 +10 0.357271 0.846521 0.006583 0.002729 +9 0.571514 0.854138 0.008977 0.026603 +10 0.403651 0.822419 0.005984 0.002729 +8 0.170856 0.819804 0.007181 0.007958 +10 0.590664 0.816962 0.008977 0.003638 +10 0.305206 0.816053 0.013764 0.004548 +7 0.830640 0.810937 0.010174 0.013870 +9 0.397068 0.810482 0.004788 0.020236 +9 0.356673 0.809118 0.008977 0.024784 +10 0.775284 0.800819 0.005984 0.002274 +10 0.602334 0.796953 0.010772 0.002729 +8 0.551167 0.805252 0.010174 0.025239 +9 0.905446 0.797863 0.004189 0.025921 +10 0.592160 0.776489 0.009575 0.001819 +10 0.669360 0.771032 0.005984 0.001819 +10 0.422801 0.767394 0.005984 0.001819 +10 0.165470 0.766485 0.008378 0.004548 +10 0.881807 0.764666 0.015560 0.003638 +10 0.365051 0.765348 0.016158 0.005002 +9 0.665171 0.757276 0.009575 0.021146 +9 0.719928 0.749432 0.004189 0.022738 +9 0.826152 0.746476 0.005984 0.026830 +10 0.619689 0.712597 0.007181 0.002274 +10 0.899162 0.710550 0.007181 0.002729 +7 0.394973 0.710891 0.011370 0.012960 +8 0.202573 0.707708 0.011969 0.006594 +8 0.317774 0.707481 0.012567 0.007049 +9 0.717834 0.701569 0.007181 0.021601 +10 0.217534 0.675762 0.007181 0.002274 +10 0.149910 0.673715 0.017953 0.001819 +10 0.424596 0.672351 0.007181 0.002729 +10 0.318073 0.671442 0.005984 0.001819 +10 0.176840 0.672124 0.008378 0.003183 +10 0.156194 0.670191 0.014961 0.004320 +10 0.428785 0.669168 0.014363 0.003638 +10 0.495212 0.665530 0.011969 0.001819 +10 0.475165 0.665530 0.016158 0.004548 +10 0.491023 0.659845 0.008378 0.005002 +9 0.213046 0.660528 0.010174 0.018645 +10 0.264213 0.653251 0.007181 0.002729 +9 0.845003 0.652683 0.006583 0.027513 +9 0.865350 0.648818 0.004189 0.022510 +7 0.214243 0.609482 0.010174 0.008413 +7 0.330042 0.611755 0.009575 0.012960 +10 0.787253 0.585493 0.007181 0.001819 +10 0.169659 0.579127 0.011969 0.001819 +10 0.610114 0.567417 0.005984 0.002046 +10 0.570018 0.567531 0.005984 0.002274 +9 0.718432 0.569691 0.008378 0.023420 +10 0.146320 0.529332 0.005984 0.002274 +10 0.797427 0.527285 0.008378 0.001819 +10 0.430580 0.527285 0.007181 0.001819 +10 0.414423 0.527285 0.008378 0.001819 +10 0.189408 0.525125 0.008378 0.004320 +10 0.318073 0.523647 0.007181 0.001819 +8 0.687014 0.465553 0.012567 0.007049 +10 0.523339 0.465666 0.011969 0.005002 +10 0.364153 0.465666 0.011969 0.005002 +10 0.205266 0.465666 0.012567 0.005002 +8 0.844405 0.465325 0.012567 0.006594 +10 0.851287 0.437699 0.007181 0.003638 +10 0.855476 0.431560 0.007181 0.003183 +7 0.412926 0.430764 0.011370 0.012960 +7 0.253740 0.428945 0.011370 0.009322 +9 0.725613 0.421669 0.008378 0.021146 +9 0.901855 0.420873 0.006583 0.023192 +10 0.384500 0.412915 0.007181 0.002274 +7 0.505984 0.377331 0.011969 0.014325 +7 0.853980 0.376876 0.011370 0.013415 +8 0.684022 0.373465 0.012567 0.006594 +6 0.543986 0.376421 0.008977 0.016144 +10 0.351586 0.345384 0.007181 0.003638 +10 0.168462 0.345384 0.009575 0.003638 +10 0.789647 0.341746 0.007181 0.001819 +10 0.506583 0.341746 0.005984 0.001819 +10 0.477858 0.341178 0.015560 0.002046 +10 0.789647 0.337199 0.011969 0.001819 +7 0.231299 0.337767 0.010772 0.005230 +9 0.176242 0.334357 0.005984 0.021146 +9 0.591861 0.331060 0.006583 0.021828 +9 0.573908 0.329127 0.006583 0.018872 +10 0.749551 0.321055 0.007181 0.002274 +10 0.217534 0.293997 0.009575 0.002729 +10 0.491023 0.288995 0.015560 0.003638 +10 0.549372 0.285357 0.006583 0.003638 +9 0.518253 0.275352 0.006583 0.019554 +8 0.856673 0.231583 0.011969 0.006594 +10 0.725314 0.231469 0.011370 0.005002 +10 0.595153 0.231469 0.011969 0.005002 +8 0.461101 0.231128 0.011969 0.006594 +10 0.325853 0.231014 0.011969 0.005002 +8 0.193597 0.230673 0.011969 0.006594 +10 0.317475 0.213051 0.010772 0.002729 +8 0.616996 0.200432 0.007780 0.009777 +10 0.745961 0.197931 0.020347 0.002046 +10 0.743268 0.195543 0.006583 0.002274 +7 0.842310 0.197931 0.011969 0.012960 +7 0.708259 0.197704 0.011969 0.013415 +7 0.368342 0.196794 0.011969 0.013415 +7 0.233393 0.196339 0.011370 0.013415 +10 0.185218 0.182583 0.007181 0.001819 +10 0.330640 0.165075 0.010772 0.005002 +10 0.159485 0.162574 0.005984 0.001819 +10 0.750748 0.160528 0.005984 0.002274 +10 0.613106 0.159845 0.010772 0.001819 +9 0.277080 0.149727 0.007780 0.015689 +7 0.843806 0.150182 0.011370 0.013870 +7 0.707361 0.149727 0.011370 0.012960 +10 0.278875 0.144156 0.007780 0.003183 +7 0.233094 0.148363 0.011969 0.013870 +10 0.679533 0.140291 0.009575 0.002729 +10 0.616098 0.121874 0.016756 0.005002 +10 0.614901 0.119259 0.005984 0.001592 +10 0.588869 0.118463 0.007780 0.002729 +10 0.738779 0.113688 0.005984 0.003183 +9 0.645123 0.110960 0.007780 0.017281 +9 0.515260 0.111642 0.004189 0.015916 +7 0.769599 0.109254 0.011370 0.012960 +7 0.900958 0.108799 0.011969 0.012960 +7 0.369539 0.107663 0.011969 0.013415 +7 0.234291 0.106753 0.011969 0.013415 +10 0.707959 0.096749 0.019749 0.004775 +10 0.562837 0.095271 0.005984 0.001819 +10 0.187014 0.095953 0.015560 0.005002 +10 0.707062 0.093679 0.013166 0.002274 +10 0.164273 0.094816 0.020347 0.004548 +10 0.617295 0.073215 0.016756 0.003183 +10 0.469479 0.072078 0.005984 0.004548 +10 0.907540 0.069009 0.009575 0.001592 +10 0.643028 0.068099 0.005984 0.001592 +9 0.286954 0.067872 0.005984 0.005684 +10 0.385099 0.056389 0.005984 0.002274 +9 0.248654 0.062415 0.005984 0.018417 +10 0.145422 0.055252 0.006583 0.002729 +11 0.564782 0.961005 0.009874 0.006139 +18 0.409934 0.953502 0.007780 0.005684 +11 0.392430 0.949068 0.008677 0.005912 +13 0.399910 0.953161 0.008677 0.005912 +13 0.400209 0.936221 0.008677 0.005684 +11 0.900808 0.946680 0.006882 0.004775 +12 0.909037 0.930764 0.008977 0.005684 +11 0.316278 0.945430 0.006583 0.003183 +13 0.324806 0.930991 0.008677 0.006139 +18 0.835577 0.945089 0.005685 0.003411 +13 0.069569 0.943838 0.005685 0.004548 +13 0.069569 0.932128 0.005685 0.012506 +12 0.504189 0.943497 0.008378 0.005684 +13 0.472621 0.940996 0.008677 0.006139 +12 0.767654 0.937585 0.005087 0.003865 +12 0.420257 0.938495 0.009276 0.005684 +12 0.776032 0.935539 0.005087 0.003411 +11 0.722771 0.935994 0.009874 0.006139 +12 0.203770 0.935994 0.008977 0.006139 +11 0.146170 0.934175 0.009276 0.007049 +12 0.358019 0.933265 0.009276 0.007049 +12 0.863256 0.928035 0.007780 0.006594 +12 0.283812 0.927922 0.009276 0.007276 +12 0.845153 0.925534 0.009276 0.005230 +13 0.266008 0.925534 0.008977 0.006139 +18 0.236236 0.923829 0.009874 0.007276 +12 0.235189 0.877103 0.008977 0.007503 +18 0.800120 0.922920 0.008977 0.006367 +12 0.801466 0.877331 0.008079 0.007049 +13 0.068971 0.916780 0.004488 0.004093 +13 0.069120 0.880969 0.004788 0.027513 +11 0.567175 0.915075 0.009874 0.006139 +11 0.464393 0.905184 0.007181 0.004548 +12 0.473818 0.894725 0.009874 0.006367 +11 0.394973 0.904161 0.010174 0.008868 +13 0.401406 0.890064 0.008677 0.006139 +11 0.317175 0.900296 0.006583 0.003865 +12 0.325404 0.884834 0.008677 0.006594 +18 0.835278 0.899386 0.006284 0.003865 +12 0.505087 0.897453 0.010174 0.005457 +12 0.771843 0.891883 0.005087 0.003411 +12 0.421454 0.892337 0.009276 0.006139 +17 0.779773 0.889609 0.005386 0.003411 +11 0.723519 0.890064 0.008977 0.006139 +12 0.203920 0.889154 0.008677 0.006139 +11 0.144375 0.887676 0.008079 0.006821 +12 0.357720 0.887108 0.008677 0.007503 +13 0.907391 0.884038 0.008079 0.005912 +12 0.281718 0.882560 0.008677 0.006594 +12 0.865200 0.882219 0.009276 0.006821 +13 0.266158 0.880059 0.008677 0.006139 +12 0.844853 0.879377 0.008677 0.005684 +18 0.139587 0.869031 0.011670 0.008640 +12 0.144375 0.858117 0.010473 0.007731 +13 0.133902 0.841746 0.008677 0.005912 +17 0.144674 0.837199 0.008677 0.005912 +13 0.520497 0.861187 0.009874 0.006594 +12 0.566876 0.858231 0.009276 0.005230 +12 0.566876 0.863461 0.009276 0.005230 +13 0.504638 0.858686 0.009276 0.006139 +13 0.535458 0.858345 0.009874 0.005912 +12 0.235338 0.856412 0.010473 0.006139 +12 0.235338 0.838677 0.009276 0.005230 +12 0.235338 0.843906 0.009276 0.005230 +12 0.603531 0.861414 0.009575 0.005684 +12 0.603531 0.855730 0.009575 0.005684 +13 0.442998 0.855957 0.009276 0.006139 +12 0.722621 0.854366 0.008378 0.004775 +12 0.723220 0.848568 0.008378 0.006367 +18 0.432376 0.854252 0.007181 0.004548 +18 0.432376 0.858799 0.007181 0.004548 +12 0.652154 0.853342 0.009874 0.005457 +12 0.652154 0.858799 0.009874 0.005457 +13 0.549970 0.853456 0.008977 0.005684 +13 0.460054 0.853456 0.008079 0.005684 +13 0.421454 0.853683 0.009276 0.006139 +13 0.370287 0.851296 0.008677 0.005912 +12 0.681179 0.850614 0.009276 0.005457 +12 0.681179 0.856071 0.009276 0.005457 +13 0.387044 0.848795 0.008677 0.005457 +13 0.357421 0.848909 0.008079 0.005684 +13 0.474117 0.848226 0.009276 0.006139 +12 0.760473 0.845612 0.009874 0.005457 +12 0.760473 0.851069 0.009874 0.005457 +13 0.295781 0.846180 0.010473 0.006594 +13 0.880760 0.845498 0.009874 0.006139 +12 0.311191 0.843679 0.008977 0.006139 +13 0.281867 0.843793 0.008977 0.006367 +13 0.896020 0.842997 0.009276 0.005684 +12 0.866098 0.842997 0.009276 0.005684 +12 0.801167 0.842769 0.009874 0.005230 +12 0.801167 0.847999 0.009874 0.005230 +13 0.404249 0.843338 0.009575 0.006367 +13 0.326002 0.838222 0.009874 0.007049 +13 0.909186 0.837312 0.009276 0.007049 +13 0.577648 0.821623 0.006882 0.003865 +11 0.467385 0.821851 0.006583 0.004320 +12 0.475913 0.809118 0.009276 0.005230 +13 0.589617 0.819350 0.008079 0.005684 +11 0.392280 0.815825 0.007181 0.003183 +12 0.401107 0.803888 0.009276 0.005684 +13 0.604428 0.816394 0.009575 0.006139 +13 0.566427 0.816394 0.009575 0.006139 +13 0.666218 0.814120 0.008079 0.006139 +13 0.619838 0.814120 0.008677 0.006139 +12 0.550868 0.814120 0.009575 0.006139 +12 0.550120 0.800477 0.005685 0.005230 +11 0.318223 0.812074 0.007481 0.003865 +12 0.326601 0.799113 0.009874 0.006139 +12 0.710652 0.811733 0.005984 0.004093 +13 0.650658 0.811505 0.009276 0.005457 +13 0.680580 0.811164 0.009276 0.005684 +12 0.504339 0.811392 0.009874 0.006139 +11 0.233842 0.810027 0.008677 0.006139 +11 0.801616 0.808890 0.009575 0.005684 +12 0.801765 0.795248 0.009874 0.005684 +13 0.746559 0.808890 0.008378 0.005684 +13 0.696439 0.809118 0.009874 0.006139 +13 0.735937 0.806162 0.006284 0.003865 +12 0.144524 0.807299 0.009575 0.006139 +13 0.760473 0.806389 0.009874 0.006139 +13 0.723369 0.806389 0.009874 0.006139 +12 0.421155 0.806617 0.009874 0.006594 +12 0.165171 0.805025 0.008977 0.006139 +13 0.775135 0.803661 0.008079 0.006139 +12 0.185966 0.802183 0.009874 0.006821 +12 0.358468 0.801614 0.010174 0.006594 +12 0.205266 0.799568 0.010174 0.006139 +13 0.880162 0.798658 0.009874 0.006139 +12 0.280969 0.796839 0.009575 0.006139 +13 0.896020 0.796271 0.009276 0.005912 +13 0.865350 0.795475 0.008977 0.006139 +13 0.910233 0.789563 0.008977 0.006139 +17 0.317325 0.761596 0.006882 0.003865 +18 0.325554 0.735675 0.009575 0.006594 +13 0.590215 0.756480 0.009276 0.005457 +13 0.606373 0.753865 0.009276 0.005684 +13 0.568372 0.753524 0.008677 0.005912 +13 0.666816 0.751364 0.009276 0.006139 +13 0.550868 0.750455 0.008977 0.006139 +13 0.620138 0.750000 0.009276 0.006139 +13 0.682376 0.748749 0.009276 0.006367 +13 0.650958 0.748408 0.008079 0.006594 +12 0.505984 0.748408 0.008378 0.006594 +13 0.747606 0.745907 0.008677 0.006139 +13 0.475613 0.746135 0.009276 0.006594 +11 0.233543 0.745794 0.009276 0.005912 +13 0.697786 0.745339 0.009575 0.005912 +12 0.144524 0.743975 0.009575 0.006821 +13 0.724566 0.742951 0.008677 0.006594 +11 0.723369 0.793429 0.009874 0.006594 +12 0.422053 0.743406 0.009276 0.007503 +13 0.762268 0.742610 0.009276 0.006821 +12 0.164423 0.741360 0.009874 0.006139 +13 0.815978 0.740905 0.008977 0.006139 +13 0.401855 0.740223 0.009575 0.006594 +13 0.776631 0.739541 0.009874 0.006139 +12 0.359515 0.738631 0.009276 0.007049 +12 0.185368 0.738859 0.009874 0.007503 +13 0.831987 0.738176 0.009276 0.007049 +13 0.802214 0.738176 0.008977 0.007049 +18 0.203621 0.734993 0.009276 0.006139 +12 0.866996 0.732719 0.008677 0.007049 +12 0.871185 0.690882 0.008677 0.006139 +12 0.279025 0.732492 0.009276 0.007503 +12 0.508229 0.714075 0.009276 0.006139 +12 0.468881 0.714188 0.009575 0.006367 +12 0.430132 0.714188 0.009874 0.006367 +12 0.679683 0.696567 0.009874 0.005684 +12 0.651556 0.696112 0.008677 0.005684 +12 0.807301 0.695202 0.008378 0.005684 +11 0.720377 0.695316 0.008677 0.005912 +13 0.627319 0.694293 0.009276 0.007503 +12 0.848145 0.693611 0.009276 0.007049 +18 0.847546 0.735221 0.009276 0.005684 +13 0.604877 0.691337 0.009874 0.006139 +12 0.564931 0.688495 0.007780 0.006821 +12 0.892729 0.687699 0.009276 0.007049 +12 0.911580 0.685425 0.009276 0.006139 +18 0.911730 0.735448 0.009575 0.006139 +11 0.323908 0.672578 0.005685 0.003183 +13 0.334081 0.655184 0.010473 0.006594 +18 0.428486 0.670191 0.004788 0.003865 +12 0.429084 0.652910 0.009575 0.005684 +13 0.394823 0.657913 0.009874 0.005684 +13 0.248803 0.658367 0.009874 0.006594 +13 0.299072 0.657685 0.009874 0.007049 +13 0.411879 0.655412 0.009276 0.005230 +13 0.213794 0.655639 0.008079 0.005684 +13 0.176691 0.655639 0.009276 0.005684 +13 0.264063 0.655184 0.008079 0.005684 +13 0.230102 0.653138 0.009575 0.006139 +13 0.196140 0.653138 0.009874 0.006139 +13 0.143178 0.653251 0.010473 0.006367 +18 0.475913 0.650296 0.006882 0.004093 +13 0.159336 0.650523 0.009276 0.006367 +13 0.447636 0.649955 0.009575 0.006139 +12 0.653351 0.648136 0.008677 0.006139 +12 0.807451 0.647226 0.009276 0.006139 +11 0.721275 0.647226 0.009276 0.006139 +12 0.680281 0.647226 0.008677 0.006139 +13 0.487732 0.647226 0.008977 0.006139 +13 0.464692 0.646999 0.008977 0.006594 +13 0.507929 0.645180 0.008677 0.006594 +13 0.626870 0.644952 0.008378 0.007958 +12 0.848444 0.644156 0.009276 0.007276 +12 0.869988 0.641996 0.008677 0.005684 +13 0.605925 0.641655 0.008378 0.005912 +13 0.525883 0.641314 0.009874 0.006139 +12 0.893327 0.639723 0.009874 0.006594 +12 0.563136 0.639268 0.007780 0.006594 +12 0.913076 0.636198 0.009874 0.005912 +17 0.711999 0.632788 0.005087 0.003638 +17 0.713794 0.625739 0.007481 0.005912 +13 0.721574 0.612096 0.009874 0.006821 +13 0.720975 0.593565 0.011071 0.006139 +13 0.720975 0.599704 0.011071 0.006139 +12 0.645572 0.632106 0.007481 0.005457 +12 0.644524 0.626080 0.006583 0.005684 +13 0.652454 0.612210 0.009276 0.006139 +13 0.652454 0.593452 0.009276 0.005912 +13 0.652454 0.599363 0.009276 0.005912 +13 0.345153 0.630855 0.008677 0.007049 +13 0.345003 0.612096 0.009575 0.005912 +11 0.298923 0.630855 0.009575 0.007049 +11 0.297876 0.612210 0.011071 0.006139 +13 0.248504 0.630855 0.010473 0.007049 +13 0.247606 0.612551 0.011071 0.005912 +13 0.358468 0.630400 0.010174 0.007049 +13 0.358917 0.612437 0.008677 0.005684 +13 0.264363 0.630628 0.009874 0.007503 +13 0.264961 0.612210 0.008677 0.006139 +11 0.143776 0.630514 0.009276 0.007276 +11 0.143926 0.612551 0.009575 0.005912 +12 0.428935 0.629945 0.009874 0.007049 +12 0.428636 0.612210 0.010473 0.006139 +12 0.395123 0.629945 0.009276 0.007049 +12 0.395123 0.612437 0.009276 0.005684 +12 0.507630 0.629263 0.009874 0.006594 +12 0.507331 0.612437 0.009874 0.005684 +12 0.465141 0.629377 0.009276 0.006821 +12 0.464692 0.612437 0.009575 0.005684 +17 0.840963 0.625398 0.006882 0.005230 +12 0.850239 0.613120 0.009874 0.006139 +18 0.838869 0.597090 0.008677 0.005912 +12 0.850539 0.592997 0.008677 0.005912 +13 0.564183 0.622783 0.009276 0.005457 +13 0.563435 0.605048 0.007181 0.005912 +13 0.603381 0.612665 0.008079 0.006139 +13 0.603680 0.593111 0.008677 0.006139 +13 0.603680 0.599250 0.008677 0.006139 +13 0.584231 0.612551 0.009874 0.005912 +13 0.583333 0.593452 0.008677 0.005912 +13 0.583333 0.599363 0.008677 0.005912 +13 0.626721 0.612210 0.008079 0.006139 +13 0.627469 0.593452 0.009575 0.005912 +13 0.627469 0.599363 0.009575 0.005912 +12 0.913974 0.570373 0.009276 0.006139 +11 0.849641 0.569918 0.009874 0.006139 +12 0.807451 0.569918 0.008079 0.006139 +12 0.785757 0.569918 0.009575 0.006139 +12 0.647666 0.567190 0.012867 0.005230 +18 0.647666 0.572419 0.012867 0.005230 +12 0.653351 0.556617 0.009874 0.005912 +13 0.766008 0.567190 0.010174 0.006139 +13 0.748354 0.564916 0.009575 0.006139 +12 0.720676 0.562415 0.009276 0.005684 +13 0.143028 0.562642 0.009575 0.006139 +13 0.196888 0.560141 0.009575 0.005684 +13 0.491023 0.559914 0.009575 0.006139 +13 0.412178 0.559914 0.009874 0.006139 +13 0.231747 0.559914 0.009276 0.006139 +13 0.160682 0.559914 0.009575 0.006139 +13 0.265709 0.559686 0.009575 0.006594 +13 0.446140 0.559345 0.008977 0.006821 +13 0.335278 0.559345 0.009276 0.006821 +13 0.178785 0.557640 0.009874 0.006139 +13 0.626122 0.557412 0.009276 0.006594 +13 0.603980 0.557412 0.009276 0.006594 +13 0.583333 0.557185 0.009874 0.006139 +13 0.466338 0.557185 0.009276 0.006139 +13 0.394823 0.557412 0.009874 0.006594 +13 0.250000 0.556958 0.008677 0.005684 +13 0.215290 0.556958 0.009874 0.005684 +13 0.507630 0.556503 0.009276 0.006594 +13 0.428785 0.556503 0.008977 0.006594 +13 0.300569 0.556844 0.010473 0.007276 +13 0.524536 0.554002 0.008977 0.007958 +13 0.563734 0.552638 0.008977 0.006139 +12 0.068971 0.524102 0.004488 0.003638 +18 0.557899 0.526035 0.011670 0.004775 +18 0.557899 0.530809 0.011670 0.004775 +12 0.557899 0.521260 0.011670 0.004775 +12 0.786505 0.508072 0.009276 0.006139 +11 0.850239 0.507503 0.008677 0.005912 +12 0.914572 0.507049 0.009276 0.005912 +12 0.808947 0.507162 0.008677 0.006139 +13 0.767355 0.504206 0.009276 0.005684 +13 0.143327 0.504775 0.008378 0.006821 +13 0.749850 0.502729 0.009575 0.005457 +12 0.489228 0.502274 0.008378 0.006367 +18 0.196738 0.502387 0.009874 0.006594 +11 0.266756 0.502046 0.007481 0.006367 +13 0.446439 0.501705 0.008977 0.006139 +13 0.412777 0.501933 0.008677 0.006594 +13 0.333483 0.501705 0.010473 0.007049 +13 0.231448 0.501251 0.007481 0.006139 +13 0.160981 0.501364 0.009575 0.006367 +12 0.508977 0.499432 0.008378 0.007049 +18 0.466637 0.498636 0.008677 0.005457 +13 0.250000 0.499545 0.008677 0.007276 +12 0.722023 0.499204 0.010174 0.007503 +18 0.430132 0.498522 0.008677 0.006139 +11 0.397516 0.499090 0.008079 0.007276 +12 0.180281 0.498977 0.009276 0.007049 +18 0.299072 0.497613 0.008677 0.006139 +11 0.217086 0.498067 0.009874 0.007049 +18 0.524387 0.496135 0.009276 0.005912 +18 0.561341 0.491246 0.005386 0.004320 +13 0.889737 0.420987 0.009874 0.005684 +13 0.854428 0.421214 0.009874 0.006139 +13 0.820168 0.420987 0.009575 0.005684 +13 0.908288 0.418713 0.009874 0.005684 +13 0.871933 0.418940 0.008977 0.006139 +13 0.785308 0.418713 0.009276 0.005684 +13 0.732496 0.418940 0.008977 0.006139 +13 0.698683 0.418827 0.008378 0.005912 +13 0.663824 0.418713 0.009276 0.005684 +13 0.837971 0.418372 0.009276 0.005912 +13 0.627917 0.416212 0.008079 0.006139 +13 0.716487 0.415757 0.009276 0.006139 +13 0.679982 0.415757 0.009276 0.006139 +12 0.384351 0.415757 0.008079 0.006139 +13 0.802513 0.414961 0.008977 0.006367 +13 0.750150 0.415075 0.010174 0.006594 +13 0.472023 0.415416 0.009874 0.007276 +12 0.214991 0.415075 0.009276 0.006594 +13 0.647367 0.413483 0.009874 0.007049 +13 0.363704 0.413483 0.009874 0.007049 +13 0.197636 0.413370 0.009276 0.006821 +13 0.545931 0.412233 0.010473 0.007276 +13 0.179683 0.411210 0.009276 0.006139 +13 0.343058 0.410755 0.009276 0.006139 +12 0.146469 0.408026 0.009276 0.007049 +12 0.308947 0.407231 0.009276 0.007276 +13 0.906194 0.395748 0.009276 0.007049 +13 0.905895 0.377331 0.009874 0.006594 +13 0.888689 0.395634 0.008977 0.006821 +13 0.887941 0.377558 0.009874 0.006139 +11 0.784710 0.395748 0.009276 0.007049 +11 0.784111 0.377331 0.009276 0.006594 +17 0.102783 0.384038 0.007481 0.008186 +11 0.145272 0.369600 0.008677 0.005684 +13 0.416667 0.367099 0.009276 0.006139 +13 0.252992 0.367099 0.009874 0.006139 +12 0.471873 0.365052 0.009575 0.005684 +11 0.308348 0.364711 0.009276 0.005912 +12 0.215889 0.364598 0.008677 0.005684 +12 0.384051 0.364598 0.009874 0.006594 +13 0.270646 0.362096 0.009276 0.005230 +12 0.434022 0.361414 0.009276 0.005684 +13 0.545183 0.338336 0.006583 0.005002 +12 0.545931 0.323670 0.009276 0.005684 +13 0.361909 0.333674 0.008677 0.005684 +13 0.326601 0.333447 0.008677 0.006139 +13 0.198384 0.333447 0.009575 0.006139 +13 0.163824 0.333447 0.008677 0.006139 +13 0.346349 0.328445 0.009874 0.006139 +13 0.309545 0.328217 0.009276 0.005684 +13 0.182077 0.328445 0.009276 0.006139 +13 0.147068 0.328445 0.009874 0.006139 +13 0.597397 0.325944 0.009276 0.005684 +13 0.627768 0.325830 0.010174 0.006367 +13 0.564183 0.325944 0.009874 0.006594 +13 0.524087 0.325716 0.009874 0.006139 +13 0.435368 0.325716 0.009575 0.006139 +13 0.271394 0.325375 0.009575 0.006367 +13 0.749551 0.323556 0.008378 0.005457 +13 0.716188 0.323670 0.008079 0.005684 +13 0.679982 0.323670 0.008677 0.005684 +13 0.785607 0.323442 0.007481 0.005684 +13 0.646320 0.323329 0.008977 0.005457 +13 0.579892 0.323442 0.008378 0.005684 +13 0.507331 0.323329 0.009874 0.005912 +13 0.416218 0.323215 0.008378 0.005684 +13 0.253890 0.323215 0.009276 0.005684 +13 0.909037 0.320714 0.010174 0.006139 +12 0.872232 0.320714 0.010174 0.006139 +12 0.835727 0.320714 0.009575 0.006139 +13 0.802513 0.320714 0.009575 0.006139 +13 0.731897 0.320714 0.009575 0.006139 +13 0.697636 0.320941 0.009874 0.006594 +13 0.665320 0.320714 0.009874 0.006139 +12 0.470975 0.320714 0.009575 0.006139 +12 0.384949 0.320714 0.009276 0.006139 +12 0.216038 0.320714 0.010174 0.006139 +13 0.891532 0.318440 0.008677 0.005230 +12 0.854728 0.318668 0.009276 0.005684 +13 0.818821 0.318440 0.009276 0.005230 +18 0.783363 0.286949 0.004189 0.004093 +12 0.785308 0.268417 0.009276 0.006139 +12 0.071364 0.282401 0.004488 0.004093 +11 0.308348 0.273647 0.009276 0.005684 +13 0.213495 0.273874 0.009874 0.006139 +11 0.146469 0.274102 0.008677 0.006594 +13 0.470975 0.273192 0.007780 0.005684 +12 0.383303 0.273192 0.008977 0.005684 +13 0.273639 0.272283 0.009276 0.006594 +13 0.597696 0.271601 0.009874 0.007049 +12 0.563285 0.271373 0.009276 0.006594 +13 0.434620 0.271373 0.009276 0.006594 +13 0.236086 0.271601 0.009575 0.007049 +13 0.631807 0.270691 0.008677 0.006139 +13 0.524686 0.270919 0.008677 0.006594 +13 0.487882 0.271146 0.009276 0.007049 +13 0.399461 0.270805 0.009575 0.007276 +13 0.751795 0.269100 0.009276 0.005684 +13 0.254937 0.269100 0.009575 0.005684 +13 0.715290 0.268759 0.009276 0.005912 +13 0.682077 0.268645 0.008677 0.005684 +13 0.649013 0.268872 0.008977 0.006139 +12 0.543836 0.268645 0.009874 0.005684 +13 0.417415 0.268759 0.008378 0.005912 +12 0.579743 0.268417 0.009874 0.006139 +13 0.505536 0.267508 0.008677 0.006139 +13 0.872531 0.267167 0.008977 0.006367 +13 0.909336 0.266598 0.008977 0.007049 +13 0.837074 0.266598 0.008677 0.007049 +13 0.802663 0.266371 0.009276 0.006594 +13 0.699431 0.266485 0.008677 0.006821 +13 0.666218 0.265689 0.008079 0.007049 +13 0.734440 0.265575 0.009276 0.007731 +12 0.889437 0.264325 0.009276 0.006139 +18 0.854129 0.263643 0.009276 0.005684 +12 0.819719 0.263415 0.009874 0.006139 +12 0.207211 0.204525 0.009276 0.005684 +12 0.175344 0.199523 0.008977 0.005684 +12 0.145572 0.199523 0.009276 0.005684 +12 0.307750 0.197135 0.009276 0.006367 +12 0.280371 0.197135 0.009575 0.006367 +12 0.636744 0.187926 0.009575 0.006139 +12 0.504339 0.187472 0.009874 0.006139 +12 0.341712 0.186789 0.010772 0.006594 +12 0.874776 0.182924 0.008677 0.006139 +12 0.900509 0.182242 0.008677 0.005684 +11 0.813884 0.182015 0.008378 0.006139 +12 0.766158 0.179513 0.009276 0.007503 +11 0.736236 0.179286 0.009276 0.007049 +12 0.679982 0.179286 0.009276 0.007049 +12 0.605177 0.179286 0.008079 0.007049 +11 0.543986 0.179286 0.008977 0.007049 +12 0.471873 0.178604 0.009575 0.007503 +11 0.412478 0.177922 0.009276 0.007049 +13 0.069569 0.173147 0.005685 0.007049 +13 0.069569 0.152910 0.005685 0.013870 +12 0.343058 0.149045 0.009276 0.006594 +12 0.207211 0.148818 0.009276 0.007049 +12 0.175194 0.148590 0.009874 0.006594 +12 0.145871 0.148590 0.009874 0.006594 +12 0.278725 0.146771 0.008677 0.005684 +12 0.307151 0.146317 0.008079 0.005684 +12 0.902902 0.145862 0.009874 0.005684 +12 0.876272 0.145862 0.009276 0.005684 +12 0.196140 0.145634 0.008677 0.005230 +18 0.196140 0.150864 0.008677 0.005230 +12 0.813435 0.145634 0.010473 0.006139 +12 0.502244 0.144725 0.010473 0.006139 +12 0.768402 0.142678 0.007780 0.005684 +12 0.739826 0.142678 0.009276 0.005684 +12 0.678785 0.142792 0.009276 0.005912 +12 0.637193 0.142678 0.008677 0.005684 +12 0.608468 0.142678 0.008677 0.005684 +13 0.545781 0.142224 0.008977 0.005684 +12 0.474417 0.142224 0.008677 0.005684 +11 0.412178 0.141769 0.008079 0.005684 +13 0.723668 0.117212 0.009276 0.005684 +13 0.695093 0.117212 0.008977 0.005684 +13 0.189856 0.117440 0.009276 0.006139 +13 0.162328 0.117212 0.009874 0.006594 +13 0.589019 0.116530 0.009276 0.005684 +13 0.561640 0.116417 0.009575 0.005912 +13 0.455266 0.116303 0.008677 0.005684 +13 0.426691 0.115962 0.009575 0.005912 +13 0.322262 0.115393 0.009575 0.005684 +13 0.858019 0.114939 0.009874 0.005684 +12 0.830790 0.114939 0.010473 0.005684 +13 0.295183 0.115166 0.009276 0.006139 +13 0.679683 0.112210 0.009874 0.005684 +13 0.176541 0.112437 0.008977 0.006139 +12 0.737882 0.111983 0.008977 0.006139 +13 0.710054 0.111983 0.009575 0.006139 +11 0.206912 0.112210 0.009874 0.006594 +13 0.576302 0.111301 0.009575 0.005684 +13 0.545033 0.111414 0.009874 0.005912 +13 0.147367 0.111869 0.009276 0.006821 +13 0.441352 0.111073 0.009575 0.006139 +13 0.411879 0.110846 0.009276 0.005684 +12 0.340814 0.110391 0.008378 0.005684 +13 0.310144 0.110050 0.009276 0.005457 +18 0.847546 0.109936 0.009276 0.005684 +13 0.280072 0.109936 0.008977 0.005684 +12 0.874925 0.109709 0.009575 0.006139 +13 0.813585 0.109709 0.009575 0.006139 +13 0.651855 0.109254 0.009276 0.006139 +13 0.520347 0.108686 0.009575 0.006821 +13 0.637193 0.106753 0.008677 0.005684 +13 0.503441 0.106298 0.008079 0.005684 +12 0.608169 0.104025 0.009276 0.006594 +12 0.472920 0.103797 0.009276 0.006139 +18 0.384949 0.058890 0.008079 0.005912 +13 0.738929 0.057754 0.009874 0.005912 +12 0.609066 0.057640 0.008677 0.005684 +13 0.342460 0.058095 0.009276 0.006594 +13 0.784411 0.057640 0.009276 0.006594 +13 0.679832 0.057640 0.009575 0.006594 +12 0.251346 0.057526 0.007780 0.006367 +12 0.207211 0.057412 0.009276 0.006139 +13 0.145422 0.056958 0.007780 0.005230 +12 0.070168 0.057412 0.004488 0.006594 +13 0.546828 0.057185 0.009874 0.006594 +13 0.472172 0.057185 0.008977 0.006594 +13 0.411580 0.056503 0.009874 0.006139 +13 0.356523 0.056048 0.009874 0.006139 +13 0.919958 0.055593 0.009276 0.006139 +13 0.325404 0.055593 0.009874 0.006139 +13 0.875673 0.055139 0.009276 0.006139 +13 0.697038 0.054911 0.008677 0.005684 +13 0.278725 0.055366 0.009874 0.006594 +12 0.222472 0.055139 0.009874 0.006139 +13 0.815230 0.054911 0.009276 0.006594 +13 0.753740 0.054684 0.009575 0.006139 +13 0.725464 0.054684 0.009276 0.006139 +13 0.653800 0.054684 0.008977 0.006139 +13 0.488630 0.054457 0.008977 0.005684 +13 0.190156 0.054911 0.009874 0.006594 +13 0.159336 0.054911 0.009276 0.006594 +13 0.520796 0.054229 0.009276 0.006139 +13 0.624327 0.054229 0.009276 0.007049 +13 0.371783 0.053320 0.009276 0.006139 +12 0.889587 0.052183 0.007780 0.005684 +13 0.638689 0.052183 0.009276 0.005684 +13 0.294734 0.052410 0.008378 0.006139 +13 0.236385 0.052410 0.009575 0.006139 +13 0.173998 0.052410 0.009874 0.006139 +13 0.862956 0.052183 0.008378 0.006594 +13 0.768851 0.051614 0.008677 0.006367 +13 0.829892 0.051160 0.008677 0.006367 +13 0.709904 0.051160 0.009276 0.006367 +13 0.502693 0.050136 0.008378 0.006139 +12 0.904698 0.049568 0.008677 0.006821 +13 0.846050 0.049341 0.008677 0.006367 +13 0.309246 0.048772 0.009874 0.007049 +0 0.091712 0.611301 0.023639 0.024329 +1 0.092609 0.106071 0.021843 0.039791 +0 0.093806 0.856185 0.023040 0.023874 +1 0.094405 0.329809 0.021843 0.039791 +2 0.093507 0.194520 0.017654 0.019327 +1 0.093806 0.064461 0.023040 0.040246 +0 0.093507 0.146999 0.023639 0.024329 +5 0.117145 0.197476 0.008677 0.013415 +5 0.116547 0.146999 0.008677 0.014325 +2 0.091113 0.467599 0.016457 0.018872 +4 0.736834 0.746362 0.009276 0.019782 +1 0.091712 0.811846 0.021245 0.039791 +4 0.579144 0.757731 0.008677 0.017053 +2 0.090515 0.950773 0.016457 0.018417 +5 0.115649 0.906889 0.008079 0.013415 +5 0.116547 0.954184 0.008677 0.015234 +5 0.115350 0.611073 0.008677 0.013870 +5 0.116547 0.855503 0.008677 0.014325 +2 0.092310 0.430309 0.017654 0.017963 +5 0.117145 0.235448 0.008677 0.013870 +2 0.091113 0.904161 0.020048 0.019782 +5 0.115350 0.569463 0.008677 0.014325 +2 0.093208 0.232265 0.015859 0.018417 +4 0.329892 0.149727 0.009276 0.013415 +1 0.091562 0.766030 0.021544 0.039563 +2 0.091562 0.709868 0.014363 0.017281 +1 0.087074 0.377217 0.006583 0.023192 +2 0.093656 0.660528 0.011370 0.015916 +0 0.093357 0.283538 0.020347 0.027740 +4 0.091712 0.531946 0.008677 0.012506 +5 0.096948 0.531946 0.008378 0.012506 +4 0.085129 0.527171 0.008677 0.013870 +4 0.095751 0.522851 0.008378 0.013870 +4 0.101735 0.374375 0.008378 0.013870 +4 0.093507 0.294111 0.008677 0.012506 +5 0.099940 0.294111 0.008378 0.012506 +4 0.084829 0.573556 0.008677 0.013870 +4 0.091712 0.569236 0.008677 0.013870 +5 0.098743 0.559914 0.008378 0.013870 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_26.jpg b/data_dataset/dvo/debug/debug_26.jpg new file mode 100644 index 0000000..0447073 Binary files /dev/null and b/data_dataset/dvo/debug/debug_26.jpg differ diff --git a/data_dataset/dvo/debug/debug_26.txt b/data_dataset/dvo/debug/debug_26.txt new file mode 100644 index 0000000..4f8ec34 --- /dev/null +++ b/data_dataset/dvo/debug/debug_26.txt @@ -0,0 +1,490 @@ +10 0.770347 0.950091 0.011670 0.005230 +8 0.683872 0.950318 0.012268 0.007503 +8 0.602484 0.950318 0.012268 0.007503 +8 0.512717 0.950091 0.012268 0.007049 +7 0.430730 0.950773 0.012268 0.008413 +8 0.357121 0.950091 0.012268 0.007049 +8 0.270347 0.950318 0.012268 0.007503 +8 0.188360 0.950546 0.012268 0.007958 +8 0.431329 0.895748 0.012268 0.007503 +6 0.245212 0.898249 0.009874 0.018872 +6 0.150958 0.897794 0.009276 0.018872 +6 0.370586 0.897340 0.010473 0.019782 +10 0.576451 0.840041 0.009276 0.003411 +9 0.780221 0.846180 0.009874 0.026603 +8 0.430132 0.840723 0.012268 0.007503 +6 0.369988 0.842997 0.010473 0.018417 +6 0.244913 0.842087 0.010473 0.018417 +6 0.153651 0.841633 0.009874 0.018417 +9 0.572861 0.805025 0.004488 0.022510 +10 0.429533 0.781378 0.012268 0.005230 +6 0.153651 0.783879 0.009874 0.018417 +6 0.367594 0.783652 0.009276 0.018872 +6 0.244315 0.783652 0.010473 0.018872 +10 0.764662 0.744316 0.007481 0.004775 +9 0.667115 0.737722 0.009874 0.022510 +10 0.200928 0.723852 0.007481 0.002046 +9 0.289797 0.734993 0.012867 0.037972 +10 0.616846 0.714757 0.006284 0.002046 +10 0.785907 0.711346 0.009276 0.005230 +8 0.186266 0.663370 0.011670 0.007503 +8 0.868791 0.662915 0.012268 0.007503 +8 0.767056 0.663142 0.012268 0.007049 +8 0.681777 0.663142 0.011670 0.007049 +8 0.599192 0.663142 0.011670 0.007049 +8 0.513016 0.663142 0.011670 0.007049 +8 0.429533 0.663142 0.012268 0.007049 +8 0.355925 0.663142 0.012268 0.007049 +8 0.274536 0.663142 0.012268 0.007049 +7 0.456762 0.597658 0.011670 0.014325 +8 0.606074 0.594247 0.012268 0.007503 +6 0.684171 0.597658 0.009276 0.018872 +6 0.808348 0.597203 0.009874 0.018872 +6 0.486685 0.595839 0.009276 0.018872 +7 0.457062 0.544679 0.012268 0.013870 +8 0.605177 0.541951 0.011670 0.008413 +6 0.807151 0.543997 0.009874 0.017963 +6 0.486086 0.543315 0.009276 0.017508 +6 0.684770 0.543088 0.010473 0.018872 +7 0.457959 0.491246 0.011670 0.014325 +8 0.605476 0.488063 0.009874 0.007958 +6 0.486385 0.490791 0.008677 0.017053 +6 0.806852 0.491019 0.010473 0.018417 +6 0.684470 0.490791 0.009874 0.018872 +9 0.431329 0.487381 0.009874 0.038427 +10 0.889737 0.438495 0.009874 0.002501 +10 0.884949 0.435994 0.006284 0.002046 +9 0.624028 0.445316 0.007481 0.029786 +8 0.910383 0.438040 0.010473 0.025239 +8 0.853830 0.434175 0.006284 0.017508 +8 0.728456 0.438267 0.010473 0.026603 +7 0.662328 0.436676 0.011071 0.039791 +10 0.597696 0.428263 0.007481 0.002956 +9 0.563884 0.437017 0.009276 0.010914 +9 0.492968 0.433834 0.006284 0.026376 +9 0.515111 0.431901 0.009874 0.035698 +8 0.730551 0.375739 0.012268 0.007049 +7 0.456762 0.379377 0.010473 0.014325 +7 0.855925 0.375512 0.011670 0.007503 +8 0.605177 0.375284 0.010473 0.007049 +6 0.486685 0.377331 0.009276 0.018417 +9 0.334680 0.368463 0.004488 0.030696 +9 0.201825 0.358686 0.004488 0.029332 +10 0.214093 0.314575 0.009874 0.002046 +10 0.617744 0.314120 0.008079 0.002956 +10 0.885248 0.310937 0.006882 0.004775 +6 0.782017 0.313211 0.006284 0.011141 +7 0.316128 0.308663 0.011670 0.014779 +6 0.822113 0.308663 0.009874 0.017508 +6 0.693148 0.308436 0.009276 0.016144 +6 0.556104 0.308208 0.009276 0.019327 +9 0.251496 0.306162 0.005685 0.025239 +6 0.424446 0.306389 0.009276 0.018417 +10 0.792789 0.299795 0.007481 0.004320 +8 0.665320 0.307299 0.012268 0.021146 +8 0.528875 0.307299 0.008677 0.021146 +9 0.205416 0.302296 0.006882 0.027513 +10 0.482196 0.260914 0.009874 0.003865 +10 0.213495 0.261369 0.006284 0.004775 +6 0.651556 0.256139 0.007481 0.019782 +10 0.168312 0.257731 0.008079 0.004775 +10 0.157241 0.256594 0.008677 0.005230 +8 0.316727 0.253183 0.010473 0.007503 +6 0.556703 0.255457 0.010473 0.018417 +6 0.821215 0.255457 0.010473 0.018417 +6 0.692849 0.254775 0.009874 0.017053 +6 0.425943 0.255230 0.009874 0.018872 +7 0.665619 0.254320 0.010473 0.020691 +8 0.532765 0.252729 0.011670 0.037517 +10 0.599491 0.219304 0.007481 0.004320 +10 0.503142 0.218849 0.013465 0.003411 +10 0.759874 0.217258 0.007481 0.002046 +9 0.230551 0.208845 0.008079 0.024329 +9 0.556703 0.210891 0.009276 0.029332 +9 0.243716 0.207481 0.009276 0.023420 +10 0.559695 0.198613 0.006882 0.002956 +9 0.427439 0.208618 0.009276 0.025693 +10 0.243716 0.198386 0.006882 0.002501 +9 0.614452 0.205434 0.005087 0.029332 +9 0.483094 0.205434 0.011670 0.028422 +9 0.884051 0.203843 0.009276 0.030696 +9 0.517804 0.204525 0.010473 0.032060 +10 0.856822 0.193611 0.007481 0.002956 +9 0.781119 0.202251 0.010473 0.032060 +9 0.911281 0.201342 0.007481 0.030241 +10 0.519300 0.191564 0.006284 0.003411 +10 0.318223 0.188381 0.017056 0.003411 +10 0.180880 0.158140 0.009276 0.003865 +9 0.304159 0.154957 0.006882 0.017508 +9 0.328396 0.153138 0.006284 0.021146 +10 0.819719 0.146999 0.007481 0.005230 +7 0.692849 0.147453 0.011071 0.008868 +7 0.557002 0.149955 0.012268 0.013870 +7 0.427439 0.149955 0.010473 0.014779 +7 0.382855 0.150182 0.011071 0.014325 +10 0.235637 0.094361 0.017056 0.002274 +10 0.495961 0.093565 0.013465 0.002046 +10 0.234440 0.091519 0.014662 0.002501 +10 0.770646 0.091064 0.009874 0.002501 +10 0.492669 0.091064 0.015260 0.002501 +9 0.208109 0.078104 0.005087 0.030241 +17 0.744165 0.913142 0.009575 0.006821 +11 0.191203 0.910414 0.009575 0.005912 +11 0.281568 0.909959 0.009575 0.005912 +17 0.669509 0.909845 0.009874 0.006594 +11 0.338869 0.909732 0.009276 0.006367 +17 0.576750 0.908026 0.009874 0.006594 +17 0.842460 0.904957 0.009874 0.006821 +17 0.491771 0.904616 0.009276 0.007049 +11 0.338420 0.855161 0.009575 0.006367 +11 0.282466 0.854934 0.009575 0.006821 +11 0.191352 0.854820 0.008677 0.006594 +11 0.576152 0.842542 0.008079 0.005230 +11 0.781418 0.841519 0.008079 0.005457 +17 0.491472 0.839700 0.008079 0.006367 +17 0.841263 0.839131 0.009874 0.007049 +11 0.695691 0.836744 0.009575 0.005912 +11 0.744614 0.834015 0.009276 0.005912 +11 0.669808 0.834129 0.009276 0.006139 +12 0.624626 0.833561 0.009276 0.006821 +12 0.743118 0.804116 0.008677 0.007049 +11 0.741622 0.784902 0.009276 0.005912 +17 0.669659 0.804457 0.010174 0.007731 +11 0.668911 0.785016 0.009874 0.007049 +18 0.340215 0.802183 0.008378 0.005002 +11 0.339467 0.795589 0.009874 0.005457 +11 0.492071 0.801728 0.009276 0.005912 +11 0.517804 0.798886 0.009276 0.005684 +11 0.839318 0.798090 0.009575 0.005912 +11 0.282466 0.795703 0.008378 0.005684 +11 0.282466 0.801387 0.008378 0.005684 +11 0.864004 0.795475 0.009276 0.006139 +12 0.781269 0.795475 0.009575 0.006139 +12 0.781119 0.786949 0.008677 0.005457 +11 0.788300 0.771714 0.004488 0.004093 +11 0.608767 0.795589 0.009276 0.006367 +11 0.190455 0.795248 0.009276 0.005684 +11 0.190455 0.800932 0.009276 0.005684 +12 0.900808 0.793315 0.009276 0.005457 +12 0.800868 0.790132 0.009276 0.006367 +17 0.576002 0.785471 0.010174 0.007049 +11 0.576302 0.798772 0.008378 0.005457 +12 0.263764 0.747158 0.008677 0.005912 +12 0.172352 0.746930 0.008977 0.006367 +11 0.369090 0.745907 0.008677 0.006139 +12 0.245512 0.743179 0.008677 0.007049 +12 0.153202 0.742951 0.008977 0.006594 +12 0.281718 0.743179 0.008677 0.007503 +11 0.290245 0.721010 0.007780 0.005457 +11 0.416966 0.742724 0.008677 0.007049 +11 0.340365 0.742724 0.008677 0.007049 +12 0.191352 0.742610 0.008677 0.006821 +11 0.299372 0.737494 0.008079 0.005684 +12 0.298025 0.721010 0.007780 0.005457 +12 0.209007 0.737494 0.008079 0.005684 +11 0.444794 0.737381 0.009276 0.006367 +12 0.538151 0.734538 0.009276 0.006139 +11 0.700628 0.734084 0.009276 0.006139 +12 0.901107 0.733743 0.009874 0.006367 +12 0.519300 0.731810 0.008677 0.005230 +12 0.624925 0.731696 0.008079 0.005912 +12 0.881807 0.731241 0.009575 0.005912 +12 0.798175 0.731241 0.008677 0.005912 +18 0.742370 0.731128 0.007780 0.005684 +12 0.742071 0.723511 0.008977 0.005912 +11 0.668462 0.731355 0.007181 0.006139 +18 0.668013 0.723170 0.010473 0.007049 +12 0.606373 0.728968 0.008677 0.005912 +11 0.491472 0.729081 0.009276 0.006139 +11 0.840664 0.728513 0.008677 0.005912 +12 0.780521 0.728513 0.009276 0.005912 +12 0.762867 0.726012 0.008677 0.005457 +11 0.577499 0.726353 0.010174 0.006139 +11 0.863555 0.610277 0.009575 0.005912 +11 0.741771 0.609595 0.008977 0.006367 +12 0.428187 0.600841 0.009575 0.006139 +17 0.294883 0.600387 0.009874 0.007049 +17 0.152454 0.599818 0.009874 0.006821 +11 0.864004 0.556844 0.009874 0.006367 +11 0.741323 0.556617 0.009874 0.005912 +12 0.429234 0.547294 0.006882 0.004548 +12 0.428935 0.531833 0.008079 0.005457 +17 0.296230 0.546953 0.009575 0.006594 +17 0.295931 0.530923 0.010174 0.007276 +17 0.152154 0.546953 0.010473 0.006594 +17 0.152154 0.530582 0.009874 0.006594 +11 0.740724 0.508413 0.008677 0.006367 +11 0.739826 0.502615 0.009276 0.005230 +11 0.865051 0.503070 0.008977 0.006139 +11 0.865051 0.509209 0.008977 0.006139 +11 0.429832 0.502274 0.009874 0.006367 +11 0.428785 0.489995 0.007181 0.003638 +11 0.430132 0.483629 0.008677 0.005457 +17 0.152454 0.501933 0.010473 0.007503 +17 0.153202 0.485107 0.006583 0.004320 +17 0.295332 0.501478 0.010772 0.007503 +17 0.295781 0.487381 0.010473 0.008413 +13 0.877917 0.456116 0.008977 0.005912 +13 0.821065 0.456116 0.009575 0.005912 +13 0.753740 0.456116 0.009575 0.005912 +13 0.699431 0.456799 0.009874 0.007276 +13 0.631059 0.455775 0.009575 0.006139 +13 0.809246 0.453388 0.009276 0.007731 +13 0.741023 0.453047 0.008079 0.007049 +13 0.618043 0.452592 0.008677 0.006594 +13 0.713345 0.452024 0.008977 0.006821 +13 0.645871 0.452024 0.009276 0.006821 +13 0.686116 0.452024 0.008977 0.007276 +12 0.865500 0.451796 0.009276 0.007276 +13 0.835727 0.451569 0.008977 0.006821 +13 0.892879 0.451455 0.008977 0.007503 +13 0.767205 0.451455 0.008977 0.007503 +12 0.772591 0.434857 0.006583 0.004775 +13 0.578097 0.449864 0.008977 0.006139 +13 0.908887 0.446680 0.008677 0.006139 +12 0.850239 0.446567 0.008677 0.005912 +13 0.780371 0.446339 0.008977 0.005457 +12 0.727259 0.446339 0.009276 0.005457 +13 0.728306 0.431446 0.004788 0.003411 +13 0.661281 0.446112 0.008977 0.005912 +13 0.591712 0.445998 0.008677 0.005684 +13 0.557301 0.445771 0.009276 0.006139 +17 0.295781 0.445998 0.010473 0.006594 +17 0.295631 0.432128 0.008977 0.006139 +17 0.152902 0.445316 0.009575 0.006139 +17 0.152902 0.431673 0.009575 0.007049 +13 0.500000 0.442929 0.009575 0.005912 +13 0.605625 0.440655 0.008977 0.005912 +13 0.514063 0.440541 0.008977 0.005684 +13 0.487283 0.440541 0.009276 0.005684 +11 0.872382 0.436562 0.004488 0.006367 +13 0.444045 0.434970 0.009575 0.006367 +13 0.528875 0.432242 0.009276 0.006367 +13 0.458109 0.432242 0.009575 0.006367 +13 0.428636 0.432128 0.009276 0.006139 +18 0.599791 0.429513 0.005087 0.004548 +13 0.473818 0.426785 0.009874 0.006367 +12 0.431029 0.379150 0.009874 0.006594 +13 0.375524 0.376421 0.008977 0.005684 +13 0.389587 0.373920 0.008977 0.006139 +13 0.353531 0.373806 0.009276 0.005912 +13 0.309695 0.371305 0.008378 0.005457 +13 0.324806 0.368690 0.008677 0.005684 +13 0.404698 0.368577 0.009276 0.006367 +13 0.297576 0.368236 0.009276 0.006594 +13 0.236834 0.363461 0.008079 0.006139 +13 0.223668 0.361073 0.008677 0.006821 +13 0.252992 0.360732 0.008677 0.007049 +13 0.339467 0.360391 0.009276 0.008186 +13 0.174596 0.357549 0.009276 0.006139 +13 0.190156 0.355616 0.009276 0.006821 +13 0.268103 0.355503 0.008977 0.007503 +13 0.152603 0.355389 0.008977 0.007276 +13 0.206613 0.349250 0.008079 0.006821 +11 0.351287 0.319691 0.008977 0.005912 +12 0.788300 0.315371 0.005685 0.003638 +11 0.793238 0.301160 0.005984 0.004775 +12 0.658887 0.314916 0.005386 0.003638 +11 0.664572 0.301387 0.006583 0.003865 +12 0.667415 0.311278 0.005685 0.004548 +12 0.524087 0.314802 0.005087 0.003411 +13 0.193597 0.312301 0.016756 0.003865 +11 0.185518 0.306048 0.005386 0.005002 +12 0.194195 0.292519 0.008977 0.006139 +11 0.887044 0.312415 0.009276 0.005457 +12 0.923698 0.312074 0.005984 0.005230 +11 0.758378 0.312074 0.009276 0.006139 +11 0.617744 0.311960 0.009276 0.005912 +11 0.483393 0.311960 0.008677 0.005912 +11 0.248953 0.310482 0.005984 0.003865 +12 0.257181 0.298431 0.009874 0.006139 +12 0.290096 0.301273 0.008677 0.005457 +12 0.211101 0.296044 0.008677 0.005912 +12 0.153651 0.291041 0.008677 0.006821 +11 0.350688 0.267053 0.008977 0.006139 +11 0.656942 0.261710 0.005087 0.003638 +17 0.662478 0.249545 0.007181 0.004775 +13 0.526182 0.261710 0.005685 0.003638 +13 0.534710 0.259209 0.004788 0.004093 +11 0.885847 0.259095 0.008079 0.004775 +11 0.757331 0.259663 0.008378 0.005912 +13 0.248803 0.258527 0.004488 0.003638 +13 0.666517 0.258868 0.005685 0.004775 +11 0.482795 0.259095 0.008677 0.005230 +12 0.924147 0.258868 0.005685 0.005230 +12 0.797127 0.258640 0.005386 0.004775 +11 0.618791 0.258981 0.008378 0.005457 +11 0.184470 0.253183 0.008079 0.003865 +12 0.193148 0.240678 0.008677 0.006139 +12 0.793836 0.249204 0.005984 0.004093 +11 0.291143 0.248863 0.009575 0.006139 +12 0.257780 0.246135 0.008677 0.006139 +12 0.212597 0.243861 0.009276 0.006139 +12 0.153800 0.237153 0.008378 0.007276 +11 0.748803 0.216689 0.012268 0.004548 +11 0.756583 0.193724 0.008677 0.005002 +12 0.756583 0.198727 0.008677 0.005002 +12 0.643327 0.216803 0.008378 0.004775 +12 0.652304 0.193156 0.008977 0.005684 +12 0.652304 0.198840 0.008977 0.005684 +12 0.350987 0.211573 0.008378 0.005230 +12 0.351137 0.206230 0.007481 0.005457 +13 0.304608 0.208731 0.008977 0.005912 +12 0.290844 0.206571 0.008977 0.006139 +11 0.298624 0.192360 0.005386 0.006367 +13 0.317923 0.206116 0.009276 0.006139 +12 0.384201 0.203502 0.009575 0.005457 +12 0.384201 0.208959 0.009575 0.005457 +13 0.332735 0.203615 0.008977 0.005684 +13 0.231747 0.203274 0.008079 0.005912 +12 0.558199 0.200887 0.008677 0.005684 +12 0.558199 0.206571 0.008677 0.005684 +12 0.427738 0.200773 0.008079 0.005457 +12 0.427738 0.206230 0.008079 0.005457 +13 0.243716 0.200887 0.006882 0.005684 +12 0.223220 0.199864 0.004788 0.003638 +13 0.211101 0.200773 0.007481 0.005457 +12 0.694794 0.198158 0.008977 0.005684 +12 0.694794 0.203843 0.008977 0.005684 +12 0.583483 0.198158 0.009575 0.005684 +12 0.583483 0.203843 0.009575 0.005684 +12 0.455266 0.198158 0.009276 0.005684 +12 0.455266 0.203843 0.009276 0.005684 +13 0.167265 0.198272 0.008378 0.005912 +12 0.822262 0.197817 0.010174 0.005912 +12 0.822262 0.203729 0.010174 0.005912 +12 0.727558 0.196112 0.009276 0.005230 +12 0.727558 0.201342 0.009276 0.005230 +13 0.856822 0.195771 0.008079 0.005457 +13 0.856822 0.201228 0.008079 0.005457 +12 0.618342 0.195543 0.008079 0.005002 +12 0.618342 0.200546 0.008079 0.005002 +12 0.483393 0.195657 0.008677 0.005230 +12 0.483393 0.200887 0.008677 0.005230 +13 0.259725 0.195543 0.008977 0.005912 +12 0.181777 0.195657 0.008677 0.006139 +13 0.154249 0.195430 0.008677 0.005684 +12 0.885099 0.193042 0.007780 0.005457 +12 0.885099 0.198499 0.007780 0.005457 +12 0.519001 0.193042 0.008079 0.005457 +12 0.519001 0.198499 0.008079 0.005457 +12 0.913226 0.190655 0.008378 0.005230 +12 0.913226 0.195884 0.008378 0.005230 +12 0.782615 0.190769 0.009276 0.005457 +12 0.782615 0.196226 0.009276 0.005457 +13 0.194345 0.190427 0.009276 0.006594 +13 0.305955 0.152797 0.008079 0.005912 +18 0.584231 0.150750 0.009276 0.006367 +12 0.455715 0.150750 0.009575 0.006367 +18 0.223519 0.149386 0.004788 0.003638 +12 0.352334 0.150296 0.009276 0.006367 +12 0.319868 0.150296 0.009575 0.006367 +13 0.292340 0.149955 0.008977 0.006594 +13 0.858468 0.148022 0.009575 0.006367 +12 0.727708 0.148022 0.009575 0.006367 +12 0.334381 0.147567 0.008079 0.005457 +13 0.233842 0.147340 0.008677 0.005912 +12 0.245362 0.144725 0.008977 0.006139 +13 0.211849 0.144839 0.008977 0.006367 +12 0.168761 0.141655 0.008977 0.006367 +13 0.261520 0.139609 0.008378 0.005912 +13 0.154249 0.139495 0.009276 0.005684 +13 0.182077 0.139382 0.009276 0.006367 +13 0.195990 0.133470 0.008378 0.006367 +11 0.619090 0.131423 0.009575 0.006821 +11 0.486236 0.131423 0.008378 0.006821 +11 0.758079 0.129604 0.009276 0.005912 +11 0.887193 0.128126 0.008378 0.005684 +11 0.324057 0.089927 0.006583 0.006594 +11 0.332735 0.076512 0.009575 0.006139 +12 0.080192 0.086289 0.003591 0.006594 +13 0.373130 0.082992 0.008378 0.006367 +18 0.362507 0.080605 0.006284 0.004320 +13 0.386744 0.080036 0.009276 0.005912 +13 0.352484 0.079923 0.008977 0.006594 +13 0.570916 0.077876 0.008977 0.006139 +13 0.442400 0.077649 0.008079 0.005684 +13 0.402005 0.077194 0.009874 0.006594 +13 0.844704 0.075716 0.008378 0.006367 +12 0.715290 0.075034 0.008079 0.005912 +13 0.584829 0.074920 0.008079 0.006594 +12 0.559096 0.075034 0.009276 0.006821 +13 0.456762 0.075034 0.008677 0.006821 +13 0.428935 0.074125 0.008677 0.006821 +12 0.294434 0.074466 0.008977 0.007503 +13 0.856822 0.073101 0.008079 0.005684 +13 0.822113 0.073442 0.008677 0.006367 +12 0.728606 0.072760 0.008977 0.005912 +13 0.695392 0.072874 0.008378 0.006139 +13 0.641682 0.072419 0.009276 0.006139 +13 0.507929 0.072533 0.009874 0.006367 +13 0.605177 0.071851 0.009276 0.005912 +13 0.470826 0.072078 0.009874 0.006367 +13 0.261370 0.071623 0.008677 0.006367 +13 0.899611 0.070487 0.008079 0.006821 +13 0.771694 0.069918 0.008378 0.006594 +13 0.744764 0.069577 0.008378 0.005912 +13 0.621634 0.069577 0.008677 0.005912 +13 0.484440 0.070032 0.008378 0.006821 +13 0.868791 0.069577 0.008677 0.006821 +13 0.655446 0.069691 0.008079 0.007049 +13 0.521544 0.069236 0.008378 0.006139 +12 0.912328 0.067644 0.008977 0.005684 +18 0.758528 0.067872 0.009575 0.006139 +12 0.213495 0.068440 0.008677 0.007276 +13 0.885548 0.067531 0.008677 0.006367 +12 0.784411 0.066849 0.007481 0.005912 +13 0.668462 0.067190 0.008378 0.006594 +13 0.533962 0.066508 0.009276 0.007049 +18 0.194794 0.065257 0.009575 0.006367 +13 0.925643 0.064802 0.008677 0.007276 +12 0.798025 0.064575 0.007181 0.006821 +12 0.156044 0.063552 0.008677 0.007503 +1 0.101287 0.720214 0.022442 0.034789 +0 0.100688 0.489882 0.022442 0.024329 +0 0.103082 0.202251 0.022442 0.024784 +3 0.833782 0.074920 0.006882 0.014779 +3 0.683573 0.071965 0.006882 0.012506 +2 0.100389 0.255912 0.020646 0.019327 +2 0.098893 0.595157 0.016457 0.019327 +2 0.099791 0.307526 0.018253 0.019782 +5 0.495362 0.074238 0.008677 0.008868 +3 0.708707 0.075375 0.010473 0.018417 +5 0.124028 0.489654 0.008079 0.014779 +5 0.124925 0.783652 0.007481 0.014325 +5 0.126122 0.147226 0.007481 0.011141 +4 0.364004 0.378013 0.009276 0.014325 +0 0.101885 0.784106 0.022442 0.023420 +2 0.100987 0.898022 0.019449 0.020236 +4 0.164722 0.357322 0.009276 0.014779 +5 0.125823 0.901660 0.008079 0.014779 +5 0.124626 0.721123 0.008079 0.014779 +5 0.123728 0.663824 0.007481 0.014779 +5 0.124327 0.845953 0.008677 0.014325 +2 0.098893 0.542633 0.020048 0.020691 +2 0.104279 0.953047 0.023639 0.020236 +5 0.125524 0.956230 0.008677 0.014779 +2 0.101885 0.842542 0.016457 0.018417 +4 0.094105 0.379377 0.008079 0.014779 +4 0.102184 0.374602 0.008079 0.014779 +5 0.110563 0.380969 0.008079 0.014779 +3 0.118791 0.374602 0.007780 0.014779 +3 0.103381 0.155412 0.008079 0.013415 +5 0.109814 0.155412 0.007780 0.013415 +4 0.096798 0.150409 0.008079 0.014779 +4 0.108019 0.145634 0.007780 0.014779 +4 0.099192 0.435766 0.008079 0.012051 +5 0.105625 0.435766 0.007780 0.012051 +4 0.092609 0.431446 0.008079 0.014779 +4 0.103830 0.426444 0.007780 0.014779 +4 0.103980 0.096976 0.008079 0.012960 +5 0.111011 0.096976 0.007780 0.012960 +4 0.097397 0.092656 0.008079 0.014779 +4 0.103680 0.088790 0.008079 0.014779 +4 0.109814 0.087653 0.007780 0.014779 +4 0.099791 0.672920 0.008079 0.014325 +5 0.107421 0.672920 0.007780 0.014325 +4 0.093806 0.667917 0.008079 0.014779 +4 0.105027 0.662460 0.007780 0.014779 +4 0.453770 0.847544 0.008079 0.014779 +3 0.462896 0.845498 0.007780 0.014779 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_27.jpg b/data_dataset/dvo/debug/debug_27.jpg new file mode 100644 index 0000000..af6e984 Binary files /dev/null and b/data_dataset/dvo/debug/debug_27.jpg differ diff --git a/data_dataset/dvo/debug/debug_27.txt b/data_dataset/dvo/debug/debug_27.txt new file mode 100644 index 0000000..b225f87 --- /dev/null +++ b/data_dataset/dvo/debug/debug_27.txt @@ -0,0 +1,505 @@ +7 0.202569 0.945593 0.011951 0.013403 +7 0.289812 0.945366 0.011951 0.012949 +6 0.364804 0.944230 0.008963 0.017038 +7 0.437108 0.845184 0.011951 0.012949 +9 0.772035 0.847910 0.008963 0.028851 +9 0.656409 0.845411 0.008366 0.024761 +6 0.456528 0.844502 0.008963 0.017946 +9 0.670750 0.845298 0.005976 0.042254 +10 0.658201 0.835302 0.005976 0.002272 +10 0.237227 0.790095 0.006573 0.002726 +7 0.903794 0.631872 0.011353 0.014312 +6 0.184942 0.631418 0.008963 0.017492 +6 0.285330 0.629600 0.008963 0.017492 +6 0.379743 0.583939 0.008963 0.016583 +10 0.799223 0.528623 0.006573 0.002272 +10 0.753809 0.484780 0.005976 0.002726 +10 0.571557 0.484780 0.007171 0.003180 +10 0.551539 0.484780 0.007768 0.003180 +7 0.149985 0.480350 0.011353 0.013403 +10 0.785480 0.466947 0.014341 0.002045 +10 0.354795 0.464902 0.005677 0.001590 +7 0.679116 0.472058 0.009561 0.015448 +10 0.387810 0.463199 0.006573 0.002726 +10 0.800120 0.433667 0.008963 0.003180 +10 0.404840 0.426624 0.005976 0.003180 +10 0.787870 0.391867 0.007171 0.004089 +7 0.150284 0.385847 0.011951 0.013403 +9 0.589483 0.377215 0.004780 0.019309 +9 0.476845 0.375170 0.004183 0.024307 +9 0.378249 0.372672 0.004183 0.028396 +10 0.683896 0.333712 0.005976 0.002272 +10 0.510308 0.328260 0.006573 0.002726 +10 0.356140 0.319173 0.011353 0.004998 +8 0.179265 0.319287 0.011353 0.006588 +6 0.713475 0.323603 0.008963 0.017038 +6 0.804900 0.322013 0.008963 0.017492 +6 0.629220 0.321445 0.008963 0.017265 +6 0.456827 0.321558 0.009561 0.017946 +6 0.544667 0.321104 0.009561 0.018855 +8 0.616970 0.236824 0.011353 0.007497 +10 0.379743 0.228987 0.006573 0.003180 +7 0.598745 0.228646 0.011951 0.012949 +7 0.510905 0.228192 0.011951 0.012949 +10 0.440394 0.223762 0.007171 0.002726 +8 0.423663 0.225466 0.011951 0.007497 +9 0.615178 0.224784 0.008963 0.016129 +9 0.404243 0.228305 0.006573 0.042708 +9 0.711085 0.222512 0.004780 0.022944 +10 0.876307 0.179010 0.006573 0.004543 +7 0.858381 0.170945 0.011353 0.013403 +7 0.773230 0.170945 0.011951 0.013403 +7 0.683597 0.170945 0.011951 0.013403 +7 0.599044 0.170718 0.011353 0.012494 +7 0.510009 0.170264 0.011353 0.013403 +7 0.421870 0.170036 0.011951 0.013857 +10 0.383627 0.128464 0.008366 0.002953 +7 0.477442 0.125511 0.007171 0.018401 +7 0.384673 0.116879 0.007469 0.014766 +10 0.375710 0.112562 0.006274 0.002953 +10 0.344189 0.109155 0.007171 0.002499 +10 0.463998 0.099046 0.008366 0.004998 +10 0.922916 0.088823 0.008366 0.003635 +10 0.337915 0.088142 0.011951 0.004543 +8 0.893039 0.079282 0.010756 0.007724 +7 0.857484 0.077351 0.008963 0.012494 +7 0.776218 0.077124 0.011353 0.012949 +10 0.278757 0.071786 0.007171 0.003635 +8 0.177174 0.071899 0.011951 0.007042 +6 0.242904 0.074171 0.009561 0.018855 +9 0.377652 0.074284 0.006573 0.027715 +17 0.508366 0.959109 0.010457 0.006815 +17 0.422020 0.959109 0.009860 0.006815 +17 0.686137 0.958769 0.009860 0.006588 +17 0.595459 0.958769 0.010158 0.007042 +17 0.860173 0.958201 0.009561 0.006361 +17 0.771586 0.958314 0.009860 0.006588 +11 0.149537 0.951840 0.009860 0.006361 +11 0.236032 0.951272 0.009561 0.006134 +12 0.327009 0.948546 0.008664 0.006134 +18 0.345384 0.942640 0.005976 0.004316 +12 0.437257 0.902431 0.010457 0.006134 +12 0.704063 0.902204 0.009860 0.006134 +11 0.274724 0.900727 0.009262 0.005906 +11 0.185987 0.900841 0.009860 0.006134 +17 0.329101 0.900386 0.010457 0.007042 +12 0.790708 0.898682 0.009860 0.006361 +11 0.237974 0.898455 0.009860 0.005906 +11 0.149836 0.898569 0.008664 0.006134 +12 0.689125 0.896751 0.009860 0.006134 +12 0.457574 0.895048 0.009262 0.005906 +12 0.745294 0.894025 0.009860 0.006134 +12 0.658201 0.891981 0.008366 0.005679 +12 0.773080 0.891527 0.009262 0.005679 +12 0.808933 0.890845 0.009860 0.005225 +12 0.527338 0.889482 0.008963 0.005679 +12 0.474156 0.889709 0.009561 0.006134 +12 0.420825 0.889823 0.009262 0.006361 +12 0.631162 0.889482 0.009262 0.006134 +12 0.721094 0.889028 0.009262 0.006134 +12 0.832686 0.885847 0.008963 0.006134 +12 0.883328 0.885507 0.009262 0.005906 +13 0.615028 0.884825 0.009262 0.006361 +18 0.872423 0.882440 0.005378 0.002953 +12 0.561249 0.883916 0.009262 0.006361 +12 0.509262 0.882894 0.009262 0.006134 +12 0.860472 0.881531 0.009561 0.006588 +12 0.919032 0.881531 0.008963 0.007042 +12 0.596504 0.878919 0.009262 0.006361 +12 0.543920 0.876079 0.009262 0.007042 +12 0.900359 0.872217 0.009262 0.005679 +12 0.704362 0.847683 0.009860 0.006134 +12 0.790708 0.844957 0.009262 0.006134 +12 0.686436 0.842685 0.008664 0.006134 +11 0.187183 0.841663 0.009262 0.005906 +11 0.275022 0.841322 0.008067 0.006134 +12 0.745294 0.839959 0.009262 0.006134 +11 0.237825 0.838823 0.008963 0.005679 +11 0.150433 0.839050 0.007469 0.006134 +11 0.485958 0.839505 0.005677 0.008405 +12 0.808485 0.837460 0.008366 0.005679 +12 0.773529 0.837574 0.008963 0.005906 +12 0.657753 0.837574 0.007469 0.005906 +17 0.328354 0.838142 0.010756 0.007042 +12 0.420376 0.835529 0.009561 0.005906 +18 0.819689 0.833939 0.005079 0.003180 +12 0.528682 0.835189 0.009860 0.006134 +12 0.721691 0.834961 0.008664 0.006134 +13 0.633552 0.834961 0.009262 0.006134 +12 0.831939 0.832122 0.009262 0.005906 +12 0.886167 0.832008 0.008963 0.006134 +12 0.616373 0.829964 0.009561 0.005679 +12 0.511353 0.829736 0.008664 0.006134 +12 0.563340 0.829282 0.009860 0.006134 +12 0.917538 0.826783 0.008366 0.006588 +12 0.862713 0.826783 0.008664 0.007042 +12 0.596803 0.823830 0.008664 0.006134 +12 0.546011 0.821899 0.008664 0.006815 +18 0.902002 0.818605 0.009561 0.005679 +17 0.328802 0.803385 0.010457 0.007497 +17 0.863161 0.794071 0.010756 0.006134 +17 0.863161 0.800204 0.010756 0.006134 +17 0.774425 0.794071 0.010756 0.006134 +17 0.774425 0.800204 0.010756 0.006134 +17 0.510457 0.794412 0.010457 0.007269 +17 0.422169 0.794298 0.010158 0.007042 +17 0.597699 0.791572 0.010457 0.006134 +17 0.597699 0.797706 0.010457 0.006134 +18 0.687631 0.797819 0.009860 0.006361 +12 0.687631 0.791458 0.009860 0.006361 +11 0.237377 0.788278 0.009262 0.005452 +11 0.170451 0.788392 0.009262 0.005679 +11 0.150284 0.788392 0.008366 0.005679 +11 0.260382 0.787937 0.009860 0.006588 +18 0.585450 0.743299 0.007469 0.004089 +18 0.584255 0.749091 0.007469 0.004771 +11 0.236779 0.742049 0.009262 0.005679 +11 0.149686 0.742390 0.009561 0.006361 +17 0.688527 0.740232 0.010457 0.005679 +17 0.688527 0.745911 0.010457 0.005679 +17 0.597998 0.740118 0.009860 0.005906 +17 0.597998 0.746025 0.009860 0.005906 +11 0.276068 0.739096 0.009561 0.006134 +11 0.186734 0.739323 0.009561 0.006588 +17 0.864057 0.737733 0.010158 0.006134 +17 0.864057 0.743866 0.010158 0.006134 +18 0.768898 0.741481 0.008664 0.005906 +12 0.767254 0.734325 0.005378 0.003862 +17 0.776666 0.737619 0.008664 0.005906 +18 0.366448 0.736256 0.009262 0.006361 +17 0.511652 0.735120 0.010457 0.005906 +17 0.511652 0.741027 0.010457 0.005906 +17 0.422916 0.735120 0.009860 0.005906 +17 0.422916 0.741027 0.009860 0.005906 +12 0.327607 0.733644 0.010457 0.006134 +17 0.327607 0.739777 0.010457 0.006134 +17 0.724529 0.690027 0.008963 0.006134 +11 0.688228 0.690027 0.009262 0.006134 +17 0.599791 0.689800 0.010457 0.006134 +11 0.220944 0.686733 0.004482 0.004543 +11 0.152226 0.683326 0.009262 0.006361 +11 0.236182 0.682758 0.009860 0.006134 +11 0.275321 0.680713 0.008664 0.005679 +11 0.187780 0.680940 0.009860 0.006134 +11 0.328503 0.680486 0.009262 0.006134 +11 0.903645 0.679577 0.008664 0.004771 +11 0.865999 0.679350 0.008664 0.005679 +17 0.775321 0.679123 0.010158 0.007042 +11 0.511353 0.677306 0.009262 0.005679 +11 0.547505 0.676851 0.008664 0.005679 +17 0.424111 0.677079 0.010457 0.007042 +12 0.384075 0.676624 0.009262 0.006134 +11 0.249477 0.645161 0.008963 0.006361 +11 0.150134 0.642549 0.008664 0.006588 +11 0.532417 0.637324 0.009561 0.005679 +11 0.837765 0.637097 0.009561 0.005679 +11 0.796385 0.637324 0.009262 0.006134 +11 0.729011 0.637324 0.009561 0.006134 +17 0.630714 0.637551 0.010158 0.006588 +13 0.591126 0.637324 0.009860 0.006588 +17 0.443532 0.637324 0.009860 0.006588 +12 0.401105 0.637097 0.009860 0.006134 +17 0.342994 0.637097 0.009561 0.006588 +17 0.250523 0.598478 0.011055 0.006588 +17 0.151479 0.595298 0.010158 0.007497 +11 0.342994 0.590073 0.009561 0.006134 +12 0.770093 0.585075 0.009262 0.006134 +17 0.884523 0.585189 0.009860 0.006815 +12 0.838064 0.582576 0.008963 0.005679 +12 0.798775 0.582803 0.009262 0.006134 +11 0.671497 0.580191 0.009262 0.006361 +12 0.568419 0.580077 0.009860 0.006588 +11 0.727667 0.580077 0.009262 0.007042 +11 0.632955 0.578146 0.009860 0.005906 +12 0.594114 0.577806 0.009860 0.005679 +11 0.442336 0.574852 0.009860 0.006134 +11 0.479086 0.572353 0.009262 0.005679 +11 0.535255 0.571786 0.009262 0.006361 +18 0.256498 0.542254 0.006872 0.002272 +12 0.569764 0.533962 0.010158 0.006134 +11 0.884822 0.533507 0.009262 0.006134 +12 0.770690 0.533507 0.009262 0.006588 +11 0.838512 0.531236 0.007469 0.005679 +12 0.798327 0.531236 0.007768 0.005679 +12 0.593815 0.528964 0.009262 0.006134 +11 0.632805 0.528737 0.009561 0.006134 +17 0.441440 0.528510 0.009262 0.006134 +12 0.404093 0.528510 0.009860 0.006134 +13 0.379444 0.528283 0.008366 0.006588 +11 0.533762 0.526011 0.009262 0.005679 +11 0.481177 0.526011 0.009860 0.005679 +11 0.729758 0.526011 0.008664 0.006134 +11 0.671945 0.526238 0.010158 0.006588 +13 0.287870 0.526011 0.009262 0.006134 +12 0.269943 0.523853 0.009262 0.006361 +12 0.305199 0.521922 0.009262 0.006134 +12 0.249627 0.520559 0.008067 0.007042 +11 0.344786 0.520104 0.009561 0.007042 +17 0.152076 0.520332 0.008963 0.007497 +12 0.208396 0.498978 0.009860 0.007497 +12 0.207798 0.480691 0.009860 0.006361 +11 0.169854 0.498296 0.009262 0.007042 +11 0.168957 0.480463 0.011055 0.006815 +18 0.106364 0.485461 0.004183 0.004089 +11 0.866149 0.483530 0.009561 0.005679 +12 0.595459 0.483303 0.009561 0.005679 +12 0.572154 0.483189 0.009561 0.005452 +12 0.551539 0.483189 0.008963 0.005452 +12 0.499552 0.483303 0.009561 0.005679 +12 0.481327 0.483303 0.009561 0.005679 +12 0.462354 0.483303 0.009860 0.005679 +12 0.444129 0.483076 0.009262 0.005225 +12 0.403794 0.483303 0.009860 0.005679 +12 0.382283 0.483189 0.009860 0.005452 +12 0.364655 0.483417 0.009262 0.005906 +12 0.838661 0.483303 0.009561 0.006134 +12 0.797879 0.483303 0.009262 0.006134 +12 0.770690 0.482962 0.009262 0.005452 +12 0.752465 0.483076 0.009860 0.005679 +12 0.730953 0.483417 0.009262 0.006361 +12 0.692411 0.483303 0.009860 0.006134 +12 0.671497 0.483076 0.009860 0.005679 +12 0.655512 0.483076 0.010158 0.005679 +12 0.634299 0.483303 0.009561 0.006134 +12 0.533164 0.483189 0.009860 0.005906 +12 0.344936 0.477624 0.009262 0.005679 +12 0.344936 0.483303 0.009262 0.005679 +17 0.249925 0.475125 0.010457 0.006134 +17 0.249925 0.481259 0.010457 0.006134 +11 0.838811 0.436279 0.009860 0.005679 +12 0.799223 0.436052 0.009561 0.006134 +12 0.770541 0.433553 0.009561 0.005679 +11 0.886017 0.433553 0.009860 0.006134 +11 0.670899 0.433326 0.009860 0.006134 +11 0.632656 0.430827 0.009860 0.005679 +12 0.593517 0.430713 0.008067 0.005906 +12 0.209591 0.430373 0.008664 0.005679 +11 0.729459 0.428328 0.009860 0.006134 +11 0.534957 0.428101 0.009262 0.006134 +11 0.481028 0.427760 0.010158 0.006361 +11 0.153421 0.427419 0.009860 0.006134 +11 0.442336 0.425375 0.008067 0.005225 +12 0.403197 0.425148 0.008664 0.005679 +11 0.344637 0.422649 0.009860 0.006588 +17 0.250822 0.422194 0.011055 0.007497 +18 0.178817 0.388687 0.005677 0.004089 +12 0.077682 0.382894 0.004183 0.005225 +11 0.825515 0.380622 0.004780 0.003408 +12 0.826561 0.375738 0.004482 0.004543 +11 0.840006 0.376988 0.009860 0.006134 +12 0.799970 0.377101 0.009860 0.006361 +11 0.887212 0.374716 0.008664 0.005679 +12 0.771885 0.374716 0.009262 0.006134 +11 0.672393 0.374035 0.009262 0.005679 +12 0.169256 0.373580 0.009262 0.005679 +11 0.633851 0.371990 0.009860 0.006134 +12 0.595309 0.371649 0.009262 0.005906 +12 0.570362 0.369264 0.008366 0.006588 +11 0.731252 0.369150 0.008664 0.006815 +11 0.481476 0.368582 0.008664 0.007042 +12 0.403197 0.367219 0.009860 0.006134 +11 0.441739 0.366311 0.009262 0.006134 +11 0.534359 0.363585 0.009262 0.007042 +12 0.383328 0.363244 0.009561 0.007269 +12 0.211085 0.360859 0.009262 0.006588 +12 0.190768 0.359041 0.009262 0.007497 +11 0.345832 0.358473 0.009860 0.007269 +17 0.250523 0.358587 0.010457 0.008405 +11 0.684195 0.335870 0.008963 0.005679 +11 0.598596 0.333371 0.009860 0.006588 +11 0.859576 0.330872 0.009561 0.005679 +11 0.511055 0.330872 0.009262 0.006134 +11 0.774425 0.328033 0.010158 0.006361 +11 0.423962 0.327806 0.009561 0.006361 +12 0.078727 0.305316 0.004482 0.010904 +17 0.683149 0.290209 0.009860 0.007042 +17 0.332238 0.290209 0.010756 0.007042 +17 0.241858 0.287256 0.010457 0.007497 +17 0.600090 0.286915 0.009860 0.007269 +17 0.857783 0.284530 0.010158 0.006588 +17 0.511802 0.284303 0.010158 0.006588 +17 0.154616 0.283848 0.010457 0.007042 +17 0.774275 0.282031 0.010457 0.007042 +17 0.423364 0.280781 0.010158 0.007269 +18 0.741111 0.243071 0.005079 0.003635 +13 0.542277 0.236256 0.004780 0.004089 +13 0.545414 0.206611 0.008664 0.006588 +12 0.454736 0.236824 0.005976 0.005225 +13 0.458171 0.210245 0.009262 0.006588 +12 0.380490 0.230918 0.009262 0.005225 +12 0.365850 0.228532 0.009860 0.006815 +12 0.440245 0.226261 0.008067 0.005452 +12 0.350762 0.226261 0.008963 0.005452 +11 0.155512 0.226147 0.009860 0.006134 +12 0.528981 0.223762 0.009860 0.006361 +12 0.332537 0.223648 0.009561 0.006588 +12 0.403496 0.222740 0.005079 0.007951 +13 0.826860 0.221717 0.009262 0.006361 +13 0.278309 0.221149 0.008067 0.005225 +13 0.616074 0.221149 0.007768 0.005679 +18 0.617419 0.236938 0.007469 0.005452 +12 0.807589 0.218878 0.009561 0.006134 +12 0.731999 0.218991 0.009561 0.006361 +12 0.911712 0.218878 0.009262 0.006588 +11 0.244249 0.218423 0.009262 0.006134 +12 0.205408 0.218196 0.010457 0.006588 +12 0.894084 0.216606 0.008664 0.005679 +11 0.775172 0.216833 0.009860 0.006588 +12 0.716612 0.216493 0.009860 0.005906 +13 0.699582 0.213880 0.009262 0.006134 +11 0.861219 0.213426 0.008664 0.006134 +12 0.474007 0.212971 0.008664 0.006588 +12 0.681954 0.211040 0.008664 0.006815 +12 0.564834 0.210927 0.008664 0.007042 +12 0.649089 0.208201 0.008664 0.006588 +12 0.633552 0.204566 0.008664 0.007497 +11 0.730953 0.189232 0.008664 0.006815 +12 0.730654 0.171627 0.009262 0.006134 +11 0.700179 0.189687 0.010457 0.007724 +11 0.699880 0.171399 0.009860 0.006588 +11 0.615626 0.189119 0.009262 0.007042 +11 0.615028 0.171059 0.009860 0.006361 +11 0.647894 0.189119 0.009860 0.007497 +12 0.647445 0.171059 0.010158 0.005906 +12 0.821930 0.185825 0.006573 0.004543 +12 0.822528 0.178896 0.007768 0.005225 +11 0.792351 0.185938 0.008366 0.005679 +11 0.792202 0.179237 0.009262 0.005906 +11 0.262175 0.185938 0.009262 0.006588 +11 0.441440 0.184802 0.009262 0.005679 +11 0.440992 0.177874 0.007171 0.004998 +12 0.474007 0.183780 0.008664 0.006815 +12 0.473260 0.177987 0.008366 0.004771 +12 0.293995 0.183439 0.007768 0.006134 +12 0.560950 0.182303 0.008067 0.004316 +11 0.561996 0.175375 0.008963 0.004998 +13 0.154168 0.183326 0.008366 0.006361 +11 0.173588 0.180713 0.008963 0.006134 +17 0.332985 0.180486 0.011055 0.008405 +17 0.333284 0.170264 0.010457 0.007951 +12 0.205258 0.177987 0.008366 0.005225 +13 0.910367 0.176511 0.008963 0.005452 +12 0.910367 0.181963 0.008963 0.005452 +11 0.876457 0.176397 0.008067 0.005679 +11 0.876457 0.182076 0.008067 0.005679 +11 0.528832 0.175716 0.008366 0.005679 +11 0.528832 0.181395 0.008366 0.005679 +17 0.242904 0.170718 0.010158 0.007042 +11 0.240813 0.188323 0.007768 0.006815 +12 0.382880 0.130850 0.009262 0.005906 +12 0.205707 0.130736 0.008664 0.006134 +13 0.365252 0.128578 0.008664 0.006815 +12 0.189872 0.128010 0.008067 0.006134 +12 0.351359 0.125852 0.008366 0.005452 +11 0.155214 0.125284 0.009262 0.005225 +12 0.333284 0.123467 0.009262 0.006134 +17 0.244547 0.122785 0.009860 0.007497 +12 0.826262 0.121649 0.009262 0.006134 +11 0.648491 0.121536 0.008664 0.005906 +17 0.862862 0.121422 0.009561 0.006588 +12 0.475202 0.120968 0.007469 0.006134 +17 0.684045 0.121195 0.010457 0.007042 +17 0.513744 0.120627 0.010457 0.007269 +12 0.602629 0.118696 0.008963 0.006134 +12 0.776815 0.118696 0.010158 0.006588 +11 0.426053 0.117901 0.009561 0.006361 +12 0.475500 0.086892 0.007469 0.006134 +12 0.475052 0.068719 0.007768 0.006134 +12 0.562145 0.085529 0.007469 0.005225 +12 0.561846 0.066674 0.009262 0.006588 +12 0.730505 0.085529 0.007171 0.005679 +12 0.730953 0.067356 0.009262 0.006588 +12 0.458321 0.084393 0.007171 0.005679 +12 0.459068 0.065766 0.010457 0.006588 +12 0.716164 0.082576 0.007171 0.006134 +12 0.716313 0.064630 0.008664 0.006588 +12 0.545115 0.082122 0.009262 0.006588 +12 0.545115 0.064289 0.009262 0.006361 +17 0.424709 0.081667 0.009860 0.006588 +12 0.424709 0.063040 0.008664 0.007497 +11 0.819988 0.079736 0.009262 0.004998 +11 0.829101 0.057360 0.008963 0.006588 +12 0.701076 0.080191 0.008067 0.005906 +12 0.700478 0.061222 0.008067 0.006134 +11 0.511802 0.079850 0.007171 0.005679 +12 0.511503 0.060541 0.008366 0.006134 +12 0.684643 0.077124 0.008664 0.006134 +12 0.684643 0.058837 0.008664 0.006815 +13 0.601584 0.077465 0.011055 0.007269 +13 0.600986 0.058950 0.009860 0.007497 +13 0.334329 0.073716 0.009561 0.005679 +11 0.279205 0.073603 0.008067 0.005452 +13 0.351509 0.071104 0.009262 0.006815 +12 0.792949 0.069627 0.008366 0.005679 +12 0.367195 0.067924 0.007768 0.006361 +12 0.877950 0.067469 0.009262 0.006361 +12 0.383478 0.065993 0.008664 0.006134 +12 0.809830 0.054407 0.009262 0.007042 +12 0.913803 0.053953 0.009262 0.006588 +11 0.894981 0.051908 0.009860 0.006134 +1 0.099641 0.385393 0.021811 0.039755 +1 0.097102 0.696729 0.022109 0.035893 +0 0.097849 0.784984 0.023006 0.023853 +5 0.128025 0.072126 0.008067 0.014312 +0 0.103227 0.169128 0.023603 0.023398 +5 0.584852 0.821331 0.007469 0.015675 +2 0.099641 0.274989 0.018823 0.018855 +5 0.126083 0.118810 0.007768 0.014085 +5 0.124141 0.382667 0.007469 0.014766 +5 0.124440 0.278510 0.008664 0.015448 +1 0.102629 0.074739 0.021811 0.040436 +4 0.313564 0.680032 0.009262 0.015220 +4 0.829848 0.375852 0.006274 0.012949 +1 0.098745 0.432417 0.022408 0.040209 +1 0.102928 0.228192 0.021811 0.040663 +0 0.098148 0.535325 0.021811 0.033394 +1 0.097251 0.846547 0.021811 0.037937 +5 0.583358 0.573489 0.007469 0.014312 +5 0.387063 0.421286 0.008664 0.014312 +5 0.125934 0.168787 0.008067 0.014085 +5 0.225127 0.837460 0.008664 0.008405 +4 0.223932 0.682303 0.009262 0.015220 +2 0.095459 0.630509 0.018823 0.018401 +5 0.315357 0.835416 0.007469 0.014312 +5 0.675680 0.838596 0.007469 0.012494 +5 0.873170 0.826783 0.006872 0.010677 +5 0.587541 0.787483 0.008067 0.012494 +2 0.388856 0.896297 0.011652 0.013857 +5 0.431282 0.421967 0.008664 0.013857 +5 0.237078 0.472853 0.007469 0.015220 +4 0.786824 0.377442 0.009860 0.011586 +5 0.140275 0.835870 0.008664 0.014312 +1 0.096654 0.737733 0.021811 0.036574 +4 0.819839 0.885166 0.006573 0.012040 +5 0.619809 0.573716 0.007469 0.013857 +4 0.732746 0.839732 0.009262 0.015675 +2 0.098446 0.945593 0.018823 0.019764 +5 0.122797 0.892095 0.008366 0.012267 +5 0.122050 0.584848 0.008664 0.017492 +5 0.122946 0.785211 0.007469 0.013857 +5 0.122348 0.736256 0.008664 0.014993 +2 0.095757 0.583712 0.020615 0.020218 +2 0.097251 0.321104 0.019420 0.018401 +5 0.122647 0.535438 0.008664 0.014993 +4 0.391545 0.529191 0.009860 0.014766 +5 0.123842 0.480236 0.008067 0.014539 +0 0.099343 0.480350 0.023603 0.024307 +5 0.125934 0.225239 0.008067 0.014312 +4 0.097550 0.906293 0.008067 0.012494 +5 0.103974 0.906293 0.007768 0.012494 +4 0.090977 0.901068 0.008067 0.014312 +4 0.102181 0.888573 0.007768 0.014312 +5 0.742605 0.229782 0.008067 0.014312 +5 0.749925 0.230009 0.007768 0.014312 +4 0.099940 0.127101 0.008067 0.012494 +5 0.107559 0.127101 0.007768 0.012494 +4 0.094562 0.122785 0.008067 0.014312 +4 0.106364 0.109382 0.007768 0.014312 +4 0.425904 0.528851 0.008067 0.013176 +4 0.430236 0.528851 0.007768 0.013176 +4 0.425306 0.574852 0.008067 0.014312 +4 0.430236 0.574625 0.007768 0.014312 +4 0.401404 0.588028 0.008067 0.014312 +5 0.409919 0.585984 0.007768 0.014312 +4 0.615327 0.530100 0.008067 0.013403 +4 0.619659 0.530100 0.007768 0.013403 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_28.jpg b/data_dataset/dvo/debug/debug_28.jpg new file mode 100644 index 0000000..9091440 Binary files /dev/null and b/data_dataset/dvo/debug/debug_28.jpg differ diff --git a/data_dataset/dvo/debug/debug_28.txt b/data_dataset/dvo/debug/debug_28.txt new file mode 100644 index 0000000..ce2d7c8 --- /dev/null +++ b/data_dataset/dvo/debug/debug_28.txt @@ -0,0 +1,472 @@ +7 0.797427 0.943724 0.011969 0.013870 +7 0.254638 0.942588 0.011969 0.013415 +8 0.634051 0.939404 0.011969 0.007049 +8 0.505087 0.939632 0.012567 0.007503 +8 0.388091 0.938495 0.011969 0.007049 +6 0.720227 0.941223 0.009575 0.017963 +6 0.176242 0.941905 0.009575 0.018417 +6 0.290545 0.940086 0.008378 0.017508 +10 0.163674 0.912460 0.007181 0.001819 +7 0.796529 0.902115 0.011370 0.013415 +10 0.633154 0.898136 0.012567 0.005002 +8 0.507481 0.898249 0.012567 0.006594 +8 0.388689 0.898022 0.013166 0.007049 +7 0.256732 0.901432 0.011370 0.012960 +6 0.722023 0.900978 0.009575 0.018417 +6 0.291143 0.900523 0.009575 0.018417 +7 0.797726 0.850045 0.011370 0.013870 +7 0.612208 0.852092 0.008977 0.007958 +6 0.721125 0.849363 0.008977 0.016144 +6 0.646020 0.848681 0.009575 0.018417 +9 0.470975 0.848681 0.004189 0.031151 +10 0.785458 0.810141 0.005984 0.001819 +10 0.750748 0.788085 0.013166 0.004093 +7 0.670257 0.791155 0.006583 0.017963 +10 0.657989 0.783765 0.005984 0.002729 +10 0.474267 0.770236 0.010772 0.001592 +10 0.504488 0.768759 0.008977 0.004548 +10 0.270197 0.752387 0.011969 0.002729 +10 0.745063 0.749886 0.007780 0.002274 +8 0.161879 0.750000 0.011969 0.006594 +10 0.244464 0.746476 0.005984 0.001819 +9 0.928785 0.760687 0.010174 0.039791 +7 0.377020 0.739427 0.012567 0.008186 +10 0.374327 0.737722 0.005984 0.001592 +7 0.256732 0.690882 0.012567 0.012960 +8 0.376721 0.687244 0.011969 0.006594 +8 0.582885 0.686789 0.011370 0.006594 +8 0.482645 0.687017 0.011969 0.007049 +6 0.788450 0.690200 0.008378 0.017053 +6 0.696290 0.689973 0.009575 0.018417 +6 0.286954 0.688381 0.008378 0.017963 +10 0.658887 0.652115 0.006583 0.003183 +9 0.371035 0.651205 0.005386 0.021828 +9 0.574806 0.650978 0.008378 0.020464 +7 0.255236 0.647908 0.011969 0.013415 +10 0.362956 0.642792 0.007181 0.002729 +6 0.285757 0.645634 0.009575 0.018872 +7 0.256433 0.604479 0.011969 0.012960 +6 0.285458 0.604025 0.008977 0.017508 +10 0.249252 0.551160 0.008378 0.003183 +10 0.686415 0.551160 0.010174 0.005002 +10 0.487433 0.551160 0.010772 0.005002 +7 0.254937 0.519895 0.011370 0.012960 +7 0.878217 0.516485 0.011969 0.007049 +10 0.779773 0.516598 0.012567 0.005002 +8 0.684321 0.516485 0.011969 0.007049 +8 0.584680 0.516257 0.012567 0.006594 +8 0.479653 0.516485 0.011969 0.007049 +8 0.377020 0.516257 0.012567 0.006594 +6 0.284560 0.518986 0.008378 0.017508 +10 0.462896 0.433606 0.009575 0.004548 +9 0.486535 0.425762 0.007780 0.020236 +6 0.684321 0.380286 0.009575 0.016598 +9 0.647816 0.295362 0.011969 0.017281 +10 0.640036 0.299454 0.007181 0.004548 +10 0.599042 0.078672 0.012567 0.005002 +10 0.538600 0.076853 0.006583 0.004093 +10 0.685518 0.072760 0.005984 0.002274 +9 0.757331 0.075375 0.009575 0.027058 +10 0.758528 0.067303 0.005984 0.002274 +9 0.235189 0.072647 0.008977 0.024329 +10 0.370437 0.050932 0.006583 0.005002 +10 0.695691 0.048431 0.005984 0.002729 +9 0.690006 0.060823 0.008977 0.036153 +10 0.681927 0.045475 0.007181 0.003183 +11 0.852334 0.956799 0.009276 0.005912 +11 0.141532 0.956230 0.009575 0.005684 +12 0.232047 0.955775 0.009874 0.006594 +12 0.773938 0.946226 0.009276 0.005684 +11 0.851885 0.915985 0.009575 0.006139 +11 0.774686 0.905412 0.009575 0.005912 +12 0.140485 0.902115 0.009874 0.006594 +12 0.160233 0.899841 0.009874 0.005684 +12 0.177289 0.896885 0.009276 0.006139 +12 0.231149 0.896658 0.009276 0.006594 +12 0.197935 0.894725 0.009874 0.005457 +17 0.852633 0.869145 0.008677 0.007049 +12 0.852932 0.856185 0.009276 0.005684 +12 0.852334 0.843906 0.006882 0.003865 +12 0.853232 0.838108 0.008677 0.005002 +11 0.775733 0.869145 0.009276 0.007049 +11 0.775434 0.853001 0.009874 0.005684 +18 0.774835 0.840268 0.009874 0.005684 +12 0.588570 0.855048 0.009575 0.005230 +12 0.588570 0.860277 0.009575 0.005230 +13 0.466936 0.854934 0.010473 0.005912 +13 0.466936 0.860846 0.010473 0.005912 +17 0.474417 0.843906 0.007481 0.005684 +12 0.475015 0.837312 0.006284 0.005230 +17 0.232346 0.854479 0.010473 0.005912 +12 0.232346 0.860391 0.010473 0.005912 +11 0.239078 0.842087 0.004189 0.003865 +13 0.237582 0.837085 0.011969 0.008413 +11 0.140634 0.852774 0.008977 0.005230 +12 0.197487 0.852547 0.008977 0.005684 +12 0.356373 0.838222 0.011969 0.007958 +17 0.351436 0.854479 0.011670 0.005912 +17 0.351436 0.860391 0.011670 0.005912 +11 0.358917 0.843224 0.005087 0.004320 +13 0.467684 0.819577 0.010772 0.007049 +13 0.468881 0.797635 0.004788 0.004093 +17 0.351885 0.819122 0.010174 0.007049 +11 0.357421 0.795134 0.012867 0.005457 +18 0.357421 0.800591 0.012867 0.005457 +11 0.232944 0.818668 0.010473 0.007049 +12 0.238630 0.794566 0.013465 0.006139 +12 0.238630 0.800705 0.013465 0.006139 +12 0.197187 0.814575 0.008977 0.006139 +12 0.932226 0.814006 0.003890 0.005457 +13 0.627618 0.814120 0.008677 0.006139 +11 0.141083 0.814234 0.008677 0.006367 +13 0.612507 0.811392 0.009575 0.005684 +18 0.684171 0.806162 0.009276 0.005684 +12 0.590066 0.806162 0.008977 0.005684 +13 0.666966 0.803547 0.009575 0.005912 +13 0.756583 0.801160 0.009276 0.005684 +12 0.647965 0.801273 0.009874 0.005912 +12 0.852334 0.801046 0.008079 0.005912 +12 0.852035 0.788313 0.009874 0.006367 +13 0.741323 0.798431 0.009874 0.005684 +18 0.814183 0.795930 0.009575 0.006139 +12 0.722322 0.795930 0.010174 0.006139 +13 0.798025 0.792747 0.009575 0.006139 +12 0.777528 0.790814 0.009874 0.005912 +11 0.292340 0.769782 0.008378 0.006594 +17 0.303561 0.751933 0.015260 0.003638 +12 0.313136 0.768872 0.009276 0.006594 +12 0.274237 0.766371 0.009276 0.006139 +13 0.257181 0.763643 0.009874 0.006139 +12 0.430730 0.761369 0.009874 0.005230 +12 0.234141 0.761596 0.009276 0.005684 +12 0.410233 0.761369 0.009575 0.006139 +18 0.394375 0.758640 0.008977 0.006139 +12 0.552364 0.756139 0.008977 0.005684 +12 0.534560 0.756253 0.009276 0.005912 +13 0.377319 0.756139 0.008977 0.005684 +12 0.352184 0.756139 0.009575 0.005684 +13 0.516906 0.753411 0.009874 0.006594 +13 0.493567 0.753411 0.009874 0.006594 +13 0.627917 0.750910 0.008079 0.006139 +12 0.468133 0.750910 0.009276 0.006139 +13 0.613256 0.748636 0.009874 0.006139 +12 0.071065 0.747613 0.005087 0.006821 +12 0.683872 0.743406 0.008677 0.006594 +12 0.588719 0.743292 0.009874 0.006367 +13 0.668612 0.740678 0.009276 0.006594 +13 0.756433 0.738745 0.008977 0.006367 +12 0.646768 0.738063 0.008677 0.005912 +13 0.740425 0.735675 0.009276 0.006594 +13 0.814034 0.733288 0.009276 0.006367 +12 0.719479 0.732719 0.009276 0.006139 +13 0.797127 0.730446 0.008977 0.007049 +12 0.775733 0.726808 0.009276 0.006139 +12 0.851735 0.724989 0.009276 0.007049 +12 0.232496 0.704525 0.009575 0.006139 +17 0.142579 0.704980 0.010473 0.007049 +11 0.751945 0.703843 0.008378 0.005684 +11 0.850539 0.703615 0.009276 0.006139 +18 0.659785 0.703615 0.009575 0.006139 +12 0.229952 0.661323 0.009276 0.006139 +17 0.141831 0.661551 0.010174 0.006594 +11 0.908288 0.650750 0.009874 0.005912 +11 0.850838 0.650637 0.009874 0.005684 +11 0.658288 0.650523 0.010174 0.005457 +12 0.714841 0.650523 0.009575 0.006367 +12 0.514811 0.650409 0.009276 0.006139 +11 0.457211 0.650409 0.009575 0.006139 +12 0.414273 0.650296 0.009276 0.005912 +12 0.392430 0.650296 0.009874 0.005912 +12 0.752693 0.648363 0.009874 0.005684 +12 0.555805 0.647681 0.009874 0.006139 +13 0.376870 0.647681 0.009874 0.006139 +12 0.772292 0.645634 0.008378 0.005684 +12 0.576601 0.645180 0.008378 0.005684 +13 0.363106 0.645180 0.007481 0.005684 +12 0.790694 0.643133 0.009276 0.006139 +12 0.598294 0.642678 0.009874 0.006139 +12 0.344853 0.642678 0.009276 0.006139 +12 0.809545 0.640405 0.009276 0.006139 +12 0.615200 0.640177 0.008378 0.006594 +17 0.099042 0.611642 0.006583 0.007731 +17 0.851436 0.610505 0.009874 0.006367 +12 0.413525 0.609936 0.008977 0.006139 +11 0.344554 0.610050 0.009874 0.006367 +17 0.659934 0.610164 0.009874 0.007503 +12 0.809994 0.607663 0.009575 0.006139 +11 0.753441 0.607663 0.010174 0.006139 +11 0.615051 0.607435 0.009874 0.005684 +11 0.556254 0.607663 0.009575 0.006139 +11 0.513914 0.607435 0.009874 0.005684 +11 0.457361 0.607549 0.009276 0.005912 +12 0.141083 0.602888 0.009874 0.005684 +12 0.161430 0.600387 0.009874 0.006139 +12 0.178785 0.597885 0.008677 0.005684 +12 0.196439 0.595612 0.009276 0.005684 +12 0.231448 0.592428 0.008677 0.005684 +11 0.556403 0.574693 0.008677 0.005684 +12 0.287403 0.574920 0.009276 0.006139 +12 0.850838 0.574466 0.008677 0.006139 +12 0.807750 0.574238 0.009874 0.005684 +12 0.659934 0.574466 0.009874 0.006139 +12 0.614153 0.574238 0.009276 0.005684 +11 0.345751 0.574693 0.009874 0.006594 +12 0.306852 0.574693 0.008677 0.006594 +11 0.751795 0.574238 0.009276 0.006594 +12 0.412627 0.573556 0.008977 0.006139 +13 0.270646 0.571965 0.009276 0.005684 +12 0.455715 0.571510 0.009575 0.005684 +12 0.255087 0.569918 0.009276 0.006139 +11 0.263764 0.556958 0.006882 0.003865 +12 0.872232 0.569236 0.009575 0.005684 +12 0.678486 0.569122 0.009874 0.006367 +12 0.475613 0.569009 0.009874 0.006139 +12 0.890335 0.566735 0.009874 0.006139 +12 0.697786 0.566508 0.009575 0.005684 +12 0.495212 0.566508 0.009575 0.005684 +12 0.232196 0.566735 0.008977 0.006139 +12 0.071364 0.565257 0.004488 0.004093 +12 0.513914 0.564006 0.009874 0.006139 +12 0.909186 0.563779 0.009276 0.006594 +12 0.717235 0.563779 0.010772 0.006594 +17 0.140335 0.558663 0.010772 0.006367 +17 0.140335 0.565030 0.010772 0.006367 +12 0.194943 0.518190 0.007481 0.005457 +12 0.230551 0.517849 0.008079 0.005684 +11 0.141532 0.515803 0.009575 0.006139 +17 0.740126 0.484879 0.009874 0.006139 +17 0.633154 0.485107 0.010174 0.006594 +17 0.849940 0.484879 0.010473 0.007049 +11 0.173848 0.482151 0.009575 0.006139 +11 0.139587 0.482265 0.009276 0.006367 +11 0.581987 0.474193 0.009575 0.005684 +11 0.545183 0.474193 0.010174 0.005684 +17 0.436864 0.474193 0.010174 0.006594 +11 0.376870 0.473965 0.009874 0.006139 +11 0.340215 0.474079 0.009575 0.006367 +17 0.244315 0.473965 0.010473 0.007049 +17 0.846349 0.444179 0.010473 0.006594 +17 0.740425 0.443952 0.010473 0.006139 +17 0.630910 0.443952 0.010473 0.007049 +11 0.140485 0.440769 0.009874 0.006139 +11 0.175494 0.440541 0.010473 0.006594 +12 0.581688 0.433151 0.008977 0.005912 +12 0.261670 0.432810 0.009276 0.005684 +12 0.282914 0.427581 0.009874 0.006139 +12 0.244016 0.427353 0.009874 0.005684 +12 0.543238 0.425648 0.009874 0.005912 +12 0.299671 0.425307 0.009874 0.006139 +12 0.563884 0.423033 0.009276 0.006139 +12 0.338570 0.422806 0.009874 0.005684 +12 0.489378 0.420532 0.009874 0.006594 +12 0.358019 0.420077 0.010473 0.006594 +12 0.507929 0.417576 0.009874 0.006139 +13 0.471424 0.417804 0.009874 0.006594 +12 0.378665 0.417576 0.009874 0.006139 +13 0.454668 0.414393 0.009874 0.006139 +12 0.396469 0.414620 0.010174 0.006594 +12 0.601287 0.414166 0.009276 0.006594 +12 0.434919 0.412347 0.008677 0.007503 +12 0.582436 0.398931 0.009276 0.007049 +12 0.630461 0.390859 0.009575 0.006367 +12 0.543537 0.390746 0.009276 0.006139 +12 0.561640 0.388245 0.008977 0.005684 +17 0.140934 0.387790 0.009575 0.006594 +12 0.488630 0.385289 0.009575 0.006139 +12 0.508977 0.382674 0.008977 0.005457 +13 0.472322 0.382560 0.009276 0.006139 +11 0.907840 0.380855 0.010174 0.006367 +11 0.849042 0.380741 0.009874 0.006139 +12 0.814333 0.380741 0.009874 0.006139 +12 0.791592 0.380741 0.009874 0.006139 +18 0.603082 0.380741 0.009874 0.006139 +13 0.456463 0.380173 0.009874 0.006821 +12 0.775135 0.378240 0.009276 0.005684 +12 0.436565 0.377785 0.009575 0.005684 +13 0.758977 0.375739 0.009276 0.006139 +17 0.244016 0.375512 0.009874 0.006594 +17 0.338869 0.374261 0.010473 0.006821 +12 0.741023 0.373238 0.009276 0.005684 +17 0.140186 0.353229 0.010473 0.007503 +17 0.140485 0.344134 0.009874 0.006594 +17 0.337971 0.352206 0.011071 0.007276 +17 0.337672 0.338904 0.010473 0.007049 +17 0.243417 0.351864 0.009874 0.006594 +17 0.243417 0.339131 0.009874 0.006594 +12 0.068971 0.352547 0.004488 0.012960 +12 0.068971 0.338108 0.004488 0.004548 +17 0.740425 0.336971 0.010473 0.005912 +17 0.740425 0.342883 0.010473 0.005912 +11 0.632705 0.336517 0.010473 0.005002 +17 0.632705 0.341519 0.010473 0.005002 +17 0.848294 0.334925 0.010772 0.004548 +17 0.848294 0.339472 0.010772 0.004548 +17 0.848294 0.344020 0.010772 0.004548 +17 0.543986 0.333788 0.010772 0.005912 +17 0.543986 0.339700 0.010772 0.005912 +17 0.436116 0.333333 0.009874 0.005912 +17 0.436116 0.339245 0.009874 0.005912 +12 0.140485 0.298431 0.009874 0.006139 +12 0.159037 0.295475 0.009874 0.005684 +12 0.204219 0.292974 0.009276 0.006139 +12 0.176391 0.293201 0.009874 0.006594 +12 0.815081 0.291041 0.009575 0.005912 +11 0.740126 0.290928 0.009874 0.005684 +12 0.707510 0.290700 0.009276 0.005230 +12 0.688360 0.290700 0.009276 0.006139 +17 0.245212 0.290018 0.009874 0.006594 +12 0.847247 0.289109 0.008677 0.005684 +17 0.338570 0.289791 0.009874 0.007049 +13 0.671753 0.288199 0.010174 0.005684 +12 0.870287 0.286494 0.008079 0.005457 +13 0.653950 0.285698 0.009874 0.006139 +17 0.545033 0.285016 0.009874 0.006594 +17 0.437911 0.285016 0.009874 0.006594 +12 0.888989 0.284106 0.009575 0.005684 +12 0.632107 0.283197 0.009276 0.005684 +12 0.907989 0.281378 0.009276 0.005684 +17 0.235039 0.249318 0.009874 0.007049 +17 0.152454 0.249090 0.009874 0.006594 +17 0.850688 0.246589 0.010772 0.007049 +11 0.618492 0.243292 0.009575 0.005912 +11 0.579743 0.243406 0.008677 0.006139 +17 0.480102 0.243406 0.010473 0.006139 +11 0.759425 0.236357 0.010174 0.005684 +11 0.796978 0.236357 0.009874 0.006594 +18 0.671005 0.236357 0.010473 0.006594 +11 0.431029 0.230559 0.009276 0.005912 +11 0.401107 0.230673 0.009276 0.006139 +17 0.323309 0.230673 0.010473 0.007049 +11 0.430880 0.212710 0.008977 0.005684 +11 0.401257 0.212710 0.008977 0.005684 +17 0.323459 0.213165 0.010174 0.006594 +17 0.850389 0.210891 0.010174 0.006594 +11 0.289348 0.210323 0.009575 0.006367 +17 0.479204 0.208163 0.009874 0.006594 +11 0.617445 0.207481 0.009874 0.006139 +11 0.578845 0.207481 0.009276 0.006139 +12 0.274387 0.205434 0.009575 0.005684 +11 0.797876 0.200659 0.009276 0.006139 +17 0.758677 0.200773 0.009874 0.006367 +17 0.669210 0.200432 0.010473 0.006594 +12 0.258378 0.200432 0.009874 0.006594 +12 0.235637 0.197704 0.009874 0.005684 +13 0.206164 0.192474 0.008378 0.005230 +12 0.188809 0.187926 0.010174 0.006139 +12 0.175045 0.182469 0.008977 0.007049 +12 0.151257 0.180196 0.008677 0.006139 +17 0.234889 0.170191 0.010772 0.007049 +17 0.234740 0.161778 0.009276 0.005684 +17 0.151556 0.162005 0.010473 0.006139 +12 0.150359 0.169964 0.006882 0.006594 +17 0.850987 0.161551 0.010174 0.006139 +17 0.671005 0.158822 0.010473 0.006139 +17 0.671005 0.164961 0.010473 0.006139 +17 0.758528 0.158254 0.010772 0.005912 +17 0.758528 0.164166 0.010772 0.005912 +17 0.478905 0.158595 0.010473 0.006594 +17 0.323309 0.158595 0.010473 0.006594 +17 0.579443 0.158481 0.010473 0.007276 +17 0.402304 0.158367 0.010473 0.007049 +17 0.673399 0.126421 0.010473 0.007731 +17 0.759575 0.126080 0.010473 0.007958 +17 0.400958 0.122897 0.011370 0.007049 +12 0.401706 0.114370 0.008677 0.005457 +17 0.323609 0.122897 0.011071 0.007049 +17 0.323010 0.115393 0.009874 0.005684 +17 0.153351 0.121646 0.011071 0.006367 +17 0.236236 0.121646 0.008677 0.005912 +18 0.246409 0.118690 0.008677 0.005912 +17 0.851586 0.117894 0.010174 0.007049 +17 0.481149 0.117440 0.010174 0.006139 +17 0.481149 0.123579 0.010174 0.006139 +17 0.579144 0.116644 0.011071 0.006367 +17 0.579144 0.123010 0.011071 0.006367 +12 0.686565 0.075034 0.009276 0.005912 +12 0.338270 0.074238 0.009276 0.006139 +12 0.702723 0.072647 0.009276 0.006594 +12 0.900808 0.070487 0.008079 0.005912 +12 0.758378 0.069804 0.008079 0.005457 +12 0.729354 0.069918 0.008677 0.005684 +12 0.321664 0.069463 0.009575 0.005684 +12 0.355476 0.069236 0.008977 0.006139 +12 0.916966 0.067872 0.009276 0.006139 +18 0.885847 0.067985 0.009276 0.006367 +12 0.796978 0.067872 0.009276 0.006139 +12 0.772142 0.067531 0.009276 0.006367 +11 0.236685 0.066962 0.007181 0.006139 +12 0.370886 0.066735 0.009874 0.006594 +11 0.275733 0.066621 0.009276 0.006367 +17 0.153351 0.066735 0.010473 0.006594 +12 0.813585 0.065030 0.009575 0.005912 +13 0.871035 0.064688 0.009575 0.006139 +12 0.579294 0.064461 0.009575 0.006594 +12 0.401706 0.064234 0.009276 0.006139 +12 0.850539 0.062642 0.009276 0.006594 +12 0.595452 0.062187 0.009575 0.006594 +12 0.536355 0.061846 0.009874 0.006821 +12 0.417564 0.061733 0.009874 0.006594 +12 0.618941 0.059686 0.008079 0.006139 +12 0.552962 0.059345 0.008378 0.005457 +13 0.520197 0.059459 0.007481 0.005684 +12 0.639587 0.059459 0.008677 0.006594 +12 0.432974 0.059231 0.008378 0.006139 +12 0.668312 0.057185 0.009874 0.006594 +13 0.496709 0.056730 0.008378 0.006594 +12 0.450180 0.056730 0.009276 0.006594 +11 0.481598 0.053774 0.008677 0.006139 +0 0.093208 0.153593 0.023040 0.022965 +5 0.746110 0.065371 0.009874 0.017508 +2 0.089318 0.941451 0.018851 0.017963 +0 0.091113 0.849591 0.022442 0.024329 +1 0.091412 0.559459 0.021843 0.039791 +3 0.785009 0.065371 0.007481 0.017508 +5 0.470826 0.049682 0.007481 0.013415 +5 0.717086 0.066508 0.008079 0.014325 +0 0.091113 0.380514 0.022442 0.023874 +5 0.114452 0.904616 0.008079 0.016144 +3 0.628815 0.059004 0.007481 0.019327 +5 0.607271 0.055593 0.008677 0.014325 +0 0.090515 0.289563 0.021245 0.032060 +2 0.089916 0.646544 0.018851 0.019327 +5 0.510323 0.054911 0.008677 0.015689 +5 0.659336 0.155866 0.008677 0.014779 +1 0.092609 0.107208 0.021843 0.039336 +4 0.658737 0.126535 0.006284 0.009777 +5 0.115949 0.152683 0.008677 0.012960 +5 0.115051 0.603797 0.008079 0.012960 +2 0.089916 0.689745 0.018851 0.019327 +1 0.093208 0.069236 0.021843 0.033424 +1 0.091412 0.798431 0.021843 0.039336 +3 0.928935 0.852092 0.010473 0.031151 +5 0.422053 0.373238 0.008079 0.013870 +2 0.087822 0.429172 0.020646 0.019327 +5 0.423549 0.408026 0.008677 0.014325 +4 0.529773 0.425534 0.009276 0.016598 +5 0.113256 0.945316 0.008079 0.013870 +2 0.089318 0.900750 0.020048 0.019327 +5 0.481598 0.747954 0.006284 0.010232 +5 0.365799 0.751819 0.008079 0.013415 +5 0.113854 0.432128 0.008079 0.015234 +5 0.114752 0.848909 0.008677 0.013870 +5 0.117744 0.064461 0.007481 0.012960 +5 0.113854 0.649727 0.008079 0.013870 +5 0.116547 0.106071 0.007481 0.015234 +2 0.089019 0.470555 0.021843 0.019327 +2 0.090066 0.233743 0.017355 0.018190 +2 0.094255 0.197817 0.014961 0.016371 +0 0.087672 0.604820 0.013764 0.022738 +5 0.086026 0.763302 0.008079 0.014097 +4 0.092310 0.760118 0.008079 0.014097 +5 0.098444 0.760118 0.007780 0.014097 +4 0.085428 0.754661 0.008079 0.014097 +4 0.091712 0.750568 0.008079 0.014097 +4 0.097846 0.741473 0.007780 0.014097 +4 0.090814 0.526035 0.008079 0.012506 +5 0.097247 0.526035 0.007780 0.012506 +4 0.084829 0.521373 0.008079 0.014097 +5 0.096649 0.516826 0.007780 0.014097 +4 0.082136 0.334925 0.008079 0.014097 +4 0.088719 0.330377 0.008079 0.014097 +5 0.095452 0.329923 0.007780 0.014097 +3 0.931478 0.804911 0.004788 0.014097 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_29.jpg b/data_dataset/dvo/debug/debug_29.jpg new file mode 100644 index 0000000..3f9795a Binary files /dev/null and b/data_dataset/dvo/debug/debug_29.jpg differ diff --git a/data_dataset/dvo/debug/debug_29.txt b/data_dataset/dvo/debug/debug_29.txt new file mode 100644 index 0000000..d41cef2 --- /dev/null +++ b/data_dataset/dvo/debug/debug_29.txt @@ -0,0 +1,460 @@ +10 0.316049 0.946944 0.020622 0.002499 +10 0.319635 0.944444 0.012253 0.002045 +10 0.333383 0.943536 0.006276 0.002045 +10 0.372833 0.942286 0.007472 0.003636 +10 0.363270 0.941718 0.007472 0.002954 +10 0.369845 0.938991 0.014644 0.002045 +9 0.848924 0.945126 0.004483 0.027039 +10 0.769725 0.934219 0.008667 0.002954 +9 0.357890 0.932175 0.008667 0.017496 +9 0.201883 0.929789 0.005081 0.023631 +10 0.383293 0.896387 0.006874 0.002727 +10 0.535415 0.890593 0.008667 0.002954 +9 0.511506 0.881731 0.007472 0.025222 +10 0.358936 0.875142 0.008368 0.002499 +6 0.481172 0.877414 0.008966 0.019314 +10 0.313359 0.867189 0.014644 0.002045 +9 0.297669 0.876505 0.010161 0.028857 +10 0.319038 0.864690 0.010460 0.002499 +10 0.451733 0.861622 0.008069 0.002727 +10 0.772415 0.827880 0.007472 0.003863 +10 0.853407 0.825381 0.006874 0.003863 +9 0.823521 0.834356 0.011656 0.027721 +8 0.345935 0.824017 0.009265 0.008407 +9 0.704573 0.833333 0.009265 0.036583 +8 0.498954 0.822768 0.008069 0.007726 +6 0.203377 0.826971 0.009863 0.019768 +10 0.478033 0.773347 0.009265 0.005226 +10 0.214734 0.771302 0.006276 0.002954 +10 0.220114 0.769484 0.008667 0.002045 +10 0.366856 0.767666 0.008069 0.002954 +10 0.219516 0.766303 0.006276 0.002045 +10 0.251494 0.766985 0.006874 0.004317 +10 0.400329 0.764713 0.008069 0.002499 +10 0.223102 0.764940 0.012253 0.003863 +10 0.455021 0.758123 0.006276 0.002045 +10 0.308279 0.759032 0.014047 0.003863 +7 0.479528 0.761986 0.007472 0.017042 +8 0.463389 0.756760 0.008667 0.007498 +10 0.455021 0.733356 0.011058 0.003408 +10 0.445756 0.732447 0.006874 0.003408 +10 0.553646 0.730629 0.006276 0.002045 +10 0.514495 0.731311 0.006874 0.004317 +10 0.203676 0.728812 0.006874 0.002499 +10 0.638225 0.728812 0.010460 0.004772 +10 0.388374 0.720632 0.006874 0.003408 +9 0.290048 0.724949 0.008667 0.027494 +10 0.291542 0.715633 0.006874 0.002499 +10 0.225792 0.709271 0.008069 0.002499 +10 0.215929 0.706998 0.008667 0.002499 +9 0.213837 0.716769 0.014047 0.028403 +10 0.172893 0.705749 0.011058 0.003181 +10 0.243724 0.706090 0.009265 0.004317 +9 0.835475 0.655306 0.004483 0.017723 +7 0.191124 0.650193 0.012851 0.007953 +8 0.369845 0.649057 0.011656 0.007498 +7 0.290646 0.649511 0.012253 0.008407 +10 0.784967 0.647466 0.007472 0.002954 +10 0.674686 0.648603 0.011656 0.005226 +8 0.570383 0.648830 0.012253 0.007498 +8 0.466677 0.648830 0.012851 0.007953 +6 0.752092 0.651556 0.009863 0.018405 +8 0.605051 0.600432 0.011656 0.007953 +7 0.395248 0.603158 0.011656 0.013860 +10 0.301704 0.598160 0.007472 0.002954 +8 0.190825 0.599409 0.011656 0.008634 +7 0.604453 0.539082 0.011656 0.010679 +7 0.395846 0.540445 0.012851 0.013860 +7 0.204274 0.540445 0.012253 0.013860 +7 0.184848 0.540445 0.012851 0.013860 +6 0.755678 0.535446 0.006874 0.023404 +9 0.262552 0.480686 0.006874 0.018859 +9 0.166318 0.475006 0.005678 0.025222 +10 0.893455 0.441604 0.006276 0.002499 +10 0.355798 0.431152 0.008069 0.003408 +9 0.848924 0.428425 0.004483 0.023404 +10 0.889868 0.421609 0.008667 0.003408 +10 0.720114 0.417064 0.007472 0.002954 +10 0.803497 0.416383 0.006874 0.003408 +8 0.718619 0.418655 0.014047 0.030675 +10 0.703078 0.406612 0.011656 0.003863 +9 0.262253 0.360032 0.006874 0.022949 +8 0.866557 0.353670 0.011656 0.007498 +8 0.634638 0.353670 0.011656 0.007044 +8 0.551255 0.353670 0.009863 0.007044 +8 0.736252 0.353670 0.012851 0.007953 +8 0.459205 0.353215 0.012253 0.007498 +8 0.370442 0.352988 0.012851 0.007953 +8 0.298117 0.352761 0.011656 0.007498 +10 0.864764 0.303454 0.009265 0.005226 +8 0.635834 0.303681 0.011656 0.008862 +8 0.552750 0.303681 0.011656 0.007953 +8 0.458906 0.303681 0.011656 0.008407 +8 0.371040 0.303454 0.011656 0.007953 +8 0.297519 0.303454 0.011656 0.008862 +8 0.738643 0.303227 0.011656 0.007953 +9 0.724895 0.263917 0.004483 0.021132 +10 0.698296 0.255965 0.006276 0.003408 +9 0.877615 0.248012 0.007472 0.018859 +9 0.357292 0.253692 0.009265 0.030220 +7 0.574268 0.249148 0.011656 0.013406 +9 0.426629 0.251193 0.004483 0.029766 +8 0.388972 0.245740 0.011656 0.008862 +9 0.309773 0.255283 0.011058 0.027948 +9 0.528243 0.245967 0.009265 0.029766 +10 0.746115 0.190298 0.006276 0.002045 +10 0.749103 0.187571 0.011058 0.002954 +8 0.455918 0.183935 0.012851 0.007044 +8 0.371339 0.183708 0.012253 0.007498 +10 0.265541 0.181663 0.006276 0.004317 +6 0.529438 0.186662 0.009265 0.018405 +6 0.577854 0.183027 0.004483 0.022949 +10 0.741931 0.157578 0.012253 0.002045 +10 0.733861 0.155078 0.006874 0.002499 +10 0.772265 0.138718 0.007173 0.002499 +9 0.746115 0.142808 0.013449 0.024313 +9 0.902421 0.140763 0.006874 0.024313 +9 0.616707 0.139173 0.004483 0.023404 +9 0.651674 0.141900 0.009863 0.022495 +9 0.879109 0.138718 0.011656 0.025676 +10 0.359384 0.131902 0.006276 0.002954 +10 0.881351 0.128494 0.007770 0.002499 +10 0.485206 0.150307 0.011656 0.004317 +10 0.456964 0.127357 0.007770 0.002954 +10 0.528542 0.077369 0.006874 0.004317 +18 0.826061 0.936833 0.006575 0.004999 +12 0.894650 0.936378 0.005678 0.004544 +12 0.769576 0.936605 0.008368 0.004999 +11 0.731769 0.936605 0.008069 0.005908 +11 0.852959 0.936492 0.008368 0.006135 +11 0.162732 0.936605 0.009265 0.006817 +13 0.321279 0.928425 0.009564 0.005453 +13 0.291094 0.928539 0.008966 0.006589 +13 0.478033 0.926267 0.009265 0.006589 +12 0.235206 0.925812 0.008368 0.006589 +13 0.339659 0.925358 0.009265 0.006589 +13 0.307382 0.925471 0.009265 0.006817 +13 0.443066 0.924563 0.008069 0.006817 +12 0.205619 0.923086 0.008966 0.006589 +12 0.389719 0.923086 0.008368 0.007498 +13 0.494471 0.921609 0.008069 0.006362 +11 0.599821 0.921382 0.008368 0.006817 +13 0.460849 0.921836 0.008966 0.007726 +12 0.359235 0.920586 0.008368 0.006135 +12 0.545726 0.918996 0.007770 0.006135 +12 0.702779 0.917746 0.009863 0.007271 +12 0.512851 0.916610 0.009564 0.006817 +11 0.633742 0.915815 0.009265 0.007044 +11 0.769725 0.895024 0.008667 0.006362 +12 0.893604 0.894456 0.008966 0.005681 +11 0.822026 0.894229 0.009265 0.005681 +11 0.730574 0.894797 0.009265 0.006817 +11 0.852510 0.893774 0.009265 0.006135 +13 0.290347 0.886503 0.008667 0.006135 +13 0.321727 0.885935 0.009265 0.006817 +13 0.307681 0.883663 0.008667 0.005908 +12 0.235953 0.883776 0.009265 0.006135 +13 0.338165 0.883436 0.008667 0.005908 +13 0.478631 0.882640 0.009863 0.005681 +13 0.443963 0.882640 0.008667 0.005681 +12 0.204274 0.881163 0.008667 0.006362 +13 0.460699 0.879800 0.007472 0.006362 +12 0.389719 0.879914 0.009564 0.006589 +12 0.495368 0.879459 0.008667 0.006589 +12 0.600867 0.879346 0.009265 0.006817 +12 0.358488 0.877755 0.008667 0.005908 +12 0.704573 0.876278 0.008667 0.005226 +12 0.546175 0.876733 0.007472 0.006589 +12 0.161536 0.875369 0.009265 0.006135 +12 0.087418 0.873892 0.005081 0.004999 +11 0.634489 0.874006 0.009564 0.006135 +12 0.513897 0.874120 0.009863 0.006362 +12 0.115212 0.872756 0.007472 0.004544 +12 0.160490 0.827766 0.007770 0.006362 +13 0.124328 0.825267 0.006575 0.004999 +14 0.131949 0.814247 0.006276 0.003408 +12 0.823969 0.827539 0.005977 0.009998 +12 0.772564 0.825040 0.006575 0.005453 +12 0.770921 0.831175 0.006874 0.004999 +12 0.599223 0.823563 0.007770 0.006135 +12 0.896593 0.822540 0.008368 0.005453 +12 0.896444 0.835946 0.008069 0.005908 +12 0.852660 0.822768 0.008966 0.005908 +11 0.852660 0.828675 0.008966 0.005908 +11 0.706366 0.819814 0.008667 0.005908 +12 0.706366 0.825721 0.008667 0.005908 +11 0.634190 0.818223 0.008368 0.006362 +13 0.203825 0.785162 0.008966 0.006135 +13 0.234907 0.784822 0.009564 0.006362 +13 0.221309 0.782663 0.008667 0.005681 +12 0.178721 0.782777 0.008368 0.005908 +13 0.253586 0.782209 0.008667 0.005681 +12 0.356545 0.781868 0.008966 0.006362 +13 0.390317 0.781413 0.008368 0.005908 +12 0.897191 0.779823 0.008368 0.005453 +11 0.160789 0.779709 0.009564 0.006589 +11 0.167962 0.763349 0.004782 0.003863 +12 0.321279 0.779027 0.008966 0.006589 +13 0.406455 0.778459 0.008368 0.006362 +12 0.373580 0.778573 0.009564 0.006589 +13 0.545726 0.778459 0.009564 0.006817 +11 0.554244 0.763122 0.005678 0.002954 +13 0.513001 0.778346 0.008667 0.006589 +12 0.291094 0.776869 0.008368 0.005908 +12 0.476838 0.775846 0.009265 0.005681 +13 0.562164 0.775846 0.008966 0.006135 +13 0.530484 0.775846 0.008966 0.006135 +17 0.600867 0.775506 0.009863 0.006362 +11 0.705320 0.774938 0.008368 0.006135 +11 0.825463 0.774256 0.009564 0.005681 +11 0.772116 0.774483 0.009265 0.006135 +12 0.444860 0.773006 0.009265 0.006362 +11 0.854603 0.771984 0.008069 0.006135 +13 0.235356 0.726312 0.008069 0.006589 +17 0.247609 0.710748 0.014047 0.004544 +12 0.252241 0.723131 0.008368 0.005226 +13 0.205021 0.726312 0.008368 0.006589 +12 0.220412 0.723358 0.008069 0.005226 +12 0.180365 0.723586 0.008069 0.005681 +13 0.389868 0.722449 0.008667 0.005226 +13 0.357741 0.722449 0.008368 0.005226 +12 0.160042 0.721200 0.009265 0.005908 +12 0.320681 0.720404 0.007770 0.005681 +13 0.404662 0.719836 0.009564 0.006362 +13 0.373132 0.719950 0.008667 0.006589 +13 0.546772 0.719609 0.009265 0.006362 +13 0.513299 0.719496 0.009265 0.007044 +12 0.291990 0.718019 0.007770 0.005453 +13 0.563808 0.717110 0.009265 0.005908 +13 0.530335 0.717110 0.009265 0.005908 +12 0.476390 0.716996 0.007770 0.006135 +12 0.875374 0.716087 0.007770 0.005226 +12 0.443664 0.714383 0.009863 0.006362 +12 0.660191 0.713701 0.008966 0.006362 +12 0.897340 0.712793 0.008667 0.005908 +12 0.853556 0.713020 0.009564 0.006362 +13 0.648685 0.711543 0.008667 0.005226 +12 0.633443 0.711088 0.008667 0.005681 +12 0.826210 0.709952 0.008667 0.006135 +11 0.598775 0.709043 0.008667 0.006135 +12 0.772415 0.707794 0.009863 0.006362 +12 0.751943 0.705294 0.009564 0.005908 +11 0.706964 0.702795 0.008667 0.006362 +11 0.784967 0.649284 0.007472 0.005681 +17 0.854752 0.649511 0.010759 0.006589 +11 0.434698 0.608612 0.009265 0.006589 +11 0.469665 0.605771 0.009863 0.006362 +11 0.682158 0.603499 0.009265 0.005908 +11 0.641512 0.603386 0.009265 0.006589 +11 0.543335 0.603386 0.009564 0.006589 +13 0.669008 0.601568 0.006874 0.003863 +12 0.262104 0.602818 0.008966 0.006817 +17 0.754782 0.600773 0.009863 0.005908 +17 0.855499 0.601000 0.010460 0.006817 +11 0.301106 0.600432 0.008667 0.005681 +11 0.352809 0.597705 0.007472 0.006589 +12 0.641363 0.551693 0.008966 0.005908 +12 0.433802 0.551238 0.008667 0.006362 +11 0.545278 0.551238 0.009265 0.006817 +13 0.145995 0.548739 0.005081 0.003636 +18 0.145846 0.543172 0.008368 0.005226 +12 0.871638 0.549307 0.007472 0.005681 +11 0.455918 0.548853 0.008667 0.005226 +12 0.487597 0.548512 0.007472 0.005453 +12 0.889420 0.546126 0.008966 0.006135 +11 0.222504 0.545899 0.009265 0.005681 +11 0.222504 0.551579 0.009265 0.005681 +12 0.160490 0.545671 0.008368 0.005681 +12 0.160490 0.551352 0.008368 0.005681 +12 0.262253 0.545899 0.008667 0.006589 +12 0.905409 0.543399 0.008667 0.005681 +11 0.666467 0.543286 0.008966 0.005453 +12 0.854603 0.543172 0.008667 0.005681 +12 0.696653 0.543172 0.008368 0.005681 +12 0.315302 0.543399 0.008368 0.006135 +11 0.753437 0.543058 0.008966 0.005908 +11 0.355350 0.540332 0.009564 0.006362 +11 0.287507 0.538173 0.008966 0.005681 +11 0.785266 0.529652 0.008667 0.006362 +12 0.542738 0.499205 0.007770 0.006362 +13 0.819038 0.496478 0.008069 0.006362 +12 0.354752 0.494206 0.008368 0.005908 +13 0.803945 0.493979 0.008368 0.005908 +12 0.605649 0.491366 0.008667 0.006135 +11 0.570980 0.491252 0.008069 0.005908 +12 0.785714 0.490911 0.008368 0.006135 +12 0.206665 0.488525 0.008667 0.006362 +11 0.470562 0.488071 0.009265 0.006362 +12 0.768978 0.487957 0.009564 0.006589 +11 0.435595 0.486253 0.008667 0.005453 +11 0.641363 0.486140 0.007770 0.005681 +11 0.262702 0.486026 0.008966 0.005453 +11 0.379558 0.485912 0.009564 0.005681 +12 0.223252 0.486026 0.008966 0.005908 +12 0.194262 0.485571 0.008368 0.004999 +18 0.194262 0.490570 0.008368 0.004999 +12 0.183353 0.485912 0.008667 0.006589 +12 0.751046 0.485685 0.009564 0.005681 +11 0.679617 0.485912 0.008966 0.006135 +11 0.302301 0.483413 0.009863 0.006135 +12 0.161536 0.483072 0.009265 0.005908 +12 0.855499 0.482845 0.008069 0.005908 +12 0.905111 0.482731 0.008667 0.006589 +12 0.888972 0.480118 0.008069 0.005908 +12 0.872684 0.477505 0.007770 0.006135 +12 0.606246 0.435128 0.009265 0.005453 +11 0.546025 0.435015 0.009564 0.006135 +11 0.753586 0.431493 0.008667 0.006362 +12 0.680514 0.429107 0.008368 0.005226 +11 0.395099 0.429448 0.008966 0.005908 +11 0.354603 0.429221 0.009265 0.005908 +13 0.723849 0.428880 0.008966 0.005681 +11 0.642110 0.426494 0.009265 0.006362 +13 0.918559 0.426267 0.008667 0.006362 +14 0.709205 0.426153 0.009564 0.006589 +12 0.470562 0.424449 0.008069 0.004544 +12 0.161835 0.424563 0.008667 0.005226 +14 0.513897 0.424335 0.008069 0.005226 +12 0.223401 0.424335 0.008667 0.005226 +12 0.888524 0.423654 0.007770 0.005681 +11 0.853407 0.421382 0.009265 0.005681 +12 0.501644 0.421609 0.009265 0.007044 +11 0.436342 0.421382 0.010161 0.006589 +13 0.819038 0.421041 0.009265 0.006362 +12 0.074268 0.420245 0.004483 0.005681 +11 0.302002 0.418882 0.009265 0.006135 +13 0.803347 0.418314 0.008966 0.005453 +11 0.263748 0.417064 0.008667 0.006135 +12 0.784818 0.415815 0.008368 0.005908 +12 0.186043 0.363213 0.003885 0.005226 +12 0.263449 0.348784 0.007472 0.004999 +13 0.263897 0.300500 0.007173 0.008407 +11 0.878960 0.263463 0.008966 0.005681 +11 0.877466 0.253124 0.008368 0.004544 +11 0.825314 0.260282 0.009265 0.006589 +12 0.825314 0.242104 0.009265 0.005681 +11 0.728482 0.257782 0.008069 0.005226 +11 0.728781 0.244603 0.009863 0.006135 +18 0.695457 0.257328 0.008966 0.006135 +11 0.694411 0.241650 0.009265 0.005681 +11 0.287059 0.255056 0.007472 0.004317 +11 0.287657 0.248580 0.008069 0.005453 +12 0.849074 0.255283 0.009564 0.006135 +11 0.650478 0.254601 0.009863 0.006135 +18 0.837119 0.253238 0.007770 0.005226 +11 0.617902 0.252102 0.009265 0.006135 +17 0.620143 0.241309 0.010161 0.006817 +11 0.310371 0.245853 0.008667 0.005453 +11 0.310371 0.251307 0.008667 0.005453 +11 0.358189 0.243240 0.008667 0.005681 +11 0.358189 0.248921 0.008667 0.005681 +18 0.243425 0.241650 0.005678 0.004317 +14 0.263150 0.241195 0.005678 0.004317 +11 0.431261 0.240514 0.010161 0.005681 +11 0.431261 0.246194 0.010161 0.005681 +11 0.456515 0.237787 0.009265 0.005681 +11 0.456515 0.243467 0.009265 0.005681 +12 0.243425 0.235969 0.006276 0.004317 +11 0.529886 0.235515 0.008368 0.005226 +11 0.529886 0.240741 0.008368 0.005226 +11 0.826509 0.211202 0.009265 0.006589 +11 0.835176 0.184163 0.006276 0.004317 +12 0.767035 0.207112 0.008667 0.006589 +11 0.651524 0.204953 0.008368 0.005908 +12 0.728930 0.204272 0.008966 0.006362 +11 0.695457 0.202000 0.008966 0.006362 +12 0.848476 0.197342 0.008966 0.005681 +17 0.880604 0.194728 0.007472 0.004999 +11 0.618948 0.191434 0.008966 0.006135 +13 0.573670 0.190752 0.008069 0.005226 +13 0.262104 0.188934 0.004782 0.003863 +13 0.265989 0.179732 0.004782 0.004090 +18 0.301554 0.183140 0.006575 0.002727 +12 0.575912 0.140423 0.007770 0.003181 +11 0.529289 0.140650 0.008368 0.004999 +13 0.771369 0.140763 0.007770 0.005681 +13 0.786461 0.138264 0.008069 0.006135 +13 0.729976 0.138378 0.009863 0.006362 +11 0.696204 0.138037 0.009265 0.006589 +11 0.827107 0.135310 0.009265 0.005681 +13 0.747161 0.135537 0.008368 0.006135 +11 0.652570 0.135197 0.007472 0.005453 +12 0.392259 0.134742 0.006874 0.005908 +11 0.358787 0.134628 0.007472 0.006135 +13 0.908846 0.133606 0.009564 0.006362 +11 0.621040 0.132356 0.008966 0.006135 +12 0.879857 0.130879 0.008966 0.005453 +14 0.265840 0.129289 0.004483 0.003636 +12 0.457561 0.129630 0.008966 0.005226 +14 0.495368 0.129630 0.008069 0.005681 +14 0.479378 0.126676 0.008966 0.006135 +11 0.431411 0.126676 0.008667 0.006135 +12 0.312911 0.123949 0.010161 0.006135 +11 0.287507 0.121336 0.008966 0.006362 +14 0.514644 0.067712 0.008966 0.005908 +12 0.514644 0.073620 0.008966 0.005908 +12 0.518380 0.059418 0.006874 0.007044 +12 0.486999 0.057941 0.005081 0.007726 +1 0.207262 0.188253 0.022415 0.041127 +1 0.207860 0.139400 0.021219 0.036128 +0 0.209653 0.248693 0.022415 0.024767 +4 0.191721 0.787207 0.009265 0.012952 +3 0.251494 0.544308 0.007472 0.014315 +4 0.500448 0.719836 0.009863 0.015451 +4 0.458010 0.488639 0.009265 0.015678 +4 0.586521 0.922404 0.009265 0.012952 +2 0.207561 0.305272 0.017035 0.019768 +2 0.097579 0.940354 0.020024 0.017950 +4 0.586671 0.880141 0.009564 0.015678 +1 0.093395 0.774256 0.021817 0.041127 +4 0.813359 0.210748 0.009265 0.014769 +2 0.093694 0.601113 0.018231 0.020223 +2 0.206814 0.355260 0.016139 0.018859 +1 0.092499 0.721313 0.022415 0.041581 +4 0.290048 0.485458 0.009265 0.015678 +4 0.586820 0.823336 0.009265 0.016587 +3 0.841751 0.823222 0.007472 0.020904 +0 0.093246 0.473756 0.020323 0.033174 +4 0.228332 0.177687 0.007770 0.012270 +4 0.236103 0.135651 0.008966 0.013633 +0 0.227884 0.125880 0.008069 0.010452 +4 0.114764 0.598273 0.009564 0.014088 +4 0.243873 0.297660 0.007770 0.013179 +4 0.121937 0.720518 0.008966 0.014997 +4 0.113867 0.711656 0.008368 0.013633 +4 0.123431 0.773233 0.008368 0.014997 +4 0.114764 0.765053 0.008966 0.014997 +4 0.131201 0.760736 0.008368 0.011815 +4 0.124328 0.424903 0.008368 0.014542 +4 0.116557 0.416496 0.009564 0.014997 +4 0.132397 0.414451 0.008966 0.013633 +4 0.841901 0.649739 0.009564 0.014315 +4 0.116856 0.937514 0.008966 0.015451 +0 0.097131 0.410134 0.007770 0.009543 +3 0.506874 0.067598 0.008368 0.020223 +4 0.123132 0.656896 0.008966 0.014997 +4 0.130903 0.643945 0.008966 0.013633 +4 0.228183 0.240627 0.009265 0.015451 +4 0.236103 0.249716 0.008966 0.015451 +4 0.122983 0.605317 0.009265 0.015451 +4 0.131201 0.594865 0.008966 0.015451 +4 0.227286 0.302431 0.009265 0.015451 +4 0.234907 0.310157 0.008966 0.015451 +4 0.116408 0.819814 0.009265 0.015451 +5 0.123132 0.827085 0.008966 0.015451 +4 0.124178 0.944785 0.009265 0.015451 +4 0.132995 0.933879 0.008966 0.015451 +4 0.236252 0.356964 0.009265 0.015451 +4 0.244471 0.348557 0.008966 0.015451 +4 0.087717 0.426267 0.009265 0.015451 +4 0.097131 0.421722 0.008966 0.015451 +5 0.074567 0.877755 0.003885 0.015451 +3 0.074567 0.888662 0.003885 0.015451 +4 0.116109 0.468075 0.009265 0.015451 +4 0.124178 0.473983 0.009265 0.015451 +4 0.132397 0.466485 0.008966 0.015451 +4 0.086970 0.822768 0.007770 0.015451 +4 0.086970 0.830948 0.007770 0.015451 +4 0.114913 0.532606 0.009265 0.015451 +4 0.122684 0.540786 0.009265 0.015451 +4 0.130604 0.531243 0.008966 0.015451 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_3.jpg b/data_dataset/dvo/debug/debug_3.jpg new file mode 100644 index 0000000..dd5f615 Binary files /dev/null and b/data_dataset/dvo/debug/debug_3.jpg differ diff --git a/data_dataset/dvo/debug/debug_3.txt b/data_dataset/dvo/debug/debug_3.txt new file mode 100644 index 0000000..fc08ed8 --- /dev/null +++ b/data_dataset/dvo/debug/debug_3.txt @@ -0,0 +1,579 @@ +8 0.155446 0.936221 0.012268 0.007503 +7 0.261969 0.938267 0.012268 0.013415 +6 0.615350 0.938267 0.010473 0.017963 +6 0.579743 0.938267 0.011071 0.018872 +6 0.369689 0.937813 0.011071 0.017963 +6 0.405595 0.936903 0.009874 0.018872 +6 0.226960 0.936903 0.010473 0.019782 +9 0.389138 0.882788 0.004488 0.020691 +9 0.742220 0.831628 0.004488 0.038427 +9 0.459455 0.823215 0.006284 0.021601 +9 0.460952 0.770691 0.009276 0.031151 +10 0.501945 0.767281 0.006284 0.005230 +10 0.559994 0.716576 0.007481 0.002046 +10 0.750299 0.715894 0.011071 0.005230 +10 0.619240 0.715211 0.006284 0.004775 +9 0.428636 0.709982 0.005685 0.011596 +8 0.225464 0.706571 0.012268 0.007503 +10 0.251197 0.629945 0.012268 0.005230 +10 0.448085 0.629491 0.012268 0.005230 +8 0.642280 0.629491 0.011670 0.007958 +8 0.832885 0.628581 0.012268 0.007049 +9 0.661730 0.586289 0.005087 0.015234 +10 0.885548 0.573556 0.012268 0.005230 +8 0.499850 0.573556 0.012867 0.007049 +8 0.476511 0.578331 0.014063 0.019327 +8 0.861011 0.573784 0.013465 0.012051 +9 0.303561 0.569918 0.012867 0.037062 +10 0.155745 0.523533 0.008079 0.004320 +10 0.823908 0.522624 0.006284 0.004320 +9 0.206314 0.525807 0.009874 0.028877 +7 0.577648 0.513984 0.006882 0.027967 +10 0.735338 0.471237 0.006284 0.003411 +10 0.702124 0.461687 0.006882 0.005230 +8 0.190455 0.460437 0.005685 0.020464 +8 0.425045 0.455093 0.009276 0.023874 +9 0.579443 0.457594 0.004488 0.029786 +8 0.641682 0.399386 0.012867 0.007049 +7 0.442101 0.402569 0.012268 0.013415 +8 0.251496 0.399159 0.011670 0.007503 +7 0.824806 0.400978 0.011670 0.011141 +6 0.387941 0.401887 0.010473 0.019327 +6 0.776332 0.400068 0.010473 0.018417 +8 0.760772 0.320032 0.012867 0.007503 +7 0.594105 0.322078 0.012268 0.014325 +8 0.541741 0.318895 0.011670 0.008868 +8 0.490575 0.319577 0.012268 0.009322 +7 0.431029 0.321851 0.011670 0.013870 +7 0.315230 0.319122 0.012268 0.009322 +7 0.205715 0.321396 0.012268 0.013870 +8 0.828995 0.317758 0.012867 0.007503 +6 0.694345 0.320487 0.009276 0.017508 +6 0.655745 0.320941 0.009874 0.018417 +6 0.741622 0.320487 0.010473 0.018417 +9 0.359216 0.266371 0.006882 0.017508 +7 0.760473 0.262733 0.012268 0.007503 +9 0.487882 0.267735 0.004488 0.031151 +6 0.742819 0.263643 0.008079 0.017508 +6 0.804159 0.262960 0.009874 0.017963 +9 0.890036 0.199295 0.006882 0.008868 +8 0.315530 0.195657 0.011670 0.010687 +10 0.182077 0.191110 0.006882 0.004320 +9 0.468432 0.153593 0.007481 0.021146 +10 0.343956 0.150864 0.006284 0.002956 +7 0.760772 0.138131 0.012867 0.007503 +10 0.542938 0.136539 0.018851 0.005230 +8 0.827798 0.135175 0.012867 0.007049 +6 0.742220 0.138813 0.010473 0.017963 +10 0.760473 0.080150 0.012268 0.005230 +8 0.361610 0.079695 0.011670 0.008868 +7 0.261969 0.082196 0.011071 0.014779 +8 0.827199 0.077422 0.012867 0.007049 +10 0.533962 0.074011 0.006882 0.004775 +6 0.741622 0.079923 0.010473 0.020236 +11 0.862956 0.953502 0.008977 0.006594 +12 0.696589 0.953502 0.008977 0.006594 +12 0.665021 0.953388 0.009276 0.006367 +12 0.460802 0.952592 0.008977 0.006594 +12 0.498803 0.952251 0.009575 0.006821 +17 0.744764 0.945316 0.010174 0.006594 +11 0.542639 0.944748 0.009874 0.006367 +11 0.329743 0.933834 0.008977 0.006367 +12 0.286655 0.931219 0.009575 0.005684 +12 0.863256 0.896317 0.008378 0.005912 +12 0.156493 0.892792 0.009575 0.006139 +11 0.205266 0.890177 0.007780 0.004548 +12 0.213196 0.874829 0.008677 0.005684 +12 0.841113 0.888131 0.009575 0.005912 +12 0.827648 0.882674 0.008977 0.005912 +13 0.433273 0.882674 0.008977 0.005912 +13 0.639886 0.882447 0.010473 0.006367 +13 0.665769 0.879832 0.008977 0.005684 +12 0.803860 0.877444 0.009276 0.006367 +12 0.744016 0.877444 0.009276 0.006367 +13 0.678336 0.877331 0.008977 0.006139 +13 0.460952 0.877331 0.009276 0.006139 +13 0.393327 0.877331 0.009276 0.006139 +12 0.616697 0.876990 0.009575 0.006367 +13 0.602184 0.876876 0.009276 0.006139 +12 0.407092 0.877103 0.009874 0.006594 +12 0.899312 0.874829 0.008677 0.005684 +12 0.287552 0.874943 0.008977 0.005912 +12 0.262717 0.874943 0.008977 0.005912 +13 0.249402 0.874943 0.008677 0.005912 +12 0.227558 0.874829 0.008677 0.005684 +12 0.192101 0.874943 0.008977 0.005912 +13 0.176990 0.875057 0.009276 0.006139 +13 0.698534 0.871987 0.009276 0.006367 +13 0.479952 0.871987 0.009575 0.006367 +12 0.788151 0.869372 0.008977 0.006594 +12 0.580640 0.869372 0.009276 0.006594 +13 0.565679 0.869486 0.009276 0.006821 +12 0.371783 0.869372 0.009276 0.006594 +13 0.356523 0.869259 0.008677 0.006367 +13 0.719479 0.866530 0.009276 0.006367 +13 0.500150 0.866530 0.009276 0.006367 +12 0.765260 0.863574 0.008677 0.005912 +12 0.544734 0.863574 0.009276 0.006821 +12 0.331538 0.863688 0.008977 0.007049 +13 0.514811 0.860732 0.009276 0.006594 +18 0.347247 0.833788 0.005685 0.003183 +13 0.885996 0.828445 0.005984 0.003411 +12 0.156942 0.827535 0.009276 0.005684 +12 0.156942 0.833220 0.009276 0.005684 +13 0.213794 0.822874 0.008677 0.005457 +13 0.213794 0.828331 0.008677 0.005457 +13 0.177887 0.822874 0.009874 0.005457 +13 0.177887 0.828331 0.009874 0.005457 +11 0.842011 0.822533 0.008977 0.005684 +11 0.842011 0.828217 0.008977 0.005684 +12 0.827199 0.822533 0.009276 0.005684 +11 0.827199 0.828217 0.009276 0.005684 +12 0.805057 0.822533 0.009276 0.005684 +12 0.805057 0.828217 0.009276 0.005684 +12 0.331688 0.822647 0.009276 0.005912 +12 0.288001 0.822533 0.009276 0.005684 +12 0.288001 0.828217 0.009276 0.005684 +12 0.264213 0.822533 0.008378 0.005684 +12 0.264213 0.828217 0.008378 0.005684 +13 0.250898 0.822533 0.009276 0.005684 +13 0.250898 0.828217 0.009276 0.005684 +12 0.228306 0.822533 0.008977 0.005684 +12 0.228306 0.828217 0.008977 0.005684 +12 0.192998 0.822647 0.009575 0.005912 +12 0.192998 0.828558 0.009575 0.005912 +11 0.898564 0.819804 0.009575 0.005684 +11 0.898564 0.825489 0.009575 0.005684 +11 0.746858 0.816962 0.008977 0.005457 +11 0.746858 0.822419 0.008977 0.005457 +12 0.668013 0.817076 0.009276 0.005684 +13 0.638989 0.817303 0.009874 0.006139 +12 0.544434 0.817190 0.009276 0.005912 +12 0.462597 0.816962 0.008378 0.005457 +12 0.408288 0.817303 0.009276 0.006139 +12 0.618193 0.816849 0.009575 0.006139 +13 0.602035 0.816849 0.009575 0.006139 +12 0.581239 0.816849 0.009276 0.006139 +13 0.566577 0.816962 0.008677 0.006367 +13 0.433573 0.816849 0.008977 0.006139 +13 0.393178 0.816849 0.008977 0.006139 +12 0.372831 0.817076 0.010174 0.006594 +12 0.356523 0.816735 0.008677 0.005912 +12 0.699731 0.814575 0.009276 0.006139 +12 0.500598 0.814688 0.009575 0.006367 +12 0.193597 0.781946 0.009575 0.006367 +12 0.193597 0.773647 0.009575 0.006139 +12 0.156344 0.781833 0.009276 0.006139 +12 0.156344 0.787972 0.009276 0.006139 +13 0.288001 0.781264 0.009276 0.005912 +13 0.287702 0.773079 0.009874 0.005912 +13 0.178636 0.781264 0.009575 0.005912 +13 0.178486 0.773533 0.009276 0.005912 +12 0.424895 0.779559 0.005386 0.003411 +12 0.433573 0.762051 0.009575 0.005684 +12 0.433573 0.767735 0.009575 0.005684 +13 0.300269 0.781037 0.008677 0.006367 +13 0.300269 0.787403 0.008677 0.006367 +11 0.842011 0.775239 0.008977 0.005684 +12 0.804309 0.775239 0.008977 0.005684 +12 0.330790 0.775693 0.009874 0.006594 +12 0.330491 0.767508 0.009874 0.006594 +12 0.827499 0.775011 0.008677 0.006139 +18 0.647816 0.772851 0.005984 0.003183 +12 0.898863 0.769554 0.008977 0.006139 +13 0.276182 0.767963 0.009575 0.005684 +13 0.276182 0.773647 0.009575 0.005684 +12 0.229204 0.767963 0.010174 0.005684 +12 0.229204 0.773647 0.010174 0.005684 +13 0.214093 0.767963 0.009874 0.005684 +13 0.214093 0.773647 0.009874 0.005684 +11 0.745811 0.766826 0.009276 0.006139 +12 0.667714 0.764552 0.008677 0.005230 +12 0.667714 0.769782 0.008677 0.005230 +12 0.462597 0.764438 0.007780 0.005457 +12 0.462597 0.769895 0.007780 0.005457 +12 0.699880 0.764211 0.008977 0.005457 +12 0.699880 0.769668 0.008977 0.005457 +12 0.501047 0.764211 0.008079 0.005457 +12 0.501047 0.769668 0.008079 0.005457 +13 0.250449 0.762506 0.009575 0.005684 +13 0.250449 0.768190 0.009575 0.005684 +13 0.639288 0.761937 0.009276 0.005457 +13 0.639288 0.767394 0.009276 0.005457 +12 0.618193 0.762051 0.009575 0.005684 +12 0.618193 0.767735 0.009575 0.005684 +13 0.602633 0.762051 0.010174 0.005684 +13 0.602633 0.767735 0.010174 0.005684 +12 0.408288 0.762051 0.009276 0.005684 +12 0.408288 0.767735 0.009276 0.005684 +13 0.394375 0.762051 0.010174 0.005684 +13 0.394375 0.767735 0.010174 0.005684 +12 0.372831 0.762165 0.010174 0.005912 +12 0.372831 0.768076 0.010174 0.005912 +13 0.357421 0.762165 0.009276 0.005912 +13 0.357421 0.768076 0.009276 0.005912 +13 0.263315 0.762165 0.009575 0.005912 +13 0.263315 0.768076 0.009575 0.005912 +12 0.581987 0.761710 0.009575 0.005912 +12 0.581987 0.767622 0.009575 0.005912 +13 0.567175 0.761596 0.009874 0.005684 +13 0.567175 0.767281 0.009874 0.005684 +12 0.543836 0.761596 0.009874 0.005684 +12 0.543836 0.767281 0.009874 0.005684 +13 0.863854 0.717485 0.008977 0.005684 +13 0.850239 0.717258 0.008677 0.006139 +11 0.385099 0.711346 0.006583 0.003411 +12 0.393028 0.699181 0.008677 0.006367 +13 0.883752 0.712028 0.008079 0.005684 +11 0.559695 0.711346 0.005685 0.004320 +12 0.566876 0.699068 0.009276 0.006139 +12 0.827050 0.709072 0.008977 0.006139 +13 0.812837 0.709072 0.009276 0.006139 +13 0.902304 0.706685 0.008677 0.005912 +12 0.788151 0.704070 0.008977 0.006139 +13 0.775733 0.703956 0.008677 0.005912 +13 0.913824 0.701455 0.008378 0.005457 +12 0.666517 0.699068 0.009276 0.006139 +13 0.639737 0.698954 0.008977 0.005912 +12 0.617744 0.698954 0.009276 0.005912 +13 0.603381 0.699068 0.009276 0.006139 +12 0.544135 0.699181 0.009276 0.006367 +12 0.463046 0.699068 0.008677 0.006139 +13 0.434171 0.699068 0.009575 0.006139 +12 0.407840 0.699181 0.009575 0.006367 +12 0.371484 0.699181 0.009874 0.006367 +13 0.356074 0.699181 0.008977 0.006367 +12 0.331239 0.699295 0.009575 0.006594 +12 0.745212 0.698727 0.009276 0.006367 +12 0.582286 0.698727 0.009575 0.006367 +12 0.700180 0.696226 0.008977 0.005912 +12 0.502543 0.696339 0.009276 0.006139 +12 0.156344 0.586517 0.009276 0.006594 +11 0.228606 0.584129 0.007181 0.004548 +12 0.236984 0.568099 0.008977 0.006139 +12 0.442101 0.578558 0.008677 0.006139 +12 0.441951 0.565825 0.009575 0.006139 +13 0.423250 0.578672 0.009276 0.006367 +13 0.422202 0.565825 0.010174 0.006139 +18 0.388241 0.578672 0.009874 0.006367 +12 0.715889 0.575716 0.009276 0.005912 +12 0.686565 0.575944 0.009874 0.006367 +13 0.666966 0.575830 0.009575 0.006139 +12 0.638839 0.575944 0.009575 0.006367 +13 0.620437 0.575830 0.009874 0.006139 +12 0.591861 0.575830 0.009575 0.006139 +12 0.546230 0.575944 0.009874 0.006367 +13 0.573459 0.575603 0.009276 0.006594 +12 0.336026 0.568099 0.009575 0.006139 +12 0.335577 0.556617 0.009874 0.006821 +12 0.302962 0.567985 0.006882 0.005912 +12 0.302962 0.556617 0.009276 0.006821 +13 0.284261 0.568099 0.008977 0.006139 +13 0.283812 0.557299 0.009276 0.006367 +12 0.255087 0.568099 0.009874 0.006139 +12 0.206613 0.568099 0.009276 0.006139 +13 0.186415 0.568099 0.009575 0.006139 +18 0.826601 0.567644 0.009874 0.006139 +13 0.806553 0.567531 0.009276 0.005912 +12 0.776780 0.567758 0.008977 0.006367 +12 0.442250 0.526035 0.008378 0.005684 +12 0.442250 0.513074 0.008977 0.006139 +13 0.424147 0.526035 0.008677 0.005684 +13 0.423998 0.513074 0.009575 0.006139 +12 0.776780 0.526035 0.009575 0.006594 +12 0.776631 0.517849 0.009276 0.005684 +12 0.386744 0.523533 0.009276 0.006139 +12 0.395721 0.526717 0.009276 0.006139 +13 0.351586 0.521032 0.009575 0.006594 +12 0.157391 0.520578 0.008977 0.005684 +12 0.157391 0.526262 0.008977 0.005684 +11 0.826601 0.520009 0.009276 0.005457 +12 0.826601 0.525466 0.009276 0.005457 +13 0.806553 0.520123 0.008677 0.005684 +13 0.806553 0.525807 0.008677 0.005684 +13 0.619988 0.518304 0.008977 0.005684 +13 0.619988 0.523988 0.008977 0.005684 +12 0.593956 0.518304 0.009575 0.005684 +12 0.593956 0.523988 0.009575 0.005684 +12 0.717086 0.517849 0.010473 0.005684 +12 0.717086 0.523533 0.010473 0.005684 +12 0.686864 0.517963 0.009874 0.005912 +12 0.686864 0.523874 0.009874 0.005912 +13 0.668312 0.517849 0.009874 0.005684 +13 0.668312 0.523533 0.009874 0.005684 +12 0.640634 0.517963 0.010174 0.005912 +12 0.640634 0.523874 0.010174 0.005912 +13 0.575105 0.517963 0.008977 0.005912 +13 0.575105 0.523874 0.008977 0.005912 +12 0.546080 0.517963 0.009575 0.005912 +12 0.546080 0.523874 0.009575 0.005912 +13 0.187762 0.516598 0.009874 0.005002 +13 0.187762 0.521601 0.009874 0.005002 +13 0.336475 0.515689 0.008677 0.005912 +12 0.256882 0.515689 0.009276 0.005912 +12 0.256433 0.507731 0.009575 0.006367 +12 0.207062 0.515234 0.008977 0.005002 +12 0.207062 0.520236 0.008977 0.005002 +13 0.238330 0.515348 0.009276 0.006139 +13 0.237732 0.507958 0.009276 0.005912 +13 0.319420 0.507844 0.009874 0.006594 +17 0.885847 0.507276 0.009874 0.006367 +12 0.861161 0.507049 0.009575 0.005912 +13 0.468133 0.508072 0.009276 0.006139 +12 0.476511 0.505343 0.009276 0.006139 +18 0.490874 0.508527 0.009276 0.006139 +17 0.500150 0.504434 0.009276 0.006139 +13 0.285009 0.503183 0.009874 0.006367 +13 0.303411 0.502956 0.009575 0.006821 +12 0.546529 0.477149 0.009276 0.006139 +12 0.545931 0.468622 0.008677 0.005457 +13 0.734740 0.474534 0.008677 0.005457 +13 0.734889 0.468736 0.009575 0.005684 +12 0.777379 0.474079 0.008977 0.005457 +12 0.776930 0.465666 0.009276 0.005912 +13 0.352184 0.474420 0.008378 0.006139 +12 0.157690 0.474420 0.009575 0.006139 +12 0.388540 0.471351 0.010473 0.006367 +11 0.276182 0.469986 0.006583 0.004548 +12 0.285159 0.455434 0.009575 0.006367 +13 0.187463 0.466235 0.009276 0.006139 +18 0.187313 0.455207 0.005984 0.004093 +12 0.336176 0.466007 0.009276 0.006594 +12 0.205715 0.466007 0.009276 0.006594 +13 0.575254 0.463392 0.008079 0.005002 +13 0.575254 0.468395 0.008079 0.005002 +13 0.717684 0.463279 0.009276 0.005684 +13 0.717684 0.468963 0.009276 0.005684 +12 0.593656 0.463165 0.008977 0.005457 +12 0.593656 0.468622 0.008977 0.005457 +18 0.441951 0.463392 0.009575 0.005912 +13 0.423549 0.463392 0.009276 0.005912 +13 0.319420 0.460891 0.009874 0.006367 +13 0.237283 0.460891 0.009575 0.006367 +12 0.826750 0.459982 0.009575 0.005457 +12 0.826750 0.465439 0.009575 0.005457 +13 0.806852 0.460095 0.008677 0.005684 +13 0.806852 0.465780 0.008677 0.005684 +12 0.256433 0.460664 0.009575 0.006821 +13 0.687762 0.457822 0.008677 0.004775 +13 0.687014 0.452592 0.008977 0.005230 +13 0.620437 0.458049 0.008677 0.005230 +13 0.620437 0.463279 0.008677 0.005230 +12 0.476810 0.458276 0.008677 0.005684 +12 0.476212 0.443952 0.009874 0.006139 +12 0.639587 0.458049 0.008677 0.005684 +12 0.639587 0.463734 0.008677 0.005684 +13 0.703621 0.457594 0.008677 0.005230 +13 0.703621 0.462824 0.008677 0.005230 +17 0.499551 0.458163 0.008677 0.006367 +12 0.498803 0.445202 0.009575 0.006821 +13 0.304458 0.455434 0.009874 0.006367 +12 0.860712 0.454752 0.009276 0.005912 +12 0.860413 0.440427 0.008677 0.006367 +13 0.669060 0.452706 0.008977 0.005457 +13 0.669060 0.458163 0.008977 0.005457 +17 0.886146 0.453615 0.009874 0.008186 +17 0.884650 0.439973 0.009276 0.007276 +17 0.499402 0.394839 0.010174 0.007049 +17 0.885248 0.388927 0.009276 0.007049 +12 0.860712 0.388813 0.009276 0.006821 +18 0.476062 0.376648 0.009575 0.006139 +18 0.884949 0.370850 0.009874 0.006367 +18 0.859814 0.370282 0.009276 0.006139 +11 0.521544 0.327535 0.009575 0.006139 +11 0.723668 0.327194 0.009276 0.006367 +11 0.673698 0.327308 0.009874 0.006594 +11 0.638241 0.327308 0.009575 0.006594 +11 0.572412 0.327308 0.009575 0.006594 +11 0.468282 0.327194 0.009575 0.006367 +11 0.409485 0.327308 0.009276 0.006594 +12 0.344554 0.327080 0.009874 0.006139 +11 0.291592 0.327080 0.009276 0.006139 +11 0.182675 0.327080 0.009276 0.006139 +12 0.239078 0.326739 0.008977 0.006367 +18 0.914123 0.318668 0.007181 0.004775 +12 0.914722 0.313097 0.007780 0.005457 +12 0.263914 0.308549 0.008378 0.005457 +12 0.362507 0.308436 0.008677 0.006139 +11 0.542490 0.281605 0.009575 0.006139 +12 0.542340 0.267508 0.009276 0.006139 +11 0.723369 0.270123 0.009276 0.005912 +11 0.695691 0.270236 0.009575 0.006139 +17 0.657989 0.270578 0.009575 0.006821 +11 0.637941 0.270236 0.008977 0.006139 +12 0.410383 0.270236 0.009874 0.006139 +12 0.410233 0.259663 0.009575 0.005912 +12 0.593507 0.267508 0.009276 0.006139 +17 0.593956 0.281719 0.010174 0.006367 +12 0.573459 0.264552 0.009276 0.005684 +18 0.573459 0.270236 0.009276 0.005684 +11 0.521394 0.270236 0.009276 0.005684 +12 0.521394 0.264552 0.009276 0.005684 +13 0.362059 0.261937 0.008977 0.005912 +12 0.469479 0.259436 0.009575 0.006367 +13 0.469479 0.270350 0.009575 0.006367 +12 0.344554 0.259436 0.009276 0.006367 +12 0.491173 0.256821 0.008677 0.005684 +12 0.491173 0.262506 0.008677 0.005684 +12 0.432077 0.256708 0.008977 0.005457 +12 0.432077 0.262165 0.008977 0.005457 +13 0.382555 0.256935 0.008079 0.005912 +18 0.914572 0.260914 0.008079 0.005230 +18 0.914572 0.255684 0.008079 0.005230 +11 0.825254 0.251251 0.008977 0.005457 +11 0.183273 0.251478 0.009276 0.005912 +11 0.863854 0.251023 0.008977 0.005912 +11 0.844554 0.251023 0.009276 0.005912 +17 0.240575 0.250910 0.008977 0.006594 +11 0.723070 0.208276 0.009276 0.005912 +11 0.723070 0.214188 0.009276 0.005912 +11 0.695691 0.208163 0.009575 0.005684 +11 0.695691 0.213847 0.009575 0.005684 +11 0.639138 0.208390 0.009575 0.006139 +11 0.639288 0.200432 0.009276 0.005684 +12 0.573010 0.208049 0.009575 0.006367 +17 0.658288 0.207367 0.010174 0.005912 +17 0.658288 0.213279 0.010174 0.005912 +12 0.593507 0.205889 0.008677 0.005684 +12 0.541891 0.205889 0.008378 0.005684 +11 0.760024 0.200432 0.008977 0.005684 +11 0.804159 0.200205 0.009276 0.006139 +11 0.776182 0.200205 0.008977 0.006139 +11 0.742220 0.200205 0.009276 0.006139 +11 0.344105 0.200205 0.009575 0.006139 +18 0.408887 0.199750 0.009276 0.006139 +18 0.413974 0.199750 0.009276 0.006139 +13 0.261670 0.197590 0.009276 0.006367 +12 0.291891 0.194748 0.009276 0.005230 +12 0.238480 0.194748 0.009575 0.006139 +17 0.277229 0.192474 0.009276 0.006139 +12 0.204967 0.191792 0.009575 0.005684 +12 0.204967 0.197476 0.009575 0.005684 +12 0.184470 0.188950 0.009276 0.005457 +12 0.184470 0.194407 0.009276 0.005457 +18 0.430281 0.187131 0.008977 0.005457 +11 0.845153 0.182697 0.009276 0.006594 +11 0.864303 0.181446 0.009276 0.005912 +11 0.825853 0.181787 0.010174 0.006594 +12 0.592759 0.162915 0.009575 0.006139 +13 0.542938 0.162574 0.009276 0.006367 +11 0.695242 0.160186 0.009874 0.007049 +12 0.572561 0.160073 0.009276 0.006821 +17 0.658588 0.159959 0.009575 0.007503 +11 0.638839 0.159618 0.009575 0.006821 +11 0.722472 0.159504 0.009874 0.007503 +12 0.520646 0.153593 0.008977 0.006594 +12 0.520646 0.160186 0.008977 0.006594 +12 0.470227 0.153365 0.008677 0.006139 +12 0.470227 0.159504 0.008677 0.006139 +12 0.409635 0.153593 0.008378 0.006594 +12 0.409635 0.160186 0.008378 0.006594 +12 0.491622 0.150409 0.008977 0.005684 +12 0.491622 0.156094 0.008977 0.005684 +12 0.432226 0.150409 0.009276 0.005684 +12 0.432226 0.156094 0.009276 0.005684 +12 0.362657 0.150637 0.009575 0.006139 +12 0.362657 0.156776 0.009575 0.006139 +12 0.292041 0.147908 0.008977 0.006139 +12 0.292041 0.139836 0.010174 0.006367 +12 0.239378 0.147908 0.008977 0.006139 +12 0.238031 0.139723 0.009874 0.006139 +12 0.344704 0.147453 0.008977 0.006139 +11 0.344704 0.153593 0.008977 0.006139 +18 0.315081 0.144952 0.009575 0.005684 +12 0.315081 0.150637 0.009575 0.005684 +12 0.263315 0.144611 0.009575 0.005912 +12 0.263315 0.150523 0.009575 0.005912 +12 0.205865 0.144952 0.008977 0.006594 +12 0.205266 0.136539 0.009575 0.006139 +18 0.151855 0.137108 0.006284 0.003638 +12 0.184022 0.133925 0.009575 0.006367 +13 0.592011 0.100159 0.010473 0.006139 +13 0.539946 0.099818 0.010473 0.006367 +17 0.657391 0.097090 0.009575 0.006367 +11 0.636894 0.096976 0.009276 0.006139 +12 0.571364 0.096862 0.008677 0.005912 +11 0.722472 0.096066 0.009276 0.006139 +11 0.693896 0.096294 0.009575 0.006594 +12 0.606373 0.093793 0.009874 0.006139 +13 0.554907 0.093679 0.009276 0.005912 +13 0.489527 0.093452 0.008977 0.006367 +13 0.431179 0.093338 0.009575 0.006139 +12 0.519449 0.091291 0.008977 0.005684 +12 0.469031 0.090950 0.008677 0.005912 +12 0.407989 0.090609 0.008079 0.005684 +13 0.502693 0.088449 0.008977 0.006367 +12 0.452723 0.088336 0.009575 0.006139 +13 0.313136 0.079468 0.009276 0.005684 +12 0.343656 0.077194 0.009276 0.006594 +12 0.290694 0.076967 0.009874 0.006139 +18 0.888839 0.075148 0.005685 0.003411 +13 0.327947 0.074125 0.008977 0.005912 +12 0.152005 0.073784 0.007780 0.005230 +11 0.152005 0.079013 0.007780 0.005230 +13 0.202274 0.073670 0.008977 0.005912 +12 0.238480 0.071282 0.009575 0.006594 +12 0.182077 0.070828 0.009276 0.006594 +12 0.914572 0.070714 0.006882 0.009095 +12 0.225015 0.068327 0.008977 0.006139 +0 0.103980 0.824125 0.023040 0.024329 +1 0.103680 0.076967 0.022442 0.035243 +3 0.890934 0.134493 0.007481 0.012960 +2 0.103381 0.575148 0.019449 0.021146 +0 0.104578 0.195657 0.023040 0.024329 +3 0.214692 0.067190 0.007481 0.019327 +4 0.531867 0.162688 0.009874 0.015689 +4 0.103680 0.135402 0.022442 0.032970 +1 0.105775 0.400978 0.021843 0.039336 +3 0.195242 0.146771 0.006882 0.015689 +4 0.874177 0.711573 0.008677 0.012051 +1 0.105476 0.457594 0.022442 0.035243 +2 0.103680 0.320032 0.017654 0.021146 +4 0.128815 0.509663 0.009276 0.013870 +3 0.372382 0.255684 0.008079 0.018872 +5 0.531867 0.199977 0.007481 0.010232 +4 0.128217 0.570146 0.009276 0.015689 +4 0.128516 0.127444 0.008677 0.012506 +3 0.890335 0.873010 0.007481 0.019327 +4 0.129414 0.450091 0.009276 0.016598 +4 0.128217 0.699750 0.009276 0.016598 +4 0.128516 0.315484 0.008677 0.015689 +1 0.104279 0.706116 0.021245 0.034789 +3 0.688061 0.812301 0.007481 0.016144 +4 0.422651 0.882106 0.009276 0.015689 +4 0.452274 0.763188 0.009874 0.013415 +4 0.532466 0.762278 0.009874 0.014325 +3 0.489976 0.813665 0.007481 0.020691 +4 0.885847 0.767963 0.009276 0.012960 +4 0.817923 0.881423 0.009874 0.013415 +3 0.442699 0.089472 0.007481 0.014779 +4 0.532466 0.862096 0.008677 0.011141 +4 0.688360 0.871191 0.009276 0.013870 +4 0.318821 0.861869 0.009874 0.015234 +4 0.764662 0.704752 0.009874 0.014779 +5 0.421155 0.254093 0.007481 0.014779 +2 0.105775 0.262506 0.013465 0.018872 +4 0.347247 0.761141 0.009276 0.016598 +4 0.128815 0.815939 0.009276 0.015234 +4 0.130311 0.391883 0.008677 0.014779 +4 0.128516 0.626990 0.009874 0.014779 +2 0.103680 0.880514 0.017654 0.019782 +2 0.103381 0.936676 0.018253 0.019327 +1 0.104279 0.764325 0.021245 0.035698 +0 0.104877 0.517167 0.022442 0.025239 +4 0.129114 0.933492 0.008677 0.013870 +4 0.128217 0.757049 0.009276 0.017508 +2 0.105177 0.632219 0.015859 0.019782 +4 0.490126 0.866758 0.008378 0.016371 +3 0.896170 0.253752 0.006583 0.015462 +4 0.135847 0.079809 0.008378 0.013188 +0 0.127768 0.069804 0.008977 0.011369 +4 0.129862 0.257390 0.008378 0.013643 +4 0.137642 0.324920 0.008378 0.014097 +3 0.904847 0.322874 0.004788 0.012733 +3 0.896768 0.313552 0.006583 0.015916 +4 0.129114 0.187585 0.009276 0.015007 +4 0.137193 0.195771 0.009276 0.015007 +4 0.145123 0.184857 0.008977 0.015007 +5 0.314333 0.820373 0.009276 0.014097 +4 0.319270 0.820373 0.008977 0.014097 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_30.jpg b/data_dataset/dvo/debug/debug_30.jpg new file mode 100644 index 0000000..27b3102 Binary files /dev/null and b/data_dataset/dvo/debug/debug_30.jpg differ diff --git a/data_dataset/dvo/debug/debug_30.txt b/data_dataset/dvo/debug/debug_30.txt new file mode 100644 index 0000000..20fcc41 --- /dev/null +++ b/data_dataset/dvo/debug/debug_30.txt @@ -0,0 +1,517 @@ +9 0.128469 0.949262 0.006864 0.009762 +8 0.690242 0.949262 0.013130 0.029739 +10 0.474485 0.937911 0.006565 0.004313 +8 0.872277 0.943814 0.013130 0.020204 +7 0.608774 0.941317 0.012534 0.013394 +7 0.534169 0.941544 0.012534 0.013848 +10 0.500746 0.936663 0.007759 0.002724 +7 0.779469 0.940863 0.012534 0.014756 +6 0.211877 0.937798 0.008953 0.012259 +6 0.359147 0.940749 0.009848 0.019523 +10 0.548344 0.881158 0.008057 0.002951 +8 0.809460 0.877526 0.011041 0.024745 +8 0.703820 0.877299 0.012235 0.025653 +7 0.601164 0.876050 0.007460 0.017707 +7 0.386899 0.876844 0.012235 0.041544 +10 0.371531 0.858343 0.008356 0.001816 +10 0.268129 0.832123 0.006267 0.002043 +10 0.480752 0.832123 0.006565 0.003405 +10 0.478066 0.827355 0.005968 0.002951 +6 0.361086 0.820885 0.009549 0.019523 +7 0.819308 0.802951 0.012235 0.006810 +8 0.827663 0.765380 0.008654 0.007491 +10 0.400925 0.756073 0.018204 0.004767 +7 0.160698 0.758343 0.011638 0.013848 +8 0.263056 0.763337 0.009848 0.025199 +7 0.309311 0.758116 0.011638 0.014756 +10 0.371382 0.754030 0.008057 0.004313 +10 0.862877 0.748127 0.007460 0.002951 +7 0.872725 0.756981 0.011638 0.020658 +10 0.779320 0.746765 0.006267 0.002497 +9 0.850045 0.755165 0.010445 0.002951 +8 0.706506 0.758797 0.011041 0.030193 +10 0.839899 0.704654 0.007460 0.005448 +10 0.758132 0.702043 0.008654 0.002043 +10 0.758132 0.699546 0.006267 0.002497 +7 0.215010 0.702043 0.012235 0.002951 +10 0.607132 0.637117 0.012235 0.004313 +10 0.161594 0.632123 0.006864 0.003859 +10 0.184572 0.628263 0.006267 0.003405 +10 0.334975 0.627809 0.006267 0.002951 +9 0.621158 0.628944 0.006864 0.023383 +6 0.858102 0.622588 0.009251 0.019750 +6 0.736646 0.620999 0.009848 0.019750 +9 0.758430 0.572645 0.011041 0.023837 +9 0.903163 0.572645 0.004476 0.022474 +9 0.878991 0.551986 0.007460 0.021112 +10 0.757833 0.538820 0.007460 0.002497 +9 0.159803 0.508854 0.007460 0.034279 +10 0.530886 0.504540 0.008356 0.004313 +10 0.453894 0.503632 0.005968 0.004767 +10 0.399135 0.503405 0.006267 0.005221 +9 0.201731 0.503746 0.007759 0.030420 +10 0.319905 0.501135 0.010146 0.004767 +7 0.859893 0.501135 0.012832 0.013848 +9 0.737392 0.501135 0.009549 0.025199 +8 0.861385 0.440976 0.012235 0.007946 +6 0.737541 0.444608 0.009251 0.019296 +10 0.639958 0.437117 0.007460 0.002951 +10 0.607132 0.429398 0.006267 0.002043 +10 0.877499 0.399205 0.015816 0.002497 +9 0.358400 0.393076 0.010146 0.021566 +6 0.737989 0.387401 0.010146 0.020204 +10 0.572814 0.379001 0.007460 0.002951 +10 0.531632 0.378774 0.007460 0.002497 +10 0.456431 0.378320 0.008654 0.002951 +10 0.323635 0.378093 0.006864 0.002951 +10 0.246046 0.378093 0.006864 0.002951 +9 0.814235 0.383087 0.008057 0.024745 +9 0.799164 0.387174 0.005968 0.047446 +8 0.885258 0.312486 0.012832 0.007946 +8 0.791853 0.312826 0.009848 0.009081 +8 0.680245 0.312486 0.011041 0.008400 +7 0.371680 0.315210 0.012235 0.013848 +8 0.577589 0.311805 0.011041 0.007491 +7 0.355267 0.311691 0.009251 0.012713 +8 0.497911 0.311691 0.012832 0.007719 +6 0.400328 0.314075 0.009848 0.018842 +10 0.706207 0.267991 0.007460 0.002043 +10 0.687108 0.266402 0.017010 0.005221 +7 0.605043 0.254370 0.012832 0.014302 +9 0.742614 0.254824 0.008654 0.043814 +9 0.716055 0.247333 0.011638 0.023383 +9 0.658759 0.198524 0.008057 0.031101 +9 0.855416 0.198524 0.008654 0.033371 +10 0.575798 0.195346 0.008057 0.005221 +9 0.637571 0.198297 0.008654 0.033825 +10 0.212026 0.194552 0.007460 0.004994 +9 0.794241 0.197730 0.011638 0.036776 +9 0.228141 0.199546 0.008654 0.029058 +9 0.266338 0.194892 0.008654 0.026107 +8 0.885557 0.192849 0.011638 0.029285 +9 0.297672 0.196481 0.011638 0.026561 +10 0.443002 0.187628 0.006267 0.002951 +10 0.229036 0.187401 0.006864 0.002951 +10 0.479708 0.141544 0.007460 0.003405 +10 0.677559 0.133825 0.010445 0.005221 +7 0.499403 0.137117 0.012235 0.013621 +8 0.577290 0.133825 0.011638 0.008400 +10 0.178902 0.128150 0.007460 0.002043 +6 0.516711 0.135641 0.009848 0.019296 +7 0.685318 0.081612 0.012832 0.013394 +9 0.636974 0.083882 0.009251 0.027469 +7 0.498508 0.081271 0.012832 0.014529 +6 0.516115 0.080704 0.009848 0.018388 +10 0.214414 0.070148 0.008057 0.003178 +12 0.455834 0.958002 0.009848 0.006356 +11 0.162190 0.955846 0.008654 0.005675 +11 0.307371 0.955165 0.008356 0.005675 +12 0.746494 0.941544 0.009848 0.006129 +12 0.702925 0.941657 0.008654 0.006356 +18 0.120710 0.940295 0.005670 0.003632 +12 0.641600 0.941430 0.010146 0.006356 +12 0.499403 0.939274 0.007460 0.006129 +12 0.838556 0.939047 0.007162 0.006129 +12 0.899881 0.938593 0.009251 0.006129 +12 0.575649 0.936436 0.008953 0.006356 +12 0.747389 0.903973 0.009848 0.007264 +12 0.755745 0.882520 0.007460 0.005221 +12 0.755745 0.887741 0.007460 0.005221 +12 0.754551 0.873780 0.003879 0.004540 +12 0.641600 0.903632 0.008356 0.007037 +11 0.649806 0.873212 0.005670 0.007491 +13 0.838556 0.901930 0.009549 0.006356 +11 0.846911 0.870829 0.005968 0.005448 +12 0.457625 0.901362 0.009848 0.006583 +11 0.308863 0.899319 0.008953 0.005675 +11 0.162340 0.899432 0.008356 0.006356 +13 0.575798 0.899092 0.009251 0.006129 +18 0.499254 0.897616 0.007759 0.005448 +12 0.498806 0.882860 0.008057 0.006356 +18 0.128768 0.885925 0.006864 0.003859 +18 0.128618 0.891260 0.005968 0.003632 +12 0.703521 0.885812 0.009251 0.006356 +12 0.704118 0.871283 0.004476 0.005448 +12 0.660101 0.885812 0.009549 0.006356 +12 0.808863 0.885471 0.009848 0.006129 +14 0.809758 0.871623 0.005670 0.005675 +12 0.768726 0.885244 0.009549 0.006129 +13 0.548642 0.883314 0.008057 0.005448 +12 0.479857 0.882860 0.007759 0.004994 +12 0.903760 0.882406 0.008654 0.004540 +12 0.859445 0.882974 0.009549 0.005675 +12 0.520740 0.883201 0.008953 0.006129 +13 0.366159 0.881612 0.006565 0.004767 +12 0.359743 0.872985 0.009251 0.006129 +13 0.365115 0.874574 0.009251 0.006129 +13 0.266935 0.881612 0.007460 0.004767 +13 0.260967 0.872645 0.007460 0.004994 +13 0.217547 0.881725 0.007759 0.004994 +13 0.219188 0.876050 0.004476 0.003632 +12 0.213071 0.872304 0.008953 0.006129 +13 0.416741 0.881385 0.006267 0.004767 +12 0.410474 0.872985 0.009251 0.006129 +13 0.417338 0.875028 0.009251 0.006129 +11 0.335721 0.881385 0.006565 0.004767 +11 0.336914 0.875482 0.005372 0.003859 +12 0.329155 0.872872 0.007759 0.005448 +12 0.188153 0.881498 0.007460 0.004994 +14 0.189645 0.874915 0.005073 0.004540 +11 0.182334 0.872872 0.008953 0.005902 +12 0.623694 0.881385 0.009549 0.006129 +12 0.239928 0.880704 0.005968 0.006583 +12 0.233811 0.872531 0.008057 0.004767 +12 0.595494 0.880363 0.009848 0.006810 +12 0.389138 0.878661 0.006565 0.010216 +12 0.382423 0.872418 0.008654 0.004994 +12 0.479409 0.829966 0.009848 0.006356 +12 0.501194 0.827128 0.009848 0.006129 +12 0.457475 0.824745 0.009549 0.005902 +12 0.520740 0.824745 0.009549 0.006356 +13 0.747389 0.824291 0.009251 0.005902 +14 0.809907 0.823610 0.008953 0.004994 +14 0.783199 0.823950 0.009251 0.006129 +13 0.823784 0.821339 0.009251 0.005902 +13 0.796329 0.821453 0.009251 0.006129 +12 0.578335 0.821680 0.009549 0.006583 +13 0.765592 0.821226 0.008654 0.006129 +12 0.676664 0.821226 0.008654 0.007037 +11 0.310355 0.819410 0.008953 0.005675 +12 0.875560 0.818956 0.008953 0.005675 +12 0.643539 0.819183 0.009251 0.006129 +12 0.841689 0.816005 0.009848 0.006129 +12 0.214861 0.809194 0.008953 0.005675 +13 0.277678 0.809194 0.009251 0.006129 +11 0.160997 0.806243 0.009251 0.006129 +14 0.261862 0.806129 0.008654 0.006356 +12 0.212474 0.772077 0.008953 0.005448 +12 0.183826 0.772077 0.008953 0.005902 +11 0.262011 0.771850 0.008953 0.005902 +12 0.233512 0.771850 0.009251 0.005902 +12 0.458520 0.771737 0.009251 0.006129 +13 0.413160 0.771510 0.008057 0.005675 +12 0.381677 0.771964 0.009549 0.006583 +13 0.360937 0.771623 0.008654 0.005902 +12 0.333483 0.771510 0.008654 0.006129 +12 0.643688 0.768445 0.009549 0.006356 +11 0.651895 0.751078 0.005670 0.008400 +12 0.611907 0.766288 0.009251 0.005675 +12 0.662638 0.766175 0.009251 0.005902 +12 0.841987 0.765494 0.008654 0.005902 +11 0.849299 0.750624 0.006565 0.004313 +12 0.520889 0.763678 0.009848 0.005902 +12 0.577589 0.763451 0.009848 0.006356 +13 0.903462 0.762656 0.008654 0.005675 +18 0.903909 0.749830 0.004775 0.003632 +12 0.863772 0.762997 0.009251 0.006356 +12 0.781558 0.762656 0.008953 0.006129 +12 0.500149 0.761067 0.008953 0.005675 +12 0.748135 0.760499 0.009549 0.005448 +12 0.480304 0.758002 0.009848 0.006810 +12 0.705461 0.751419 0.004775 0.004540 +12 0.705610 0.765948 0.009251 0.005448 +11 0.496270 0.704654 0.010146 0.004994 +12 0.503581 0.680477 0.008057 0.005675 +11 0.163086 0.701816 0.009848 0.006129 +12 0.252760 0.701703 0.010146 0.006356 +12 0.542375 0.697843 0.006267 0.005902 +12 0.551179 0.682293 0.008953 0.007491 +13 0.705610 0.688422 0.009251 0.005675 +13 0.643241 0.688309 0.009251 0.005902 +13 0.677111 0.688195 0.009549 0.006129 +12 0.457923 0.688082 0.009848 0.005902 +12 0.362728 0.685812 0.008654 0.005902 +14 0.905252 0.685812 0.009251 0.006356 +12 0.612205 0.685698 0.009251 0.006129 +13 0.691883 0.685358 0.008057 0.005902 +12 0.661594 0.685585 0.008953 0.006356 +13 0.875112 0.685131 0.008654 0.005902 +14 0.429573 0.685585 0.009251 0.007264 +13 0.842286 0.684790 0.008654 0.007037 +13 0.720531 0.684449 0.008654 0.006810 +12 0.784542 0.682860 0.008356 0.006356 +11 0.308415 0.682633 0.009251 0.006356 +14 0.412265 0.682974 0.008654 0.007491 +13 0.891376 0.682066 0.008356 0.006129 +12 0.578036 0.682520 0.008953 0.007037 +13 0.861534 0.681952 0.008953 0.006810 +14 0.919427 0.681612 0.008953 0.007037 +12 0.749478 0.679682 0.009251 0.006356 +12 0.480901 0.676844 0.009251 0.007037 +11 0.685318 0.633485 0.009848 0.006583 +11 0.814682 0.633485 0.009549 0.007037 +11 0.533423 0.630647 0.009251 0.005902 +17 0.400627 0.630760 0.010445 0.006583 +11 0.184423 0.630306 0.008356 0.005675 +12 0.160101 0.630306 0.008654 0.005675 +12 0.336318 0.630079 0.008953 0.005675 +11 0.304834 0.630079 0.009251 0.005675 +12 0.279320 0.630193 0.009549 0.005902 +11 0.215160 0.630306 0.009549 0.006583 +12 0.627126 0.622701 0.009251 0.006356 +12 0.587287 0.622701 0.008953 0.006356 +11 0.859147 0.580590 0.005968 0.006583 +12 0.860191 0.565607 0.009251 0.006583 +12 0.859743 0.552213 0.008356 0.005221 +12 0.859743 0.557435 0.008356 0.005221 +11 0.899881 0.578661 0.006864 0.004540 +12 0.908833 0.565607 0.009848 0.006129 +13 0.908833 0.559478 0.009848 0.006129 +13 0.908684 0.551986 0.008356 0.004767 +17 0.737989 0.579342 0.005968 0.006356 +12 0.737839 0.552327 0.009251 0.004994 +12 0.737839 0.557321 0.009251 0.004994 +11 0.746344 0.541430 0.007162 0.004086 +12 0.737989 0.565834 0.009549 0.006583 +12 0.769621 0.577526 0.005968 0.003632 +12 0.686810 0.576617 0.009848 0.006356 +12 0.813787 0.576277 0.009549 0.006129 +12 0.839451 0.565948 0.007759 0.005448 +12 0.840048 0.558456 0.007162 0.003178 +12 0.840645 0.552100 0.008356 0.004994 +12 0.589376 0.565721 0.009549 0.005902 +12 0.588481 0.555505 0.008953 0.006356 +17 0.778723 0.565721 0.009251 0.006356 +13 0.778723 0.552554 0.009848 0.004994 +13 0.778723 0.557548 0.009848 0.004994 +12 0.758430 0.565834 0.008654 0.006583 +12 0.758878 0.552213 0.009549 0.004767 +12 0.758878 0.556981 0.009549 0.004767 +12 0.880334 0.558116 0.008953 0.003859 +12 0.880036 0.551873 0.008953 0.004540 +12 0.879887 0.565607 0.009251 0.006583 +12 0.626977 0.555505 0.009549 0.006356 +12 0.628320 0.565948 0.009251 0.006356 +11 0.534617 0.555505 0.009848 0.006356 +17 0.162190 0.555732 0.009848 0.007264 +17 0.400030 0.555165 0.010445 0.007037 +17 0.281558 0.555051 0.009848 0.007264 +12 0.712623 0.552781 0.008356 0.004994 +12 0.712623 0.557775 0.008356 0.004994 +12 0.712623 0.566288 0.008953 0.005675 +11 0.279469 0.507264 0.007460 0.004767 +11 0.280215 0.500908 0.009549 0.006129 +12 0.890928 0.503973 0.008654 0.004540 +11 0.815279 0.504086 0.008356 0.004767 +11 0.161444 0.501249 0.008953 0.005448 +11 0.161444 0.506697 0.008953 0.005448 +11 0.531632 0.501135 0.009251 0.005675 +11 0.531632 0.506810 0.009251 0.005675 +11 0.454342 0.501022 0.009848 0.005902 +11 0.454342 0.506924 0.009848 0.005902 +11 0.399433 0.501022 0.009251 0.005902 +11 0.399433 0.506924 0.009251 0.005902 +12 0.628021 0.501022 0.009251 0.006356 +12 0.628021 0.507378 0.009251 0.006356 +12 0.588481 0.500795 0.010146 0.005902 +12 0.588481 0.506697 0.010146 0.005902 +11 0.320501 0.498751 0.008953 0.005448 +11 0.320501 0.504200 0.008953 0.005448 +11 0.202029 0.504313 0.009549 0.005675 +11 0.202029 0.498638 0.009549 0.005675 +11 0.737839 0.493530 0.006864 0.005448 +11 0.686661 0.491146 0.010146 0.006129 +13 0.644584 0.453348 0.008953 0.005448 +11 0.687556 0.450851 0.009549 0.006356 +13 0.629215 0.450624 0.009251 0.006356 +11 0.321098 0.450511 0.009549 0.006129 +11 0.202925 0.450624 0.009549 0.006810 +12 0.589227 0.448241 0.009251 0.004767 +11 0.164429 0.448354 0.008953 0.005902 +11 0.533124 0.448127 0.008654 0.005902 +11 0.280961 0.448127 0.009251 0.005902 +17 0.403312 0.447900 0.010445 0.006810 +18 0.462399 0.400908 0.005073 0.003632 +11 0.636825 0.392281 0.008356 0.004994 +11 0.645628 0.372872 0.008654 0.006129 +11 0.686810 0.383655 0.009848 0.006356 +12 0.572963 0.381271 0.006565 0.005675 +12 0.400030 0.381271 0.009251 0.006129 +13 0.590272 0.380931 0.006565 0.005902 +12 0.530886 0.381158 0.008356 0.006356 +14 0.494479 0.380817 0.007162 0.006129 +12 0.455685 0.380817 0.008356 0.006129 +14 0.438973 0.380590 0.008356 0.005675 +14 0.365115 0.380817 0.007460 0.006129 +12 0.323336 0.380817 0.007460 0.006129 +12 0.203671 0.380817 0.009251 0.006129 +14 0.245897 0.380704 0.007162 0.006356 +14 0.921665 0.378434 0.009251 0.006356 +13 0.606535 0.378434 0.009251 0.006356 +12 0.558639 0.378320 0.008953 0.006129 +13 0.481200 0.378207 0.008057 0.006356 +12 0.860788 0.378207 0.009251 0.006810 +14 0.352432 0.377980 0.009549 0.006356 +11 0.281110 0.377980 0.009549 0.006356 +14 0.231274 0.377980 0.009549 0.006356 +14 0.424649 0.377980 0.009549 0.006810 +11 0.164130 0.377753 0.009549 0.006356 +13 0.630110 0.375823 0.008654 0.005675 +14 0.909728 0.375596 0.009251 0.006129 +11 0.816323 0.375823 0.008654 0.006583 +18 0.354223 0.312713 0.009549 0.005675 +17 0.165473 0.312259 0.009251 0.006129 +17 0.268129 0.312259 0.010445 0.006583 +17 0.165473 0.269467 0.011041 0.006810 +11 0.559087 0.251646 0.009251 0.006129 +17 0.356461 0.251192 0.009848 0.007037 +17 0.356162 0.234506 0.010445 0.007719 +17 0.267830 0.250965 0.010445 0.006583 +14 0.742913 0.249376 0.006864 0.008400 +14 0.716801 0.246765 0.007162 0.005902 +12 0.674575 0.246765 0.008057 0.005902 +11 0.778574 0.244495 0.010146 0.005902 +12 0.760221 0.244495 0.008057 0.005902 +12 0.898836 0.244495 0.009549 0.006356 +11 0.875112 0.244608 0.009848 0.006583 +12 0.855566 0.244608 0.006565 0.006583 +12 0.807819 0.244495 0.008356 0.006356 +14 0.703372 0.244268 0.008953 0.006356 +11 0.639063 0.243700 0.009251 0.006583 +12 0.444345 0.241544 0.004775 0.003632 +11 0.518800 0.241090 0.009251 0.006810 +11 0.478066 0.237684 0.008953 0.005902 +12 0.165175 0.202611 0.009251 0.006583 +11 0.165175 0.189898 0.009251 0.005675 +11 0.856013 0.199659 0.005670 0.003859 +11 0.856312 0.192054 0.008057 0.004086 +12 0.188750 0.200227 0.008654 0.005902 +11 0.131453 0.196141 0.005073 0.003632 +12 0.604745 0.196027 0.006267 0.003859 +12 0.603850 0.189784 0.008057 0.004994 +12 0.229633 0.195460 0.008057 0.004540 +12 0.229335 0.189330 0.009848 0.004994 +18 0.198896 0.195460 0.007460 0.004540 +18 0.199194 0.200114 0.007460 0.004767 +11 0.761713 0.193076 0.008057 0.005675 +11 0.761713 0.198751 0.008057 0.005675 +17 0.639511 0.192736 0.008953 0.005448 +12 0.639511 0.198184 0.008953 0.005448 +11 0.576694 0.192849 0.009251 0.005675 +11 0.576694 0.198524 0.009251 0.005675 +12 0.558341 0.198524 0.008953 0.005675 +12 0.558341 0.192849 0.008953 0.005675 +11 0.660848 0.192736 0.008654 0.005902 +11 0.660848 0.198638 0.008654 0.005902 +13 0.430170 0.192509 0.009251 0.006356 +13 0.400627 0.192509 0.008654 0.006356 +12 0.212325 0.192168 0.009251 0.005675 +12 0.212325 0.197843 0.009251 0.005675 +17 0.478215 0.192054 0.009848 0.006356 +17 0.478215 0.198411 0.009848 0.006356 +12 0.886004 0.190919 0.008356 0.004994 +11 0.886004 0.195914 0.008356 0.004994 +13 0.682483 0.190238 0.005968 0.004540 +12 0.692181 0.198638 0.008057 0.005902 +12 0.683378 0.195119 0.007162 0.005675 +13 0.443301 0.190238 0.007460 0.005448 +11 0.794539 0.195460 0.008654 0.005448 +11 0.794539 0.190011 0.008654 0.005448 +13 0.414802 0.190011 0.009549 0.005902 +12 0.385109 0.190125 0.008654 0.006129 +11 0.297822 0.189671 0.008953 0.005675 +11 0.297822 0.195346 0.008953 0.005675 +12 0.354969 0.187174 0.009251 0.006129 +11 0.267830 0.186833 0.008057 0.005448 +11 0.267830 0.192281 0.008057 0.005448 +17 0.141003 0.184904 0.005670 0.003405 +18 0.141600 0.179342 0.006267 0.003632 +12 0.167860 0.144495 0.008057 0.005675 +11 0.884960 0.142792 0.008654 0.006356 +11 0.793196 0.142679 0.008953 0.006583 +17 0.269173 0.141884 0.010146 0.006356 +17 0.269173 0.148241 0.010146 0.006356 +11 0.212474 0.141771 0.008953 0.006583 +12 0.189048 0.141657 0.008654 0.006356 +11 0.357356 0.141998 0.009848 0.007491 +11 0.760668 0.139387 0.007162 0.005448 +12 0.480155 0.139614 0.009549 0.005902 +18 0.678007 0.134279 0.005968 0.004313 +12 0.809161 0.093530 0.009848 0.003178 +11 0.315876 0.085585 0.009251 0.006356 +12 0.477022 0.083655 0.009251 0.005221 +17 0.358550 0.080704 0.009848 0.007491 +11 0.638317 0.079228 0.007759 0.005448 +12 0.790660 0.074347 0.006267 0.005221 +12 0.884512 0.074234 0.006565 0.005448 +14 0.831841 0.074234 0.006864 0.005448 +11 0.269621 0.073099 0.009251 0.005902 +11 0.214712 0.072758 0.008654 0.006583 +14 0.910624 0.071396 0.006267 0.005221 +11 0.856759 0.071964 0.008953 0.006356 +14 0.821247 0.071737 0.008356 0.006810 +12 0.076843 0.070715 0.004476 0.004767 +11 0.760370 0.071510 0.008953 0.006810 +11 0.167860 0.069580 0.008057 0.006583 +11 0.577141 0.069012 0.008953 0.005902 +11 0.557296 0.066629 0.009251 0.006583 +0 0.095942 0.697957 0.021188 0.032009 +0 0.101015 0.191714 0.022978 0.023837 +3 0.286929 0.191941 0.006864 0.014756 +4 0.177708 0.201249 0.009251 0.013848 +3 0.616085 0.450057 0.007460 0.021566 +4 0.320352 0.771737 0.009848 0.016572 +3 0.616682 0.374915 0.006864 0.020204 +2 0.094151 0.313394 0.018204 0.019296 +3 0.446583 0.769694 0.006864 0.016572 +0 0.097135 0.821907 0.022978 0.023837 +2 0.098627 0.251646 0.017010 0.019296 +0 0.097583 0.500908 0.022680 0.024745 +3 0.802895 0.372645 0.006864 0.015664 +4 0.630409 0.769467 0.009251 0.015664 +4 0.830648 0.685698 0.009251 0.017026 +3 0.442554 0.501362 0.007162 0.021112 +4 0.137123 0.933371 0.009251 0.013394 +4 0.137422 0.877072 0.008654 0.015210 +4 0.170845 0.771964 0.009251 0.016572 +3 0.800209 0.632350 0.010445 0.022020 +4 0.297971 0.819183 0.009251 0.016118 +3 0.632199 0.819637 0.006864 0.017026 +3 0.863772 0.819183 0.006864 0.017026 +3 0.673381 0.492054 0.007460 0.019750 +1 0.441510 0.259591 0.017607 0.025199 +3 0.672486 0.576050 0.007460 0.019750 +4 0.444793 0.957208 0.009251 0.014756 +4 0.735004 0.941090 0.009549 0.014302 +3 0.800507 0.574007 0.009251 0.017934 +3 0.673381 0.448468 0.007460 0.017026 +2 0.093256 0.565153 0.021188 0.019750 +2 0.095494 0.940182 0.016115 0.018842 +2 0.096240 0.884790 0.018204 0.019750 +2 0.093853 0.620545 0.019397 0.020658 +1 0.096538 0.442338 0.021188 0.033825 +4 0.469263 0.882974 0.009848 0.016118 +4 0.487616 0.939047 0.010146 0.016572 +4 0.445389 0.902043 0.009848 0.015210 +3 0.671889 0.631215 0.008057 0.016572 +3 0.576246 0.501589 0.007162 0.021112 +4 0.736347 0.903859 0.009251 0.017026 +4 0.119964 0.560726 0.008356 0.015891 +4 0.135482 0.558229 0.008356 0.015437 +4 0.136974 0.745743 0.008953 0.014529 +4 0.127425 0.699432 0.008356 0.015437 +4 0.119666 0.691487 0.008356 0.014075 +4 0.136079 0.688082 0.008953 0.015437 +0 0.101164 0.130988 0.020889 0.029058 +4 0.122352 0.310102 0.008356 0.013167 +4 0.129215 0.444041 0.008356 0.014983 +4 0.137869 0.431555 0.008953 0.014529 +4 0.119367 0.618615 0.007759 0.013621 +4 0.123844 0.246765 0.009549 0.013621 +0 0.132498 0.076277 0.008356 0.013167 +4 0.121456 0.491941 0.008356 0.013621 +4 0.120263 0.814302 0.008953 0.015437 +3 0.829752 0.559251 0.009251 0.016572 +4 0.095643 0.080704 0.009251 0.016572 +4 0.107729 0.074574 0.008953 0.016572 +5 0.130260 0.381498 0.009251 0.016572 +4 0.138765 0.376731 0.008953 0.016572 +4 0.128768 0.500454 0.009251 0.016572 +4 0.137272 0.493871 0.008953 0.016572 +4 0.128768 0.820999 0.009251 0.016572 +4 0.135780 0.814869 0.008953 0.016572 +3 0.701432 0.556073 0.009251 0.016572 +4 0.090570 0.388990 0.009251 0.016572 +4 0.103551 0.384449 0.008953 0.016572 +4 0.089675 0.758797 0.009251 0.016572 +5 0.102358 0.754938 0.008953 0.016572 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_31.jpg b/data_dataset/dvo/debug/debug_31.jpg new file mode 100644 index 0000000..7b0a7f6 Binary files /dev/null and b/data_dataset/dvo/debug/debug_31.jpg differ diff --git a/data_dataset/dvo/debug/debug_31.txt b/data_dataset/dvo/debug/debug_31.txt new file mode 100644 index 0000000..9c1a8d5 --- /dev/null +++ b/data_dataset/dvo/debug/debug_31.txt @@ -0,0 +1,526 @@ +8 0.235883 0.933780 0.012250 0.007497 +6 0.512847 0.936279 0.011652 0.012949 +7 0.442336 0.936279 0.011652 0.013857 +7 0.598596 0.933553 0.012250 0.008405 +8 0.574694 0.936506 0.012250 0.014312 +10 0.817897 0.931736 0.012250 0.005225 +6 0.350612 0.935825 0.009860 0.017946 +6 0.638930 0.934802 0.010457 0.018174 +10 0.407380 0.888801 0.008067 0.003408 +8 0.188975 0.884030 0.013445 0.017946 +8 0.271138 0.883803 0.012847 0.018401 +8 0.376606 0.883008 0.013445 0.018628 +7 0.599193 0.878351 0.011652 0.009768 +8 0.573499 0.882894 0.012847 0.018855 +8 0.467732 0.882894 0.014042 0.018855 +8 0.512847 0.882213 0.013445 0.019309 +8 0.818793 0.875170 0.012250 0.007497 +6 0.639229 0.877328 0.009262 0.018628 +10 0.791903 0.826102 0.011055 0.002953 +10 0.791306 0.823830 0.011055 0.002953 +8 0.574993 0.819514 0.013445 0.019309 +8 0.657753 0.819514 0.012847 0.018855 +8 0.758440 0.816333 0.013445 0.013403 +8 0.847475 0.818832 0.013445 0.020218 +10 0.167463 0.764312 0.006274 0.004771 +10 0.351808 0.762040 0.006872 0.004771 +10 0.203316 0.760677 0.007469 0.004771 +9 0.306095 0.761586 0.007469 0.031122 +10 0.223036 0.755452 0.008664 0.004316 +8 0.187481 0.757724 0.012847 0.018855 +8 0.468629 0.757269 0.012250 0.018401 +8 0.268748 0.761358 0.012847 0.027033 +8 0.374813 0.761926 0.013445 0.029078 +10 0.405288 0.745002 0.007469 0.004771 +10 0.755751 0.699341 0.006274 0.004771 +8 0.655811 0.700023 0.013744 0.018855 +8 0.206005 0.695025 0.012250 0.009768 +8 0.573947 0.698433 0.013744 0.016129 +8 0.510756 0.696615 0.013445 0.012494 +8 0.846430 0.696161 0.013744 0.012949 +8 0.775620 0.700931 0.005976 0.021581 +7 0.442635 0.696842 0.012250 0.013857 +10 0.807738 0.692526 0.007469 0.003862 +9 0.672841 0.700931 0.010756 0.032485 +6 0.245294 0.696615 0.008963 0.018401 +6 0.351061 0.695479 0.008963 0.017946 +9 0.596952 0.695706 0.009561 0.031577 +8 0.701076 0.690936 0.006872 0.026124 +9 0.613983 0.691845 0.010158 0.035666 +7 0.215566 0.625284 0.012250 0.013857 +7 0.438452 0.624602 0.012250 0.013857 +7 0.659845 0.623921 0.010457 0.013857 +10 0.849567 0.620059 0.012250 0.005225 +6 0.270840 0.624148 0.009262 0.017946 +6 0.687929 0.623239 0.009262 0.018855 +6 0.495518 0.622331 0.009262 0.018401 +10 0.409172 0.597115 0.007469 0.002499 +10 0.212578 0.592572 0.006274 0.002045 +10 0.224231 0.593253 0.009262 0.004316 +10 0.253809 0.590073 0.006274 0.002499 +10 0.295040 0.588028 0.008664 0.003862 +10 0.304004 0.586438 0.006274 0.002499 +10 0.244846 0.563494 0.007469 0.002953 +7 0.659695 0.514425 0.012549 0.010223 +9 0.623992 0.525670 0.004482 0.036801 +8 0.847774 0.512154 0.012250 0.007497 +6 0.688527 0.515561 0.009262 0.017038 +10 0.450403 0.463994 0.008067 0.003408 +10 0.304302 0.463766 0.007469 0.003408 +10 0.230505 0.463994 0.008067 0.003862 +10 0.331192 0.463312 0.008664 0.004316 +10 0.705557 0.461268 0.006872 0.004771 +10 0.477293 0.456270 0.006872 0.002499 +8 0.875560 0.459677 0.012250 0.016129 +8 0.809232 0.457860 0.013445 0.012494 +9 0.825067 0.451045 0.006872 0.018855 +10 0.790409 0.453998 0.006872 0.004771 +10 0.837915 0.444911 0.007469 0.002045 +7 0.734240 0.461268 0.004482 0.023853 +9 0.306394 0.457633 0.008067 0.020218 +10 0.299821 0.443321 0.009262 0.004316 +10 0.252913 0.442867 0.006274 0.003408 +10 0.402301 0.442185 0.007469 0.003408 +10 0.544517 0.403339 0.007469 0.004771 +10 0.320735 0.400159 0.008067 0.002499 +8 0.808037 0.404021 0.012250 0.026579 +8 0.710636 0.403794 0.013445 0.015220 +6 0.642516 0.401976 0.009860 0.012494 +9 0.670302 0.388801 0.004482 0.021581 +7 0.593517 0.322240 0.012250 0.013403 +7 0.386764 0.321558 0.012250 0.013857 +10 0.171646 0.317242 0.006274 0.002953 +8 0.292949 0.324057 0.013445 0.019309 +7 0.202719 0.321558 0.012250 0.014312 +6 0.437556 0.320423 0.009860 0.018855 +10 0.665223 0.282031 0.010457 0.005225 +9 0.559755 0.258405 0.005079 0.014766 +10 0.290857 0.248637 0.006274 0.002953 +7 0.285480 0.255452 0.008664 0.022944 +10 0.383478 0.229328 0.007469 0.002045 +10 0.231700 0.230009 0.014640 0.003862 +10 0.511951 0.228419 0.006274 0.002045 +10 0.413953 0.225693 0.006274 0.002045 +10 0.265163 0.220468 0.009860 0.004771 +9 0.200627 0.212290 0.005079 0.018401 +9 0.580072 0.215243 0.008664 0.025670 +10 0.832835 0.209791 0.009860 0.005225 +8 0.624589 0.215016 0.012847 0.018855 +8 0.742008 0.212063 0.012250 0.026124 +10 0.387063 0.206156 0.006274 0.002045 +10 0.415148 0.205475 0.006274 0.004316 +10 0.260382 0.200704 0.006274 0.003408 +10 0.782342 0.194343 0.008067 0.002499 +10 0.902151 0.194230 0.011055 0.003635 +10 0.884523 0.162313 0.008067 0.003862 +10 0.448611 0.160268 0.006274 0.002045 +8 0.258291 0.149818 0.004482 0.017038 +10 0.575291 0.154589 0.015835 0.005225 +10 0.121153 0.135961 0.006274 0.003862 +10 0.302808 0.132781 0.019420 0.004771 +9 0.268748 0.143458 0.013445 0.029759 +10 0.773230 0.092799 0.007171 0.002953 +10 0.903645 0.091776 0.018823 0.005452 +10 0.892142 0.086097 0.014939 0.002272 +10 0.872572 0.080532 0.006274 0.004771 +9 0.292949 0.071218 0.009860 0.026124 +9 0.308186 0.070309 0.012847 0.024307 +9 0.841201 0.067129 0.006872 0.022490 +9 0.885719 0.065311 0.009860 0.027942 +9 0.566926 0.070309 0.010457 0.034757 +12 0.487601 0.949796 0.008963 0.005452 +12 0.549148 0.941731 0.008963 0.005679 +12 0.487153 0.893230 0.009860 0.005906 +12 0.547953 0.885279 0.009561 0.005452 +12 0.122348 0.879259 0.005079 0.004316 +13 0.393935 0.875625 0.009860 0.006134 +12 0.443830 0.872558 0.009262 0.005452 +13 0.419630 0.870286 0.009262 0.006361 +13 0.207200 0.866765 0.009262 0.006134 +12 0.168509 0.866652 0.007768 0.005906 +12 0.248282 0.866084 0.009561 0.005679 +13 0.289513 0.865856 0.009561 0.006134 +13 0.224231 0.865856 0.009262 0.006134 +12 0.352106 0.865402 0.009860 0.006134 +13 0.308635 0.865516 0.009561 0.006361 +17 0.168957 0.839278 0.010457 0.007497 +11 0.352555 0.837006 0.008963 0.006588 +13 0.485360 0.827578 0.009860 0.006361 +12 0.512549 0.822694 0.009860 0.005679 +12 0.548103 0.819968 0.008664 0.005679 +18 0.502390 0.818492 0.004482 0.003635 +18 0.880639 0.815993 0.009262 0.006361 +12 0.905288 0.810995 0.009561 0.005906 +12 0.778906 0.810995 0.009561 0.006361 +12 0.829101 0.808610 0.008366 0.005225 +13 0.807141 0.806111 0.009262 0.005679 +12 0.598297 0.801795 0.009860 0.005679 +12 0.702271 0.801795 0.008664 0.006134 +12 0.738572 0.801227 0.008963 0.005906 +12 0.676576 0.801340 0.009860 0.006134 +12 0.638930 0.801227 0.009262 0.005906 +12 0.616821 0.801113 0.008664 0.006134 +12 0.393785 0.771695 0.007171 0.005452 +13 0.402301 0.766924 0.006274 0.004089 +13 0.418733 0.771468 0.008067 0.005906 +13 0.418733 0.762267 0.008067 0.005679 +12 0.442486 0.764652 0.008366 0.005906 +12 0.442486 0.770559 0.008366 0.005906 +13 0.289513 0.762949 0.008963 0.005679 +12 0.289513 0.768628 0.008963 0.005679 +12 0.486406 0.761926 0.009561 0.005906 +11 0.493875 0.746592 0.004780 0.003862 +12 0.167912 0.760677 0.009561 0.005679 +12 0.167912 0.766356 0.009561 0.005679 +12 0.246639 0.760223 0.009262 0.005679 +12 0.246639 0.765902 0.009262 0.005679 +12 0.351658 0.759200 0.008366 0.005452 +12 0.351658 0.764652 0.008366 0.005452 +12 0.204960 0.758178 0.009561 0.005225 +12 0.204960 0.763403 0.009561 0.005225 +12 0.306244 0.756929 0.008963 0.005452 +12 0.306244 0.762381 0.008963 0.005452 +13 0.512847 0.756588 0.008664 0.006134 +17 0.549148 0.754543 0.010756 0.007497 +18 0.741111 0.754316 0.009860 0.007497 +12 0.223334 0.752840 0.009262 0.005452 +12 0.223334 0.758292 0.009262 0.005452 +12 0.548103 0.705475 0.008664 0.005679 +12 0.547953 0.692072 0.009561 0.006134 +12 0.547804 0.677874 0.008664 0.006815 +18 0.485958 0.705248 0.007469 0.006134 +12 0.486555 0.694684 0.008664 0.005906 +17 0.485808 0.681622 0.007768 0.006134 +18 0.755602 0.699796 0.004780 0.003408 +13 0.879146 0.700023 0.009262 0.006134 +13 0.884822 0.702522 0.009262 0.006134 +12 0.870332 0.698773 0.004780 0.003635 +18 0.128473 0.698319 0.006573 0.003635 +18 0.861070 0.696502 0.006573 0.003635 +18 0.769047 0.697183 0.007768 0.005906 +13 0.779205 0.694571 0.007768 0.006134 +12 0.168957 0.695252 0.008664 0.005679 +12 0.905139 0.694798 0.009262 0.005679 +13 0.904392 0.702522 0.008963 0.005679 +12 0.070063 0.696729 0.005677 0.013630 +11 0.828354 0.691617 0.008067 0.005679 +12 0.828354 0.697297 0.008067 0.005679 +13 0.700329 0.690027 0.006573 0.004316 +12 0.701823 0.684121 0.007171 0.005225 +13 0.805497 0.689459 0.009561 0.004998 +13 0.805497 0.694457 0.009561 0.004998 +13 0.674783 0.689687 0.009262 0.005452 +13 0.674783 0.695139 0.009262 0.005452 +11 0.135943 0.687756 0.005976 0.003408 +12 0.739020 0.686960 0.008664 0.005452 +12 0.739020 0.692413 0.008664 0.005452 +11 0.639379 0.686733 0.008963 0.005452 +12 0.639379 0.692185 0.008963 0.005452 +17 0.119211 0.688323 0.007768 0.009087 +13 0.598297 0.684348 0.009262 0.005225 +13 0.598297 0.689573 0.009262 0.005225 +13 0.615028 0.678214 0.009262 0.004771 +13 0.615028 0.682985 0.009262 0.004771 +11 0.167613 0.636642 0.009561 0.006588 +12 0.627278 0.627101 0.008664 0.006134 +17 0.135793 0.620400 0.005677 0.003180 +18 0.136540 0.614948 0.007171 0.004089 +12 0.392590 0.617106 0.008963 0.006134 +13 0.069465 0.595525 0.004482 0.006134 +18 0.168509 0.594616 0.006573 0.006134 +12 0.168210 0.584280 0.008963 0.006361 +12 0.392740 0.583712 0.009262 0.006588 +11 0.338064 0.582463 0.007469 0.008178 +11 0.346131 0.565425 0.009262 0.005906 +12 0.292053 0.565879 0.008664 0.005906 +12 0.244547 0.565766 0.008067 0.005679 +12 0.189872 0.565879 0.008664 0.005906 +12 0.515387 0.565538 0.009561 0.005679 +12 0.464446 0.565538 0.008664 0.005679 +11 0.411114 0.565652 0.007768 0.005906 +13 0.567822 0.565311 0.009262 0.006134 +17 0.789812 0.557587 0.009860 0.007497 +17 0.629220 0.556906 0.010158 0.006588 +18 0.101285 0.521013 0.004780 0.004316 +11 0.627726 0.511586 0.008366 0.004998 +12 0.627726 0.516583 0.008366 0.004998 +17 0.169256 0.510677 0.010457 0.006361 +17 0.169256 0.517038 0.010457 0.006361 +17 0.394234 0.507951 0.010457 0.005906 +17 0.394234 0.513857 0.010457 0.005906 +12 0.896923 0.467401 0.008366 0.005225 +12 0.896474 0.461268 0.008664 0.005679 +12 0.827159 0.467060 0.008664 0.005452 +12 0.826262 0.456383 0.009262 0.005906 +12 0.922318 0.466379 0.006573 0.004543 +12 0.920825 0.461154 0.007171 0.004998 +11 0.628025 0.464448 0.008366 0.006134 +12 0.627278 0.456724 0.009262 0.005225 +13 0.569166 0.464562 0.008963 0.006361 +14 0.541380 0.464448 0.009561 0.006134 +13 0.496415 0.464448 0.009262 0.006134 +18 0.464147 0.464562 0.009262 0.006361 +13 0.436510 0.464562 0.008963 0.006361 +12 0.393039 0.464448 0.009262 0.006134 +11 0.858978 0.464107 0.008963 0.005906 +12 0.858381 0.456383 0.008963 0.005906 +14 0.344637 0.464334 0.009262 0.006361 +14 0.318046 0.464334 0.009262 0.006361 +13 0.270690 0.464448 0.009561 0.006588 +13 0.242605 0.464562 0.009561 0.006815 +13 0.214520 0.464334 0.008963 0.006361 +12 0.167015 0.464334 0.008963 0.006361 +13 0.554377 0.462063 0.008067 0.005906 +14 0.526591 0.462176 0.008664 0.006134 +18 0.450254 0.462063 0.008366 0.005906 +13 0.424261 0.461836 0.007768 0.005452 +18 0.423663 0.450136 0.004780 0.003862 +14 0.331790 0.461381 0.008664 0.004998 +14 0.304452 0.461495 0.008963 0.005225 +13 0.230206 0.461836 0.008664 0.005906 +13 0.202271 0.461608 0.008963 0.005452 +18 0.643263 0.460473 0.010158 0.007724 +18 0.707649 0.456043 0.006274 0.003408 +12 0.674186 0.457065 0.008664 0.005452 +13 0.672244 0.449000 0.008366 0.005679 +18 0.658948 0.457179 0.009262 0.005679 +18 0.657753 0.449114 0.009262 0.005906 +12 0.842247 0.461722 0.008963 0.005225 +12 0.842247 0.456497 0.008963 0.005225 +14 0.360472 0.456951 0.008664 0.006134 +13 0.256797 0.456611 0.009262 0.006361 +12 0.757544 0.454225 0.009262 0.006134 +13 0.764117 0.456724 0.009262 0.006134 +12 0.730654 0.454225 0.009262 0.006134 +13 0.737227 0.456724 0.009262 0.006134 +12 0.581864 0.454112 0.009262 0.006361 +13 0.473708 0.453771 0.009262 0.006134 +12 0.479086 0.453771 0.009262 0.006134 +12 0.118763 0.451954 0.006274 0.003862 +12 0.689573 0.456951 0.008366 0.004771 +12 0.689573 0.452181 0.008366 0.004771 +18 0.718853 0.456838 0.007768 0.004998 +18 0.718853 0.451840 0.007768 0.004998 +12 0.789662 0.451499 0.009561 0.006134 +12 0.789662 0.457633 0.009561 0.006134 +13 0.896325 0.402658 0.008366 0.005679 +11 0.884822 0.403226 0.006872 0.009541 +13 0.827607 0.397433 0.008366 0.005225 +12 0.922169 0.397660 0.009262 0.006134 +12 0.859128 0.395161 0.007469 0.005225 +13 0.842097 0.392776 0.008664 0.005906 +12 0.729758 0.392776 0.008664 0.005906 +11 0.594114 0.389709 0.005079 0.003862 +12 0.789364 0.390164 0.008963 0.006134 +12 0.690618 0.390164 0.009262 0.006134 +12 0.497460 0.389709 0.009561 0.005679 +12 0.270093 0.388914 0.009561 0.006361 +13 0.658650 0.387892 0.008664 0.006134 +13 0.758739 0.387097 0.009262 0.006361 +13 0.567971 0.384598 0.008963 0.007269 +13 0.675381 0.382553 0.008664 0.005452 +11 0.392590 0.382213 0.009561 0.006134 +11 0.630863 0.381304 0.009262 0.006134 +13 0.344189 0.380622 0.008963 0.006134 +11 0.168509 0.380850 0.009561 0.006588 +12 0.742605 0.336211 0.008067 0.005452 +12 0.884225 0.335756 0.009262 0.006361 +18 0.670899 0.325875 0.008664 0.005679 +12 0.563639 0.325534 0.008664 0.006361 +12 0.167762 0.318605 0.006872 0.005225 +12 0.318644 0.316561 0.009860 0.006134 +12 0.257992 0.316220 0.010457 0.006361 +12 0.359576 0.309064 0.009262 0.005679 +12 0.070511 0.289641 0.003585 0.004543 +11 0.622199 0.285098 0.006872 0.006361 +12 0.622498 0.272035 0.009860 0.006588 +12 0.168659 0.284303 0.009262 0.006134 +13 0.830146 0.282599 0.009262 0.005452 +13 0.742307 0.282712 0.009262 0.005679 +12 0.256498 0.281463 0.009860 0.006815 +11 0.266955 0.251590 0.010457 0.007951 +11 0.597699 0.280554 0.006872 0.006361 +11 0.606215 0.254430 0.008366 0.005906 +18 0.564535 0.272376 0.009860 0.006361 +18 0.126830 0.267946 0.005677 0.003408 +13 0.231849 0.265334 0.008963 0.004998 +12 0.191216 0.264652 0.007768 0.004998 +13 0.910816 0.264425 0.009262 0.006361 +12 0.858530 0.264198 0.009860 0.005906 +13 0.803257 0.264198 0.009262 0.005906 +12 0.762026 0.264312 0.009262 0.006134 +12 0.317747 0.262721 0.008664 0.006588 +12 0.317598 0.250114 0.007171 0.004998 +12 0.278757 0.262608 0.009561 0.006361 +13 0.704362 0.254543 0.008664 0.005679 +12 0.649388 0.254543 0.008664 0.005679 +11 0.580968 0.254430 0.009262 0.005906 +17 0.360920 0.254884 0.010756 0.007269 +11 0.598745 0.225920 0.008963 0.007042 +12 0.606513 0.207406 0.007768 0.005452 +11 0.606513 0.212858 0.007768 0.005452 +17 0.565731 0.225579 0.006274 0.006361 +13 0.910965 0.219105 0.009561 0.006134 +13 0.910069 0.210813 0.007768 0.004998 +12 0.859128 0.218651 0.008664 0.005679 +12 0.858679 0.210927 0.008963 0.005679 +13 0.803107 0.218651 0.009561 0.005679 +13 0.802510 0.210700 0.008963 0.005225 +12 0.763968 0.218423 0.009561 0.006134 +12 0.762922 0.210700 0.008664 0.005225 +12 0.566179 0.212290 0.009561 0.006134 +14 0.231700 0.210359 0.008664 0.006361 +13 0.205707 0.210359 0.009262 0.006361 +13 0.169256 0.210359 0.009262 0.006361 +14 0.540036 0.209564 0.008664 0.006134 +14 0.386465 0.208655 0.007469 0.006134 +13 0.360173 0.208314 0.007469 0.005906 +12 0.704810 0.207633 0.008366 0.005452 +12 0.704810 0.213085 0.008366 0.005452 +13 0.218106 0.207519 0.007768 0.005225 +12 0.191814 0.207746 0.008963 0.005679 +12 0.650433 0.207406 0.009561 0.005906 +12 0.650433 0.213312 0.009561 0.005906 +12 0.581416 0.207179 0.007768 0.005452 +12 0.581416 0.212631 0.007768 0.005452 +13 0.244398 0.207406 0.007768 0.005906 +13 0.400508 0.206270 0.008067 0.005906 +12 0.374365 0.205702 0.009561 0.006588 +12 0.293546 0.205361 0.009262 0.006361 +14 0.526442 0.204453 0.007768 0.005906 +13 0.413355 0.203771 0.008664 0.005906 +12 0.260084 0.202862 0.008067 0.005906 +14 0.514939 0.201954 0.009860 0.006361 +12 0.466238 0.201613 0.009860 0.006588 +14 0.440544 0.201272 0.009262 0.006815 +12 0.452943 0.198773 0.008963 0.005452 +13 0.428294 0.198546 0.009262 0.005906 +14 0.501195 0.196842 0.008664 0.006134 +12 0.489991 0.193662 0.005976 0.003408 +14 0.479833 0.189914 0.007768 0.005906 +12 0.904691 0.160950 0.005976 0.002953 +13 0.912758 0.145616 0.007171 0.005452 +12 0.070660 0.164471 0.005677 0.012267 +18 0.087690 0.160268 0.006274 0.005679 +18 0.475799 0.156520 0.010457 0.005452 +12 0.833582 0.153226 0.007768 0.005679 +11 0.259337 0.152204 0.008963 0.005452 +11 0.268001 0.134257 0.007171 0.006815 +11 0.361368 0.150727 0.009860 0.006134 +11 0.318345 0.150159 0.008664 0.004998 +13 0.318494 0.135166 0.007171 0.006815 +12 0.279056 0.149932 0.008963 0.005452 +12 0.205707 0.149250 0.008067 0.004089 +13 0.716911 0.148114 0.007469 0.006361 +12 0.169555 0.146524 0.008664 0.005906 +11 0.744996 0.145388 0.008664 0.006361 +14 0.706752 0.145275 0.008664 0.006134 +14 0.696743 0.142322 0.005378 0.003408 +12 0.441888 0.143685 0.009561 0.006134 +13 0.686585 0.142776 0.005976 0.005225 +13 0.675082 0.137778 0.009860 0.006588 +13 0.649686 0.137665 0.009262 0.006361 +14 0.623394 0.137210 0.009262 0.005906 +12 0.567374 0.136983 0.008963 0.005452 +13 0.528384 0.136756 0.009262 0.005906 +14 0.635644 0.133803 0.008664 0.006361 +13 0.607410 0.133689 0.008366 0.006134 +13 0.663878 0.129259 0.008366 0.005906 +14 0.073200 0.103021 0.005976 0.003408 +12 0.072602 0.088142 0.004183 0.004998 +14 0.072154 0.080759 0.003884 0.004316 +14 0.072602 0.073716 0.006573 0.006134 +12 0.092321 0.077919 0.010756 0.006361 +14 0.927846 0.073262 0.009262 0.005225 +13 0.320735 0.065652 0.006872 0.005906 +14 0.293995 0.065993 0.007768 0.006588 +12 0.262175 0.065538 0.008664 0.006588 +13 0.913953 0.064743 0.008963 0.006361 +14 0.832985 0.064175 0.008963 0.007497 +13 0.805647 0.063948 0.008664 0.007042 +14 0.778757 0.063835 0.008664 0.006815 +13 0.744846 0.063721 0.008963 0.007497 +13 0.307888 0.063153 0.008664 0.006361 +12 0.206603 0.062926 0.008664 0.005906 +13 0.899612 0.062585 0.008366 0.006134 +14 0.335375 0.062699 0.009860 0.006361 +13 0.279803 0.062358 0.008664 0.006588 +12 0.847027 0.060768 0.007768 0.006134 +14 0.819092 0.060768 0.008067 0.006134 +14 0.791903 0.061109 0.008664 0.006815 +13 0.763818 0.060995 0.008664 0.006588 +12 0.624739 0.060995 0.007768 0.007042 +12 0.171497 0.059632 0.008366 0.007042 +11 0.567523 0.058610 0.008067 0.006815 +13 0.887212 0.058610 0.009262 0.007269 +13 0.859725 0.058042 0.008067 0.007042 +11 0.873469 0.055997 0.008067 0.006588 +17 0.362563 0.055657 0.010457 0.008632 +0 0.095160 0.818151 0.023006 0.023853 +2 0.091276 0.572581 0.020615 0.020672 +0 0.094562 0.137324 0.021213 0.026124 +4 0.429788 0.143912 0.009262 0.015675 +5 0.125934 0.881985 0.018823 0.022035 +4 0.816403 0.399705 0.008664 0.017038 +4 0.379594 0.384030 0.008664 0.016129 +4 0.345683 0.308155 0.011353 0.015675 +3 0.753062 0.208428 0.006872 0.015220 +4 0.136391 0.258178 0.009262 0.013857 +4 0.348222 0.209791 0.009860 0.012494 +3 0.733045 0.063267 0.008067 0.020218 +1 0.091575 0.459450 0.023006 0.040663 +5 0.585748 0.681395 0.006872 0.014766 +5 0.383777 0.770672 0.009860 0.011586 +4 0.277114 0.768401 0.009262 0.016583 +4 0.476397 0.681168 0.012847 0.016129 +2 0.089483 0.319060 0.018823 0.019764 +4 0.248730 0.065084 0.009860 0.016583 +4 0.347625 0.254998 0.009860 0.015675 +4 0.695399 0.683212 0.011055 0.017038 +1 0.092172 0.401068 0.023006 0.040209 +2 0.097849 0.936960 0.021811 0.017946 +2 0.090977 0.624602 0.020018 0.020218 +4 0.155512 0.283394 0.009262 0.015220 +2 0.094562 0.880622 0.019420 0.019764 +4 0.153720 0.318605 0.009860 0.016583 +3 0.793995 0.807020 0.006872 0.016583 +4 0.137138 0.740800 0.008366 0.013630 +4 0.130266 0.079964 0.010158 0.014993 +4 0.121004 0.072240 0.009561 0.016811 +4 0.139827 0.068832 0.008963 0.016356 +4 0.126979 0.398455 0.008366 0.015902 +4 0.136241 0.387324 0.008963 0.014539 +0 0.127876 0.576556 0.008366 0.011358 +4 0.119211 0.568151 0.008963 0.013630 +4 0.136540 0.564970 0.008963 0.013630 +4 0.138034 0.807133 0.008963 0.013630 +4 0.119510 0.507269 0.008366 0.012721 +4 0.135793 0.504771 0.009860 0.014993 +4 0.126979 0.324171 0.009561 0.016356 +4 0.119211 0.314857 0.008366 0.014085 +4 0.135345 0.313267 0.009561 0.015448 +4 0.129668 0.143571 0.009561 0.014993 +4 0.121900 0.135847 0.008366 0.015902 +4 0.119809 0.621081 0.008963 0.013176 +5 0.089483 0.077806 0.009262 0.016129 +3 0.085898 0.265448 0.009262 0.016129 +4 0.097102 0.264539 0.008963 0.016129 +4 0.122348 0.933780 0.009262 0.016129 +4 0.129967 0.940822 0.008963 0.016129 +4 0.121452 0.810881 0.009262 0.016129 +3 0.128473 0.816333 0.008963 0.016129 +3 0.073050 0.515334 0.009262 0.016129 +3 0.081416 0.512154 0.009262 0.016129 +4 0.089931 0.518287 0.008963 0.016129 +5 0.177024 0.261813 0.009262 0.016129 +5 0.071706 0.139141 0.005378 0.016129 +3 0.071706 0.156633 0.005378 0.016129 +5 0.070511 0.564403 0.002988 0.016129 +3 0.070511 0.573716 0.002988 0.016129 +4 0.086495 0.699341 0.009262 0.016129 +5 0.100090 0.694571 0.008963 0.016129 +4 0.120257 0.201613 0.009262 0.016129 +4 0.129519 0.209337 0.009262 0.016129 +4 0.138930 0.198887 0.008963 0.016129 +4 0.086495 0.756588 0.009262 0.016129 +5 0.099193 0.752499 0.008963 0.016129 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_32.jpg b/data_dataset/dvo/debug/debug_32.jpg new file mode 100644 index 0000000..6628861 Binary files /dev/null and b/data_dataset/dvo/debug/debug_32.jpg differ diff --git a/data_dataset/dvo/debug/debug_32.txt b/data_dataset/dvo/debug/debug_32.txt new file mode 100644 index 0000000..1c7118d --- /dev/null +++ b/data_dataset/dvo/debug/debug_32.txt @@ -0,0 +1,569 @@ +10 0.912029 0.939063 0.006583 0.003183 +7 0.881209 0.929627 0.011969 0.013870 +7 0.408737 0.928035 0.012567 0.013415 +7 0.720227 0.928263 0.011969 0.013870 +7 0.335428 0.928035 0.011969 0.013415 +8 0.574506 0.924170 0.008977 0.007503 +6 0.840515 0.929286 0.004788 0.021828 +6 0.666068 0.926444 0.008977 0.018417 +6 0.464692 0.926444 0.009575 0.018417 +10 0.221724 0.879036 0.005984 0.003183 +7 0.408139 0.868918 0.011370 0.012506 +7 0.336326 0.868918 0.011370 0.013415 +7 0.717834 0.869827 0.011969 0.016144 +8 0.576002 0.864825 0.011969 0.007049 +6 0.666367 0.867553 0.009575 0.018872 +10 0.756732 0.860164 0.009575 0.004548 +8 0.245961 0.863915 0.010174 0.025239 +7 0.667564 0.809800 0.011969 0.012506 +7 0.434770 0.809800 0.011969 0.012506 +7 0.592759 0.809345 0.011969 0.013415 +7 0.560742 0.809573 0.011370 0.012960 +6 0.464692 0.808436 0.009575 0.018872 +10 0.589767 0.757617 0.005984 0.004093 +10 0.748953 0.745566 0.007181 0.001819 +10 0.719629 0.744657 0.008378 0.001819 +10 0.459605 0.733174 0.006583 0.001592 +10 0.422202 0.710095 0.011969 0.001819 +10 0.354578 0.710095 0.005984 0.001819 +10 0.289348 0.709982 0.009575 0.002046 +10 0.487133 0.708845 0.007780 0.001592 +10 0.720826 0.702592 0.005984 0.004093 +7 0.862657 0.698158 0.011969 0.014779 +10 0.465889 0.688495 0.007181 0.002274 +10 0.406344 0.688950 0.006583 0.003183 +9 0.336026 0.698045 0.008378 0.022738 +10 0.278576 0.689404 0.008378 0.004093 +10 0.500299 0.688267 0.007780 0.002729 +10 0.449731 0.640064 0.013166 0.002729 +7 0.204967 0.629263 0.011969 0.013415 +8 0.241472 0.626307 0.011969 0.008413 +7 0.403351 0.628581 0.011370 0.012960 +8 0.602932 0.630855 0.013166 0.018417 +7 0.365350 0.628354 0.011969 0.013415 +10 0.463196 0.623465 0.008977 0.003183 +10 0.903950 0.620055 0.005984 0.002729 +10 0.463794 0.619372 0.006583 0.002274 +10 0.554159 0.618918 0.007780 0.002274 +7 0.851885 0.586517 0.013166 0.015234 +10 0.884201 0.582765 0.007181 0.002729 +10 0.820766 0.582196 0.005984 0.001592 +7 0.420706 0.579695 0.008977 0.017963 +8 0.259126 0.582196 0.012567 0.013870 +8 0.602633 0.579013 0.012567 0.017508 +8 0.527528 0.579241 0.013166 0.017963 +7 0.335129 0.576285 0.012567 0.013870 +7 0.279174 0.576512 0.011969 0.014325 +10 0.463495 0.567076 0.007181 0.002274 +10 0.261221 0.540246 0.005984 0.003183 +10 0.219629 0.535925 0.008977 0.004548 +10 0.275583 0.523874 0.005984 0.003183 +10 0.584381 0.518417 0.008378 0.004093 +9 0.552663 0.517167 0.009575 0.032515 +7 0.401855 0.513984 0.011969 0.013870 +8 0.885099 0.508072 0.004189 0.014779 +9 0.621484 0.508072 0.009575 0.019327 +10 0.605625 0.499773 0.011370 0.004093 +10 0.232795 0.498636 0.006583 0.004548 +10 0.225015 0.496589 0.007780 0.002274 +10 0.175045 0.494543 0.005984 0.001819 +10 0.756732 0.458618 0.005984 0.003638 +9 0.167265 0.455093 0.005984 0.022510 +9 0.886894 0.455093 0.006583 0.036153 +10 0.376721 0.401660 0.007181 0.002046 +10 0.220527 0.400864 0.008378 0.001819 +10 0.510473 0.400182 0.007780 0.002274 +10 0.533214 0.399159 0.007780 0.002046 +10 0.347995 0.399500 0.014363 0.004548 +9 0.403351 0.388586 0.012567 0.025921 +10 0.616397 0.326739 0.006583 0.003638 +10 0.670557 0.322874 0.009575 0.005002 +7 0.570916 0.323442 0.008977 0.007503 +7 0.548175 0.326171 0.011370 0.012960 +8 0.185817 0.328217 0.011969 0.007958 +7 0.860263 0.325944 0.011969 0.013415 +7 0.839019 0.325489 0.012567 0.012506 +8 0.743567 0.328445 0.013166 0.018417 +7 0.431179 0.325944 0.011969 0.013415 +10 0.609515 0.320373 0.005984 0.002729 +6 0.348893 0.324807 0.008977 0.018417 +6 0.255536 0.325034 0.008977 0.017963 +10 0.415021 0.274443 0.005984 0.002729 +10 0.492220 0.272397 0.007181 0.003183 +8 0.671753 0.270691 0.013166 0.018417 +7 0.858767 0.267735 0.012567 0.013415 +7 0.838420 0.267281 0.011370 0.012506 +7 0.742669 0.266826 0.012567 0.011596 +7 0.570616 0.269782 0.010772 0.008413 +7 0.549372 0.267508 0.011370 0.012960 +8 0.187014 0.269554 0.013166 0.007958 +8 0.371933 0.269782 0.013166 0.018417 +8 0.280670 0.267281 0.012567 0.013415 +10 0.749551 0.226694 0.010772 0.004548 +10 0.723818 0.225784 0.009575 0.002729 +10 0.391981 0.225784 0.006583 0.004548 +8 0.815978 0.209868 0.008378 0.020009 +9 0.767804 0.214416 0.010174 0.026830 +7 0.571514 0.208390 0.011370 0.012960 +8 0.453621 0.210891 0.012567 0.017963 +8 0.373429 0.210664 0.012567 0.018417 +10 0.855177 0.204638 0.007780 0.005002 +10 0.769599 0.203502 0.007780 0.002729 +7 0.475464 0.208163 0.011969 0.013415 +8 0.281269 0.213165 0.012567 0.012506 +8 0.186415 0.208390 0.013166 0.013870 +7 0.838121 0.207708 0.011969 0.013415 +6 0.521843 0.206571 0.008977 0.018417 +9 0.160383 0.104707 0.006583 0.032060 +10 0.534710 0.085721 0.007181 0.002729 +10 0.838121 0.085493 0.005984 0.003183 +7 0.212448 0.084925 0.012567 0.013415 +7 0.430580 0.084698 0.011969 0.013870 +6 0.348294 0.084925 0.008977 0.018872 +6 0.258229 0.084243 0.009575 0.018417 +9 0.541592 0.073442 0.005386 0.023192 +9 0.721724 0.071396 0.004189 0.029104 +12 0.303262 0.945202 0.009874 0.006367 +12 0.435218 0.944634 0.010473 0.006139 +12 0.199880 0.944748 0.008977 0.006367 +12 0.354129 0.944179 0.008677 0.006139 +12 0.182974 0.938722 0.009874 0.006139 +12 0.911580 0.937244 0.009276 0.005912 +12 0.861759 0.937244 0.008977 0.005912 +12 0.836774 0.937131 0.009276 0.005684 +13 0.220676 0.936448 0.009874 0.006139 +12 0.164871 0.933720 0.009575 0.006139 +12 0.279773 0.933492 0.009575 0.006594 +13 0.245811 0.930764 0.008677 0.005684 +12 0.753890 0.925762 0.007481 0.005684 +12 0.354129 0.886085 0.009874 0.006367 +12 0.304458 0.886198 0.009874 0.006594 +12 0.202124 0.886198 0.008677 0.006594 +12 0.434620 0.885289 0.009276 0.006594 +12 0.184022 0.879718 0.010174 0.006367 +13 0.221424 0.877103 0.008977 0.005684 +12 0.280221 0.874147 0.009276 0.006139 +12 0.164871 0.874375 0.009575 0.006594 +11 0.464243 0.871760 0.006284 0.005457 +13 0.245811 0.871305 0.008677 0.005002 +13 0.755835 0.861301 0.007181 0.005457 +11 0.881957 0.857094 0.008677 0.005684 +11 0.837074 0.853911 0.008677 0.006594 +12 0.755087 0.827535 0.008677 0.005684 +11 0.279025 0.824352 0.008079 0.005684 +11 0.278576 0.817303 0.007181 0.005230 +12 0.769150 0.823670 0.008079 0.006139 +12 0.721125 0.823556 0.008977 0.005912 +12 0.687612 0.823670 0.008977 0.006139 +12 0.536655 0.823215 0.008677 0.006139 +12 0.617744 0.822988 0.009276 0.006594 +13 0.782914 0.820714 0.009276 0.006594 +13 0.796379 0.818440 0.008677 0.005684 +11 0.837971 0.816166 0.009276 0.006594 +11 0.336475 0.814802 0.009276 0.005684 +11 0.336475 0.820487 0.009276 0.005684 +12 0.222472 0.814347 0.008677 0.005684 +12 0.222472 0.820032 0.008677 0.005684 +11 0.881059 0.813324 0.009276 0.004548 +12 0.409485 0.812528 0.009276 0.005684 +12 0.409485 0.818213 0.009276 0.005684 +13 0.748953 0.803092 0.005386 0.002729 +11 0.167115 0.804343 0.009276 0.006594 +12 0.721125 0.769554 0.007780 0.006139 +11 0.165021 0.769554 0.008677 0.007049 +11 0.164572 0.756367 0.010174 0.006139 +11 0.836774 0.766940 0.009276 0.006367 +12 0.755386 0.764666 0.008079 0.005457 +12 0.755386 0.770123 0.008079 0.005457 +12 0.618791 0.764779 0.007780 0.005684 +12 0.618342 0.758413 0.009276 0.005684 +11 0.880610 0.764097 0.009575 0.006139 +12 0.688659 0.763870 0.009874 0.005684 +12 0.688659 0.769554 0.009874 0.005684 +12 0.667714 0.758981 0.008677 0.005912 +12 0.667714 0.764893 0.008677 0.005912 +12 0.560443 0.755457 0.009575 0.005230 +12 0.560443 0.760687 0.009575 0.005230 +11 0.279473 0.755684 0.008977 0.005684 +11 0.279473 0.761369 0.008977 0.005684 +12 0.590814 0.755230 0.009276 0.005684 +12 0.590814 0.760914 0.009276 0.005684 +11 0.337074 0.753752 0.009276 0.005002 +11 0.337074 0.758754 0.009276 0.005002 +12 0.536954 0.753297 0.009276 0.005457 +12 0.536954 0.758754 0.009276 0.005457 +12 0.484440 0.753411 0.009575 0.005684 +12 0.484440 0.759095 0.009575 0.005684 +12 0.221574 0.753297 0.009276 0.005457 +12 0.221574 0.758754 0.009276 0.005457 +12 0.466338 0.750682 0.009276 0.005684 +12 0.466338 0.756367 0.009276 0.005684 +11 0.474865 0.734084 0.007181 0.002501 +12 0.434919 0.750682 0.008677 0.005684 +12 0.434919 0.756367 0.008677 0.005684 +12 0.408588 0.750682 0.008677 0.005684 +12 0.408588 0.756367 0.008677 0.005684 +18 0.125972 0.745680 0.005386 0.002956 +12 0.836176 0.708845 0.009276 0.006594 +13 0.781568 0.708731 0.008977 0.006367 +13 0.754488 0.706230 0.008677 0.005912 +13 0.686715 0.706230 0.009575 0.005912 +13 0.737433 0.703615 0.009276 0.006139 +13 0.720527 0.701000 0.008977 0.005457 +13 0.617145 0.700887 0.008079 0.005230 +13 0.698983 0.698158 0.009575 0.006139 +12 0.666367 0.698158 0.009575 0.006139 +13 0.557600 0.698158 0.009874 0.006139 +13 0.632107 0.695771 0.009276 0.005912 +12 0.590515 0.695884 0.008677 0.006139 +13 0.483842 0.695884 0.008977 0.006139 +12 0.221275 0.693611 0.009874 0.006139 +13 0.433423 0.693270 0.009276 0.006367 +13 0.353680 0.693383 0.009575 0.006594 +13 0.303561 0.693383 0.009276 0.006594 +13 0.574806 0.693042 0.009575 0.006821 +12 0.534859 0.693156 0.009874 0.007049 +12 0.337971 0.690996 0.008677 0.005457 +12 0.279324 0.691110 0.008677 0.005684 +12 0.406493 0.690882 0.006882 0.005684 +13 0.500449 0.690655 0.008079 0.005684 +12 0.465739 0.690882 0.008079 0.006139 +12 0.207211 0.690427 0.008079 0.005230 +18 0.207211 0.695657 0.008079 0.005230 +13 0.367893 0.688608 0.008677 0.006139 +13 0.317624 0.688381 0.008677 0.006594 +13 0.448085 0.688154 0.009874 0.007049 +11 0.165320 0.686562 0.009276 0.006594 +12 0.884351 0.637108 0.009874 0.005912 +13 0.911131 0.631992 0.009575 0.005684 +13 0.276332 0.629263 0.009874 0.006594 +12 0.164871 0.627217 0.008977 0.005230 +12 0.862807 0.626762 0.009874 0.006139 +13 0.438211 0.626648 0.009276 0.005912 +12 0.334081 0.626762 0.009276 0.006139 +12 0.733842 0.623806 0.009276 0.006594 +12 0.510174 0.623806 0.009575 0.006594 +13 0.300868 0.623806 0.009874 0.006594 +13 0.463495 0.621760 0.007181 0.005684 +12 0.838570 0.621533 0.008079 0.005684 +12 0.554608 0.621533 0.008677 0.005684 +13 0.758079 0.619031 0.009874 0.006139 +12 0.710203 0.618918 0.009874 0.005912 +12 0.586625 0.618690 0.009276 0.006367 +12 0.815530 0.616303 0.009874 0.006139 +13 0.622232 0.616075 0.009874 0.005684 +13 0.572711 0.616075 0.008977 0.005684 +13 0.776182 0.613574 0.009575 0.006139 +12 0.688360 0.613574 0.009276 0.006139 +13 0.640934 0.611755 0.010174 0.007049 +12 0.885248 0.584698 0.009276 0.005684 +13 0.913076 0.579695 0.009874 0.005684 +12 0.162777 0.575489 0.008977 0.005457 +12 0.864901 0.574693 0.008079 0.005684 +13 0.438211 0.574920 0.009276 0.006139 +12 0.509725 0.573101 0.009874 0.006139 +12 0.733992 0.571965 0.009575 0.006594 +13 0.462747 0.569918 0.008079 0.006139 +13 0.365200 0.569691 0.008079 0.005684 +12 0.838270 0.569009 0.006882 0.005230 +13 0.554458 0.569577 0.008378 0.006367 +13 0.203621 0.567644 0.009276 0.006139 +13 0.758528 0.566735 0.009575 0.006139 +12 0.710802 0.566621 0.009874 0.005912 +12 0.585727 0.566962 0.009874 0.006594 +12 0.403800 0.566962 0.009874 0.006594 +12 0.241472 0.564575 0.008378 0.005457 +12 0.814482 0.564461 0.010174 0.006139 +13 0.621933 0.564461 0.009276 0.006139 +13 0.571364 0.564234 0.008677 0.005684 +12 0.382107 0.564688 0.009575 0.006594 +13 0.777828 0.561733 0.008677 0.006139 +13 0.220078 0.561960 0.009874 0.006594 +12 0.687463 0.561392 0.009874 0.006367 +13 0.640186 0.559459 0.008677 0.007049 +11 0.334680 0.523988 0.009276 0.006139 +11 0.334680 0.530127 0.009276 0.006139 +11 0.247756 0.521942 0.007780 0.005684 +12 0.239228 0.519441 0.008677 0.006139 +12 0.275733 0.521714 0.009874 0.006139 +12 0.275733 0.527854 0.009874 0.006139 +18 0.621335 0.527740 0.009276 0.006367 +12 0.621335 0.521373 0.009276 0.006367 +11 0.813734 0.516030 0.009874 0.005684 +11 0.812986 0.508072 0.009575 0.006139 +12 0.585727 0.515916 0.008677 0.005457 +12 0.585727 0.521373 0.008677 0.005457 +12 0.204518 0.519441 0.009874 0.005684 +12 0.204518 0.513756 0.009874 0.005684 +11 0.758079 0.511141 0.008677 0.005912 +12 0.765859 0.513643 0.008677 0.005912 +12 0.553860 0.510914 0.009575 0.005457 +12 0.553860 0.516371 0.009575 0.005457 +12 0.164123 0.514552 0.009276 0.005457 +12 0.164123 0.509095 0.009276 0.005457 +12 0.509126 0.508413 0.008677 0.005912 +12 0.517504 0.511824 0.008677 0.005912 +12 0.436415 0.506025 0.009276 0.005230 +11 0.436415 0.511255 0.009276 0.005230 +11 0.688360 0.505684 0.009276 0.005002 +11 0.688360 0.510687 0.009276 0.005002 +12 0.490575 0.505684 0.008677 0.005002 +18 0.490575 0.510687 0.008677 0.005002 +18 0.884800 0.510573 0.008378 0.005230 +12 0.884800 0.505343 0.008378 0.005230 +11 0.813585 0.471237 0.009575 0.007049 +11 0.812986 0.458390 0.009575 0.005912 +12 0.510323 0.470214 0.011071 0.007276 +12 0.516308 0.456003 0.003890 0.003865 +12 0.510323 0.453502 0.005087 0.004320 +12 0.516906 0.449181 0.006284 0.005684 +11 0.884351 0.469418 0.009874 0.006139 +11 0.883453 0.455775 0.008079 0.005230 +13 0.335877 0.464075 0.010473 0.006367 +13 0.335877 0.470441 0.010473 0.006367 +18 0.334979 0.448499 0.005087 0.004320 +11 0.756882 0.461687 0.007481 0.005230 +12 0.756433 0.456003 0.008977 0.005684 +11 0.164423 0.458618 0.005087 0.004548 +12 0.168312 0.448727 0.012867 0.005684 +18 0.168312 0.454411 0.012867 0.005684 +12 0.164123 0.467258 0.010473 0.004548 +12 0.164123 0.471805 0.010473 0.004548 +12 0.164123 0.476353 0.010473 0.004548 +11 0.687911 0.455889 0.010174 0.005457 +11 0.687911 0.461346 0.010174 0.005457 +12 0.067475 0.451114 0.005087 0.003183 +12 0.437014 0.385744 0.009276 0.006139 +12 0.884351 0.383697 0.009874 0.006594 +12 0.164123 0.382560 0.009276 0.007049 +12 0.508378 0.380059 0.009575 0.006594 +12 0.403800 0.379945 0.009874 0.006367 +12 0.554159 0.378013 0.010174 0.007049 +12 0.203920 0.376648 0.009276 0.007049 +12 0.364452 0.375853 0.009575 0.007276 +18 0.813136 0.374375 0.009874 0.006139 +11 0.757331 0.373010 0.008378 0.007049 +12 0.586326 0.372556 0.009874 0.007049 +12 0.239826 0.371419 0.009874 0.007503 +18 0.275883 0.369372 0.010174 0.006139 +18 0.688510 0.367553 0.009575 0.007049 +12 0.621035 0.367781 0.009874 0.007503 +18 0.334680 0.367326 0.009874 0.006594 +13 0.600389 0.334243 0.009276 0.005912 +13 0.475613 0.334129 0.009276 0.005684 +12 0.649013 0.331628 0.009575 0.006139 +12 0.524536 0.331628 0.009575 0.006139 +12 0.161879 0.331401 0.009575 0.006594 +18 0.669509 0.328217 0.007481 0.003865 +13 0.616846 0.329127 0.008677 0.005684 +13 0.492519 0.329127 0.008977 0.005684 +13 0.692849 0.328899 0.008677 0.006139 +12 0.895422 0.325603 0.009276 0.005912 +12 0.726212 0.325944 0.009575 0.006594 +12 0.708259 0.323897 0.009575 0.006139 +12 0.771843 0.323329 0.009874 0.005912 +12 0.786206 0.320714 0.008677 0.006139 +13 0.919958 0.320259 0.009276 0.006139 +12 0.816876 0.318668 0.008378 0.005684 +12 0.392430 0.284106 0.009874 0.006594 +13 0.390784 0.272965 0.008977 0.006139 +11 0.432226 0.280696 0.009276 0.006139 +11 0.431029 0.272965 0.009276 0.006139 +13 0.600838 0.275693 0.008977 0.006139 +12 0.474716 0.275239 0.009276 0.006139 +12 0.648863 0.272965 0.009276 0.006139 +12 0.525583 0.272965 0.009276 0.006139 +12 0.415470 0.278081 0.009276 0.005457 +13 0.415470 0.272624 0.009276 0.005457 +12 0.349641 0.272965 0.009276 0.006139 +13 0.298025 0.272851 0.008977 0.005912 +13 0.239228 0.272965 0.009874 0.006139 +13 0.238929 0.265007 0.009276 0.005684 +13 0.211849 0.272965 0.008977 0.006139 +13 0.210802 0.264893 0.009276 0.005457 +12 0.162926 0.272738 0.009276 0.005684 +13 0.316876 0.272624 0.009575 0.006367 +12 0.257481 0.272624 0.009276 0.006367 +13 0.692699 0.270691 0.008378 0.006139 +13 0.617594 0.270464 0.008977 0.005684 +13 0.491921 0.270464 0.008977 0.005684 +11 0.726810 0.267963 0.009575 0.006139 +13 0.893028 0.267167 0.009276 0.006367 +13 0.767654 0.265348 0.008677 0.005457 +13 0.709455 0.265234 0.009575 0.006139 +13 0.785757 0.262506 0.009575 0.006139 +13 0.917265 0.261596 0.009874 0.006139 +13 0.815530 0.260005 0.008677 0.005684 +13 0.298773 0.227945 0.008079 0.006139 +13 0.298474 0.221123 0.007481 0.006139 +13 0.393028 0.227717 0.008677 0.006594 +12 0.258378 0.225330 0.009874 0.005912 +12 0.257780 0.218395 0.009874 0.006139 +12 0.431927 0.225216 0.009874 0.006139 +12 0.680880 0.221237 0.007481 0.004548 +12 0.691203 0.206344 0.008977 0.005684 +12 0.691203 0.197931 0.010174 0.006139 +13 0.317923 0.221919 0.008079 0.005912 +13 0.317774 0.215780 0.007780 0.005457 +13 0.212747 0.222033 0.009575 0.006139 +13 0.211550 0.215666 0.009575 0.006139 +13 0.414123 0.221578 0.008977 0.006139 +12 0.349940 0.218508 0.009874 0.006367 +12 0.349940 0.224875 0.009874 0.006367 +18 0.123579 0.211573 0.007181 0.004320 +12 0.123130 0.206116 0.006284 0.004320 +12 0.725613 0.211119 0.007181 0.006139 +12 0.725464 0.201114 0.009276 0.006139 +12 0.816727 0.210323 0.008677 0.005457 +12 0.816727 0.215780 0.008677 0.005457 +13 0.238630 0.210323 0.008677 0.005457 +13 0.238630 0.215780 0.008677 0.005457 +12 0.066876 0.206003 0.003890 0.005002 +12 0.768851 0.205775 0.008677 0.005457 +12 0.768851 0.211232 0.008677 0.005457 +12 0.163674 0.205662 0.009575 0.006139 +12 0.649611 0.201114 0.008378 0.006139 +12 0.649461 0.193270 0.009276 0.005912 +18 0.132107 0.199636 0.006284 0.003183 +12 0.894075 0.197135 0.009575 0.005457 +12 0.894075 0.202592 0.009575 0.005457 +11 0.600389 0.188722 0.009276 0.005912 +11 0.600389 0.194634 0.009276 0.005912 +11 0.349791 0.159504 0.009575 0.007503 +17 0.163674 0.158822 0.009575 0.007049 +17 0.647965 0.153593 0.005087 0.005684 +12 0.654249 0.133811 0.012867 0.004775 +18 0.654249 0.138586 0.012867 0.004775 +18 0.654249 0.143361 0.012867 0.004775 +13 0.491771 0.150068 0.009874 0.005912 +13 0.491771 0.155980 0.009874 0.005912 +13 0.824207 0.141087 0.004488 0.003411 +11 0.816577 0.153479 0.010174 0.006367 +17 0.816577 0.159845 0.010174 0.006367 +12 0.821065 0.136085 0.011969 0.007958 +18 0.529773 0.143020 0.012867 0.005912 +18 0.525583 0.153593 0.010473 0.006594 +18 0.525583 0.160186 0.010473 0.006594 +18 0.529773 0.137108 0.012867 0.005912 +18 0.481598 0.134379 0.006284 0.003638 +18 0.475464 0.156321 0.010174 0.006139 +13 0.475464 0.150182 0.010174 0.006139 +12 0.163226 0.093224 0.008677 0.005912 +12 0.162777 0.085152 0.009575 0.006139 +18 0.706912 0.086517 0.007481 0.002501 +18 0.694794 0.086858 0.004788 0.003183 +12 0.649461 0.075261 0.009276 0.006367 +12 0.600688 0.075261 0.009874 0.006367 +18 0.115051 0.078217 0.008079 0.005002 +12 0.115051 0.073215 0.008079 0.005002 +12 0.573758 0.072533 0.009874 0.006367 +12 0.895123 0.071965 0.009874 0.006139 +12 0.858318 0.067417 0.009276 0.007049 +12 0.690455 0.067190 0.009874 0.007503 +12 0.546828 0.066962 0.008677 0.007049 +12 0.838270 0.061960 0.009874 0.007049 +12 0.725763 0.062074 0.008677 0.007276 +12 0.524087 0.061278 0.009874 0.007503 +12 0.815230 0.056503 0.009276 0.007049 +12 0.768103 0.055593 0.008977 0.007049 +12 0.473668 0.056162 0.010174 0.008186 +1 0.091113 0.513756 0.022442 0.040246 +2 0.087822 0.576967 0.020646 0.020236 +1 0.867594 0.208618 0.023040 0.032970 +4 0.803561 0.259550 0.012268 0.016598 +2 0.089019 0.266144 0.019449 0.018872 +3 0.560892 0.071737 0.006882 0.020236 +4 0.462148 0.275921 0.009276 0.012051 +4 0.883453 0.196339 0.006882 0.011141 +4 0.878965 0.268190 0.009874 0.014779 +4 0.114752 0.130855 0.009874 0.014779 +3 0.905895 0.262278 0.006284 0.020236 +1 0.090515 0.139723 0.022442 0.039791 +4 0.461849 0.334129 0.009874 0.016598 +0 0.092908 0.808890 0.023639 0.023874 +4 0.878665 0.071510 0.009276 0.016144 +4 0.541741 0.378922 0.009276 0.017053 +3 0.200928 0.215666 0.007481 0.016144 +3 0.675793 0.561733 0.006882 0.020691 +0 0.899611 0.628354 0.017654 0.017508 +3 0.541442 0.510800 0.007481 0.019782 +0 0.090814 0.206571 0.023040 0.025239 +2 0.089019 0.628581 0.019449 0.019782 +1 0.089318 0.084698 0.022442 0.039791 +2 0.089617 0.868236 0.020646 0.019782 +4 0.758079 0.323897 0.009874 0.016144 +3 0.263166 0.520123 0.007481 0.015689 +2 0.088719 0.323670 0.016457 0.016598 +3 0.226661 0.373238 0.007481 0.016598 +4 0.803561 0.317985 0.011071 0.015234 +3 0.906493 0.318895 0.006284 0.017053 +3 0.226960 0.214302 0.006882 0.013415 +4 0.261969 0.369827 0.009874 0.015234 +3 0.605476 0.762733 0.007481 0.019782 +4 0.289797 0.693383 0.010473 0.015689 +3 0.288600 0.624261 0.006882 0.020236 +3 0.899312 0.578558 0.008677 0.019782 +3 0.802663 0.052410 0.006882 0.016144 +4 0.606972 0.526717 0.009276 0.015234 +3 0.233842 0.929854 0.007481 0.019327 +3 0.235039 0.871419 0.007481 0.017053 +4 0.587522 0.335039 0.008677 0.012051 +4 0.541741 0.621533 0.009276 0.016598 +4 0.546828 0.698158 0.009874 0.013415 +4 0.675194 0.511710 0.009276 0.014325 +4 0.352334 0.569463 0.009874 0.016144 +4 0.604279 0.700659 0.009874 0.016598 +3 0.322711 0.530355 0.006882 0.019782 +3 0.451676 0.567190 0.007481 0.017053 +3 0.676691 0.613802 0.006284 0.020236 +2 0.090215 0.926899 0.019449 0.019782 +4 0.419958 0.693156 0.009874 0.016144 +4 0.541741 0.569463 0.009276 0.015234 +1 0.091113 0.748408 0.022442 0.034789 +3 0.499252 0.511028 0.006882 0.018417 +1 0.091712 0.696112 0.022442 0.033879 +4 0.732944 0.874602 0.017056 0.024329 +1 0.090215 0.451910 0.021843 0.035698 +4 0.586625 0.276148 0.009276 0.013415 +4 0.803262 0.215666 0.011670 0.017963 +3 0.322711 0.468281 0.006882 0.019327 +4 0.880162 0.326853 0.008677 0.014779 +3 0.745512 0.516712 0.006284 0.011596 +3 0.426242 0.510573 0.006882 0.020236 +4 0.263166 0.628581 0.009874 0.013415 +1 0.089916 0.403251 0.022442 0.033879 +4 0.122681 0.328786 0.008378 0.014552 +4 0.115500 0.320146 0.008378 0.015462 +4 0.132256 0.316280 0.008378 0.013188 +4 0.115799 0.503183 0.008977 0.013188 +0 0.133453 0.500455 0.008378 0.011369 +4 0.116098 0.741701 0.008378 0.013643 +4 0.134051 0.738745 0.008378 0.013188 +4 0.123878 0.452478 0.008378 0.014552 +4 0.131658 0.440882 0.008378 0.015007 +4 0.122980 0.270805 0.007780 0.014097 +4 0.114901 0.263074 0.008378 0.013188 +4 0.134351 0.860164 0.008977 0.015916 +4 0.122980 0.399272 0.008977 0.013643 +4 0.115200 0.389723 0.008977 0.013643 +4 0.131658 0.387676 0.008378 0.014097 +3 0.230401 0.522055 0.007181 0.019100 +4 0.219928 0.519782 0.008977 0.015462 +4 0.115799 0.689404 0.008977 0.016371 +5 0.487732 0.468622 0.005984 0.014097 +4 0.497307 0.466348 0.008378 0.015007 +4 0.116996 0.802183 0.008977 0.014552 +4 0.116846 0.865507 0.008677 0.016598 +4 0.125075 0.870737 0.008378 0.016598 +4 0.124626 0.630173 0.008677 0.016598 +4 0.133453 0.622669 0.008378 0.016598 +4 0.124028 0.695657 0.008677 0.016598 +4 0.133453 0.688154 0.008378 0.016598 +5 0.869988 0.508868 0.008677 0.014097 +4 0.118043 0.924170 0.008677 0.016598 +5 0.125673 0.928035 0.008378 0.016598 +5 0.125224 0.806162 0.008677 0.016598 +4 0.133453 0.800023 0.008378 0.016598 +4 0.115350 0.571510 0.008677 0.016598 +4 0.124028 0.579695 0.008677 0.016598 +4 0.132855 0.570600 0.008378 0.016598 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_33.jpg b/data_dataset/dvo/debug/debug_33.jpg new file mode 100644 index 0000000..b17a01e Binary files /dev/null and b/data_dataset/dvo/debug/debug_33.jpg differ diff --git a/data_dataset/dvo/debug/debug_33.txt b/data_dataset/dvo/debug/debug_33.txt new file mode 100644 index 0000000..3a69589 --- /dev/null +++ b/data_dataset/dvo/debug/debug_33.txt @@ -0,0 +1,523 @@ +8 0.866248 0.940996 0.013166 0.013870 +8 0.600838 0.943952 0.013764 0.018872 +7 0.507481 0.940769 0.012567 0.013415 +7 0.741771 0.940541 0.011969 0.012960 +10 0.406942 0.936107 0.006583 0.002729 +7 0.378217 0.940314 0.012567 0.013415 +7 0.380012 0.886198 0.011370 0.013415 +7 0.230102 0.886198 0.011969 0.013415 +10 0.757331 0.868577 0.005984 0.002274 +10 0.353381 0.845271 0.005984 0.002501 +7 0.246260 0.846407 0.009575 0.007503 +10 0.598743 0.841974 0.013166 0.001819 +10 0.579593 0.841291 0.008378 0.002274 +10 0.187014 0.842428 0.008378 0.004548 +9 0.896768 0.833333 0.007181 0.007731 +8 0.804010 0.821396 0.009575 0.008413 +10 0.581388 0.782515 0.009575 0.002501 +10 0.583184 0.780127 0.008378 0.001819 +10 0.243567 0.767622 0.006583 0.002274 +10 0.283064 0.767394 0.007780 0.004548 +7 0.172950 0.767281 0.011370 0.012960 +8 0.228306 0.769782 0.013166 0.019782 +10 0.337223 0.752387 0.007181 0.002729 +9 0.279773 0.711005 0.004788 0.017735 +10 0.492220 0.703729 0.008378 0.001819 +10 0.711849 0.696680 0.022741 0.002274 +10 0.877020 0.695998 0.009575 0.001819 +10 0.243866 0.659618 0.007181 0.003638 +10 0.398265 0.658709 0.011969 0.004548 +10 0.883303 0.657572 0.010174 0.003183 +10 0.486834 0.658481 0.011969 0.005002 +10 0.871335 0.657572 0.011370 0.004093 +10 0.714542 0.657799 0.017355 0.004548 +9 0.614602 0.648704 0.005386 0.021373 +9 0.734291 0.646544 0.011370 0.024329 +9 0.378815 0.646089 0.012567 0.025239 +7 0.195691 0.594020 0.012567 0.013870 +7 0.327050 0.594020 0.011969 0.013870 +7 0.882406 0.592656 0.011969 0.013870 +7 0.708857 0.592656 0.011969 0.012960 +7 0.576002 0.593338 0.011969 0.013415 +7 0.447935 0.593338 0.011969 0.013415 +7 0.858169 0.593111 0.011370 0.013870 +7 0.731299 0.592883 0.010174 0.013415 +6 0.470676 0.592883 0.008378 0.016144 +6 0.600239 0.591746 0.010174 0.017508 +6 0.218133 0.591974 0.009575 0.018872 +6 0.343208 0.591291 0.009575 0.018417 +7 0.859366 0.547408 0.011370 0.014325 +7 0.732795 0.547635 0.011969 0.012960 +7 0.708558 0.547635 0.011370 0.012960 +7 0.575105 0.547635 0.011370 0.012960 +7 0.195093 0.547863 0.011370 0.013415 +7 0.882705 0.547408 0.011370 0.014325 +7 0.447935 0.547408 0.011969 0.013415 +7 0.327648 0.547408 0.011969 0.013415 +6 0.600239 0.546726 0.008977 0.018417 +6 0.216936 0.546271 0.009575 0.018417 +6 0.469479 0.545362 0.009575 0.017508 +6 0.343208 0.545134 0.009575 0.017963 +10 0.301616 0.511596 0.006583 0.003183 +7 0.859964 0.501478 0.011370 0.013415 +7 0.736086 0.501478 0.011370 0.013415 +7 0.712148 0.501705 0.012567 0.013870 +7 0.576302 0.501251 0.012567 0.012960 +7 0.448534 0.501478 0.011969 0.013415 +7 0.327050 0.501251 0.011969 0.013870 +7 0.196290 0.501705 0.012567 0.013870 +6 0.600539 0.500114 0.009575 0.017963 +6 0.470377 0.499886 0.008977 0.017508 +6 0.344704 0.499432 0.008977 0.018417 +6 0.219330 0.499204 0.009575 0.017963 +10 0.158288 0.474307 0.005984 0.004093 +10 0.857870 0.451796 0.005984 0.003638 +10 0.911430 0.448840 0.008977 0.003183 +10 0.324656 0.445657 0.005984 0.003183 +9 0.375823 0.444861 0.008977 0.027967 +10 0.788151 0.443383 0.008977 0.005002 +9 0.237582 0.446680 0.008977 0.023874 +10 0.880910 0.441337 0.006583 0.004548 +8 0.733992 0.444407 0.013166 0.012960 +10 0.393477 0.440200 0.007181 0.004093 +7 0.835428 0.443952 0.011370 0.013870 +7 0.686116 0.443724 0.011969 0.014325 +7 0.553860 0.443497 0.011969 0.012960 +8 0.601436 0.445771 0.012567 0.018417 +7 0.471574 0.443042 0.011370 0.012960 +7 0.427588 0.443042 0.011969 0.012960 +8 0.344105 0.445316 0.012567 0.018417 +7 0.300718 0.443042 0.011969 0.013870 +7 0.220227 0.442588 0.011370 0.012960 +10 0.237882 0.437472 0.009575 0.004093 +10 0.777678 0.434516 0.010772 0.002729 +10 0.758229 0.408595 0.050868 0.004548 +7 0.602932 0.390291 0.011969 0.008413 +8 0.469180 0.389609 0.012567 0.007958 +7 0.195990 0.392110 0.011969 0.013870 +8 0.345901 0.388699 0.012567 0.007049 +6 0.552364 0.391655 0.008977 0.017508 +6 0.217235 0.390746 0.008977 0.017508 +10 0.511670 0.349932 0.008977 0.003638 +10 0.757331 0.347885 0.019150 0.003183 +10 0.739976 0.347203 0.013166 0.004548 +8 0.261819 0.346180 0.007181 0.009777 +7 0.344405 0.341405 0.011969 0.013415 +9 0.681628 0.329809 0.004189 0.028422 +10 0.760323 0.277171 0.005984 0.002729 +7 0.793836 0.277285 0.011969 0.013415 +7 0.687313 0.277058 0.011969 0.012960 +7 0.559545 0.274557 0.011370 0.008868 +7 0.436864 0.275921 0.011370 0.013415 +7 0.330341 0.275239 0.011370 0.012960 +7 0.215141 0.275011 0.011969 0.013415 +10 0.772292 0.244884 0.008378 0.002729 +10 0.589767 0.244884 0.031119 0.004548 +9 0.758229 0.237949 0.010174 0.021146 +10 0.613704 0.221464 0.007181 0.003183 +7 0.438659 0.224761 0.011370 0.013870 +7 0.216338 0.223397 0.011969 0.013870 +10 0.589168 0.195316 0.005984 0.001819 +10 0.580790 0.195202 0.005984 0.002046 +10 0.570616 0.195202 0.011969 0.002046 +10 0.214841 0.177581 0.008977 0.002729 +10 0.527229 0.118236 0.007780 0.002274 +10 0.801915 0.091860 0.007780 0.002274 +10 0.717534 0.090950 0.013764 0.005002 +9 0.798624 0.079582 0.009575 0.021828 +7 0.332436 0.070600 0.011969 0.012960 +9 0.435069 0.072306 0.004189 0.023647 +10 0.486535 0.062528 0.006583 0.002729 +9 0.407241 0.068327 0.004788 0.022965 +11 0.691352 0.940882 0.009276 0.005912 +12 0.635248 0.940996 0.009575 0.006139 +12 0.550718 0.940996 0.009276 0.006139 +11 0.173399 0.938950 0.008677 0.005684 +12 0.900509 0.938495 0.009874 0.005684 +12 0.406194 0.938495 0.007481 0.005684 +11 0.327798 0.938267 0.008677 0.005230 +12 0.817175 0.938154 0.009575 0.005912 +11 0.263764 0.938267 0.009874 0.006139 +12 0.467983 0.935766 0.010174 0.006594 +13 0.551915 0.904843 0.009276 0.006594 +13 0.693148 0.904388 0.009276 0.006594 +13 0.817774 0.901660 0.009575 0.005684 +12 0.468731 0.899159 0.009276 0.006139 +13 0.636146 0.885971 0.008977 0.006139 +12 0.578247 0.885971 0.009276 0.006139 +13 0.779025 0.885744 0.009874 0.006594 +12 0.721724 0.885630 0.008977 0.006367 +12 0.407391 0.883697 0.008677 0.006139 +11 0.327798 0.883697 0.009874 0.006139 +12 0.263465 0.883583 0.009276 0.005912 +11 0.173698 0.883697 0.009276 0.006139 +12 0.902005 0.883015 0.009276 0.005684 +12 0.843507 0.883015 0.009575 0.005684 +12 0.491023 0.880855 0.009575 0.005912 +13 0.526780 0.880514 0.009276 0.006139 +18 0.894225 0.833106 0.005685 0.002729 +13 0.283363 0.832538 0.010174 0.006594 +12 0.325404 0.832083 0.009874 0.006594 +13 0.264512 0.830036 0.008977 0.006139 +12 0.228755 0.827308 0.009276 0.006139 +12 0.203172 0.825034 0.008977 0.006139 +13 0.552364 0.824352 0.008977 0.005684 +12 0.578097 0.822078 0.010174 0.005684 +13 0.818223 0.821623 0.009276 0.005684 +13 0.637792 0.821851 0.009874 0.006139 +12 0.510024 0.821851 0.009276 0.006139 +12 0.173399 0.822078 0.009874 0.006594 +12 0.903800 0.819350 0.009276 0.005684 +12 0.742071 0.819350 0.009575 0.005684 +12 0.469629 0.819577 0.009874 0.006139 +12 0.844554 0.819122 0.009276 0.006139 +13 0.407690 0.819122 0.009874 0.006139 +12 0.380162 0.816849 0.009276 0.006139 +12 0.694494 0.816394 0.008977 0.006139 +12 0.352035 0.813665 0.009276 0.007958 +17 0.327499 0.780696 0.010473 0.006594 +12 0.326601 0.764779 0.009874 0.005684 +12 0.355326 0.775011 0.009874 0.006139 +12 0.379563 0.772055 0.009276 0.006594 +13 0.244464 0.770123 0.008378 0.005457 +13 0.244464 0.775580 0.008378 0.005457 +12 0.407690 0.769554 0.009276 0.006139 +14 0.742819 0.768986 0.009276 0.005912 +13 0.696140 0.769441 0.009276 0.006821 +14 0.779473 0.768645 0.009575 0.006139 +13 0.263764 0.767394 0.008677 0.005457 +13 0.263764 0.772851 0.008677 0.005457 +14 0.796978 0.766144 0.009874 0.005684 +12 0.601287 0.766371 0.009874 0.006139 +11 0.469031 0.766371 0.009874 0.006139 +18 0.128217 0.765462 0.006882 0.004320 +14 0.761071 0.766030 0.009874 0.006367 +13 0.719928 0.766144 0.009575 0.006594 +12 0.200778 0.765007 0.009575 0.005230 +12 0.200778 0.770236 0.009575 0.005230 +13 0.285009 0.764666 0.009276 0.005457 +13 0.285009 0.770123 0.009276 0.005457 +12 0.552663 0.763870 0.009575 0.005684 +12 0.868043 0.763415 0.009575 0.005684 +18 0.136595 0.760573 0.006882 0.004548 +12 0.819270 0.760914 0.009575 0.006139 +12 0.552813 0.723397 0.009874 0.006594 +11 0.560293 0.705434 0.004488 0.006139 +11 0.636595 0.721123 0.008677 0.005684 +12 0.636445 0.705434 0.006583 0.005230 +13 0.820616 0.720668 0.010473 0.005684 +11 0.827499 0.698272 0.003890 0.005457 +12 0.579443 0.720896 0.009276 0.006139 +12 0.509425 0.720896 0.009276 0.006139 +11 0.172202 0.718849 0.009874 0.006594 +13 0.903501 0.718054 0.009874 0.005912 +12 0.845452 0.717826 0.009874 0.006367 +12 0.741921 0.717826 0.009874 0.006367 +12 0.468133 0.717940 0.009276 0.006594 +12 0.693896 0.716121 0.009575 0.005684 +13 0.425943 0.716121 0.008677 0.005684 +13 0.407241 0.712824 0.009575 0.006367 +12 0.381658 0.710437 0.009874 0.006139 +13 0.285009 0.707935 0.009276 0.006594 +11 0.326900 0.707481 0.010473 0.006594 +13 0.263615 0.705548 0.008378 0.005457 +18 0.570766 0.703047 0.011670 0.002274 +12 0.228007 0.703161 0.010174 0.006139 +18 0.877917 0.696680 0.013166 0.002274 +11 0.173100 0.646544 0.009276 0.006594 +14 0.637792 0.645862 0.009874 0.006139 +14 0.601287 0.646089 0.009874 0.006594 +13 0.553411 0.645634 0.009874 0.006594 +13 0.577199 0.643133 0.009575 0.006139 +14 0.902902 0.642678 0.008677 0.006139 +14 0.618043 0.642451 0.008677 0.005684 +12 0.509276 0.642906 0.008977 0.006594 +14 0.867145 0.642224 0.008977 0.006139 +13 0.819420 0.641769 0.009276 0.006139 +14 0.655147 0.641883 0.008677 0.006367 +13 0.844554 0.639950 0.009276 0.006139 +13 0.426840 0.640177 0.009276 0.006594 +14 0.920407 0.639495 0.009575 0.007049 +14 0.883752 0.639268 0.008677 0.006594 +12 0.743118 0.639723 0.009874 0.007503 +12 0.469928 0.639040 0.009276 0.006139 +12 0.378366 0.638131 0.008079 0.006139 +12 0.694195 0.636767 0.008977 0.006139 +11 0.326002 0.635402 0.008677 0.007049 +13 0.285607 0.635402 0.009276 0.007049 +13 0.264213 0.632788 0.008977 0.006367 +12 0.227110 0.630400 0.008977 0.007958 +12 0.551317 0.606753 0.008079 0.006139 +11 0.172651 0.602206 0.009575 0.006139 +12 0.301167 0.601751 0.009276 0.006139 +11 0.684470 0.598681 0.009874 0.006367 +11 0.771095 0.596066 0.009575 0.005684 +12 0.425494 0.593565 0.009575 0.006139 +12 0.834680 0.593111 0.009874 0.006139 +12 0.913226 0.592997 0.010174 0.006821 +12 0.550718 0.561164 0.009276 0.005912 +12 0.301167 0.556048 0.009276 0.005684 +12 0.073609 0.559459 0.004788 0.013870 +12 0.684770 0.553206 0.009276 0.006367 +18 0.897965 0.551501 0.005984 0.003865 +12 0.172352 0.551046 0.009575 0.005684 +11 0.771245 0.550364 0.009874 0.006139 +12 0.912777 0.548090 0.009276 0.006139 +12 0.835877 0.547863 0.009874 0.006594 +12 0.426541 0.547863 0.009874 0.006594 +12 0.073758 0.531946 0.004488 0.009777 +12 0.073758 0.516144 0.004488 0.007276 +12 0.553710 0.515121 0.009276 0.005684 +12 0.301616 0.509663 0.010174 0.005684 +12 0.684770 0.507162 0.009276 0.006139 +12 0.773040 0.504434 0.008677 0.005230 +12 0.173100 0.504775 0.009276 0.005912 +12 0.836026 0.501478 0.009575 0.006594 +11 0.426840 0.501251 0.010473 0.007049 +12 0.073758 0.499090 0.004488 0.010005 +12 0.913974 0.491246 0.009276 0.006139 +12 0.576750 0.454638 0.008677 0.003865 +11 0.576750 0.448386 0.009874 0.005912 +11 0.858917 0.454638 0.009276 0.005230 +12 0.858618 0.448727 0.008677 0.005684 +13 0.756583 0.451455 0.009276 0.005684 +11 0.756583 0.457140 0.009276 0.005684 +12 0.706613 0.454297 0.008677 0.005912 +17 0.714393 0.451569 0.008677 0.005912 +13 0.896619 0.449068 0.009276 0.005457 +13 0.896619 0.454525 0.009276 0.005457 +18 0.881358 0.447362 0.008677 0.003865 +12 0.773639 0.448272 0.009874 0.005684 +12 0.773639 0.453956 0.009874 0.005684 +13 0.617744 0.448158 0.009276 0.005457 +13 0.617744 0.453615 0.009276 0.005457 +11 0.448085 0.448272 0.009874 0.005684 +11 0.448085 0.453956 0.009874 0.005684 +12 0.172202 0.448272 0.009874 0.006594 +13 0.912029 0.446680 0.008378 0.005230 +13 0.912029 0.451910 0.008378 0.005230 +11 0.787403 0.451796 0.008677 0.005457 +12 0.787403 0.446339 0.008677 0.005457 +13 0.632705 0.445998 0.009276 0.005684 +13 0.632705 0.451683 0.009276 0.005684 +12 0.488779 0.445998 0.008677 0.005684 +12 0.488779 0.451683 0.008677 0.005684 +11 0.236984 0.445998 0.007780 0.005684 +11 0.237133 0.440200 0.009276 0.005002 +13 0.928336 0.443383 0.009276 0.005912 +13 0.928336 0.449295 0.009276 0.005912 +13 0.649461 0.443270 0.009276 0.005684 +13 0.649461 0.448954 0.009276 0.005684 +13 0.361161 0.442929 0.009575 0.005912 +13 0.361161 0.448840 0.009575 0.005912 +12 0.325554 0.442815 0.008977 0.005684 +12 0.325554 0.448499 0.008977 0.005684 +12 0.195990 0.448386 0.010174 0.005912 +12 0.195990 0.442474 0.010174 0.005912 +13 0.377618 0.445884 0.008977 0.005457 +13 0.377618 0.440427 0.008977 0.005457 +13 0.394225 0.437472 0.009874 0.005912 +13 0.394225 0.443383 0.009874 0.005912 +14 0.073758 0.415757 0.004488 0.003411 +12 0.834979 0.402001 0.009276 0.005912 +12 0.911281 0.396658 0.008677 0.006139 +12 0.632256 0.396317 0.009575 0.006367 +11 0.171305 0.395180 0.009276 0.005912 +11 0.860263 0.394043 0.009575 0.006367 +14 0.802962 0.391428 0.008677 0.005684 +12 0.734440 0.391428 0.009276 0.005684 +14 0.787403 0.388927 0.009874 0.006139 +11 0.687163 0.388699 0.009276 0.006594 +18 0.751646 0.346862 0.020946 0.002956 +11 0.553561 0.345271 0.010174 0.006139 +11 0.302962 0.339245 0.009276 0.005457 +12 0.378067 0.339472 0.009874 0.006367 +14 0.519898 0.334811 0.009874 0.006139 +12 0.472621 0.334811 0.009874 0.006139 +12 0.835278 0.332992 0.009874 0.006139 +13 0.504189 0.332083 0.009575 0.006139 +11 0.427738 0.332083 0.009874 0.006139 +12 0.218582 0.328899 0.008079 0.005684 +14 0.268253 0.328672 0.009276 0.005684 +11 0.912777 0.327649 0.009276 0.006367 +12 0.633303 0.326626 0.009276 0.006139 +13 0.250898 0.325148 0.009276 0.006821 +11 0.859964 0.324807 0.008977 0.007049 +11 0.172501 0.324807 0.009276 0.007049 +14 0.804608 0.322419 0.008977 0.005912 +12 0.734440 0.322078 0.009276 0.006139 +11 0.685667 0.320487 0.009874 0.006594 +14 0.786804 0.318895 0.009276 0.007049 +12 0.468432 0.284561 0.009874 0.006594 +12 0.360712 0.284106 0.008677 0.005684 +11 0.409186 0.283879 0.008677 0.006139 +12 0.308498 0.283652 0.009575 0.005684 +12 0.247756 0.283652 0.008977 0.005684 +12 0.287702 0.283424 0.009874 0.006139 +12 0.191951 0.283197 0.008677 0.005684 +12 0.172053 0.283197 0.008378 0.005684 +12 0.535458 0.282174 0.009874 0.006367 +12 0.516457 0.281833 0.010174 0.005684 +12 0.577050 0.279786 0.009276 0.006139 +12 0.715290 0.277171 0.009276 0.006367 +12 0.668911 0.277285 0.009874 0.006594 +12 0.643477 0.277171 0.009276 0.006367 +13 0.129713 0.275239 0.007481 0.004320 +12 0.911879 0.275693 0.009874 0.006139 +12 0.817624 0.275352 0.008079 0.005457 +12 0.778725 0.275125 0.008079 0.005912 +12 0.759575 0.275125 0.009276 0.005912 +17 0.120586 0.273647 0.005984 0.003865 +17 0.852334 0.272965 0.009276 0.006139 +12 0.840963 0.269327 0.005685 0.003411 +11 0.644674 0.234538 0.009276 0.005684 +12 0.759874 0.232265 0.009874 0.006594 +12 0.713794 0.229764 0.009874 0.006139 +12 0.911430 0.227945 0.008977 0.006139 +11 0.409485 0.227376 0.009276 0.005912 +11 0.670407 0.226580 0.009276 0.006139 +12 0.892280 0.225443 0.008378 0.005684 +11 0.457959 0.224989 0.010473 0.006594 +14 0.611909 0.223965 0.008977 0.005912 +12 0.562687 0.223397 0.009276 0.006139 +11 0.854129 0.222715 0.009276 0.006594 +12 0.816427 0.222601 0.009276 0.006367 +13 0.596200 0.221123 0.009276 0.006139 +11 0.172801 0.221123 0.009874 0.006139 +11 0.519599 0.220668 0.009874 0.006139 +12 0.797127 0.220100 0.008977 0.005912 +12 0.235039 0.218395 0.009874 0.006139 +12 0.779922 0.217030 0.009276 0.006139 +14 0.378965 0.217030 0.008079 0.006139 +12 0.331089 0.216576 0.008079 0.006139 +14 0.364153 0.214075 0.008977 0.006594 +11 0.288001 0.213620 0.010473 0.006594 +17 0.758977 0.190541 0.009874 0.006821 +13 0.852932 0.187926 0.009276 0.006139 +12 0.910981 0.185653 0.009276 0.006139 +17 0.644823 0.186335 0.010772 0.007503 +12 0.892430 0.182924 0.009276 0.006139 +11 0.331538 0.181560 0.008977 0.006139 +12 0.873579 0.180423 0.008677 0.005684 +17 0.884201 0.163256 0.010772 0.003183 +12 0.517355 0.180309 0.009575 0.006367 +11 0.411131 0.179400 0.008977 0.005457 +11 0.411131 0.184857 0.008977 0.005457 +11 0.288300 0.178604 0.009874 0.006594 +11 0.438360 0.177126 0.009575 0.005457 +11 0.438360 0.182583 0.009575 0.005457 +11 0.215889 0.175307 0.008677 0.005457 +14 0.612956 0.175421 0.009276 0.006594 +12 0.560892 0.175307 0.009874 0.006367 +14 0.596798 0.172692 0.008079 0.004775 +12 0.538151 0.172465 0.008079 0.005230 +11 0.173698 0.172351 0.009276 0.006821 +12 0.130461 0.170191 0.005386 0.003865 +11 0.333633 0.143020 0.009575 0.007276 +11 0.288899 0.139723 0.009276 0.006139 +11 0.517504 0.137790 0.008677 0.005912 +11 0.525434 0.119941 0.006583 0.003865 +17 0.411730 0.137221 0.010174 0.006594 +11 0.217086 0.135175 0.009874 0.006139 +11 0.561789 0.134834 0.009276 0.006367 +18 0.549521 0.132333 0.008079 0.005002 +12 0.549521 0.137335 0.008079 0.005002 +17 0.645422 0.132788 0.010772 0.006821 +12 0.537702 0.132333 0.009575 0.005912 +11 0.173100 0.131878 0.009276 0.005912 +11 0.853830 0.131764 0.009874 0.006594 +11 0.761370 0.130855 0.010473 0.007503 +12 0.893028 0.129036 0.009276 0.005684 +12 0.913076 0.126535 0.008677 0.006139 +11 0.644823 0.082538 0.009575 0.005912 +12 0.578845 0.079468 0.010473 0.006594 +13 0.520197 0.076057 0.009276 0.004775 +11 0.854428 0.075944 0.009874 0.006821 +12 0.819270 0.075830 0.009575 0.006594 +12 0.760772 0.075261 0.009276 0.006367 +13 0.729054 0.075148 0.009276 0.007049 +12 0.691951 0.075148 0.009276 0.007049 +12 0.893926 0.073101 0.008677 0.005684 +12 0.799820 0.072988 0.008378 0.005457 +12 0.913226 0.070941 0.008977 0.005912 +12 0.782166 0.070373 0.009575 0.006594 +11 0.290245 0.067872 0.008977 0.006139 +12 0.364004 0.066166 0.009276 0.006367 +14 0.487283 0.065257 0.008079 0.005457 +12 0.439707 0.064234 0.008677 0.006139 +14 0.472920 0.062301 0.009276 0.006821 +11 0.410981 0.061733 0.008677 0.006594 +12 0.075254 0.059459 0.003890 0.003865 +11 0.217983 0.056048 0.009276 0.005230 +11 0.174596 0.052410 0.009874 0.007049 +0 0.099192 0.441678 0.023040 0.024329 +0 0.099491 0.170873 0.023639 0.024784 +0 0.099791 0.117212 0.021843 0.033879 +1 0.098594 0.222942 0.021843 0.040700 +0 0.098594 0.656321 0.021843 0.033424 +4 0.538749 0.722942 0.009276 0.016598 +2 0.095302 0.273647 0.020048 0.020236 +0 0.098594 0.767053 0.021843 0.023874 +1 0.097397 0.548317 0.021843 0.040246 +2 0.098893 0.592883 0.023639 0.019327 +4 0.897217 0.592428 0.009276 0.013870 +4 0.805655 0.643588 0.009276 0.014325 +2 0.267953 0.544225 0.013465 0.013870 +4 0.314632 0.938040 0.009874 0.015689 +2 0.101287 0.939859 0.024835 0.019327 +4 0.701526 0.277740 0.009276 0.016598 +1 0.097098 0.340950 0.022442 0.041155 +4 0.313136 0.780696 0.009276 0.015689 +1 0.097995 0.501251 0.021843 0.040700 +2 0.097995 0.884834 0.021843 0.020236 +2 0.268851 0.498067 0.012867 0.014325 +4 0.538749 0.825261 0.009276 0.013870 +1 0.099192 0.711346 0.021843 0.035243 +1 0.100688 0.831401 0.022442 0.040700 +4 0.680880 0.904843 0.009874 0.018417 +1 0.099791 0.065371 0.021843 0.034789 +4 0.711400 0.886198 0.008677 0.012960 +4 0.139587 0.644725 0.009276 0.015689 +4 0.131358 0.889723 0.008977 0.013188 +4 0.122083 0.880855 0.008378 0.013643 +0 0.140634 0.876990 0.008378 0.010459 +4 0.131059 0.712597 0.008378 0.012733 +4 0.121783 0.702819 0.008977 0.015916 +4 0.140036 0.699864 0.008378 0.014552 +4 0.129862 0.221464 0.008378 0.016371 +4 0.120287 0.212824 0.008378 0.016371 +4 0.139138 0.209641 0.008977 0.016371 +4 0.121185 0.536380 0.008977 0.014097 +4 0.139737 0.532742 0.008977 0.014097 +4 0.122382 0.111869 0.008977 0.013643 +4 0.140634 0.109141 0.008378 0.013643 +4 0.128965 0.339245 0.008977 0.017281 +4 0.120287 0.330377 0.008378 0.015916 +4 0.138540 0.327876 0.008977 0.015462 +4 0.132256 0.066166 0.008378 0.015916 +4 0.142130 0.056162 0.008977 0.014097 +4 0.130461 0.389723 0.008378 0.016371 +4 0.121185 0.381992 0.008977 0.015462 +4 0.139737 0.379491 0.008977 0.015007 +4 0.131957 0.943838 0.010174 0.015916 +4 0.123279 0.935880 0.009575 0.016371 +4 0.131358 0.829695 0.008977 0.015916 +4 0.122382 0.821737 0.008977 0.016371 +4 0.140036 0.819236 0.009575 0.015916 +4 0.130162 0.500000 0.008977 0.015007 +4 0.120886 0.491132 0.008378 0.016371 +4 0.139138 0.488404 0.008977 0.015462 +4 0.130461 0.657572 0.008378 0.015462 +4 0.120586 0.649386 0.008977 0.016371 +4 0.131658 0.597090 0.011969 0.016371 +4 0.122980 0.588904 0.008977 0.016371 +4 0.140934 0.585721 0.008977 0.016371 +5 0.079144 0.074920 0.009276 0.015689 +3 0.086326 0.076512 0.009276 0.015689 +5 0.093656 0.077649 0.008977 0.015689 +4 0.130910 0.442360 0.009276 0.015689 +4 0.139138 0.433038 0.008977 0.015689 +4 0.091113 0.393020 0.009276 0.015689 +5 0.103830 0.388927 0.008977 0.015689 +3 0.884650 0.503297 0.009276 0.015689 +5 0.898564 0.503524 0.008977 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_34.jpg b/data_dataset/dvo/debug/debug_34.jpg new file mode 100644 index 0000000..85230ce Binary files /dev/null and b/data_dataset/dvo/debug/debug_34.jpg differ diff --git a/data_dataset/dvo/debug/debug_34.txt b/data_dataset/dvo/debug/debug_34.txt new file mode 100644 index 0000000..3ea7538 --- /dev/null +++ b/data_dataset/dvo/debug/debug_34.txt @@ -0,0 +1,472 @@ +10 0.718480 0.948843 0.006855 0.003857 +10 0.696721 0.948843 0.006259 0.003857 +8 0.220715 0.937500 0.010432 0.007940 +6 0.844858 0.937500 0.009240 0.019737 +6 0.822206 0.938407 0.008048 0.024274 +6 0.630253 0.938407 0.005663 0.024274 +10 0.513413 0.904832 0.006855 0.002949 +10 0.512817 0.901883 0.006855 0.002495 +10 0.384948 0.895417 0.007452 0.002269 +7 0.210730 0.892128 0.012519 0.014292 +10 0.346498 0.881352 0.006259 0.002722 +9 0.393592 0.884188 0.008644 0.022913 +9 0.306259 0.849025 0.006855 0.031987 +10 0.431744 0.845622 0.008644 0.004764 +9 0.194486 0.849932 0.011028 0.035163 +9 0.470492 0.844941 0.009836 0.031987 +8 0.348882 0.847550 0.011028 0.025862 +10 0.697019 0.797527 0.008048 0.003403 +8 0.220417 0.790721 0.011028 0.007486 +8 0.350373 0.790154 0.012221 0.007260 +8 0.480030 0.789587 0.010432 0.007486 +10 0.218331 0.757600 0.008048 0.002949 +10 0.745007 0.754877 0.008644 0.005218 +10 0.273025 0.734687 0.007154 0.002949 +9 0.612072 0.745123 0.011028 0.026089 +10 0.659911 0.734006 0.008346 0.002495 +7 0.735171 0.678652 0.012221 0.014292 +10 0.852608 0.674229 0.012221 0.005445 +6 0.760805 0.675930 0.009836 0.018376 +10 0.181967 0.645304 0.011624 0.005218 +7 0.736364 0.633961 0.012817 0.013838 +6 0.759911 0.632600 0.008644 0.020644 +10 0.198063 0.624660 0.006855 0.003857 +10 0.658271 0.624093 0.008048 0.003176 +10 0.641133 0.575771 0.005961 0.001815 +7 0.734724 0.579061 0.012519 0.013838 +6 0.759911 0.578267 0.009836 0.020871 +9 0.632340 0.563634 0.009240 0.026089 +9 0.166170 0.568172 0.004471 0.025181 +10 0.193294 0.513271 0.006259 0.003403 +10 0.328614 0.512364 0.012221 0.002042 +10 0.214754 0.512137 0.006259 0.002949 +8 0.353651 0.519170 0.013413 0.019737 +10 0.225484 0.511910 0.008644 0.004310 +9 0.205514 0.511456 0.009240 0.008848 +10 0.215350 0.509415 0.006259 0.002042 +10 0.228763 0.505104 0.006855 0.004310 +9 0.897317 0.518262 0.011028 0.046506 +10 0.171535 0.471075 0.006259 0.002495 +7 0.736066 0.465631 0.012221 0.013838 +8 0.856185 0.461887 0.010432 0.008167 +6 0.762593 0.464950 0.009240 0.019283 +10 0.134873 0.415948 0.007452 0.004310 +7 0.867213 0.415041 0.012817 0.015200 +10 0.815052 0.410277 0.006259 0.003403 +9 0.871982 0.352654 0.009240 0.025635 +8 0.744113 0.352881 0.012221 0.025181 +9 0.654247 0.352995 0.010730 0.025408 +8 0.321759 0.349705 0.014009 0.018829 +7 0.219374 0.346756 0.012519 0.013385 +10 0.627571 0.313861 0.006259 0.002042 +10 0.638897 0.311139 0.007452 0.002949 +10 0.626677 0.311139 0.015201 0.002949 +10 0.246051 0.284256 0.007452 0.004991 +10 0.350969 0.280853 0.007452 0.003176 +10 0.342325 0.280853 0.009240 0.003176 +10 0.316095 0.252609 0.025335 0.005218 +10 0.335768 0.250794 0.008644 0.002495 +10 0.192101 0.247164 0.008644 0.004764 +9 0.549776 0.242514 0.006259 0.029038 +10 0.173621 0.232418 0.007452 0.003403 +10 0.745902 0.231057 0.006259 0.002949 +10 0.232042 0.208598 0.007452 0.002042 +10 0.252012 0.202700 0.010432 0.004310 +10 0.184948 0.200885 0.012221 0.002042 +9 0.255887 0.200885 0.009836 0.007486 +10 0.226677 0.197709 0.006259 0.003857 +10 0.304769 0.198162 0.016990 0.005218 +10 0.808346 0.188181 0.008346 0.002042 +10 0.637854 0.187727 0.006557 0.002042 +10 0.609091 0.187273 0.006259 0.002949 +9 0.802832 0.195440 0.009836 0.020191 +8 0.859613 0.190563 0.011326 0.018149 +8 0.765872 0.190903 0.012221 0.019283 +8 0.681371 0.193172 0.014307 0.024274 +8 0.553800 0.192604 0.014307 0.024501 +10 0.236215 0.182282 0.006855 0.002949 +10 0.892548 0.179560 0.006855 0.003403 +9 0.704769 0.193398 0.012817 0.035617 +9 0.575559 0.193058 0.008942 0.024047 +10 0.792399 0.177972 0.009240 0.004310 +10 0.436513 0.177745 0.008048 0.003857 +10 0.331297 0.156647 0.011028 0.002042 +10 0.452310 0.147799 0.009836 0.004310 +10 0.873472 0.143262 0.006855 0.003403 +9 0.266319 0.136456 0.008644 0.016107 +9 0.780775 0.134188 0.008644 0.027450 +8 0.340835 0.138385 0.011028 0.019056 +10 0.198659 0.148480 0.018778 0.002495 +10 0.435618 0.126701 0.008644 0.003403 +9 0.149776 0.128289 0.008048 0.026543 +10 0.332787 0.090404 0.009836 0.002042 +10 0.350671 0.090290 0.012221 0.002269 +10 0.841878 0.088362 0.006259 0.002042 +8 0.284799 0.087795 0.012817 0.008167 +10 0.444858 0.085980 0.007452 0.003176 +10 0.821311 0.086774 0.016393 0.005218 +10 0.797765 0.084732 0.019374 0.002042 +10 0.624292 0.085186 0.011028 0.004764 +10 0.330999 0.079968 0.011028 0.004764 +9 0.303428 0.070213 0.007750 0.030626 +9 0.745604 0.071574 0.011624 0.029719 +9 0.175112 0.071574 0.010432 0.030172 +10 0.369747 0.062500 0.008644 0.003857 +9 0.600149 0.068852 0.014009 0.037432 +12 0.752012 0.946801 0.007750 0.003857 +11 0.716841 0.947142 0.008942 0.004991 +11 0.819076 0.946801 0.007750 0.004764 +11 0.695827 0.946915 0.009240 0.005445 +12 0.626677 0.946915 0.008048 0.005898 +11 0.594784 0.946801 0.008644 0.005672 +12 0.568852 0.947028 0.009240 0.006125 +14 0.926677 0.946461 0.004769 0.005445 +12 0.928614 0.757600 0.003875 0.006579 +12 0.308197 0.929787 0.008942 0.005672 +11 0.332340 0.929900 0.008942 0.006806 +12 0.430999 0.929446 0.008942 0.006352 +12 0.363785 0.929333 0.009240 0.006125 +11 0.454993 0.929106 0.008048 0.006125 +12 0.487630 0.928879 0.008942 0.006579 +17 0.888376 0.897686 0.010432 0.005898 +17 0.820566 0.897913 0.010134 0.006806 +11 0.170492 0.889746 0.009538 0.005898 +12 0.237407 0.886797 0.008644 0.006352 +17 0.548733 0.885436 0.006557 0.009074 +12 0.347094 0.883734 0.007452 0.005672 +14 0.394933 0.883394 0.007750 0.005898 +14 0.519821 0.882940 0.008346 0.005445 +13 0.470939 0.883167 0.008346 0.006806 +11 0.308048 0.881466 0.009240 0.006125 +11 0.433830 0.880898 0.009240 0.006352 +14 0.379285 0.881012 0.009836 0.006579 +14 0.503279 0.880672 0.009836 0.006352 +17 0.571535 0.879877 0.010432 0.007033 +17 0.696721 0.879537 0.010432 0.006806 +12 0.242325 0.849251 0.005961 0.003857 +13 0.233979 0.845508 0.006557 0.004537 +11 0.308048 0.848911 0.006855 0.004537 +12 0.107750 0.849025 0.006259 0.007486 +17 0.821013 0.846075 0.011028 0.007486 +17 0.821162 0.835980 0.010730 0.007260 +11 0.611028 0.844374 0.008346 0.004991 +11 0.612072 0.839270 0.004471 0.003857 +11 0.196125 0.848571 0.009538 0.005672 +11 0.196125 0.842899 0.009538 0.005672 +12 0.169151 0.842899 0.009240 0.005672 +12 0.169151 0.848571 0.009240 0.005672 +11 0.432489 0.842446 0.009538 0.005672 +11 0.432489 0.848117 0.009538 0.005672 +11 0.308644 0.842786 0.009240 0.006806 +11 0.570790 0.841878 0.008942 0.005445 +11 0.570790 0.847323 0.008942 0.005445 +11 0.696125 0.841311 0.009240 0.005672 +11 0.696125 0.846983 0.009240 0.005672 +11 0.348733 0.845508 0.008346 0.005445 +11 0.348733 0.840064 0.008346 0.005445 +11 0.734426 0.839156 0.008346 0.004991 +11 0.734426 0.844147 0.008346 0.004991 +11 0.471684 0.844828 0.009240 0.005445 +11 0.471684 0.839383 0.009240 0.005445 +11 0.889568 0.836093 0.009836 0.007033 +17 0.889121 0.846756 0.009538 0.006579 +11 0.610730 0.798321 0.010134 0.006352 +11 0.734128 0.798208 0.009538 0.006579 +11 0.571237 0.795939 0.009240 0.005218 +11 0.696572 0.795145 0.009538 0.005898 +17 0.889568 0.789587 0.009240 0.005672 +17 0.889568 0.795259 0.009240 0.005672 +17 0.821162 0.789474 0.010730 0.005898 +17 0.821162 0.795372 0.010730 0.005898 +11 0.348286 0.750340 0.009240 0.006579 +11 0.472727 0.750113 0.010134 0.006579 +11 0.309836 0.747845 0.008644 0.005672 +11 0.431595 0.747618 0.008942 0.005672 +12 0.210581 0.737750 0.008048 0.005898 +14 0.273472 0.737182 0.008048 0.006125 +12 0.612519 0.736388 0.008942 0.004991 +14 0.659762 0.736162 0.008644 0.004991 +12 0.784799 0.735935 0.007750 0.004991 +12 0.734575 0.736275 0.008048 0.006125 +11 0.169300 0.735821 0.007750 0.005672 +14 0.253353 0.735254 0.009538 0.005898 +14 0.643815 0.734120 0.009538 0.005898 +11 0.569896 0.734233 0.010134 0.006125 +11 0.697317 0.733666 0.009240 0.006352 +14 0.769747 0.733439 0.008048 0.006352 +17 0.889270 0.728108 0.010432 0.007033 +17 0.820864 0.728108 0.010134 0.007486 +12 0.298361 0.696348 0.009538 0.006125 +11 0.200745 0.696234 0.009836 0.006352 +12 0.168256 0.696007 0.008644 0.005898 +12 0.251714 0.695554 0.008644 0.006352 +11 0.354247 0.695213 0.008644 0.006125 +11 0.467809 0.694646 0.010432 0.006352 +17 0.569747 0.693512 0.011624 0.008167 +12 0.704769 0.686252 0.008644 0.005898 +17 0.124441 0.672527 0.006259 0.006579 +12 0.170343 0.629764 0.009836 0.006806 +12 0.197019 0.627269 0.008346 0.006352 +13 0.656483 0.626248 0.007452 0.005672 +13 0.225931 0.624660 0.007750 0.005672 +12 0.704024 0.623866 0.008346 0.006352 +12 0.214307 0.623639 0.008346 0.008167 +11 0.404173 0.621597 0.008346 0.005898 +12 0.253949 0.621597 0.010134 0.006352 +11 0.865425 0.620803 0.009240 0.005672 +11 0.813115 0.618421 0.008942 0.005898 +11 0.297466 0.618421 0.008942 0.006352 +11 0.568554 0.613203 0.008644 0.006352 +12 0.246498 0.578607 0.005961 0.003857 +11 0.253651 0.560345 0.008942 0.007260 +12 0.592250 0.577700 0.005961 0.006125 +13 0.600596 0.560799 0.008942 0.006806 +11 0.075559 0.576906 0.004471 0.006806 +11 0.866021 0.566243 0.009240 0.005445 +12 0.227571 0.564542 0.009240 0.006125 +13 0.656185 0.564542 0.007452 0.006579 +11 0.812668 0.563975 0.008644 0.005898 +13 0.620268 0.564315 0.007750 0.006579 +12 0.704471 0.563975 0.008048 0.006352 +11 0.401937 0.561025 0.008644 0.006352 +13 0.672727 0.560572 0.008942 0.005898 +13 0.639642 0.560912 0.009538 0.007033 +11 0.170492 0.560912 0.008942 0.007033 +12 0.567362 0.558417 0.009240 0.006579 +11 0.298212 0.558190 0.009836 0.006579 +17 0.569001 0.530740 0.010134 0.006579 +14 0.170343 0.530966 0.010432 0.007033 +13 0.332340 0.530059 0.007750 0.005672 +13 0.297914 0.530172 0.009240 0.005898 +14 0.435618 0.530286 0.009240 0.006579 +14 0.403279 0.530059 0.008942 0.006125 +14 0.372429 0.530172 0.009240 0.006352 +14 0.507303 0.530059 0.008942 0.006579 +12 0.468852 0.529832 0.010134 0.006125 +14 0.418927 0.527450 0.009240 0.006352 +13 0.524441 0.527450 0.009240 0.006806 +14 0.451565 0.527450 0.010134 0.006806 +14 0.316095 0.527110 0.009240 0.006125 +14 0.388525 0.527223 0.009240 0.006806 +14 0.228316 0.526770 0.010730 0.008167 +12 0.904471 0.522573 0.008644 0.006125 +12 0.895976 0.519850 0.007750 0.003403 +12 0.895678 0.514065 0.005961 0.004537 +11 0.837407 0.522686 0.009240 0.005898 +11 0.837407 0.516788 0.009240 0.005898 +12 0.812370 0.516674 0.009240 0.005672 +12 0.812370 0.522346 0.009240 0.005672 +17 0.706557 0.516334 0.010432 0.006352 +17 0.706557 0.522686 0.010432 0.006352 +12 0.136662 0.514519 0.006259 0.004537 +14 0.076751 0.511683 0.004471 0.006125 +14 0.169896 0.473571 0.007750 0.005672 +11 0.171386 0.460073 0.010134 0.005898 +11 0.228912 0.470962 0.008346 0.005898 +12 0.228763 0.462341 0.008644 0.004991 +12 0.197168 0.470848 0.007452 0.006125 +17 0.570045 0.470848 0.011028 0.007486 +12 0.569598 0.460640 0.010730 0.007033 +12 0.705961 0.463135 0.008048 0.005218 +12 0.705961 0.468353 0.008048 0.005218 +11 0.403428 0.460299 0.009836 0.006352 +12 0.253949 0.460073 0.007750 0.006352 +11 0.297914 0.457464 0.008644 0.005672 +17 0.299851 0.470168 0.010730 0.007486 +11 0.813562 0.412659 0.008048 0.005445 +12 0.899106 0.409936 0.009240 0.005898 +11 0.764382 0.401996 0.008048 0.005898 +12 0.469001 0.401316 0.009836 0.005898 +11 0.707899 0.400068 0.009538 0.006125 +17 0.569747 0.395871 0.010432 0.008167 +11 0.298063 0.388838 0.009538 0.006352 +11 0.227571 0.388271 0.009240 0.006579 +11 0.171386 0.385662 0.008346 0.006806 +12 0.771088 0.363997 0.005961 0.004310 +11 0.779136 0.344828 0.008346 0.004991 +11 0.402086 0.347436 0.008942 0.005672 +12 0.742623 0.344828 0.005663 0.004537 +12 0.872876 0.345281 0.007452 0.005898 +12 0.654844 0.344941 0.007750 0.005672 +12 0.502086 0.345054 0.008644 0.005898 +11 0.552608 0.344941 0.008942 0.006125 +12 0.171833 0.344828 0.009240 0.005898 +11 0.432787 0.342219 0.008346 0.006125 +12 0.351118 0.341878 0.008346 0.006352 +12 0.281520 0.341878 0.008644 0.006806 +12 0.171833 0.318739 0.009240 0.006352 +13 0.281222 0.316130 0.008644 0.005672 +18 0.137854 0.302064 0.006855 0.003403 +12 0.401043 0.302972 0.009240 0.006579 +12 0.500894 0.300590 0.008048 0.005898 +12 0.197317 0.300136 0.007750 0.005445 +13 0.247094 0.299682 0.008942 0.004991 +12 0.873621 0.299002 0.008346 0.006352 +13 0.351118 0.298094 0.008942 0.005898 +11 0.433085 0.297981 0.009538 0.006579 +12 0.304769 0.297754 0.009240 0.006125 +12 0.745902 0.293897 0.009240 0.006125 +12 0.554247 0.293103 0.009836 0.005898 +12 0.656632 0.292990 0.009538 0.006125 +11 0.781073 0.290835 0.009240 0.005898 +12 0.598361 0.287205 0.009240 0.005898 +12 0.133830 0.242287 0.005365 0.004537 +12 0.597466 0.240245 0.006855 0.005898 +13 0.281669 0.235141 0.009538 0.005672 +12 0.744113 0.233553 0.007452 0.006125 +12 0.656483 0.233326 0.008644 0.006579 +12 0.555142 0.232872 0.007452 0.006125 +13 0.354247 0.232645 0.009240 0.006579 +12 0.219225 0.232872 0.009240 0.007033 +12 0.306706 0.232305 0.008942 0.006352 +13 0.874367 0.231057 0.009240 0.007486 +11 0.780924 0.230603 0.008942 0.007033 +12 0.461252 0.229923 0.009240 0.007033 +18 0.175112 0.229696 0.009240 0.007033 +12 0.503875 0.228108 0.009240 0.006125 +11 0.401341 0.227087 0.008644 0.006352 +13 0.840089 0.201565 0.008644 0.006125 +14 0.626379 0.201452 0.008048 0.005898 +12 0.902683 0.201452 0.008644 0.006352 +12 0.744113 0.201452 0.008644 0.006352 +14 0.811773 0.201225 0.008644 0.006352 +14 0.779881 0.201338 0.008644 0.006579 +14 0.598510 0.201112 0.008346 0.006125 +14 0.873323 0.201225 0.009538 0.006806 +14 0.696423 0.201112 0.009836 0.006579 +12 0.656185 0.201112 0.009240 0.006579 +13 0.531297 0.200998 0.009240 0.006352 +13 0.503577 0.200998 0.009836 0.006352 +14 0.568256 0.200885 0.009836 0.006579 +14 0.889270 0.198843 0.009240 0.006579 +13 0.714754 0.198730 0.009538 0.006352 +14 0.825931 0.198730 0.008942 0.006806 +14 0.795380 0.198730 0.009836 0.006806 +12 0.642623 0.198616 0.009538 0.006579 +14 0.614903 0.198503 0.008942 0.006352 +14 0.517735 0.198049 0.010134 0.005898 +14 0.584650 0.198162 0.009240 0.006579 +11 0.110879 0.193398 0.004769 0.007033 +18 0.139046 0.189655 0.007452 0.004991 +12 0.139046 0.184324 0.008048 0.005218 +14 0.249329 0.187500 0.008644 0.006579 +14 0.220119 0.187160 0.008644 0.006352 +13 0.174218 0.187046 0.009240 0.007033 +14 0.235917 0.184664 0.007452 0.005898 +12 0.198957 0.184891 0.007452 0.006352 +14 0.262593 0.184097 0.008346 0.007033 +12 0.323547 0.182282 0.007452 0.006125 +12 0.109687 0.180808 0.004173 0.004083 +12 0.283159 0.179673 0.007750 0.005445 +11 0.435022 0.179673 0.007452 0.005898 +18 0.148435 0.179220 0.007750 0.004991 +12 0.148733 0.174115 0.008346 0.004764 +11 0.403428 0.174342 0.009836 0.007033 +11 0.403130 0.185005 0.009240 0.005672 +12 0.078241 0.164247 0.005663 0.011797 +12 0.079136 0.106511 0.005663 0.013838 +12 0.873025 0.145531 0.007154 0.006125 +12 0.873920 0.132373 0.008942 0.006125 +14 0.325335 0.136003 0.009240 0.006125 +14 0.354844 0.136003 0.008644 0.006579 +12 0.745156 0.139973 0.008942 0.004991 +12 0.745156 0.134982 0.008942 0.004991 +13 0.283458 0.135889 0.008942 0.006806 +12 0.656781 0.139746 0.008644 0.005445 +12 0.656781 0.134301 0.008644 0.005445 +12 0.308197 0.133507 0.007750 0.003857 +12 0.503130 0.134301 0.008942 0.006352 +11 0.503130 0.121370 0.008942 0.006806 +14 0.369300 0.133507 0.007750 0.004764 +14 0.341878 0.134074 0.007154 0.005898 +13 0.266915 0.133054 0.006259 0.003857 +12 0.220566 0.133394 0.006557 0.004991 +11 0.780626 0.137250 0.008942 0.005445 +11 0.780626 0.131806 0.008942 0.005445 +12 0.463338 0.131579 0.008644 0.006352 +12 0.176304 0.130558 0.008644 0.006579 +12 0.433830 0.129197 0.008048 0.005672 +11 0.403130 0.126134 0.009240 0.006806 +14 0.356334 0.067377 0.008048 0.006352 +14 0.326528 0.067604 0.009240 0.007260 +12 0.839642 0.066810 0.008346 0.006125 +13 0.285246 0.067377 0.008942 0.007713 +14 0.342176 0.065449 0.008346 0.007033 +14 0.369598 0.064428 0.007154 0.005898 +12 0.221461 0.064769 0.010134 0.006579 +13 0.309538 0.064088 0.008644 0.006579 +12 0.780477 0.064201 0.008644 0.007260 +12 0.874814 0.063634 0.008942 0.007486 +12 0.463636 0.063181 0.008048 0.006579 +12 0.745306 0.061593 0.008644 0.006125 +12 0.176304 0.061479 0.008048 0.006352 +12 0.433979 0.060458 0.008346 0.006125 +12 0.656483 0.058757 0.007452 0.007260 +13 0.404620 0.057396 0.009240 0.008167 +12 0.599553 0.055240 0.009240 0.006579 +18 0.504918 0.051611 0.008942 0.006125 +0 0.100298 0.516221 0.022951 0.024274 +4 0.275261 0.064995 0.009240 0.013838 +4 0.451714 0.062954 0.010432 0.017015 +1 0.103279 0.132146 0.022355 0.034710 +4 0.448733 0.230036 0.010432 0.017241 +4 0.387779 0.346983 0.010134 0.015653 +1 0.097615 0.794351 0.021759 0.039701 +3 0.489419 0.344714 0.007750 0.015200 +2 0.100298 0.301384 0.019970 0.019283 +2 0.103130 0.344714 0.013115 0.017015 +4 0.451118 0.132260 0.009836 0.015880 +4 0.733979 0.294351 0.009240 0.016107 +1 0.097317 0.744669 0.022355 0.040154 +4 0.186736 0.302291 0.009240 0.014292 +4 0.644262 0.292990 0.009836 0.016561 +4 0.774516 0.639406 0.017586 0.025181 +2 0.096423 0.678652 0.018778 0.018829 +2 0.095827 0.634415 0.021759 0.020191 +1 0.774814 0.583371 0.016990 0.026543 +1 0.098510 0.464723 0.022355 0.040154 +1 0.098212 0.889632 0.021759 0.035163 +2 0.097466 0.577700 0.017884 0.018376 +2 0.098212 0.939769 0.019374 0.020191 +4 0.390015 0.184778 0.010432 0.016107 +4 0.127571 0.508848 0.008942 0.016334 +4 0.126080 0.401996 0.008346 0.013158 +4 0.135022 0.793103 0.008942 0.014065 +4 0.125782 0.784936 0.008346 0.015880 +4 0.143964 0.782101 0.008942 0.014292 +4 0.732936 0.138838 0.008942 0.015880 +4 0.161252 0.344828 0.010134 0.015426 +4 0.144709 0.340177 0.009240 0.014292 +4 0.143368 0.626701 0.008942 0.015653 +0 0.131446 0.125000 0.007750 0.009982 +4 0.134277 0.889179 0.009240 0.014292 +4 0.124888 0.882260 0.008346 0.014519 +4 0.143368 0.879424 0.009538 0.015653 +4 0.141282 0.082691 0.008942 0.013838 +4 0.134426 0.743308 0.008942 0.016561 +4 0.125782 0.734347 0.009538 0.013612 +4 0.127869 0.341878 0.008942 0.015426 +4 0.126379 0.836207 0.008942 0.014973 +5 0.097765 0.186933 0.013115 0.024047 +4 0.134426 0.944646 0.008942 0.013158 +4 0.126379 0.936252 0.009538 0.015426 +4 0.143964 0.934097 0.008942 0.014292 +4 0.128018 0.454515 0.009836 0.016107 +4 0.146051 0.452926 0.009538 0.016107 +4 0.134575 0.682282 0.009836 0.016107 +4 0.143368 0.672300 0.009538 0.016107 +3 0.128018 0.300250 0.009836 0.016107 +4 0.125931 0.632600 0.009836 0.016107 +4 0.132340 0.636910 0.009538 0.016107 +4 0.097317 0.084505 0.009836 0.016107 +5 0.109389 0.079288 0.009538 0.016107 +4 0.092548 0.415041 0.009836 0.016107 +5 0.105216 0.410730 0.009538 0.016107 +3 0.079285 0.081103 0.005961 0.016107 +4 0.135171 0.843353 0.009836 0.016107 +4 0.143368 0.833825 0.009538 0.016107 +4 0.127124 0.573616 0.009836 0.016107 +4 0.135171 0.581329 0.009836 0.016107 +4 0.143368 0.570894 0.009538 0.016107 +4 0.090164 0.248752 0.009836 0.016107 +5 0.102832 0.244215 0.009538 0.016107 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_35.jpg b/data_dataset/dvo/debug/debug_35.jpg new file mode 100644 index 0000000..375fbaf Binary files /dev/null and b/data_dataset/dvo/debug/debug_35.jpg differ diff --git a/data_dataset/dvo/debug/debug_35.txt b/data_dataset/dvo/debug/debug_35.txt new file mode 100644 index 0000000..e90e3fb --- /dev/null +++ b/data_dataset/dvo/debug/debug_35.txt @@ -0,0 +1,533 @@ +7 0.219180 0.939632 0.011670 0.013415 +8 0.493567 0.935084 0.012268 0.007958 +8 0.398115 0.935312 0.011670 0.008413 +7 0.604578 0.936448 0.012867 0.012506 +6 0.179982 0.938267 0.008677 0.019782 +8 0.783513 0.933720 0.011670 0.008868 +6 0.565679 0.937358 0.008079 0.017963 +10 0.191951 0.898477 0.006284 0.002046 +10 0.475613 0.898022 0.006284 0.002046 +10 0.509725 0.892792 0.007481 0.002501 +10 0.192250 0.894156 0.008079 0.005230 +10 0.804458 0.888472 0.008079 0.002046 +10 0.897516 0.888927 0.008677 0.003865 +8 0.514811 0.883925 0.008079 0.015689 +9 0.620138 0.887790 0.005685 0.021601 +10 0.277528 0.878922 0.006284 0.002956 +9 0.600090 0.883925 0.006284 0.029332 +9 0.792190 0.879377 0.007481 0.022055 +9 0.278426 0.825034 0.006882 0.019782 +9 0.371783 0.824579 0.009276 0.020691 +8 0.391233 0.827535 0.009874 0.014779 +10 0.392430 0.822988 0.009874 0.002956 +10 0.518701 0.813097 0.006284 0.001819 +10 0.864004 0.812983 0.006284 0.002046 +10 0.478007 0.812074 0.006284 0.002046 +10 0.229054 0.812074 0.006284 0.002046 +10 0.712597 0.811846 0.013465 0.004320 +10 0.195242 0.810937 0.009276 0.004320 +6 0.489378 0.778877 0.011071 0.021146 +10 0.403800 0.767735 0.008677 0.002501 +6 0.819120 0.776717 0.005087 0.021828 +10 0.209306 0.767963 0.007481 0.004775 +7 0.299970 0.771373 0.009276 0.015234 +8 0.202723 0.724761 0.012268 0.007503 +8 0.302065 0.724307 0.012268 0.007503 +7 0.410682 0.727035 0.012867 0.014779 +7 0.590515 0.723852 0.012268 0.008413 +6 0.756882 0.726353 0.008677 0.015234 +8 0.687762 0.722715 0.011670 0.007958 +6 0.369689 0.726353 0.009874 0.017963 +7 0.802663 0.658367 0.011670 0.015689 +7 0.609366 0.657685 0.011670 0.014325 +7 0.297277 0.657685 0.012268 0.014325 +8 0.203920 0.654047 0.012268 0.007049 +6 0.266756 0.655412 0.009874 0.018872 +10 0.788600 0.618349 0.007481 0.002046 +10 0.722472 0.613347 0.009276 0.004775 +10 0.697038 0.612437 0.011071 0.004775 +10 0.857720 0.606980 0.010473 0.004775 +8 0.205117 0.599022 0.012268 0.007049 +7 0.297576 0.602433 0.011670 0.014779 +6 0.266457 0.601523 0.009276 0.019327 +10 0.595901 0.551501 0.007481 0.004775 +10 0.893327 0.547408 0.006284 0.003865 +7 0.298474 0.546498 0.012268 0.013870 +8 0.203621 0.542860 0.012867 0.007503 +6 0.266756 0.545134 0.009874 0.019327 +9 0.694644 0.544225 0.009874 0.020236 +9 0.606373 0.540359 0.004488 0.023420 +9 0.506134 0.535130 0.005087 0.023874 +9 0.533962 0.531946 0.012867 0.032970 +10 0.614752 0.501251 0.010473 0.005230 +10 0.578546 0.498977 0.008677 0.004320 +10 0.504937 0.497613 0.007481 0.002501 +7 0.203321 0.485789 0.012268 0.013415 +10 0.594105 0.481014 0.008677 0.002956 +6 0.174895 0.483743 0.009276 0.018417 +10 0.492968 0.477149 0.007481 0.005230 +9 0.796978 0.484197 0.013465 0.026603 +9 0.470227 0.480332 0.008677 0.031605 +10 0.412777 0.435539 0.009874 0.002046 +10 0.412478 0.433038 0.014063 0.002501 +9 0.704219 0.435766 0.006284 0.022510 +7 0.202424 0.434629 0.011670 0.013870 +6 0.893028 0.433492 0.009276 0.016144 +6 0.176092 0.432356 0.009276 0.018417 +9 0.627917 0.430537 0.011670 0.027513 +9 0.423848 0.419850 0.008079 0.035243 +9 0.273040 0.360050 0.006882 0.020236 +10 0.589916 0.359595 0.007481 0.004775 +9 0.814931 0.360277 0.009874 0.025239 +7 0.394225 0.358231 0.012268 0.013870 +7 0.307451 0.358458 0.012268 0.014325 +6 0.366098 0.355730 0.009874 0.017963 +10 0.275434 0.349136 0.006882 0.003865 +9 0.558498 0.343679 0.005685 0.031151 +10 0.804159 0.315030 0.007481 0.004775 +10 0.574955 0.304570 0.006284 0.002046 +10 0.606673 0.303888 0.012268 0.005230 +7 0.393627 0.302069 0.012268 0.013415 +7 0.306852 0.301160 0.012268 0.012506 +6 0.366397 0.299568 0.009276 0.018417 +9 0.557301 0.288881 0.004488 0.028877 +10 0.616846 0.263188 0.006284 0.002046 +10 0.588121 0.260914 0.006284 0.003865 +8 0.913076 0.244770 0.012268 0.009777 +7 0.393327 0.245680 0.012867 0.013415 +8 0.305955 0.245225 0.012867 0.013415 +6 0.366098 0.243179 0.009874 0.018417 +9 0.715589 0.244202 0.009874 0.024557 +10 0.683872 0.231355 0.008677 0.004775 +10 0.508528 0.207708 0.009874 0.002956 +7 0.457660 0.198840 0.011071 0.017053 +10 0.669808 0.197476 0.006882 0.003411 +9 0.583034 0.199977 0.011670 0.019327 +9 0.623728 0.198840 0.005685 0.022510 +10 0.601586 0.192929 0.006882 0.002501 +10 0.880461 0.190200 0.011670 0.005230 +7 0.821215 0.190655 0.011670 0.008868 +9 0.559096 0.196794 0.004488 0.022965 +10 0.564782 0.187926 0.006284 0.003411 +10 0.497756 0.187472 0.006284 0.002501 +7 0.303561 0.191337 0.011670 0.013870 +7 0.822113 0.139950 0.012268 0.007503 +7 0.302962 0.141314 0.011670 0.013870 +9 0.575853 0.132219 0.005685 0.022055 +9 0.558498 0.129263 0.004488 0.027058 +12 0.236086 0.944975 0.009575 0.005912 +11 0.622681 0.943042 0.008977 0.005684 +17 0.279473 0.926671 0.010174 0.006594 +17 0.660832 0.924739 0.009276 0.006367 +11 0.228306 0.890632 0.010174 0.004548 +11 0.238031 0.869827 0.008079 0.006594 +12 0.625374 0.881878 0.008977 0.006139 +12 0.278127 0.881082 0.007481 0.005457 +12 0.178636 0.881310 0.007181 0.005912 +12 0.370886 0.880173 0.008677 0.005457 +12 0.468133 0.879832 0.007481 0.005684 +12 0.217834 0.875853 0.008977 0.005912 +13 0.198983 0.875853 0.008977 0.005912 +13 0.390934 0.874943 0.008677 0.005912 +12 0.319420 0.875171 0.008677 0.006367 +12 0.299222 0.875284 0.008977 0.006594 +12 0.507630 0.874488 0.008677 0.005912 +13 0.487732 0.874829 0.008977 0.006594 +12 0.697935 0.874147 0.009276 0.006139 +12 0.677439 0.874034 0.008977 0.005912 +13 0.606074 0.874147 0.009276 0.006139 +12 0.585877 0.874034 0.008977 0.005912 +12 0.411430 0.874602 0.009575 0.007049 +12 0.875075 0.872669 0.008677 0.005002 +13 0.797427 0.873124 0.008378 0.005912 +12 0.776032 0.873352 0.008677 0.006367 +12 0.892280 0.872783 0.008378 0.006139 +12 0.566128 0.871987 0.008977 0.006367 +12 0.719779 0.870623 0.008677 0.006367 +12 0.658139 0.870737 0.009874 0.006594 +12 0.853830 0.870168 0.008677 0.006367 +12 0.755236 0.870282 0.008977 0.006594 +13 0.815829 0.869714 0.008677 0.006367 +12 0.338420 0.869714 0.008378 0.007276 +12 0.908588 0.868918 0.008079 0.006594 +12 0.527229 0.868349 0.008378 0.006367 +12 0.429234 0.868918 0.008677 0.007503 +12 0.660084 0.837767 0.008378 0.005684 +12 0.660233 0.831287 0.008079 0.005912 +13 0.908737 0.836744 0.006583 0.004093 +12 0.909934 0.830036 0.007181 0.004320 +12 0.851885 0.836517 0.006583 0.004093 +12 0.852633 0.830719 0.008079 0.005684 +12 0.623429 0.837199 0.008677 0.005912 +12 0.623130 0.831287 0.008079 0.005002 +12 0.874177 0.833788 0.007481 0.004548 +12 0.873579 0.827535 0.007481 0.004775 +12 0.567325 0.832765 0.005984 0.004320 +12 0.567774 0.826398 0.008677 0.006139 +12 0.198384 0.832196 0.008378 0.004548 +12 0.197935 0.826285 0.008079 0.005912 +12 0.178037 0.831628 0.008378 0.004320 +12 0.177289 0.826057 0.008677 0.005457 +12 0.757331 0.831060 0.008378 0.005457 +12 0.757331 0.836517 0.008378 0.005457 +12 0.720377 0.831173 0.008677 0.005684 +12 0.720377 0.836858 0.008677 0.005684 +12 0.237133 0.831060 0.008079 0.005457 +12 0.237133 0.836517 0.008079 0.005457 +12 0.815679 0.830832 0.008378 0.005457 +12 0.815679 0.836289 0.008378 0.005457 +12 0.429832 0.830036 0.008677 0.005230 +12 0.429832 0.835266 0.008677 0.005230 +12 0.337822 0.830036 0.008378 0.005230 +12 0.337822 0.835266 0.008378 0.005230 +12 0.698384 0.829809 0.008977 0.005230 +12 0.698384 0.835039 0.008977 0.005230 +12 0.527977 0.829468 0.008079 0.005002 +12 0.527977 0.834470 0.008079 0.005002 +12 0.606373 0.829354 0.009276 0.005684 +12 0.606373 0.835039 0.009276 0.005684 +12 0.679384 0.828558 0.009276 0.005002 +12 0.679384 0.833561 0.009276 0.005002 +12 0.585428 0.828786 0.008079 0.005457 +12 0.585428 0.834243 0.008079 0.005457 +12 0.797576 0.828217 0.008677 0.005230 +12 0.797576 0.833447 0.008677 0.005230 +13 0.776481 0.828217 0.008378 0.005230 +13 0.776481 0.833447 0.008378 0.005230 +12 0.891682 0.830832 0.006583 0.011369 +12 0.217534 0.825944 0.008378 0.005230 +12 0.217534 0.831173 0.008378 0.005230 +12 0.318671 0.825489 0.009575 0.005230 +12 0.318671 0.830719 0.009575 0.005230 +12 0.299372 0.825489 0.010473 0.005230 +12 0.299372 0.830719 0.010473 0.005230 +12 0.279174 0.825375 0.009575 0.005002 +12 0.279174 0.830377 0.009575 0.005002 +12 0.411580 0.824807 0.009276 0.004775 +12 0.411580 0.829582 0.009276 0.004775 +12 0.391682 0.824920 0.009575 0.005002 +12 0.391682 0.829923 0.009575 0.005002 +12 0.370886 0.825034 0.009874 0.005230 +12 0.370886 0.830264 0.009874 0.005230 +12 0.489228 0.824352 0.007181 0.004775 +12 0.467534 0.824466 0.009276 0.005002 +12 0.467534 0.829468 0.009276 0.005002 +12 0.509425 0.824238 0.009276 0.005457 +12 0.509425 0.829695 0.009276 0.005457 +17 0.148265 0.823215 0.005087 0.003411 +12 0.604877 0.787403 0.009276 0.006367 +12 0.584829 0.787517 0.009276 0.006594 +12 0.698833 0.786835 0.008677 0.006139 +12 0.678037 0.786835 0.008977 0.006139 +12 0.893178 0.786266 0.008378 0.005912 +12 0.775733 0.786380 0.009276 0.006139 +12 0.217983 0.786380 0.009276 0.006139 +12 0.198534 0.786266 0.008677 0.005912 +12 0.874327 0.786039 0.008977 0.006367 +12 0.795781 0.786039 0.008677 0.006367 +12 0.299222 0.785698 0.009575 0.005684 +12 0.319420 0.785584 0.009874 0.005912 +11 0.567923 0.784902 0.007780 0.005002 +12 0.575554 0.768304 0.005087 0.003638 +12 0.508378 0.785243 0.008378 0.005684 +12 0.489078 0.785016 0.008079 0.005230 +12 0.412478 0.785471 0.009276 0.006139 +12 0.392430 0.785357 0.008677 0.005912 +12 0.660682 0.784561 0.008977 0.005230 +13 0.625224 0.784675 0.008677 0.005457 +12 0.911281 0.783652 0.008677 0.005230 +12 0.815380 0.783765 0.007780 0.005457 +12 0.757181 0.783879 0.008079 0.005684 +12 0.719779 0.783993 0.008677 0.005912 +12 0.176691 0.783993 0.009276 0.005912 +12 0.853680 0.783538 0.008977 0.005912 +12 0.237433 0.783652 0.008677 0.006139 +12 0.279174 0.783311 0.008378 0.006367 +12 0.467235 0.782628 0.008677 0.005912 +12 0.371035 0.782742 0.008977 0.006139 +12 0.336774 0.782742 0.009276 0.006139 +12 0.527828 0.782401 0.008977 0.006367 +12 0.431179 0.782628 0.008378 0.006821 +12 0.146320 0.771373 0.005984 0.004320 +12 0.430132 0.727490 0.008677 0.006594 +12 0.467834 0.727035 0.009874 0.006594 +17 0.467534 0.708845 0.010473 0.007503 +17 0.851586 0.726012 0.006583 0.005912 +12 0.851885 0.706799 0.008378 0.007049 +12 0.815978 0.725557 0.008378 0.006367 +12 0.635996 0.671442 0.008677 0.005457 +12 0.429832 0.671442 0.009276 0.005457 +12 0.823309 0.670987 0.008677 0.005457 +11 0.856373 0.663029 0.008977 0.005912 +11 0.769449 0.662688 0.009276 0.006139 +11 0.677439 0.663029 0.010174 0.006821 +11 0.575703 0.662915 0.008977 0.006594 +17 0.471275 0.663256 0.010772 0.007276 +12 0.316128 0.642224 0.009276 0.006139 +11 0.362208 0.633583 0.009276 0.007049 +12 0.787552 0.602547 0.008977 0.005912 +12 0.802813 0.602206 0.009575 0.006139 +12 0.822711 0.599932 0.008677 0.006139 +12 0.710503 0.597317 0.009276 0.006367 +12 0.769898 0.596976 0.009575 0.006594 +12 0.693148 0.596976 0.009276 0.006594 +12 0.911730 0.594702 0.007780 0.005684 +12 0.731598 0.594816 0.008977 0.005912 +12 0.678486 0.591974 0.008677 0.006594 +12 0.610263 0.592087 0.009874 0.006821 +12 0.592609 0.592087 0.009276 0.006821 +12 0.894973 0.589700 0.008977 0.005684 +12 0.877020 0.589586 0.008977 0.005457 +12 0.858618 0.589472 0.008677 0.006139 +12 0.636445 0.589472 0.009575 0.006139 +12 0.574057 0.586744 0.008079 0.006139 +12 0.510772 0.586971 0.008977 0.006594 +12 0.492071 0.586858 0.009276 0.006367 +12 0.317923 0.587085 0.009276 0.006821 +12 0.540993 0.584015 0.008977 0.007049 +12 0.473070 0.578899 0.009575 0.006821 +17 0.362208 0.577876 0.010473 0.007503 +12 0.877319 0.550364 0.007780 0.004320 +12 0.877618 0.544111 0.008977 0.005457 +12 0.894075 0.549909 0.007780 0.004320 +12 0.894075 0.543997 0.009575 0.006139 +12 0.911430 0.543656 0.008977 0.005457 +12 0.911430 0.549113 0.008977 0.005457 +12 0.857121 0.543997 0.009276 0.006139 +12 0.805057 0.543884 0.009276 0.005912 +12 0.787552 0.543884 0.008977 0.005912 +12 0.823609 0.541382 0.009276 0.006367 +12 0.712896 0.538881 0.007481 0.005002 +12 0.695392 0.538881 0.007181 0.005002 +12 0.770048 0.538768 0.008677 0.005684 +12 0.731448 0.536266 0.009276 0.006139 +12 0.678486 0.533765 0.009276 0.005684 +12 0.611161 0.533538 0.009276 0.006139 +12 0.595003 0.533538 0.009276 0.006139 +12 0.636146 0.530355 0.008977 0.006139 +12 0.576750 0.528422 0.008677 0.006821 +12 0.511520 0.528195 0.008677 0.007276 +12 0.491921 0.527626 0.008977 0.007049 +12 0.317325 0.527740 0.009276 0.007276 +13 0.542340 0.526035 0.009276 0.006594 +12 0.471424 0.519554 0.009874 0.006367 +17 0.362807 0.519782 0.010473 0.006821 +12 0.894225 0.493747 0.009276 0.005684 +12 0.877319 0.493747 0.007780 0.005684 +12 0.859216 0.493747 0.008677 0.005684 +12 0.788001 0.493747 0.008677 0.005684 +12 0.804159 0.493520 0.008677 0.006139 +12 0.912328 0.491019 0.009575 0.005684 +12 0.823160 0.490791 0.009575 0.006139 +12 0.711101 0.488631 0.008079 0.005457 +12 0.694494 0.488631 0.007181 0.005912 +12 0.730999 0.485789 0.009575 0.006139 +12 0.769599 0.485334 0.008977 0.006139 +12 0.678187 0.483402 0.008079 0.005912 +12 0.611161 0.483402 0.009276 0.005912 +12 0.593656 0.483402 0.008378 0.005912 +12 0.222771 0.483515 0.009276 0.006139 +11 0.636146 0.480673 0.008977 0.005912 +12 0.623579 0.478058 0.007181 0.004775 +12 0.575404 0.478172 0.008977 0.005457 +12 0.512717 0.478399 0.008079 0.005912 +12 0.492819 0.478172 0.008378 0.005457 +12 0.540694 0.475557 0.009575 0.006594 +12 0.362507 0.475557 0.008677 0.006594 +17 0.267654 0.475102 0.010473 0.007503 +12 0.383154 0.470327 0.009276 0.006139 +12 0.431628 0.470100 0.009276 0.006594 +13 0.401855 0.469986 0.008977 0.006367 +12 0.471873 0.469645 0.008977 0.006594 +13 0.073758 0.450887 0.004488 0.005457 +12 0.859964 0.434175 0.008977 0.005684 +12 0.805805 0.434288 0.009575 0.005912 +12 0.788600 0.434288 0.009276 0.005912 +12 0.824955 0.431901 0.007181 0.005684 +12 0.770197 0.429286 0.008977 0.005912 +12 0.710203 0.429286 0.009276 0.005912 +12 0.694045 0.429400 0.009276 0.006139 +12 0.732047 0.426899 0.008079 0.005684 +12 0.675344 0.424056 0.009575 0.006367 +12 0.610114 0.424284 0.009575 0.006821 +12 0.592609 0.424056 0.009276 0.006367 +12 0.636445 0.421669 0.008977 0.006139 +13 0.511370 0.418827 0.007181 0.005912 +12 0.574806 0.418486 0.008378 0.006139 +13 0.492519 0.418713 0.008977 0.006594 +12 0.539797 0.416553 0.008977 0.006821 +12 0.471873 0.413597 0.008378 0.006367 +12 0.401257 0.413597 0.008977 0.006367 +12 0.382107 0.413483 0.008378 0.006139 +12 0.222771 0.412915 0.009276 0.006821 +12 0.430880 0.411210 0.008977 0.007049 +12 0.359964 0.404388 0.009575 0.007049 +17 0.266008 0.404729 0.010772 0.007731 +12 0.875075 0.363006 0.008079 0.005684 +12 0.893776 0.354820 0.008977 0.006139 +12 0.857720 0.354593 0.009276 0.006594 +12 0.802364 0.354366 0.009276 0.006139 +13 0.782466 0.354366 0.008378 0.006139 +12 0.822262 0.352319 0.007780 0.005684 +12 0.272890 0.358117 0.008378 0.005912 +13 0.272890 0.352206 0.008378 0.005912 +12 0.761670 0.349136 0.008677 0.005684 +12 0.708707 0.349250 0.009874 0.005912 +12 0.687313 0.349136 0.008977 0.005684 +12 0.728456 0.346635 0.009276 0.006139 +12 0.668163 0.343906 0.008977 0.006139 +12 0.604129 0.344020 0.009575 0.006367 +12 0.583184 0.343111 0.008977 0.006367 +13 0.417115 0.342542 0.008378 0.006139 +12 0.629862 0.340837 0.008977 0.006367 +12 0.561490 0.335039 0.008079 0.006594 +12 0.875524 0.306958 0.008977 0.005912 +12 0.893776 0.299227 0.009575 0.005912 +12 0.854279 0.298772 0.009575 0.005912 +12 0.802065 0.298772 0.009276 0.005912 +12 0.783064 0.298545 0.008977 0.006367 +12 0.821364 0.296271 0.008378 0.005457 +12 0.274387 0.297067 0.005984 0.009777 +12 0.759874 0.293315 0.008677 0.006821 +12 0.708707 0.293201 0.009276 0.006594 +12 0.688659 0.293088 0.009276 0.006367 +12 0.727858 0.290587 0.009276 0.005912 +12 0.601735 0.287858 0.008977 0.005912 +12 0.582735 0.287403 0.009276 0.005912 +12 0.667714 0.287176 0.009276 0.006367 +12 0.417415 0.286949 0.008378 0.005912 +12 0.630311 0.284447 0.009276 0.007276 +12 0.560742 0.279218 0.007181 0.005912 +17 0.456014 0.277626 0.010174 0.007276 +12 0.876421 0.266598 0.009575 0.007049 +12 0.894225 0.258527 0.009276 0.006367 +12 0.856074 0.258527 0.009575 0.006367 +12 0.801466 0.257958 0.009874 0.006139 +12 0.782914 0.257958 0.009276 0.006139 +12 0.822412 0.255571 0.008677 0.006821 +12 0.758528 0.252387 0.009575 0.005912 +12 0.708109 0.252387 0.009276 0.005912 +12 0.687014 0.252160 0.009575 0.006367 +12 0.729653 0.250227 0.009276 0.005230 +13 0.271993 0.246817 0.005386 0.005230 +12 0.666218 0.246930 0.009276 0.005912 +12 0.602783 0.246703 0.009276 0.006367 +12 0.581688 0.246362 0.009575 0.006594 +11 0.416816 0.246135 0.009575 0.006139 +12 0.631059 0.244316 0.009575 0.006139 +12 0.562388 0.238859 0.008677 0.006139 +12 0.182974 0.238518 0.003890 0.005457 +17 0.454668 0.238176 0.011071 0.006594 +12 0.780820 0.209641 0.008677 0.005912 +12 0.801765 0.201342 0.008677 0.005684 +12 0.760922 0.201342 0.008378 0.005684 +13 0.707361 0.201228 0.008378 0.005457 +12 0.688360 0.201114 0.009276 0.006139 +13 0.726661 0.198272 0.009276 0.006821 +12 0.668911 0.195543 0.008677 0.005002 +12 0.601137 0.195316 0.007181 0.005002 +13 0.582436 0.194975 0.008079 0.005684 +12 0.629114 0.192588 0.009276 0.006367 +12 0.562388 0.189973 0.008677 0.005230 +12 0.476212 0.189632 0.006882 0.005457 +13 0.497008 0.189745 0.008378 0.006139 +12 0.324207 0.189404 0.008079 0.005457 +12 0.526182 0.187358 0.009276 0.005912 +13 0.276332 0.183947 0.005685 0.005457 +12 0.454219 0.181446 0.010174 0.006821 +17 0.367893 0.181446 0.011071 0.007731 +13 0.781867 0.140291 0.006583 0.005912 +12 0.252244 0.133242 0.005386 0.004093 +13 0.801167 0.132560 0.008079 0.006367 +13 0.762567 0.132219 0.006882 0.005684 +13 0.708408 0.132219 0.007481 0.005684 +13 0.687014 0.132333 0.007780 0.005912 +13 0.728007 0.129491 0.008378 0.005684 +12 0.603232 0.127444 0.008378 0.006139 +12 0.668163 0.126648 0.008378 0.006367 +12 0.581089 0.126080 0.007780 0.006139 +13 0.629264 0.124602 0.009575 0.006821 +12 0.563136 0.120850 0.008378 0.006594 +12 0.476960 0.120850 0.008378 0.006594 +12 0.496709 0.120509 0.008977 0.006821 +12 0.324656 0.119486 0.008378 0.006594 +12 0.525883 0.117894 0.009874 0.007049 +12 0.454817 0.112779 0.008977 0.006821 +17 0.367893 0.111414 0.009874 0.007731 +12 0.501197 0.069577 0.007780 0.005912 +12 0.501197 0.075489 0.007780 0.005912 +12 0.505685 0.056844 0.007181 0.005457 +13 0.505685 0.062301 0.007181 0.005457 +0 0.098893 0.828445 0.022442 0.023874 +0 0.098294 0.546044 0.022442 0.023874 +2 0.097098 0.601296 0.018851 0.019782 +3 0.512418 0.188608 0.006882 0.017508 +2 0.096200 0.656548 0.019449 0.020236 +2 0.203022 0.300932 0.020048 0.020236 +0 0.205416 0.244088 0.022442 0.024784 +1 0.204219 0.188381 0.022442 0.035243 +4 0.418163 0.411437 0.009874 0.015689 +3 0.512418 0.119031 0.006882 0.016598 +3 0.617145 0.285471 0.006882 0.017508 +3 0.617445 0.243633 0.007481 0.017508 +4 0.138689 0.817985 0.008677 0.012051 +2 0.098893 0.938950 0.017654 0.019327 +2 0.102184 0.887335 0.023040 0.019782 +4 0.527977 0.526035 0.009276 0.016598 +2 0.202723 0.356867 0.018253 0.019327 +1 0.095901 0.432356 0.022442 0.037517 +4 0.528276 0.584015 0.009874 0.017053 +4 0.121035 0.539905 0.009276 0.014325 +4 0.129862 0.606639 0.008378 0.012733 +4 0.121484 0.597772 0.008378 0.015007 +5 0.121185 0.718963 0.007780 0.009095 +4 0.233692 0.191451 0.008977 0.014552 +4 0.226810 0.181446 0.008378 0.014552 +4 0.129862 0.484311 0.008378 0.013643 +4 0.144524 0.480218 0.008977 0.015462 +4 0.121185 0.474761 0.008977 0.014552 +4 0.137642 0.470441 0.008378 0.013188 +4 0.234291 0.140291 0.008977 0.013188 +4 0.226212 0.351978 0.008378 0.014552 +4 0.225613 0.237835 0.008378 0.015462 +4 0.225613 0.296726 0.008378 0.015916 +3 0.494614 0.066394 0.007780 0.018190 +4 0.146020 0.544111 0.008378 0.015007 +4 0.248953 0.243747 0.009575 0.013643 +4 0.240575 0.233515 0.008378 0.013188 +4 0.131658 0.892678 0.008378 0.013643 +4 0.122980 0.884038 0.007780 0.014552 +4 0.146619 0.889268 0.008378 0.014097 +4 0.139737 0.881082 0.007780 0.015007 +3 0.122083 0.772283 0.008378 0.016598 +4 0.129862 0.775239 0.008378 0.016598 +4 0.138241 0.594930 0.008378 0.016598 +4 0.145422 0.601523 0.008378 0.016598 +4 0.140036 0.933265 0.008378 0.016598 +4 0.147217 0.939859 0.008378 0.016598 +4 0.240575 0.181560 0.008378 0.016598 +4 0.249551 0.184516 0.008378 0.016598 +4 0.241771 0.128809 0.008378 0.016598 +5 0.250150 0.134948 0.008378 0.016598 +4 0.240575 0.351637 0.008378 0.016598 +3 0.247756 0.354593 0.008378 0.016598 +4 0.092160 0.727035 0.008378 0.016598 +4 0.102334 0.723624 0.008378 0.016598 +4 0.122083 0.654957 0.008378 0.016598 +5 0.129862 0.657003 0.008378 0.016598 +4 0.138839 0.650409 0.008378 0.016598 +4 0.146020 0.654729 0.008378 0.016598 +4 0.232795 0.303661 0.008378 0.016598 +4 0.240874 0.294338 0.008378 0.016598 +5 0.248953 0.300477 0.008378 0.016598 +4 0.129862 0.545589 0.008378 0.016598 +4 0.137642 0.538995 0.008378 0.016598 +4 0.198384 0.142451 0.008378 0.016598 +4 0.205266 0.138358 0.008378 0.016598 +5 0.212448 0.136767 0.008378 0.016598 +4 0.091861 0.778877 0.008378 0.016598 +4 0.098743 0.776148 0.008378 0.016598 +5 0.105925 0.775466 0.008378 0.016598 +4 0.090664 0.487608 0.008378 0.016598 +4 0.096948 0.482378 0.008378 0.016598 +3 0.103531 0.482833 0.008378 0.016598 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_36.jpg b/data_dataset/dvo/debug/debug_36.jpg new file mode 100644 index 0000000..ba0b9c9 Binary files /dev/null and b/data_dataset/dvo/debug/debug_36.jpg differ diff --git a/data_dataset/dvo/debug/debug_36.txt b/data_dataset/dvo/debug/debug_36.txt new file mode 100644 index 0000000..d810a26 --- /dev/null +++ b/data_dataset/dvo/debug/debug_36.txt @@ -0,0 +1,796 @@ +10 0.669157 0.942513 0.008368 0.002727 +7 0.812911 0.942399 0.011357 0.012497 +8 0.876569 0.939673 0.011955 0.008862 +10 0.561267 0.932288 0.007770 0.002272 +9 0.487149 0.940695 0.008966 0.020904 +7 0.319187 0.936946 0.010161 0.013406 +9 0.340108 0.945581 0.008966 0.031584 +6 0.202032 0.936378 0.004184 0.018632 +9 0.468619 0.936378 0.011357 0.029539 +10 0.492678 0.905362 0.005678 0.002045 +8 0.668261 0.901840 0.010161 0.018178 +9 0.702331 0.894683 0.006575 0.018405 +7 0.814405 0.894797 0.011955 0.012724 +8 0.877764 0.892865 0.010759 0.008862 +9 0.652421 0.899341 0.011955 0.023177 +10 0.594441 0.889798 0.007173 0.002727 +10 0.579498 0.889571 0.007173 0.002272 +7 0.319785 0.893547 0.012552 0.012952 +9 0.557681 0.896160 0.004184 0.026812 +10 0.561267 0.884799 0.006575 0.002727 +9 0.487747 0.893320 0.010161 0.021132 +9 0.341901 0.896728 0.010161 0.029312 +6 0.202929 0.887071 0.009564 0.019087 +10 0.853706 0.857646 0.009265 0.001591 +10 0.771219 0.858668 0.025403 0.004999 +10 0.755081 0.857987 0.012253 0.003636 +10 0.170502 0.852306 0.006276 0.002272 +9 0.261955 0.857760 0.009863 0.014997 +10 0.204274 0.852193 0.005678 0.002499 +10 0.221907 0.844808 0.009863 0.004999 +7 0.909295 0.847875 0.012253 0.014315 +7 0.411984 0.846739 0.012253 0.012952 +9 0.711895 0.847307 0.008368 0.022722 +7 0.290347 0.847648 0.012851 0.035219 +10 0.689779 0.814360 0.005977 0.001818 +10 0.671249 0.814360 0.007173 0.001818 +10 0.653915 0.813224 0.005977 0.004090 +10 0.124925 0.802318 0.005977 0.004090 +7 0.909145 0.799705 0.011955 0.014315 +7 0.413030 0.799932 0.011955 0.013860 +10 0.715182 0.795047 0.007770 0.003181 +9 0.649432 0.803113 0.008966 0.021586 +9 0.614764 0.802999 0.008966 0.021359 +10 0.579797 0.794819 0.009564 0.002727 +10 0.597430 0.794819 0.007770 0.003636 +10 0.805140 0.789252 0.011955 0.002954 +7 0.410341 0.759032 0.012552 0.012952 +7 0.907950 0.758350 0.011955 0.015224 +9 0.750448 0.762213 0.011357 0.029766 +8 0.687388 0.758010 0.009564 0.021359 +9 0.589958 0.753011 0.011955 0.023177 +8 0.233712 0.705067 0.004782 0.017269 +7 0.449492 0.707453 0.011955 0.013406 +7 0.215780 0.707226 0.011955 0.012952 +7 0.897191 0.707226 0.011955 0.013860 +9 0.712194 0.712679 0.010161 0.025222 +7 0.687687 0.706771 0.008966 0.013406 +10 0.636880 0.702340 0.007770 0.003181 +9 0.520921 0.711997 0.010161 0.023858 +6 0.569635 0.706090 0.009564 0.018405 +6 0.324268 0.704499 0.008966 0.018405 +6 0.788703 0.704726 0.008966 0.017496 +10 0.644351 0.678482 0.008368 0.002727 +10 0.180514 0.673483 0.005977 0.004544 +7 0.521817 0.667235 0.011955 0.012497 +8 0.432756 0.664054 0.011955 0.006589 +7 0.896294 0.667235 0.012552 0.013860 +9 0.634190 0.666326 0.011955 0.022495 +6 0.789301 0.666099 0.007770 0.018405 +6 0.322773 0.664963 0.009564 0.017496 +10 0.218470 0.658032 0.008966 0.002272 +8 0.586073 0.667689 0.013748 0.023404 +10 0.634489 0.657805 0.007770 0.003181 +9 0.571429 0.665985 0.013150 0.020904 +10 0.881650 0.638718 0.020323 0.001818 +8 0.324268 0.623267 0.006575 0.019995 +10 0.342499 0.623267 0.007173 0.003636 +10 0.235804 0.623267 0.006575 0.003636 +10 0.192618 0.623154 0.006874 0.003408 +9 0.570233 0.628039 0.011955 0.024085 +8 0.167215 0.620541 0.008667 0.019541 +9 0.741184 0.625994 0.008368 0.025449 +10 0.167812 0.619405 0.006276 0.002727 +9 0.520771 0.627925 0.010460 0.023858 +9 0.846981 0.625199 0.008368 0.024313 +10 0.417663 0.618496 0.006276 0.002272 +8 0.628213 0.627017 0.010759 0.027494 +9 0.788255 0.625880 0.009863 0.025676 +9 0.894501 0.625199 0.011357 0.024313 +9 0.537059 0.621791 0.011357 0.036128 +9 0.863419 0.621791 0.013748 0.031129 +10 0.809175 0.608612 0.007472 0.003408 +10 0.229827 0.601000 0.011955 0.001818 +10 0.211895 0.600659 0.011955 0.002954 +9 0.198745 0.610770 0.009564 0.029084 +10 0.211297 0.597705 0.007173 0.002499 +10 0.852660 0.584185 0.005977 0.001818 +10 0.355051 0.578732 0.006575 0.003636 +10 0.323969 0.578505 0.008966 0.003181 +8 0.861925 0.574983 0.011357 0.023858 +9 0.896892 0.572824 0.009564 0.021359 +8 0.415720 0.571575 0.013150 0.017950 +8 0.340108 0.571575 0.012552 0.017950 +7 0.277645 0.568848 0.011955 0.012497 +10 0.774656 0.564644 0.010161 0.003181 +7 0.743276 0.568848 0.011955 0.012952 +10 0.668261 0.565553 0.011357 0.004999 +9 0.846384 0.573165 0.007770 0.022040 +10 0.822773 0.564872 0.008368 0.004090 +9 0.789301 0.572143 0.009564 0.020450 +8 0.200538 0.565781 0.009564 0.007271 +10 0.335625 0.561009 0.005977 0.001818 +6 0.569934 0.567939 0.009564 0.019314 +8 0.429767 0.568621 0.011357 0.023858 +10 0.427077 0.558509 0.010759 0.002272 +10 0.462343 0.553056 0.009564 0.002272 +10 0.412732 0.535106 0.005977 0.001818 +10 0.849671 0.530334 0.005977 0.003181 +7 0.742977 0.527039 0.012552 0.012952 +8 0.667962 0.524313 0.011955 0.007498 +7 0.276449 0.526812 0.010759 0.012952 +10 0.199641 0.523177 0.010161 0.005226 +6 0.567543 0.524994 0.009564 0.017950 +8 0.412433 0.524767 0.013748 0.018859 +8 0.805738 0.521813 0.013748 0.024313 +9 0.473102 0.517610 0.010759 0.020904 +9 0.582188 0.475687 0.006575 0.012952 +7 0.557382 0.470461 0.011955 0.013406 +7 0.793186 0.470120 0.011357 0.014088 +7 0.346981 0.470916 0.011955 0.013860 +6 0.670950 0.468416 0.009564 0.017496 +6 0.460550 0.468416 0.009564 0.017950 +10 0.165870 0.440582 0.007173 0.004090 +10 0.816796 0.431834 0.005977 0.002499 +7 0.613867 0.428198 0.011357 0.012497 +7 0.346384 0.428425 0.011955 0.013406 +6 0.555888 0.426835 0.010161 0.018859 +6 0.461745 0.427289 0.009564 0.018405 +6 0.218470 0.426608 0.009564 0.017042 +8 0.695158 0.428198 0.011357 0.022495 +8 0.809623 0.426153 0.013150 0.018859 +9 0.704722 0.425471 0.011357 0.027948 +10 0.517782 0.393092 0.006276 0.001818 +10 0.461895 0.393092 0.006874 0.003181 +10 0.813359 0.390025 0.008069 0.003408 +10 0.237747 0.387639 0.005678 0.003181 +10 0.166617 0.388321 0.005678 0.004999 +10 0.327555 0.366508 0.007173 0.001818 +9 0.174836 0.378664 0.010161 0.033401 +9 0.318888 0.377301 0.008966 0.029312 +10 0.212642 0.365485 0.012253 0.004317 +9 0.557083 0.344922 0.009564 0.017723 +10 0.559474 0.338105 0.005977 0.002727 +10 0.258816 0.337651 0.005977 0.003181 +8 0.363718 0.342763 0.013748 0.022040 +9 0.347280 0.341513 0.009564 0.020450 +8 0.309623 0.342195 0.013150 0.020904 +8 0.240287 0.344126 0.013150 0.024767 +8 0.882546 0.334356 0.011357 0.007044 +6 0.670054 0.336855 0.009564 0.018859 +8 0.205021 0.329016 0.009564 0.021813 +10 0.298267 0.300841 0.008368 0.002272 +10 0.780932 0.292888 0.010161 0.004999 +7 0.166766 0.295955 0.011955 0.012497 +8 0.882247 0.293002 0.011955 0.007044 +6 0.670054 0.295728 0.009564 0.018405 +8 0.363419 0.289480 0.013150 0.020904 +8 0.238195 0.291411 0.013748 0.022949 +8 0.309623 0.290502 0.013150 0.024767 +9 0.517633 0.283913 0.010759 0.031129 +10 0.225045 0.247898 0.006575 0.003636 +7 0.397490 0.240968 0.011955 0.012952 +7 0.209803 0.241422 0.013150 0.013860 +8 0.784220 0.238014 0.010759 0.007498 +7 0.598326 0.240514 0.011955 0.012497 +6 0.699641 0.239150 0.008966 0.018859 +6 0.559175 0.238696 0.010161 0.018859 +6 0.501195 0.239037 0.008966 0.018632 +6 0.167065 0.239605 0.010161 0.018859 +6 0.353855 0.238923 0.010759 0.018859 +6 0.302152 0.238696 0.010161 0.017496 +10 0.265690 0.215406 0.008966 0.004090 +10 0.370891 0.212906 0.006575 0.002727 +7 0.599223 0.200750 0.012552 0.013860 +10 0.355649 0.195637 0.008368 0.002727 +10 0.322176 0.195865 0.008368 0.003181 +9 0.280036 0.203136 0.011357 0.024540 +9 0.262104 0.204499 0.010161 0.021813 +9 0.227436 0.202568 0.008966 0.017950 +6 0.559175 0.199159 0.010161 0.018859 +6 0.502989 0.199273 0.010161 0.019087 +10 0.286910 0.166553 0.005977 0.002727 +9 0.303497 0.157691 0.007472 0.020450 +10 0.083831 0.155874 0.005678 0.003636 +10 0.185894 0.139400 0.013748 0.004772 +10 0.480126 0.104408 0.006276 0.001591 +10 0.377764 0.099523 0.006575 0.002272 +10 0.198595 0.100773 0.012253 0.004772 +10 0.193963 0.099296 0.005977 0.001818 +10 0.567543 0.078618 0.009564 0.004544 +7 0.500299 0.067485 0.012552 0.012724 +7 0.302750 0.067371 0.009564 0.013860 +10 0.197250 0.063281 0.011357 0.005226 +6 0.398386 0.066235 0.009564 0.017950 +6 0.455768 0.065781 0.008368 0.017042 +6 0.261805 0.065099 0.008966 0.018405 +11 0.568739 0.956374 0.007770 0.003181 +12 0.578153 0.939673 0.008069 0.006135 +18 0.514047 0.952056 0.004184 0.003636 +12 0.523760 0.932175 0.008667 0.006589 +12 0.768978 0.953079 0.010759 0.006589 +11 0.170203 0.952511 0.009863 0.006362 +11 0.263897 0.952397 0.009564 0.006589 +12 0.787956 0.945353 0.009265 0.006135 +12 0.752690 0.944785 0.009265 0.005453 +12 0.688135 0.944899 0.008069 0.005681 +12 0.669307 0.944899 0.008667 0.005681 +12 0.713090 0.942399 0.008368 0.006135 +12 0.651674 0.939900 0.008069 0.005681 +12 0.596384 0.940014 0.008667 0.005908 +12 0.614316 0.937401 0.008667 0.006135 +12 0.504931 0.934560 0.007472 0.005453 +12 0.488643 0.934560 0.006575 0.005453 +12 0.561118 0.934674 0.008667 0.006135 +11 0.341602 0.934106 0.007770 0.006362 +12 0.469366 0.926721 0.006874 0.006135 +17 0.387328 0.927176 0.011357 0.007044 +12 0.768530 0.905590 0.009863 0.006135 +11 0.169456 0.904454 0.008368 0.006589 +11 0.263748 0.903999 0.009265 0.007044 +12 0.789301 0.897182 0.007173 0.004772 +12 0.751195 0.897296 0.006276 0.004999 +12 0.669307 0.897523 0.008667 0.005453 +12 0.686940 0.897182 0.008069 0.005681 +12 0.715033 0.895024 0.009265 0.006817 +12 0.652720 0.891956 0.008368 0.005226 +12 0.595039 0.892297 0.007770 0.005908 +12 0.579050 0.892184 0.008667 0.005681 +12 0.615959 0.889684 0.008368 0.006135 +12 0.562014 0.887185 0.008069 0.005681 +12 0.505977 0.887185 0.007770 0.005681 +12 0.488942 0.887185 0.007770 0.005681 +12 0.343246 0.886276 0.006874 0.005226 +12 0.523909 0.884685 0.010161 0.006135 +12 0.469516 0.879573 0.009564 0.006362 +17 0.386432 0.879005 0.011357 0.007044 +18 0.211148 0.865826 0.006874 0.002499 +18 0.095487 0.854806 0.008667 0.005908 +18 0.100867 0.854806 0.008667 0.005908 +12 0.342648 0.850148 0.006874 0.004772 +12 0.319337 0.849125 0.009265 0.005453 +12 0.319337 0.854579 0.009265 0.005453 +11 0.384638 0.847194 0.008368 0.006135 +12 0.203975 0.846853 0.009863 0.006362 +18 0.203527 0.854579 0.008368 0.005453 +12 0.264196 0.846512 0.008368 0.006589 +18 0.263299 0.854692 0.008368 0.005681 +12 0.343545 0.844240 0.009265 0.005681 +12 0.286461 0.844354 0.008667 0.005908 +12 0.293335 0.846853 0.008667 0.005908 +13 0.887029 0.842990 0.010161 0.006817 +12 0.222654 0.842195 0.008966 0.005226 +12 0.222654 0.847421 0.008966 0.005226 +13 0.786611 0.842649 0.008966 0.006589 +13 0.767932 0.842763 0.010460 0.006817 +13 0.750149 0.842649 0.009564 0.006589 +12 0.686790 0.842649 0.010161 0.006589 +12 0.850568 0.842536 0.008966 0.006817 +12 0.667812 0.842422 0.009863 0.007044 +12 0.187238 0.841513 0.009863 0.005681 +12 0.187238 0.847194 0.009863 0.005681 +12 0.169904 0.854919 0.008667 0.005681 +12 0.170054 0.846512 0.010161 0.006135 +12 0.179767 0.827085 0.010460 0.003181 +13 0.867304 0.840377 0.008966 0.005226 +13 0.713837 0.840377 0.007472 0.005226 +13 0.813210 0.839923 0.007770 0.006135 +13 0.647938 0.837423 0.008368 0.006135 +12 0.596384 0.837423 0.010460 0.006135 +12 0.579199 0.837537 0.008966 0.006362 +13 0.430365 0.837310 0.008966 0.006362 +12 0.615660 0.835037 0.008966 0.005908 +12 0.561118 0.829925 0.008069 0.006589 +17 0.470263 0.829243 0.010460 0.007498 +18 0.195457 0.827085 0.004782 0.003181 +13 0.887627 0.804817 0.007770 0.005908 +13 0.869247 0.805044 0.008667 0.006362 +13 0.851913 0.805044 0.008667 0.006362 +17 0.429617 0.804476 0.009265 0.006135 +13 0.787059 0.804590 0.009265 0.006817 +12 0.769127 0.804476 0.009265 0.006589 +12 0.813957 0.804363 0.009265 0.006817 +11 0.264196 0.804249 0.008368 0.006589 +11 0.318440 0.799477 0.008069 0.006135 +12 0.750299 0.797205 0.009863 0.005681 +12 0.761357 0.785617 0.010460 0.002499 +12 0.713987 0.797092 0.008966 0.005453 +12 0.668858 0.797092 0.008368 0.005453 +12 0.616557 0.797432 0.008368 0.006135 +12 0.562014 0.797205 0.008667 0.005681 +11 0.384340 0.797205 0.007173 0.006135 +11 0.205170 0.797092 0.009265 0.005908 +12 0.688135 0.796864 0.008667 0.005908 +12 0.650777 0.796751 0.008667 0.005681 +12 0.597878 0.797092 0.009863 0.006362 +12 0.578751 0.796751 0.008667 0.005681 +11 0.126868 0.795842 0.007472 0.003863 +12 0.471757 0.796978 0.011058 0.006589 +18 0.140765 0.793683 0.005977 0.005908 +11 0.168709 0.791752 0.008667 0.005681 +12 0.750897 0.772893 0.006276 0.002499 +12 0.750747 0.751647 0.007770 0.005453 +12 0.868500 0.764713 0.008966 0.006589 +12 0.787059 0.757328 0.008069 0.004999 +12 0.887179 0.757441 0.008667 0.006589 +12 0.850717 0.756987 0.007472 0.005681 +12 0.771668 0.756646 0.008966 0.005453 +12 0.813359 0.753806 0.008069 0.005681 +13 0.688285 0.751875 0.008368 0.005908 +13 0.670652 0.751307 0.007173 0.005226 +12 0.714136 0.749375 0.009265 0.006362 +12 0.430514 0.746762 0.009863 0.006135 +12 0.651823 0.746535 0.009564 0.006135 +12 0.579498 0.746535 0.009564 0.006135 +11 0.262851 0.746421 0.009265 0.006362 +12 0.598625 0.746080 0.009564 0.007044 +12 0.616109 0.743354 0.008069 0.006135 +11 0.319038 0.741650 0.009265 0.006817 +11 0.203078 0.739264 0.009265 0.006589 +12 0.561566 0.738809 0.008368 0.006135 +17 0.471160 0.739264 0.011058 0.007498 +11 0.382845 0.738355 0.008368 0.006589 +11 0.168559 0.734038 0.008966 0.006589 +11 0.916169 0.720404 0.009265 0.006135 +11 0.849671 0.720518 0.010161 0.006362 +11 0.168410 0.710066 0.009265 0.004999 +12 0.234011 0.709611 0.008966 0.004544 +12 0.472504 0.707226 0.009564 0.006135 +11 0.394053 0.707339 0.009863 0.006362 +17 0.279139 0.707453 0.009564 0.006589 +12 0.713090 0.704499 0.008368 0.005681 +11 0.636880 0.704726 0.008966 0.006135 +11 0.521967 0.704726 0.008667 0.006135 +11 0.745816 0.702000 0.009863 0.007044 +13 0.069934 0.689616 0.004782 0.020450 +11 0.915123 0.680414 0.009564 0.006135 +13 0.850568 0.680641 0.009564 0.006589 +11 0.662134 0.676210 0.005678 0.005453 +13 0.669755 0.659396 0.007770 0.005453 +18 0.196354 0.674279 0.007173 0.002954 +11 0.278691 0.667576 0.008667 0.006817 +12 0.234459 0.665303 0.008069 0.005908 +12 0.216975 0.660191 0.008966 0.005681 +12 0.634489 0.659509 0.008368 0.004772 +12 0.571130 0.659623 0.007173 0.004999 +12 0.551554 0.659509 0.008069 0.005226 +13 0.602062 0.659396 0.008667 0.005453 +11 0.745517 0.657237 0.008667 0.006589 +12 0.191423 0.655192 0.009863 0.006135 +12 0.714286 0.654851 0.009564 0.006362 +12 0.168410 0.653374 0.009265 0.006135 +12 0.689480 0.651784 0.008368 0.006589 +12 0.278093 0.630198 0.008667 0.005681 +12 0.278691 0.622699 0.007472 0.003408 +12 0.325314 0.628948 0.009863 0.006817 +12 0.325613 0.622927 0.006874 0.003863 +12 0.457412 0.623608 0.009863 0.006135 +12 0.448894 0.620882 0.008368 0.005226 +12 0.848625 0.622472 0.006874 0.007044 +12 0.168261 0.621563 0.009564 0.005226 +12 0.168261 0.626789 0.009564 0.005226 +12 0.295278 0.621677 0.009564 0.005908 +12 0.293485 0.611111 0.007770 0.005681 +12 0.234011 0.621677 0.009564 0.005908 +12 0.234310 0.613611 0.007173 0.006135 +12 0.217125 0.621336 0.011656 0.005226 +12 0.217125 0.626562 0.011656 0.005226 +12 0.225344 0.599296 0.005380 0.003863 +12 0.191423 0.621450 0.009265 0.005453 +12 0.191572 0.613383 0.008368 0.005681 +12 0.417065 0.621336 0.008069 0.006135 +12 0.417513 0.610657 0.009564 0.005681 +12 0.391662 0.621222 0.008667 0.005908 +12 0.398536 0.623722 0.008667 0.005908 +12 0.342050 0.621222 0.009265 0.005908 +12 0.340257 0.610884 0.008069 0.005226 +12 0.626121 0.620427 0.005380 0.004772 +12 0.539450 0.620768 0.007770 0.005453 +12 0.538703 0.608384 0.009265 0.006135 +12 0.521817 0.620654 0.009564 0.005226 +12 0.521817 0.625880 0.009564 0.005226 +12 0.588165 0.620882 0.008368 0.006589 +12 0.587119 0.608044 0.009265 0.006362 +12 0.570532 0.620314 0.010161 0.005453 +12 0.570532 0.625767 0.010161 0.005453 +12 0.810371 0.619632 0.009265 0.007271 +12 0.808876 0.610429 0.009265 0.005226 +12 0.915870 0.618269 0.007472 0.005908 +12 0.915272 0.610429 0.008667 0.005226 +12 0.790048 0.618155 0.008069 0.005681 +12 0.790048 0.623835 0.008069 0.005681 +12 0.742379 0.618041 0.008966 0.005453 +12 0.742379 0.623495 0.008966 0.005453 +12 0.713240 0.618382 0.009265 0.006135 +12 0.712044 0.608157 0.009265 0.006589 +12 0.686940 0.618155 0.009863 0.005681 +12 0.895547 0.617928 0.008667 0.005681 +12 0.895547 0.623608 0.008667 0.005681 +12 0.866258 0.618155 0.008069 0.006135 +12 0.865959 0.610429 0.008667 0.005226 +12 0.634489 0.618155 0.008368 0.006135 +12 0.761506 0.618155 0.008966 0.006589 +12 0.759564 0.610089 0.008667 0.005908 +12 0.656455 0.618155 0.008667 0.006589 +12 0.656605 0.607930 0.009564 0.006135 +12 0.182158 0.611452 0.006276 0.004090 +18 0.140765 0.611906 0.008368 0.004999 +18 0.140765 0.616905 0.008368 0.004999 +12 0.473700 0.610884 0.009564 0.005226 +12 0.474298 0.621336 0.009564 0.006135 +11 0.870143 0.582140 0.008667 0.007726 +13 0.879408 0.566689 0.008069 0.004999 +11 0.815152 0.580891 0.008667 0.008862 +11 0.822923 0.566576 0.008667 0.005226 +12 0.429767 0.577255 0.009564 0.006135 +13 0.429767 0.563281 0.005977 0.004090 +12 0.393903 0.577028 0.010161 0.005681 +13 0.354901 0.576914 0.009863 0.005453 +11 0.323819 0.576801 0.009863 0.005226 +12 0.330693 0.559873 0.004483 0.003636 +12 0.304842 0.577028 0.010161 0.005681 +11 0.522564 0.574869 0.009265 0.006362 +12 0.474148 0.571688 0.009265 0.005908 +12 0.450986 0.569757 0.010759 0.006589 +12 0.897340 0.566689 0.008069 0.004999 +12 0.847729 0.566689 0.008069 0.005908 +12 0.774208 0.566576 0.009265 0.006135 +12 0.790197 0.566462 0.007770 0.006362 +12 0.914824 0.564531 0.007770 0.006135 +13 0.345786 0.559418 0.007173 0.002272 +12 0.870293 0.529652 0.005977 0.004999 +11 0.878811 0.507271 0.008069 0.006135 +13 0.431560 0.517269 0.009564 0.007044 +13 0.391961 0.517042 0.009863 0.006589 +13 0.353855 0.517042 0.009564 0.006589 +13 0.323819 0.516814 0.008667 0.006135 +12 0.306485 0.517042 0.009863 0.006589 +11 0.520771 0.514315 0.009863 0.006135 +12 0.473999 0.511929 0.008368 0.006362 +12 0.448446 0.509543 0.009265 0.007044 +12 0.893604 0.507044 0.008368 0.006589 +12 0.821429 0.506703 0.008069 0.005908 +12 0.789898 0.506589 0.008966 0.006135 +12 0.771219 0.506135 0.008069 0.006135 +12 0.848476 0.506135 0.008966 0.006589 +12 0.916617 0.503976 0.009564 0.006817 +11 0.166617 0.484322 0.008667 0.006135 +12 0.365660 0.481368 0.009863 0.006135 +12 0.293933 0.481368 0.009863 0.006135 +12 0.579050 0.478755 0.009863 0.005908 +11 0.422744 0.478300 0.009265 0.004999 +11 0.519576 0.478300 0.009265 0.005908 +11 0.738494 0.476255 0.007770 0.006362 +11 0.614614 0.476369 0.009265 0.006589 +12 0.814854 0.476028 0.008069 0.006362 +11 0.217274 0.473302 0.005977 0.004999 +11 0.861028 0.472961 0.009564 0.005681 +11 0.166916 0.442286 0.009265 0.005681 +12 0.365959 0.439218 0.009265 0.006362 +11 0.291990 0.439332 0.009564 0.006589 +12 0.422744 0.436605 0.009265 0.005681 +11 0.519576 0.436605 0.009265 0.006135 +12 0.767035 0.435356 0.007472 0.007271 +12 0.777197 0.416155 0.009265 0.006135 +11 0.704274 0.434788 0.006874 0.006135 +12 0.712493 0.415815 0.007770 0.005453 +11 0.818290 0.432856 0.006575 0.003636 +12 0.827406 0.415928 0.009265 0.006135 +12 0.140167 0.426608 0.007770 0.006135 +12 0.735655 0.416042 0.008667 0.005908 +12 0.671548 0.416155 0.009564 0.006135 +12 0.656157 0.416155 0.009863 0.006135 +12 0.792738 0.416042 0.008069 0.006362 +17 0.859085 0.412520 0.011656 0.007498 +12 0.347579 0.393661 0.009564 0.006135 +12 0.345935 0.382868 0.008069 0.005453 +12 0.293634 0.393661 0.009265 0.006135 +12 0.292140 0.382981 0.008069 0.005681 +12 0.558279 0.391729 0.007173 0.004999 +12 0.557830 0.385253 0.009265 0.005226 +12 0.463688 0.391502 0.008667 0.005908 +12 0.463389 0.385253 0.008667 0.004772 +12 0.423042 0.391388 0.008667 0.006135 +12 0.423491 0.385140 0.007770 0.004544 +12 0.791094 0.391161 0.009564 0.006135 +12 0.799910 0.388434 0.007472 0.003863 +12 0.733861 0.391161 0.008667 0.006135 +12 0.742678 0.388434 0.007770 0.004317 +12 0.614017 0.391161 0.009265 0.006135 +12 0.623879 0.387980 0.008667 0.005226 +12 0.518679 0.391047 0.008069 0.006362 +12 0.519725 0.384913 0.007173 0.004544 +12 0.858488 0.388207 0.009863 0.004317 +12 0.857591 0.382640 0.006874 0.004999 +12 0.696503 0.388548 0.008667 0.005453 +12 0.695308 0.377982 0.007472 0.005226 +12 0.670801 0.391275 0.008667 0.005908 +12 0.678870 0.388548 0.008667 0.005908 +12 0.365660 0.388207 0.008667 0.005226 +12 0.365362 0.380595 0.008667 0.006362 +12 0.760909 0.388321 0.009564 0.005908 +12 0.761506 0.377301 0.004184 0.003863 +12 0.642259 0.387866 0.008368 0.004999 +12 0.641064 0.377869 0.007770 0.004999 +12 0.312313 0.388094 0.009564 0.005453 +12 0.312164 0.380482 0.008667 0.006135 +12 0.540944 0.386276 0.006575 0.004544 +12 0.540795 0.379914 0.007472 0.004544 +12 0.443515 0.386162 0.007770 0.004317 +12 0.443365 0.380141 0.008069 0.005453 +12 0.187238 0.386503 0.009265 0.004999 +12 0.186641 0.380595 0.009863 0.006362 +12 0.482815 0.386389 0.008667 0.005226 +12 0.482965 0.379573 0.007173 0.003408 +12 0.580245 0.386162 0.008069 0.005226 +12 0.579647 0.380027 0.009265 0.005681 +12 0.167513 0.385935 0.009863 0.005681 +12 0.167513 0.391616 0.009863 0.005681 +12 0.220562 0.385708 0.009564 0.005681 +12 0.220562 0.391388 0.009564 0.005681 +12 0.915272 0.383208 0.008069 0.004317 +12 0.914674 0.375369 0.008667 0.005908 +12 0.898237 0.382754 0.009265 0.005226 +12 0.898237 0.387980 0.009265 0.005226 +12 0.881351 0.382640 0.008966 0.004999 +12 0.881351 0.375710 0.006575 0.004772 +12 0.239241 0.380141 0.008667 0.005453 +12 0.239241 0.385594 0.008667 0.005453 +12 0.812612 0.377755 0.006575 0.005226 +12 0.813658 0.387866 0.008667 0.005453 +13 0.871339 0.371166 0.008667 0.007498 +12 0.166916 0.354124 0.009863 0.006589 +11 0.249253 0.351625 0.008368 0.006589 +11 0.257472 0.335833 0.009265 0.005908 +11 0.374626 0.349580 0.008069 0.006135 +12 0.383293 0.335946 0.007472 0.005681 +11 0.320980 0.348330 0.007173 0.003636 +12 0.330096 0.335833 0.008667 0.005908 +11 0.616707 0.346399 0.008069 0.004772 +12 0.579797 0.345944 0.007173 0.005681 +12 0.558727 0.341286 0.008069 0.005453 +12 0.538105 0.336174 0.008667 0.005226 +12 0.348625 0.336174 0.008069 0.005681 +13 0.204573 0.335946 0.008667 0.005226 +12 0.291990 0.335833 0.008966 0.005908 +12 0.223999 0.335946 0.009265 0.006135 +12 0.518380 0.333447 0.008667 0.006135 +17 0.425433 0.333220 0.010460 0.007044 +12 0.140616 0.329016 0.005081 0.003636 +12 0.375075 0.297092 0.008966 0.005681 +12 0.384638 0.276642 0.008368 0.006589 +18 0.319337 0.296410 0.006276 0.004317 +11 0.248207 0.298114 0.009863 0.007726 +12 0.257173 0.275506 0.009863 0.006135 +11 0.616707 0.286867 0.009265 0.006589 +12 0.579498 0.286299 0.007770 0.006362 +12 0.557382 0.281641 0.008966 0.006135 +12 0.328452 0.276187 0.008966 0.005681 +12 0.538404 0.276074 0.008069 0.005908 +12 0.348476 0.275960 0.008966 0.006135 +12 0.203228 0.275619 0.008966 0.006362 +12 0.294979 0.275278 0.009564 0.006589 +12 0.222654 0.275051 0.008966 0.007044 +12 0.518081 0.273461 0.009265 0.007044 +17 0.424537 0.272097 0.011058 0.008407 +12 0.419008 0.246648 0.008368 0.005681 +12 0.666766 0.246648 0.008966 0.006135 +12 0.624477 0.246535 0.007472 0.005908 +17 0.227286 0.246080 0.009863 0.006362 +11 0.459056 0.228357 0.009564 0.006362 +11 0.264794 0.228130 0.009564 0.005908 +17 0.851315 0.210975 0.011058 0.007044 +17 0.758667 0.209157 0.011058 0.006589 +12 0.624776 0.206090 0.005081 0.004544 +11 0.459504 0.206203 0.009265 0.005681 +11 0.666318 0.205976 0.010460 0.007498 +12 0.262851 0.198137 0.007472 0.004999 +12 0.418858 0.198137 0.008069 0.005908 +12 0.355499 0.198023 0.008069 0.005681 +12 0.322773 0.198023 0.008368 0.005681 +12 0.226091 0.198023 0.006276 0.005681 +12 0.400926 0.195978 0.009863 0.006135 +12 0.381052 0.195751 0.009564 0.006589 +12 0.304991 0.195524 0.009863 0.006135 +12 0.288703 0.195524 0.008966 0.006135 +12 0.211148 0.195637 0.008069 0.006362 +12 0.193814 0.195410 0.009863 0.006817 +12 0.169307 0.188025 0.009863 0.005226 +12 0.485655 0.168257 0.010161 0.005226 +12 0.484459 0.161781 0.008368 0.004999 +17 0.850418 0.167348 0.010460 0.006135 +17 0.850269 0.156669 0.010759 0.006589 +17 0.758966 0.167348 0.010460 0.006589 +17 0.758518 0.158714 0.011357 0.006589 +12 0.287507 0.165758 0.005977 0.003408 +12 0.289151 0.158259 0.006874 0.005226 +12 0.522714 0.165076 0.010161 0.005681 +12 0.522415 0.158714 0.007770 0.004772 +12 0.400926 0.164735 0.009265 0.005453 +12 0.401524 0.158487 0.006874 0.004772 +12 0.458010 0.164622 0.009863 0.005681 +12 0.457711 0.158714 0.006874 0.005226 +12 0.305439 0.163713 0.009564 0.005681 +12 0.305140 0.158032 0.007770 0.004772 +11 0.313808 0.139741 0.006575 0.002727 +12 0.503437 0.162236 0.009863 0.005453 +12 0.503437 0.167689 0.009863 0.005453 +11 0.667065 0.162122 0.011357 0.006135 +17 0.667065 0.168257 0.011357 0.006135 +17 0.561118 0.161781 0.010460 0.006362 +17 0.561118 0.168144 0.010460 0.006362 +12 0.381201 0.158941 0.009265 0.005681 +12 0.381201 0.164622 0.009265 0.005681 +12 0.388822 0.139627 0.005977 0.002499 +12 0.212044 0.158373 0.009265 0.005453 +12 0.212044 0.163826 0.009265 0.005453 +12 0.194112 0.158146 0.009863 0.005908 +12 0.194112 0.164054 0.009863 0.005908 +13 0.418858 0.156442 0.008667 0.004772 +13 0.418858 0.161213 0.008667 0.004772 +11 0.355350 0.155760 0.008966 0.004772 +11 0.355350 0.160532 0.008966 0.004772 +11 0.362971 0.139968 0.005081 0.003181 +12 0.321429 0.155760 0.009863 0.004772 +12 0.321429 0.160532 0.009863 0.004772 +12 0.169008 0.155760 0.009863 0.005226 +12 0.169008 0.160986 0.009863 0.005226 +12 0.263897 0.155533 0.009564 0.005226 +12 0.263897 0.160759 0.009564 0.005226 +12 0.227436 0.155419 0.009564 0.004999 +12 0.227436 0.160418 0.009564 0.004999 +12 0.484608 0.123722 0.008667 0.006589 +17 0.755977 0.123040 0.009863 0.007044 +17 0.667364 0.123267 0.010759 0.007498 +12 0.503138 0.123040 0.008667 0.007044 +11 0.562164 0.122813 0.010759 0.007498 +11 0.851016 0.122472 0.011058 0.007726 +12 0.522863 0.120086 0.009863 0.006589 +12 0.459653 0.119859 0.008966 0.006589 +12 0.401524 0.119405 0.008069 0.005681 +12 0.382546 0.119632 0.009564 0.006135 +12 0.306186 0.119291 0.009265 0.005908 +12 0.289151 0.119177 0.009863 0.006135 +12 0.212044 0.119177 0.009863 0.006135 +12 0.194860 0.119291 0.008966 0.006362 +12 0.419456 0.117132 0.008667 0.006589 +12 0.355798 0.117019 0.009265 0.006362 +12 0.169307 0.116905 0.010460 0.006589 +12 0.322176 0.116678 0.008966 0.006589 +12 0.265093 0.116678 0.010161 0.006589 +12 0.228183 0.116678 0.008667 0.006589 +12 0.068888 0.068734 0.004483 0.003408 +12 0.068440 0.059986 0.004184 0.005453 +12 0.702032 0.068280 0.008966 0.006589 +12 0.579050 0.068166 0.008667 0.006362 +12 0.320532 0.067825 0.008069 0.006135 +12 0.685894 0.068053 0.010161 0.007044 +12 0.600418 0.068053 0.008966 0.007044 +12 0.521817 0.067825 0.008368 0.006589 +12 0.777496 0.065667 0.007472 0.005908 +12 0.796623 0.065440 0.009265 0.005908 +12 0.887029 0.065099 0.007770 0.006135 +12 0.871339 0.064985 0.008667 0.005908 +18 0.142558 0.059418 0.007770 0.006135 +17 0.115959 0.055896 0.004184 0.005453 +12 0.098476 0.056578 0.008667 0.006817 +12 0.666916 0.049421 0.009863 0.007044 +12 0.562014 0.048853 0.009265 0.006817 +12 0.626569 0.048625 0.009265 0.007271 +12 0.757770 0.047376 0.008667 0.006589 +13 0.850568 0.046921 0.008368 0.006135 +11 0.356545 0.047376 0.010161 0.007044 +12 0.719516 0.046921 0.009863 0.006589 +12 0.906754 0.046239 0.008966 0.006589 +12 0.813359 0.045785 0.008667 0.006589 +0 0.092648 0.152579 0.023311 0.023404 +0 0.091154 0.618837 0.022714 0.023404 +3 0.446952 0.119632 0.007472 0.019768 +0 0.091303 0.380027 0.022415 0.023858 +3 0.276898 0.120086 0.006874 0.017042 +4 0.116109 0.237332 0.009863 0.015678 +1 0.638225 0.432515 0.017035 0.027039 +3 0.182158 0.121677 0.007472 0.015224 +4 0.611925 0.049421 0.009863 0.017042 +4 0.623879 0.704499 0.009265 0.016587 +2 0.090108 0.239377 0.018828 0.018859 +2 0.090108 0.198932 0.020024 0.019768 +2 0.090705 0.706090 0.018828 0.018859 +4 0.672594 0.067825 0.010460 0.016587 +4 0.141213 0.662009 0.009863 0.014315 +3 0.411686 0.333674 0.006874 0.020677 +4 0.140616 0.200295 0.009863 0.016133 +3 0.368649 0.120314 0.007472 0.016587 +4 0.701883 0.942627 0.009265 0.016587 +1 0.093096 0.668144 0.022415 0.039309 +4 0.746115 0.166894 0.009863 0.017496 +0 0.094292 0.795160 0.022415 0.032493 +4 0.906306 0.503863 0.009265 0.016587 +3 0.631351 0.377301 0.007472 0.020223 +4 0.801704 0.754828 0.009863 0.016814 +4 0.654363 0.050102 0.009863 0.014769 +1 0.094292 0.759032 0.022415 0.040218 +4 0.306784 0.740854 0.009863 0.017042 +4 0.276748 0.845376 0.010759 0.014315 +1 0.090108 0.569302 0.021817 0.039764 +1 0.090705 0.524085 0.021817 0.034765 +2 0.090108 0.427516 0.019426 0.018859 +3 0.411387 0.272779 0.007472 0.020677 +1 0.091602 0.295047 0.021817 0.038400 +2 0.095487 0.891047 0.012253 0.016133 +0 0.090705 0.334129 0.022415 0.032038 +4 0.380604 0.707226 0.010460 0.017042 +4 0.332038 0.849466 0.010161 0.016133 +4 0.118201 0.789480 0.009265 0.012043 +4 0.309026 0.849920 0.009564 0.016133 +2 0.096384 0.939446 0.010460 0.014769 +4 0.143604 0.893320 0.009265 0.014315 +2 0.091303 0.468416 0.014644 0.017042 +4 0.305290 0.799023 0.011656 0.017042 +4 0.115810 0.286185 0.009265 0.016133 +4 0.117304 0.748807 0.009863 0.016133 +3 0.268231 0.707453 0.006874 0.018405 +4 0.205768 0.660986 0.009863 0.016360 +4 0.125672 0.848444 0.008069 0.014088 +4 0.142708 0.844126 0.009863 0.015451 +0 0.134340 0.835037 0.008667 0.010907 +4 0.140765 0.523290 0.008966 0.016360 +4 0.140765 0.471029 0.008966 0.015451 +4 0.139121 0.378096 0.008667 0.014997 +4 0.115362 0.372188 0.008966 0.015905 +4 0.140765 0.564644 0.008966 0.015451 +0 0.132995 0.554192 0.008966 0.012724 +5 0.088912 0.846626 0.013449 0.022268 +4 0.143156 0.101113 0.008966 0.016360 +4 0.135087 0.093388 0.009564 0.016360 +4 0.141064 0.706658 0.008966 0.014997 +4 0.117753 0.701659 0.008966 0.014997 +0 0.132696 0.233129 0.008966 0.011361 +4 0.124328 0.294251 0.008966 0.013633 +4 0.140466 0.290616 0.008966 0.015451 +0 0.132098 0.282209 0.008966 0.011361 +5 0.098326 0.072256 0.011357 0.014088 +4 0.085774 0.069530 0.006575 0.012270 +4 0.117155 0.658941 0.008966 0.013179 +4 0.125075 0.619177 0.008667 0.012724 +4 0.116109 0.610089 0.008667 0.012724 +4 0.125523 0.756646 0.008966 0.014997 +4 0.141363 0.753692 0.008368 0.016360 +4 0.133891 0.745285 0.008966 0.012270 +4 0.124925 0.568507 0.008368 0.013179 +4 0.116856 0.559646 0.008966 0.013633 +4 0.142857 0.943422 0.008368 0.013179 +4 0.118649 0.937287 0.007770 0.015451 +4 0.118350 0.887980 0.008368 0.014997 +4 0.116856 0.145421 0.008966 0.015905 +4 0.115959 0.516360 0.009564 0.016587 +4 0.123431 0.524085 0.009564 0.016587 +4 0.130903 0.514769 0.009564 0.016587 +4 0.115362 0.465917 0.009564 0.016587 +4 0.123431 0.473188 0.009564 0.016587 +4 0.131500 0.463872 0.009564 0.016587 +4 0.471010 0.167348 0.009564 0.016587 +3 0.478482 0.166439 0.009564 0.016587 +4 0.123431 0.379118 0.009564 0.016587 +4 0.131201 0.369802 0.009564 0.016587 +5 0.125822 0.701318 0.009564 0.016587 +4 0.132995 0.700182 0.009564 0.016587 +4 0.118051 0.098955 0.009564 0.016587 +4 0.125523 0.103726 0.009564 0.016587 +4 0.116258 0.424335 0.009564 0.016587 +5 0.123730 0.428198 0.009564 0.016587 +4 0.131500 0.421836 0.009564 0.016587 +4 0.086970 0.105544 0.009564 0.016587 +4 0.098027 0.101000 0.009564 0.016587 +4 0.130006 0.192570 0.009564 0.016587 +4 0.124626 0.203022 0.009564 0.016587 +5 0.126718 0.940354 0.009564 0.016587 +4 0.135087 0.934674 0.009564 0.016587 +4 0.726539 0.475347 0.009564 0.015451 +5 0.732815 0.475347 0.009564 0.015451 +3 0.070532 0.757214 0.005977 0.016587 +3 0.070532 0.806976 0.005977 0.016587 +5 0.124925 0.151443 0.009564 0.016587 +4 0.132696 0.143490 0.009564 0.016587 +4 0.132098 0.325494 0.009564 0.016587 +5 0.140167 0.331402 0.009564 0.016587 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_37.jpg b/data_dataset/dvo/debug/debug_37.jpg new file mode 100644 index 0000000..5a0aa62 Binary files /dev/null and b/data_dataset/dvo/debug/debug_37.jpg differ diff --git a/data_dataset/dvo/debug/debug_37.txt b/data_dataset/dvo/debug/debug_37.txt new file mode 100644 index 0000000..f8f35ff --- /dev/null +++ b/data_dataset/dvo/debug/debug_37.txt @@ -0,0 +1,356 @@ +10 0.349791 0.946112 0.005984 0.002729 +10 0.149611 0.940427 0.006583 0.004093 +7 0.221125 0.939404 0.011969 0.012506 +7 0.203471 0.939859 0.010174 0.013415 +7 0.441053 0.938495 0.011370 0.012506 +7 0.421604 0.938495 0.010772 0.012506 +7 0.330940 0.939177 0.011370 0.013870 +7 0.313585 0.938722 0.012567 0.012960 +7 0.555955 0.938495 0.011370 0.013415 +7 0.536505 0.938040 0.011969 0.012506 +7 0.645422 0.937358 0.010772 0.012051 +7 0.750150 0.935994 0.011969 0.012051 +8 0.864452 0.932583 0.011969 0.008868 +6 0.667864 0.934402 0.007780 0.017053 +6 0.772292 0.933720 0.009575 0.017508 +6 0.884201 0.933492 0.010772 0.018872 +6 0.730700 0.934402 0.004189 0.022510 +7 0.331837 0.899841 0.011969 0.013415 +7 0.438659 0.898931 0.011370 0.012506 +9 0.556553 0.890746 0.006583 0.017963 +7 0.286355 0.895066 0.011969 0.012960 +7 0.219629 0.895975 0.012567 0.014779 +7 0.394973 0.895748 0.012567 0.015234 +7 0.509575 0.893474 0.011969 0.012506 +7 0.620886 0.892792 0.011969 0.012051 +7 0.728306 0.892337 0.011370 0.012051 +6 0.177738 0.895521 0.008977 0.018417 +7 0.841113 0.891428 0.011969 0.012960 +6 0.667265 0.891883 0.008977 0.017508 +10 0.342310 0.885744 0.006583 0.002956 +6 0.773489 0.891201 0.009575 0.017963 +6 0.883004 0.890291 0.008378 0.017963 +10 0.450628 0.863574 0.006583 0.004093 +7 0.218133 0.854820 0.011969 0.013415 +7 0.287552 0.854366 0.011969 0.012506 +7 0.393477 0.853683 0.011969 0.012960 +8 0.330640 0.851637 0.011969 0.007958 +7 0.511370 0.853001 0.011969 0.012506 +7 0.619988 0.852319 0.012567 0.012960 +7 0.728905 0.851296 0.011370 0.011824 +6 0.176541 0.854138 0.010174 0.018417 +7 0.840215 0.850955 0.011370 0.012960 +9 0.346499 0.854593 0.013764 0.024784 +6 0.774087 0.850728 0.009575 0.017963 +6 0.667864 0.851182 0.008977 0.017963 +10 0.538899 0.843565 0.005984 0.002274 +6 0.883902 0.849136 0.010174 0.017508 +10 0.425194 0.809459 0.011969 0.005002 +8 0.315978 0.810027 0.011370 0.007503 +8 0.538600 0.808663 0.011370 0.006594 +10 0.760922 0.807640 0.011969 0.005002 +8 0.649611 0.808436 0.009575 0.007958 +6 0.218432 0.813211 0.008977 0.018417 +8 0.872232 0.806617 0.010772 0.007049 +9 0.176840 0.810255 0.010772 0.035243 +7 0.690904 0.765462 0.011969 0.012960 +7 0.798025 0.765007 0.011969 0.012960 +7 0.908438 0.764325 0.011370 0.014325 +10 0.881209 0.755116 0.007181 0.002729 +10 0.764512 0.754206 0.007181 0.002729 +10 0.634949 0.752615 0.006583 0.004093 +9 0.287253 0.768417 0.008977 0.041610 +10 0.573908 0.750568 0.007780 0.002729 +10 0.303710 0.749204 0.009575 0.001819 +10 0.738779 0.749204 0.005984 0.004548 +10 0.207959 0.718054 0.011969 0.005002 +8 0.315978 0.717940 0.012567 0.007958 +7 0.752543 0.719986 0.011969 0.012960 +8 0.539198 0.716803 0.011370 0.006594 +8 0.424596 0.717030 0.011969 0.007049 +7 0.862358 0.719077 0.010174 0.012960 +6 0.617893 0.719304 0.009575 0.017963 +10 0.677439 0.710778 0.008977 0.004093 +10 0.410832 0.689632 0.010772 0.002729 +10 0.221724 0.686676 0.005984 0.002274 +9 0.442250 0.677581 0.006583 0.021828 +9 0.189108 0.674739 0.007780 0.020691 +7 0.518552 0.672920 0.011969 0.013415 +8 0.747457 0.668599 0.011370 0.006594 +8 0.634949 0.668827 0.011370 0.007049 +8 0.871634 0.667917 0.011969 0.007049 +6 0.535907 0.670873 0.009575 0.017508 +7 0.517355 0.634493 0.011969 0.013870 +10 0.871933 0.630286 0.012567 0.005002 +10 0.749551 0.630286 0.011969 0.005002 +10 0.635248 0.630286 0.009575 0.005002 +6 0.536804 0.632447 0.008977 0.017963 +10 0.648115 0.613233 0.011370 0.004548 +10 0.457211 0.596180 0.007780 0.003183 +10 0.214243 0.595498 0.006583 0.004548 +7 0.871634 0.595157 0.011969 0.012506 +7 0.831239 0.595612 0.012567 0.013415 +7 0.757929 0.595384 0.011969 0.012960 +7 0.708558 0.595157 0.012567 0.012506 +7 0.650209 0.595384 0.011969 0.012960 +7 0.610712 0.595384 0.011969 0.012960 +7 0.536804 0.595384 0.012567 0.012960 +7 0.517355 0.595384 0.011969 0.012960 +10 0.194195 0.590950 0.007181 0.002729 +10 0.174746 0.590950 0.006583 0.002729 +10 0.225314 0.580150 0.008378 0.001592 +10 0.315679 0.580719 0.015560 0.004093 +10 0.874028 0.575830 0.011969 0.002046 +10 0.874327 0.573670 0.006583 0.001819 +10 0.197187 0.552069 0.005984 0.003183 +7 0.873130 0.547635 0.012567 0.012960 +7 0.851885 0.547181 0.011969 0.012051 +7 0.738181 0.547408 0.011969 0.012506 +7 0.631658 0.547408 0.011969 0.012506 +7 0.539198 0.547408 0.012567 0.012506 +7 0.520048 0.547635 0.012567 0.012960 +7 0.759725 0.546953 0.011969 0.012506 +8 0.652005 0.544452 0.011969 0.007503 +10 0.189108 0.534789 0.010174 0.004093 +9 0.907241 0.553547 0.004189 0.030241 +10 0.713046 0.525693 0.007181 0.002274 +10 0.838420 0.524557 0.008977 0.001819 +10 0.612807 0.523874 0.006583 0.002274 +10 0.315679 0.520009 0.007181 0.001819 +7 0.903651 0.509209 0.011370 0.014325 +9 0.282765 0.507731 0.008378 0.025921 +10 0.550269 0.520691 0.014961 0.001819 +9 0.333932 0.502387 0.012567 0.034334 +10 0.792340 0.469532 0.008977 0.004548 +10 0.320766 0.464075 0.006583 0.002729 +10 0.715440 0.454297 0.008378 0.005002 +10 0.699581 0.454297 0.007780 0.005002 +7 0.545183 0.457594 0.012567 0.013870 +7 0.618791 0.457140 0.012567 0.012960 +7 0.345302 0.457140 0.012567 0.012960 +7 0.212747 0.457367 0.011969 0.013415 +7 0.418612 0.457367 0.013166 0.014325 +6 0.585278 0.456003 0.010174 0.018872 +6 0.380311 0.455548 0.009575 0.018872 +10 0.894375 0.448386 0.005984 0.002274 +6 0.175643 0.455548 0.009575 0.018872 +9 0.875823 0.456116 0.009575 0.020009 +10 0.735787 0.425875 0.005984 0.001819 +7 0.621783 0.418940 0.012567 0.012960 +7 0.717834 0.416439 0.011969 0.008868 +7 0.699880 0.419168 0.011969 0.013415 +7 0.546080 0.418940 0.013166 0.012960 +7 0.420108 0.418713 0.012567 0.013415 +7 0.345302 0.418486 0.012567 0.012960 +7 0.213645 0.418713 0.012567 0.013415 +6 0.380910 0.417576 0.009575 0.019327 +6 0.587074 0.417576 0.010174 0.019327 +6 0.174746 0.417121 0.010174 0.019327 +9 0.877319 0.417690 0.011370 0.020464 +10 0.894674 0.410641 0.007780 0.005002 +9 0.861460 0.417690 0.009575 0.021373 +9 0.305805 0.421783 0.012567 0.027285 +10 0.478157 0.388131 0.006583 0.004548 +10 0.085278 0.382901 0.005984 0.004093 +10 0.197786 0.377672 0.005984 0.004548 +9 0.827648 0.372215 0.005386 0.020009 +9 0.875224 0.375966 0.009575 0.030241 +9 0.911430 0.375284 0.008977 0.030696 +9 0.893477 0.375284 0.008977 0.030696 +10 0.601735 0.370168 0.005984 0.002274 +9 0.207361 0.367212 0.005984 0.021373 +10 0.617893 0.358117 0.008378 0.001819 +10 0.544285 0.339245 0.007181 0.003183 +10 0.344105 0.334925 0.007780 0.003638 +7 0.520946 0.329809 0.011969 0.012960 +7 0.441652 0.329354 0.012567 0.012960 +7 0.322262 0.329127 0.011969 0.013415 +7 0.238480 0.328672 0.011969 0.013415 +9 0.213345 0.332651 0.009575 0.022283 +9 0.194794 0.332651 0.009575 0.022283 +6 0.404249 0.330377 0.007181 0.020009 +6 0.478456 0.327763 0.009575 0.017963 +6 0.274387 0.327535 0.009575 0.019327 +10 0.881209 0.308549 0.009575 0.004548 +10 0.180431 0.304911 0.008378 0.004548 +10 0.402454 0.301046 0.005984 0.003183 +10 0.401257 0.297408 0.007181 0.004093 +10 0.547576 0.290359 0.006583 0.001819 +9 0.893178 0.296953 0.008378 0.022738 +10 0.545781 0.287176 0.007780 0.002729 +7 0.522142 0.291610 0.011969 0.013870 +7 0.442250 0.290700 0.012567 0.012960 +7 0.322561 0.290928 0.012567 0.012506 +7 0.236984 0.290018 0.011370 0.012506 +9 0.910832 0.294679 0.008977 0.027285 +6 0.480551 0.290246 0.010174 0.017508 +6 0.274387 0.289336 0.009575 0.019327 +10 0.801017 0.275807 0.005984 0.002729 +10 0.728606 0.274898 0.011969 0.004548 +10 0.859964 0.258299 0.006583 0.003183 +8 0.915021 0.239995 0.011370 0.008868 +9 0.595751 0.241246 0.009575 0.019554 +7 0.800419 0.242042 0.011969 0.012960 +7 0.724417 0.241587 0.013166 0.012960 +7 0.207062 0.239086 0.012567 0.014325 +6 0.760323 0.240450 0.009575 0.017963 +9 0.819569 0.241587 0.008378 0.022055 +9 0.484440 0.233970 0.007181 0.025921 +6 0.179234 0.236812 0.009575 0.017963 +10 0.865649 0.218963 0.009575 0.001819 +10 0.674746 0.216007 0.015560 0.005002 +10 0.476960 0.203502 0.008977 0.001819 +10 0.689408 0.200318 0.007780 0.003638 +7 0.801017 0.200432 0.011969 0.013415 +7 0.917714 0.200659 0.011969 0.014779 +7 0.725015 0.200887 0.011969 0.015234 +6 0.762418 0.200205 0.007780 0.016598 +7 0.205865 0.197021 0.012567 0.012960 +9 0.820168 0.194065 0.009575 0.009777 +9 0.473968 0.188608 0.004189 0.017963 +6 0.177139 0.195884 0.010174 0.018872 +9 0.454518 0.190996 0.005984 0.026376 +10 0.890485 0.175762 0.010174 0.002729 +10 0.861460 0.176444 0.007181 0.005002 +10 0.625972 0.161551 0.007780 0.002046 +9 0.873728 0.165075 0.008977 0.021828 +10 0.509874 0.154843 0.006583 0.004548 +7 0.288450 0.152910 0.012567 0.012960 +10 0.459306 0.144384 0.007181 0.002729 +6 0.263615 0.150409 0.009575 0.017963 +9 0.567624 0.145634 0.013166 0.027513 +10 0.624476 0.115393 0.009575 0.002046 +10 0.515560 0.116644 0.014363 0.004548 +10 0.785458 0.110732 0.008378 0.003638 +8 0.706762 0.114825 0.008977 0.020464 +9 0.690904 0.114143 0.009575 0.020009 +8 0.310892 0.104934 0.008378 0.007958 +7 0.289048 0.107890 0.012567 0.013870 +8 0.199880 0.103342 0.010174 0.006594 +10 0.871335 0.102092 0.010174 0.003638 +9 0.597546 0.106639 0.010772 0.020464 +6 0.264512 0.106071 0.008977 0.015689 +7 0.812089 0.102888 0.012567 0.019327 +8 0.898863 0.071510 0.011370 0.007503 +7 0.821963 0.071737 0.011969 0.007958 +8 0.784859 0.076512 0.010772 0.018417 +6 0.858767 0.073329 0.010174 0.017508 +7 0.289348 0.069918 0.011969 0.013415 +9 0.703172 0.069122 0.004189 0.019100 +8 0.199581 0.065371 0.011969 0.007049 +6 0.264512 0.068327 0.010174 0.018417 +9 0.611011 0.063438 0.008977 0.019554 +9 0.654099 0.073784 0.006583 0.043884 +9 0.626870 0.062415 0.011969 0.022965 +9 0.458109 0.053774 0.008378 0.034789 +9 0.345302 0.053774 0.004189 0.035698 +13 0.070766 0.440427 0.005685 0.050932 +1 0.093806 0.549909 0.021843 0.033424 +4 0.400808 0.180196 0.009874 0.017053 +1 0.095302 0.724534 0.022442 0.033424 +4 0.567774 0.850500 0.008677 0.015234 +2 0.098893 0.194065 0.010473 0.012051 +0 0.096200 0.813211 0.023040 0.023420 +2 0.096499 0.454184 0.012867 0.015689 +1 0.094105 0.328445 0.023639 0.039791 +2 0.099791 0.893020 0.011071 0.013870 +3 0.407391 0.901432 0.007481 0.019782 +4 0.232047 0.844588 0.009874 0.014325 +4 0.585428 0.142224 0.010473 0.015689 +3 0.408288 0.843906 0.006882 0.020236 +4 0.553411 0.582651 0.009874 0.016144 +4 0.750000 0.142906 0.009276 0.014325 +4 0.475913 0.230218 0.010473 0.016144 +4 0.400808 0.222942 0.009874 0.015234 +4 0.888241 0.590609 0.009276 0.013870 +2 0.095003 0.672920 0.011071 0.012960 +4 0.586924 0.057412 0.009874 0.016144 +2 0.095003 0.853456 0.019449 0.019327 +2 0.093507 0.417349 0.020048 0.018417 +4 0.164423 0.362551 0.009874 0.014325 +4 0.787403 0.722033 0.009874 0.015689 +2 0.097098 0.631992 0.012867 0.016598 +1 0.095901 0.767053 0.022442 0.039336 +4 0.682077 0.724307 0.009874 0.014779 +1 0.093507 0.289336 0.022442 0.039791 +4 0.147666 0.811619 0.009874 0.015689 +2 0.099192 0.938267 0.012268 0.016144 +3 0.724267 0.600159 0.006882 0.016598 +4 0.145272 0.634720 0.009874 0.016598 +4 0.888540 0.607890 0.009874 0.013870 +3 0.723369 0.581514 0.007481 0.017508 +4 0.232944 0.902797 0.009276 0.016144 +4 0.145123 0.592997 0.008977 0.015462 +4 0.136445 0.585039 0.009575 0.015007 +4 0.127169 0.459982 0.008977 0.015916 +4 0.118492 0.452478 0.009575 0.015462 +4 0.136744 0.448613 0.007780 0.015916 +4 0.119689 0.537290 0.008378 0.012278 +4 0.128366 0.719873 0.008977 0.013643 +4 0.118492 0.712369 0.008378 0.014097 +4 0.137044 0.707594 0.009575 0.012733 +4 0.118791 0.498408 0.008977 0.012733 +3 0.085877 0.599818 0.004189 0.012733 +4 0.146320 0.371533 0.008977 0.015462 +2 0.101137 0.076171 0.015560 0.018645 +4 0.143926 0.418827 0.008977 0.013643 +4 0.128965 0.287858 0.008977 0.014552 +4 0.119988 0.280127 0.008977 0.015462 +4 0.137642 0.275352 0.009575 0.013188 +4 0.121484 0.851069 0.008378 0.012278 +4 0.119090 0.318327 0.009575 0.016371 +4 0.120586 0.805139 0.008977 0.014097 +4 0.128665 0.765803 0.009575 0.014552 +4 0.149611 0.149159 0.008378 0.014552 +4 0.140335 0.140518 0.008977 0.015462 +4 0.130760 0.067076 0.008977 0.015007 +0 0.122980 0.058436 0.007780 0.010459 +4 0.139138 0.186903 0.007780 0.013643 +4 0.118492 0.630059 0.009575 0.015007 +0 0.145422 0.672578 0.009575 0.012733 +4 0.135847 0.665757 0.009575 0.014552 +4 0.140335 0.093452 0.010174 0.015916 +4 0.127169 0.676671 0.008977 0.015462 +4 0.118791 0.669168 0.007780 0.015916 +4 0.131658 0.943383 0.009575 0.015916 +4 0.123279 0.936562 0.008378 0.015007 +4 0.120437 0.588336 0.009874 0.015689 +4 0.126870 0.596066 0.009575 0.015689 +5 0.075254 0.148590 0.009874 0.015689 +4 0.085577 0.148363 0.009575 0.015689 +4 0.121035 0.366417 0.009874 0.015689 +4 0.129713 0.373238 0.009874 0.015689 +4 0.138241 0.363006 0.009575 0.015689 +4 0.091712 0.068554 0.009874 0.015689 +4 0.097546 0.066508 0.009575 0.015689 +4 0.119838 0.413711 0.009874 0.015689 +4 0.127618 0.420532 0.009874 0.015689 +4 0.135248 0.410300 0.009575 0.015689 +4 0.128217 0.325489 0.009874 0.015689 +4 0.137044 0.316166 0.009575 0.015689 +4 0.129414 0.812983 0.009874 0.015689 +4 0.137642 0.803661 0.009575 0.015689 +3 0.226661 0.376876 0.009874 0.015689 +5 0.073609 0.101751 0.002992 0.015689 +3 0.073609 0.119714 0.002992 0.015689 +4 0.122531 0.890746 0.009874 0.015689 +5 0.130610 0.894384 0.009874 0.015689 +4 0.121933 0.190882 0.009874 0.015689 +4 0.130461 0.199068 0.009575 0.015689 +4 0.127020 0.636539 0.009874 0.015689 +4 0.136445 0.626535 0.009575 0.015689 +4 0.091412 0.107435 0.009874 0.015689 +4 0.097546 0.104707 0.009575 0.015689 +5 0.087074 0.368690 0.007181 0.015689 +4 0.087074 0.376648 0.007181 0.015689 +5 0.087223 0.506025 0.009874 0.015689 +5 0.099940 0.514211 0.009575 0.015689 +3 0.070018 0.608345 0.006583 0.015689 +3 0.070018 0.677240 0.006583 0.015689 +4 0.071664 0.631310 0.009874 0.015689 +4 0.122831 0.096066 0.009874 0.015689 +4 0.130461 0.103115 0.009575 0.015689 +3 0.070018 0.508299 0.006583 0.015689 +3 0.070018 0.521260 0.006583 0.015689 +4 0.121933 0.143588 0.009874 0.015689 +4 0.130461 0.150409 0.009575 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_38.jpg b/data_dataset/dvo/debug/debug_38.jpg new file mode 100644 index 0000000..c5f3a6b Binary files /dev/null and b/data_dataset/dvo/debug/debug_38.jpg differ diff --git a/data_dataset/dvo/debug/debug_38.txt b/data_dataset/dvo/debug/debug_38.txt new file mode 100644 index 0000000..5b088ab --- /dev/null +++ b/data_dataset/dvo/debug/debug_38.txt @@ -0,0 +1,689 @@ +10 0.836320 0.945820 0.011350 0.005225 +8 0.669056 0.945366 0.012545 0.006588 +8 0.521804 0.945139 0.011947 0.007497 +7 0.352449 0.947637 0.011350 0.012949 +7 0.264934 0.947865 0.011947 0.014312 +7 0.204898 0.948319 0.011350 0.014312 +6 0.385603 0.946842 0.009558 0.018628 +10 0.480585 0.919355 0.006571 0.004543 +7 0.830346 0.915720 0.008363 0.007269 +9 0.317204 0.912653 0.010753 0.021127 +7 0.263740 0.906747 0.011350 0.012949 +6 0.537037 0.905838 0.009558 0.018855 +6 0.386201 0.904134 0.008961 0.017719 +10 0.658901 0.878237 0.008363 0.002726 +8 0.881422 0.864266 0.013740 0.019309 +8 0.264337 0.862903 0.012545 0.017946 +8 0.850060 0.856542 0.004779 0.013857 +9 0.806750 0.856770 0.008961 0.015675 +9 0.316308 0.865402 0.007766 0.034757 +9 0.775687 0.859496 0.008961 0.027488 +9 0.613799 0.862790 0.011350 0.028169 +10 0.467145 0.850750 0.005974 0.002726 +10 0.317204 0.850295 0.007168 0.003180 +10 0.280466 0.850068 0.006571 0.002726 +10 0.777778 0.848251 0.005974 0.002726 +7 0.880526 0.821558 0.011947 0.013857 +7 0.725209 0.821331 0.011947 0.013857 +7 0.652031 0.821104 0.011350 0.013403 +7 0.808244 0.821104 0.011947 0.013403 +8 0.223716 0.817242 0.012545 0.006588 +6 0.386798 0.819627 0.008961 0.017719 +6 0.535842 0.819514 0.009558 0.017946 +10 0.246117 0.802363 0.007168 0.001817 +10 0.186380 0.795547 0.007168 0.002726 +10 0.209080 0.793730 0.009558 0.004543 +9 0.265830 0.788960 0.011947 0.016356 +9 0.645759 0.776465 0.005974 0.020900 +9 0.515532 0.773512 0.008363 0.021354 +10 0.681601 0.727624 0.007766 0.003180 +10 0.170848 0.727283 0.008961 0.002953 +7 0.890980 0.722967 0.011947 0.014766 +7 0.836022 0.722853 0.011947 0.013176 +7 0.323775 0.722512 0.011350 0.012494 +7 0.507467 0.722740 0.011947 0.013403 +7 0.453106 0.722740 0.009558 0.013403 +7 0.379630 0.722853 0.011947 0.014085 +6 0.606332 0.721490 0.008961 0.017265 +6 0.221625 0.722058 0.008961 0.018855 +6 0.734468 0.721604 0.009558 0.018855 +10 0.298686 0.682417 0.006571 0.003635 +10 0.682198 0.679464 0.006571 0.002272 +7 0.508065 0.679123 0.011947 0.013403 +10 0.838411 0.673444 0.005974 0.002499 +6 0.734767 0.677987 0.008961 0.018855 +6 0.222521 0.677306 0.009558 0.018401 +6 0.607228 0.676851 0.009558 0.017946 +10 0.436380 0.666061 0.009558 0.002272 +7 0.463560 0.668900 0.012545 0.017492 +10 0.828256 0.660382 0.014337 0.004998 +10 0.344982 0.657201 0.011947 0.002272 +10 0.436380 0.654702 0.016726 0.002272 +10 0.330645 0.653112 0.005974 0.002272 +10 0.822282 0.652431 0.009558 0.004543 +10 0.306153 0.651068 0.007168 0.004543 +10 0.356930 0.639028 0.005974 0.003180 +9 0.866487 0.632667 0.008363 0.019991 +9 0.781362 0.639823 0.006571 0.023398 +9 0.337515 0.641640 0.013740 0.027033 +8 0.481481 0.638687 0.005376 0.020672 +9 0.447431 0.639141 0.005376 0.027942 +9 0.807945 0.640050 0.009558 0.030214 +9 0.169355 0.639596 0.008363 0.029305 +9 0.680108 0.639141 0.009558 0.027488 +8 0.508961 0.641867 0.012545 0.027033 +10 0.338710 0.629941 0.007766 0.002272 +6 0.310335 0.629146 0.004779 0.009314 +10 0.724910 0.588142 0.009558 0.004998 +10 0.854988 0.587915 0.011649 0.004998 +10 0.597820 0.587915 0.012246 0.004998 +8 0.470281 0.587801 0.011649 0.007042 +8 0.354092 0.587574 0.012246 0.007042 +8 0.214307 0.587574 0.011051 0.007042 +10 0.453405 0.567924 0.009558 0.003180 +10 0.440860 0.567924 0.008363 0.004089 +10 0.555705 0.564516 0.007467 0.003635 +10 0.884110 0.559064 0.009558 0.002726 +10 0.327061 0.557928 0.006571 0.003635 +9 0.418160 0.552703 0.005974 0.022263 +9 0.705197 0.550886 0.005376 0.018174 +9 0.171147 0.552703 0.008961 0.021808 +10 0.199522 0.543389 0.005974 0.002726 +10 0.763142 0.542935 0.006571 0.002726 +10 0.808841 0.537937 0.007168 0.002726 +10 0.736858 0.538164 0.007766 0.003180 +7 0.319295 0.491708 0.011350 0.013403 +7 0.224014 0.492163 0.011947 0.013403 +10 0.597969 0.488414 0.011947 0.004998 +9 0.762545 0.496706 0.011350 0.024307 +7 0.732676 0.491481 0.012545 0.012949 +8 0.463859 0.488074 0.010155 0.007497 +6 0.341995 0.491027 0.008961 0.018401 +6 0.169056 0.490345 0.009558 0.018855 +6 0.678614 0.489664 0.009558 0.018401 +10 0.072879 0.464334 0.005974 0.004998 +7 0.318698 0.451272 0.011350 0.012494 +10 0.597969 0.447751 0.011947 0.004543 +7 0.733871 0.451045 0.011350 0.012949 +7 0.221924 0.451272 0.011350 0.013403 +8 0.465352 0.447637 0.011947 0.006588 +6 0.344683 0.449909 0.009558 0.017946 +6 0.169355 0.449796 0.008961 0.018174 +6 0.679211 0.449455 0.009558 0.018855 +6 0.867384 0.448546 0.009558 0.018401 +10 0.196685 0.413676 0.006272 0.002272 +10 0.172491 0.412540 0.005675 0.003635 +10 0.603196 0.412199 0.005675 0.003408 +10 0.170400 0.408791 0.006272 0.002953 +9 0.354689 0.407883 0.012843 0.023853 +8 0.289427 0.410609 0.013142 0.018401 +10 0.575269 0.402999 0.006571 0.002272 +10 0.433393 0.402999 0.005974 0.002272 +7 0.760454 0.407201 0.012545 0.013403 +10 0.473417 0.398228 0.007168 0.002726 +10 0.346177 0.397547 0.005974 0.001817 +8 0.231930 0.410154 0.012246 0.030214 +10 0.192652 0.397547 0.005974 0.002726 +10 0.252987 0.394821 0.005974 0.001817 +9 0.616338 0.408224 0.012246 0.022263 +10 0.573775 0.365743 0.008363 0.004998 +9 0.516129 0.359155 0.006571 0.022717 +7 0.248805 0.359496 0.010753 0.013403 +7 0.758961 0.358587 0.011947 0.013403 +10 0.854839 0.354839 0.011350 0.004998 +10 0.572581 0.348251 0.010753 0.003635 +9 0.556750 0.358701 0.011350 0.019991 +10 0.652628 0.319855 0.005974 0.002726 +10 0.173238 0.319855 0.007766 0.003635 +7 0.249701 0.315198 0.012545 0.012949 +10 0.693847 0.302135 0.009558 0.001817 +7 0.750299 0.301340 0.010155 0.007042 +9 0.689068 0.313267 0.008363 0.025897 +8 0.651732 0.309291 0.011350 0.024761 +8 0.439068 0.251136 0.011350 0.007042 +8 0.704002 0.250682 0.011947 0.006588 +8 0.315412 0.250909 0.012545 0.007042 +8 0.202509 0.250682 0.011350 0.006588 +8 0.572431 0.250454 0.012843 0.006588 +10 0.847521 0.250227 0.012246 0.005225 +8 0.572581 0.207065 0.012545 0.007042 +8 0.439068 0.207065 0.011947 0.007042 +8 0.702808 0.206838 0.011350 0.007042 +8 0.316010 0.206611 0.011947 0.006588 +8 0.202808 0.206611 0.011350 0.006588 +8 0.846476 0.206497 0.011947 0.008178 +8 0.518519 0.168446 0.013142 0.017946 +8 0.439367 0.162994 0.007766 0.007042 +8 0.316906 0.162994 0.008961 0.007497 +8 0.204002 0.162994 0.011350 0.007497 +10 0.671147 0.160609 0.006571 0.002272 +9 0.741637 0.167537 0.008961 0.019309 +10 0.089008 0.158337 0.005974 0.004543 +10 0.605137 0.123239 0.005974 0.004316 +7 0.740143 0.123467 0.009558 0.008405 +8 0.439068 0.114607 0.011947 0.008405 +8 0.458781 0.116424 0.011947 0.012949 +7 0.418757 0.116197 0.011947 0.012494 +7 0.357527 0.116197 0.011350 0.012949 +7 0.311231 0.116424 0.010753 0.013403 +7 0.240442 0.115970 0.011350 0.012494 +10 0.914128 0.074512 0.006272 0.003180 +7 0.192802 0.071899 0.011649 0.012494 +8 0.460723 0.074398 0.013441 0.017946 +7 0.359767 0.071672 0.012246 0.012949 +7 0.419803 0.071672 0.011649 0.013403 +7 0.311679 0.071445 0.012843 0.013403 +9 0.757318 0.071899 0.006870 0.017038 +9 0.079450 0.063948 0.004182 0.021581 +8 0.841099 0.065425 0.010155 0.024080 +12 0.169355 0.961722 0.009558 0.006134 +12 0.233572 0.953430 0.008961 0.005906 +12 0.316906 0.947637 0.009558 0.006134 +12 0.170400 0.920945 0.008662 0.006361 +12 0.686828 0.915834 0.009259 0.006134 +12 0.236708 0.912199 0.009857 0.006134 +12 0.613650 0.907883 0.009857 0.006134 +12 0.777927 0.907883 0.009857 0.006588 +12 0.467145 0.907201 0.009558 0.006588 +12 0.317802 0.906974 0.008961 0.006588 +12 0.141428 0.904589 0.004480 0.004543 +12 0.206541 0.902431 0.010454 0.006588 +12 0.807796 0.897887 0.009857 0.006588 +12 0.725956 0.897660 0.009857 0.006134 +12 0.849462 0.890504 0.009558 0.006815 +12 0.653524 0.890164 0.009558 0.007497 +12 0.504928 0.888801 0.008662 0.007042 +12 0.354092 0.887778 0.009259 0.007269 +18 0.156063 0.868696 0.008662 0.005906 +18 0.156063 0.862790 0.008662 0.005906 +12 0.170699 0.860518 0.008065 0.005452 +12 0.170699 0.865970 0.008065 0.005452 +12 0.807348 0.859496 0.007766 0.005225 +12 0.807945 0.853249 0.007766 0.005452 +12 0.236260 0.857792 0.008363 0.005452 +12 0.236260 0.863244 0.008363 0.005452 +12 0.688023 0.855747 0.008662 0.005906 +12 0.688023 0.861654 0.008662 0.005906 +13 0.666517 0.855747 0.009259 0.005906 +13 0.666517 0.861654 0.009259 0.005906 +12 0.568847 0.855520 0.009857 0.005906 +12 0.568847 0.861427 0.009857 0.005906 +12 0.431452 0.855293 0.009857 0.005452 +12 0.431452 0.860745 0.009857 0.005452 +12 0.206541 0.855179 0.009259 0.005679 +12 0.206541 0.860859 0.009259 0.005679 +12 0.849313 0.853816 0.008065 0.005225 +12 0.849313 0.859041 0.008065 0.005225 +12 0.614546 0.853589 0.009259 0.005225 +12 0.614546 0.858814 0.009259 0.005225 +11 0.466697 0.853135 0.008662 0.005225 +11 0.466697 0.858360 0.008662 0.005225 +12 0.280615 0.852794 0.008065 0.005906 +11 0.318399 0.852340 0.007766 0.005452 +11 0.318399 0.857792 0.007766 0.005452 +12 0.777330 0.850182 0.008662 0.005679 +12 0.777330 0.855861 0.008662 0.005679 +13 0.740591 0.850182 0.008065 0.005679 +13 0.740591 0.855861 0.008065 0.005679 +12 0.907855 0.848251 0.009259 0.005906 +12 0.907855 0.854157 0.009259 0.005906 +12 0.850358 0.824512 0.008961 0.005679 +12 0.688919 0.823830 0.008662 0.005225 +11 0.778524 0.823603 0.008662 0.005225 +11 0.613949 0.824057 0.010454 0.006588 +11 0.467891 0.823376 0.009259 0.005225 +11 0.318847 0.823376 0.009259 0.005679 +13 0.265980 0.785438 0.007467 0.006134 +13 0.779421 0.779305 0.009259 0.003862 +11 0.778674 0.758973 0.008961 0.006815 +13 0.207288 0.780441 0.008961 0.006134 +13 0.251195 0.777488 0.009558 0.005679 +13 0.185484 0.777488 0.008961 0.006588 +13 0.171595 0.774989 0.008662 0.006134 +13 0.651732 0.772944 0.009558 0.006588 +12 0.569146 0.772717 0.009259 0.006588 +12 0.506272 0.772717 0.009558 0.006588 +12 0.416517 0.772603 0.009857 0.006361 +13 0.353644 0.772263 0.009558 0.006134 +13 0.237306 0.772490 0.009857 0.006588 +13 0.727151 0.769991 0.008662 0.006134 +13 0.880675 0.767719 0.009857 0.006588 +12 0.806900 0.767378 0.009259 0.006361 +12 0.630526 0.767492 0.010155 0.006588 +12 0.554510 0.767378 0.009857 0.006815 +13 0.522849 0.767492 0.009857 0.007042 +12 0.482228 0.767265 0.009857 0.006588 +12 0.400986 0.767265 0.009857 0.006588 +13 0.367533 0.766924 0.009857 0.006361 +13 0.332587 0.767038 0.009259 0.006588 +13 0.284946 0.766924 0.009558 0.006361 +13 0.222670 0.767038 0.009259 0.006588 +12 0.712664 0.765334 0.009558 0.005906 +13 0.908303 0.765220 0.009558 0.006134 +12 0.793160 0.763403 0.009259 0.005679 +12 0.468787 0.762494 0.009259 0.006134 +12 0.688023 0.762154 0.008065 0.005906 +13 0.865293 0.762267 0.008961 0.006588 +12 0.614845 0.761813 0.009259 0.006588 +12 0.539725 0.761699 0.009558 0.006361 +13 0.317652 0.761358 0.009259 0.006134 +13 0.386051 0.760677 0.008662 0.006588 +13 0.669504 0.759995 0.009259 0.007042 +12 0.585723 0.756588 0.009558 0.006134 +12 0.433393 0.756588 0.010155 0.006134 +13 0.739994 0.756020 0.009857 0.006361 +13 0.849612 0.754771 0.009857 0.007042 +13 0.822730 0.750682 0.009259 0.006588 +11 0.420699 0.736143 0.009259 0.006134 +12 0.481033 0.728646 0.009259 0.006588 +12 0.808094 0.725693 0.008662 0.005679 +11 0.681452 0.725579 0.008662 0.005452 +11 0.555406 0.725466 0.008662 0.005679 +11 0.171595 0.725352 0.009259 0.005452 +12 0.296296 0.725239 0.008961 0.005679 +12 0.863650 0.717742 0.009857 0.006588 +12 0.356481 0.717288 0.008662 0.006134 +12 0.864845 0.692753 0.009857 0.006588 +12 0.421296 0.692185 0.009259 0.006361 +12 0.355287 0.691845 0.008662 0.006134 +12 0.480436 0.684575 0.009259 0.005679 +12 0.682348 0.682076 0.007467 0.005679 +12 0.553017 0.681963 0.008662 0.005906 +12 0.808692 0.681849 0.009259 0.006134 +12 0.170848 0.681849 0.007766 0.006134 +12 0.297790 0.680713 0.008363 0.004771 +12 0.142921 0.675148 0.004480 0.004543 +12 0.892324 0.674353 0.009857 0.006134 +12 0.454898 0.673671 0.009558 0.006588 +12 0.380376 0.673330 0.009857 0.006361 +12 0.837366 0.671740 0.008662 0.004998 +12 0.840950 0.649478 0.005078 0.003635 +12 0.581840 0.671740 0.008363 0.005452 +12 0.709827 0.671854 0.008065 0.006134 +12 0.323626 0.671172 0.008662 0.005679 +12 0.198327 0.670945 0.007766 0.006134 +13 0.421147 0.641186 0.006571 0.003862 +12 0.422192 0.633803 0.005675 0.004089 +13 0.395908 0.640959 0.008662 0.004771 +13 0.395908 0.634371 0.007467 0.005225 +12 0.339307 0.638573 0.007766 0.004543 +13 0.338859 0.632440 0.008065 0.006361 +13 0.909349 0.635052 0.009259 0.005679 +13 0.909349 0.640731 0.009259 0.005679 +12 0.866935 0.633121 0.009259 0.005452 +12 0.866935 0.638573 0.009259 0.005452 +12 0.852449 0.633121 0.008961 0.005452 +12 0.852449 0.638573 0.008961 0.005452 +12 0.779570 0.632781 0.008363 0.005225 +12 0.779570 0.638005 0.008363 0.005225 +12 0.648895 0.632894 0.009259 0.005452 +12 0.648895 0.638346 0.009259 0.005452 +12 0.480735 0.632667 0.008065 0.005452 +12 0.480735 0.638119 0.008065 0.005452 +12 0.356033 0.632099 0.008961 0.005679 +12 0.356033 0.637778 0.008961 0.005679 +12 0.267473 0.631985 0.007467 0.005452 +12 0.267473 0.637438 0.007467 0.005452 +12 0.809289 0.629827 0.008662 0.005679 +12 0.809289 0.635507 0.008662 0.005679 +11 0.681153 0.629941 0.009259 0.005906 +11 0.681153 0.635847 0.009259 0.005906 +11 0.170699 0.629827 0.008662 0.005679 +11 0.170699 0.635507 0.008662 0.005679 +11 0.553017 0.629600 0.008662 0.005679 +11 0.553017 0.635279 0.008662 0.005679 +12 0.522849 0.629600 0.008662 0.005679 +12 0.522849 0.635279 0.008662 0.005679 +12 0.452658 0.629600 0.008662 0.005679 +12 0.452658 0.635279 0.008662 0.005679 +12 0.296894 0.629373 0.008961 0.005679 +12 0.296894 0.635052 0.008961 0.005679 +13 0.609170 0.558950 0.004480 0.003408 +12 0.610215 0.541004 0.007766 0.004771 +12 0.225358 0.559064 0.005078 0.004089 +12 0.226553 0.541004 0.007467 0.006134 +13 0.509409 0.555997 0.009259 0.005679 +13 0.567951 0.553498 0.009259 0.006134 +13 0.695490 0.553271 0.009857 0.006134 +13 0.185036 0.553612 0.009259 0.006815 +13 0.433244 0.548501 0.008662 0.006134 +13 0.495818 0.548274 0.009558 0.006588 +13 0.381870 0.547933 0.009857 0.006361 +13 0.893817 0.547819 0.009857 0.006588 +13 0.172043 0.546229 0.007168 0.005679 +13 0.421595 0.546002 0.009259 0.005679 +13 0.198775 0.546115 0.006870 0.005906 +13 0.710723 0.545775 0.009259 0.005679 +13 0.634409 0.545888 0.008363 0.005906 +13 0.253435 0.545888 0.008662 0.005906 +13 0.682198 0.545661 0.007766 0.005906 +13 0.582139 0.545547 0.008363 0.005679 +12 0.553315 0.545775 0.007467 0.006134 +12 0.837814 0.545547 0.008961 0.006134 +12 0.763441 0.545434 0.008961 0.005906 +13 0.370370 0.545547 0.009558 0.006134 +13 0.326016 0.545547 0.009259 0.006134 +13 0.880376 0.545093 0.009259 0.005679 +13 0.239994 0.543389 0.009259 0.006361 +13 0.213411 0.543389 0.008662 0.006361 +12 0.750149 0.542821 0.009259 0.006134 +13 0.723566 0.542821 0.009857 0.006134 +13 0.622461 0.543049 0.009558 0.006588 +13 0.866637 0.542594 0.009259 0.006134 +13 0.596027 0.542821 0.009259 0.006588 +11 0.524642 0.542935 0.009857 0.006815 +13 0.524940 0.528396 0.006870 0.006361 +13 0.482228 0.542935 0.009857 0.006815 +13 0.823925 0.542481 0.009857 0.006361 +12 0.357079 0.542708 0.009259 0.006815 +13 0.311977 0.542708 0.008662 0.006815 +12 0.296744 0.540777 0.008065 0.004771 +12 0.809588 0.540323 0.006272 0.005679 +13 0.736858 0.540323 0.007766 0.005679 +13 0.468339 0.538164 0.008363 0.005906 +13 0.397999 0.538051 0.008662 0.006134 +13 0.910842 0.537142 0.009259 0.006134 +13 0.650388 0.535438 0.009259 0.005906 +13 0.342891 0.535325 0.009558 0.005679 +13 0.269564 0.535552 0.008662 0.006134 +13 0.780466 0.535098 0.008961 0.006134 +13 0.852449 0.535098 0.009558 0.006588 +12 0.242085 0.509882 0.005078 0.006588 +12 0.249552 0.489323 0.008065 0.005452 +11 0.814068 0.494207 0.009259 0.005225 +12 0.762694 0.489323 0.008065 0.005452 +12 0.290621 0.489664 0.008363 0.006134 +12 0.073626 0.487392 0.003883 0.003862 +12 0.812575 0.453544 0.008662 0.005679 +12 0.758662 0.448773 0.007766 0.006134 +12 0.290472 0.448773 0.008662 0.006134 +13 0.250149 0.448773 0.006870 0.006134 +12 0.840203 0.443208 0.007766 0.005906 +12 0.580346 0.420377 0.004182 0.003862 +12 0.587366 0.407656 0.009857 0.007042 +13 0.223268 0.421627 0.009259 0.006361 +12 0.732228 0.421172 0.009259 0.006361 +13 0.238351 0.418560 0.009558 0.006588 +13 0.210723 0.418560 0.009259 0.006588 +13 0.718787 0.418105 0.009857 0.006588 +13 0.250448 0.416174 0.008662 0.005452 +13 0.197730 0.416174 0.009558 0.005452 +13 0.706691 0.415834 0.008363 0.005679 +13 0.629331 0.416061 0.008961 0.006134 +13 0.184588 0.413562 0.009558 0.006588 +13 0.614098 0.413108 0.009558 0.006134 +13 0.693100 0.413108 0.009857 0.006588 +13 0.170998 0.410722 0.008662 0.004998 +13 0.264188 0.410836 0.009259 0.005679 +13 0.602300 0.410268 0.008662 0.004998 +13 0.418459 0.410836 0.008961 0.006134 +13 0.680108 0.410382 0.008363 0.005679 +13 0.306302 0.410609 0.008065 0.006134 +13 0.547939 0.410382 0.008662 0.006134 +13 0.385902 0.407883 0.008961 0.006134 +12 0.514636 0.407883 0.009558 0.006588 +12 0.653375 0.407769 0.009857 0.006815 +13 0.575568 0.405384 0.007168 0.005225 +13 0.500747 0.405725 0.009259 0.005906 +13 0.432945 0.405384 0.007467 0.005225 +13 0.372312 0.405157 0.008065 0.005225 +11 0.913232 0.404589 0.008662 0.005452 +12 0.913232 0.410041 0.008662 0.005452 +13 0.320341 0.402885 0.009259 0.006134 +13 0.561081 0.402885 0.008065 0.006588 +13 0.487605 0.402885 0.009259 0.006588 +12 0.446237 0.402999 0.008961 0.006815 +13 0.357975 0.402658 0.009259 0.006588 +11 0.812873 0.401749 0.008662 0.005679 +11 0.812873 0.407428 0.008662 0.005679 +13 0.345729 0.400386 0.008662 0.005679 +13 0.473865 0.400386 0.008065 0.006134 +13 0.332885 0.397660 0.009259 0.006588 +13 0.461918 0.397660 0.009259 0.007042 +12 0.224462 0.369832 0.009857 0.006361 +12 0.197282 0.369945 0.009259 0.006588 +12 0.705346 0.369491 0.009857 0.006588 +12 0.734618 0.369037 0.009857 0.006588 +12 0.681004 0.367219 0.008961 0.005679 +13 0.651882 0.366992 0.009259 0.005225 +12 0.387246 0.367219 0.009259 0.005679 +12 0.172939 0.367447 0.009558 0.006134 +13 0.587963 0.367219 0.009259 0.006134 +12 0.514038 0.367219 0.008363 0.006134 +12 0.548835 0.364607 0.008662 0.006361 +11 0.419654 0.364721 0.009558 0.006588 +11 0.290173 0.364493 0.008662 0.006588 +12 0.603495 0.364266 0.009259 0.006588 +13 0.744624 0.325534 0.009558 0.006815 +12 0.196386 0.321104 0.008662 0.006134 +12 0.758363 0.320650 0.008363 0.006134 +12 0.705048 0.320650 0.008065 0.006134 +12 0.223566 0.320877 0.009259 0.006588 +13 0.733423 0.320195 0.007467 0.005679 +13 0.825119 0.320195 0.009259 0.006134 +12 0.172790 0.318492 0.009259 0.005452 +12 0.514188 0.318378 0.008662 0.005679 +12 0.682049 0.318264 0.009857 0.005906 +12 0.651434 0.318151 0.009558 0.005679 +13 0.651284 0.303839 0.006272 0.004316 +12 0.386051 0.318264 0.009259 0.005906 +11 0.420400 0.316106 0.009857 0.006588 +12 0.545848 0.315652 0.009857 0.006588 +11 0.290024 0.315425 0.009558 0.006588 +12 0.603196 0.315198 0.008662 0.006588 +13 0.781810 0.314970 0.009857 0.006588 +13 0.838112 0.312585 0.007766 0.004998 +13 0.811977 0.312699 0.008065 0.005679 +13 0.895012 0.312699 0.009259 0.006134 +13 0.881720 0.309973 0.008961 0.006134 +13 0.852001 0.310086 0.008065 0.006361 +13 0.868130 0.308383 0.007467 0.004771 +12 0.587664 0.302930 0.005078 0.002953 +13 0.587963 0.318151 0.009259 0.006134 +13 0.912336 0.302476 0.009259 0.005679 +12 0.144713 0.207292 0.005078 0.005225 +11 0.613799 0.181963 0.005376 0.004089 +12 0.619922 0.165834 0.009259 0.006361 +18 0.713411 0.172535 0.005078 0.004316 +13 0.886947 0.171854 0.009259 0.006134 +13 0.871714 0.169128 0.009857 0.007042 +12 0.534797 0.168673 0.008662 0.006134 +13 0.657855 0.168219 0.007467 0.005679 +13 0.796446 0.167424 0.008662 0.006361 +13 0.859468 0.166856 0.009259 0.006134 +13 0.756123 0.165039 0.009259 0.006588 +13 0.840950 0.164357 0.009259 0.006588 +13 0.911141 0.163903 0.009857 0.006588 +13 0.671147 0.162881 0.007766 0.005906 +13 0.606183 0.162540 0.009259 0.005679 +13 0.743280 0.162426 0.007467 0.005906 +13 0.827210 0.161858 0.008065 0.005679 +13 0.590950 0.160495 0.009259 0.006134 +13 0.547939 0.160722 0.009857 0.006588 +13 0.687276 0.160268 0.009558 0.006134 +13 0.726852 0.160041 0.009259 0.006588 +13 0.813769 0.159359 0.009857 0.006134 +13 0.579301 0.158224 0.009259 0.006134 +12 0.713710 0.157656 0.009259 0.006361 +13 0.561081 0.155270 0.009857 0.006588 +13 0.701165 0.154702 0.009259 0.006815 +12 0.283602 0.135734 0.009259 0.007042 +13 0.212664 0.135393 0.008363 0.006361 +12 0.394713 0.135734 0.009259 0.007497 +12 0.330496 0.135279 0.007467 0.007042 +13 0.191906 0.134825 0.008662 0.007042 +12 0.487903 0.124602 0.008065 0.005225 +13 0.619026 0.124489 0.009857 0.005906 +12 0.754480 0.123921 0.009558 0.006134 +12 0.839158 0.123694 0.009259 0.006588 +13 0.839008 0.107565 0.005376 0.005225 +12 0.911290 0.123126 0.008961 0.005906 +13 0.911290 0.109723 0.006571 0.004089 +11 0.519564 0.121990 0.009259 0.006361 +11 0.659498 0.121649 0.009558 0.006134 +12 0.793757 0.121308 0.009259 0.006361 +12 0.857676 0.120968 0.009259 0.006134 +12 0.173387 0.116424 0.008662 0.005679 +12 0.146057 0.107792 0.006571 0.004316 +12 0.211320 0.091436 0.008065 0.007497 +18 0.090054 0.086097 0.005675 0.004543 +12 0.489098 0.074625 0.008662 0.005225 +12 0.619773 0.074512 0.008961 0.005906 +12 0.754480 0.073716 0.009558 0.005679 +12 0.238202 0.074171 0.009259 0.006588 +12 0.912336 0.072921 0.008662 0.005452 +12 0.912186 0.057701 0.004182 0.005906 +13 0.840203 0.073035 0.008961 0.006134 +12 0.172043 0.072240 0.009558 0.006361 +11 0.658303 0.071899 0.009558 0.006588 +12 0.519265 0.071672 0.009259 0.006588 +12 0.441308 0.071786 0.009857 0.006815 +12 0.396505 0.071899 0.009857 0.007042 +12 0.794205 0.070990 0.008961 0.005679 +12 0.333035 0.071672 0.009558 0.007042 +12 0.286141 0.071672 0.009558 0.007042 +12 0.857826 0.070763 0.008363 0.005679 +11 0.145311 0.065538 0.005675 0.008860 +0 0.095430 0.860404 0.023596 0.023853 +2 0.097670 0.253180 0.025090 0.020672 +4 0.475508 0.074625 0.009558 0.017038 +0 0.097073 0.407201 0.023297 0.023398 +4 0.501045 0.317469 0.009857 0.014766 +4 0.827061 0.071899 0.010155 0.013857 +3 0.898297 0.165266 0.006870 0.016583 +4 0.576912 0.317015 0.009857 0.014766 +4 0.225508 0.074398 0.010155 0.016129 +4 0.894415 0.641186 0.009259 0.015220 +0 0.095729 0.634144 0.023596 0.024761 +5 0.642622 0.406293 0.025388 0.023853 +4 0.606631 0.074284 0.008961 0.016356 +1 0.094833 0.820195 0.022401 0.039755 +1 0.095131 0.777033 0.021804 0.040663 +3 0.900239 0.073262 0.007168 0.017038 +4 0.372611 0.318378 0.009857 0.016129 +1 0.094833 0.591436 0.021804 0.040209 +4 0.095729 0.312017 0.022401 0.033848 +1 0.074821 0.122785 0.003883 0.008860 +4 0.638441 0.366538 0.011051 0.016129 +3 0.638740 0.317469 0.008065 0.019764 +1 0.095430 0.548274 0.022401 0.040209 +3 0.304211 0.761131 0.007467 0.020218 +2 0.094833 0.208201 0.018817 0.018855 +3 0.763889 0.848364 0.006870 0.016583 +4 0.898596 0.404021 0.009259 0.017038 +4 0.556601 0.854952 0.009259 0.014766 +3 0.456093 0.762267 0.007766 0.021127 +5 0.894564 0.760450 0.006571 0.010223 +5 0.837067 0.884825 0.006272 0.009541 +3 0.836320 0.751704 0.007168 0.016811 +4 0.741935 0.073944 0.009558 0.016129 +2 0.094833 0.722058 0.020609 0.019764 +3 0.640532 0.889709 0.006272 0.016583 +2 0.092145 0.946729 0.018817 0.019309 +2 0.092145 0.906520 0.020609 0.019764 +3 0.342145 0.888573 0.006870 0.016129 +3 0.300926 0.904248 0.009259 0.016583 +2 0.093937 0.449909 0.017025 0.018855 +3 0.602300 0.907996 0.007467 0.020900 +2 0.094833 0.677533 0.021804 0.019764 +2 0.096027 0.490345 0.023596 0.018855 +3 0.455346 0.905157 0.007467 0.016129 +3 0.343638 0.770218 0.007467 0.015675 +3 0.491487 0.887210 0.006870 0.020218 +3 0.495072 0.771808 0.006870 0.017492 +4 0.765980 0.638233 0.009259 0.017038 +3 0.728047 0.848592 0.006870 0.016129 +4 0.418608 0.854952 0.009259 0.016583 +4 0.383662 0.640391 0.009259 0.014993 +3 0.699970 0.763403 0.006870 0.019309 +4 0.195490 0.781122 0.009857 0.016583 +3 0.330197 0.638460 0.009857 0.022035 +3 0.765681 0.908791 0.006870 0.020218 +4 0.145311 0.163676 0.009857 0.016129 +3 0.303913 0.946956 0.007467 0.019309 +5 0.839456 0.635620 0.006870 0.014539 +4 0.126941 0.311904 0.008961 0.013176 +4 0.117682 0.304407 0.008363 0.013630 +4 0.142772 0.492276 0.008961 0.015902 +4 0.141876 0.948887 0.008961 0.014993 +4 0.145908 0.405952 0.009259 0.015902 +4 0.141278 0.450704 0.008363 0.015448 +4 0.142324 0.586552 0.008662 0.015448 +4 0.116338 0.580418 0.009259 0.014085 +4 0.125747 0.725125 0.008961 0.015448 +4 0.117085 0.717856 0.009558 0.016356 +4 0.116786 0.809405 0.008363 0.014085 +4 0.144863 0.354384 0.008961 0.015448 +4 0.135603 0.345298 0.008363 0.013630 +4 0.144863 0.209905 0.008363 0.015448 +4 0.125149 0.911404 0.008363 0.013630 +4 0.116487 0.901408 0.007766 0.013630 +4 0.898148 0.124716 0.008363 0.014085 +3 0.889486 0.123353 0.006571 0.018628 +1 0.088710 0.163562 0.004779 0.021808 +0 0.143070 0.815993 0.008363 0.012721 +4 0.134707 0.806906 0.008363 0.013630 +4 0.143369 0.772603 0.007766 0.012267 +4 0.134259 0.763289 0.008662 0.014539 +4 0.127240 0.357338 0.008363 0.016811 +4 0.125149 0.776238 0.008363 0.013176 +4 0.143070 0.632213 0.008961 0.014993 +4 0.135305 0.623353 0.007766 0.013630 +4 0.125448 0.636302 0.008363 0.013176 +4 0.126643 0.545888 0.008961 0.015902 +4 0.117384 0.537937 0.008363 0.015448 +4 0.143369 0.253748 0.008363 0.014993 +4 0.134857 0.246025 0.009259 0.015902 +0 0.142174 0.677874 0.008363 0.012721 +4 0.134110 0.669014 0.008961 0.013176 +4 0.142174 0.857110 0.007766 0.014085 +4 0.133811 0.849159 0.008961 0.012721 +4 0.143668 0.542935 0.008363 0.013630 +4 0.135305 0.535211 0.009558 0.014539 +4 0.126045 0.681281 0.008363 0.015902 +4 0.135603 0.302703 0.008363 0.016583 +4 0.143967 0.308383 0.008363 0.016583 +4 0.115591 0.485575 0.008363 0.016583 +4 0.124253 0.494207 0.008363 0.016583 +4 0.132915 0.484212 0.008363 0.016583 +4 0.115890 0.942640 0.008363 0.016583 +4 0.124552 0.949909 0.008363 0.016583 +4 0.133214 0.940595 0.008363 0.016583 +4 0.118877 0.399932 0.008363 0.016583 +4 0.127539 0.407428 0.008363 0.016583 +4 0.136201 0.398569 0.008363 0.016583 +4 0.116786 0.443776 0.008363 0.016583 +4 0.124851 0.450591 0.008363 0.016583 +4 0.132915 0.443548 0.008363 0.016583 +4 0.117981 0.060768 0.008363 0.016583 +4 0.126941 0.068037 0.008363 0.016583 +4 0.136201 0.059632 0.008363 0.016583 +4 0.124253 0.587801 0.008363 0.016583 +4 0.134110 0.579396 0.008363 0.016583 +3 0.602748 0.856997 0.008363 0.016583 +4 0.135603 0.715697 0.008363 0.016583 +4 0.143369 0.720468 0.008363 0.016583 +4 0.119176 0.202522 0.008363 0.016583 +4 0.127539 0.211608 0.008363 0.016583 +4 0.135902 0.201840 0.008363 0.016583 +3 0.797491 0.859496 0.008363 0.016583 +4 0.091697 0.072126 0.008363 0.016583 +4 0.099164 0.068946 0.008363 0.016583 +5 0.126344 0.163903 0.008363 0.016583 +4 0.135305 0.155498 0.008363 0.016583 +4 0.116487 0.852681 0.008363 0.016583 +4 0.125149 0.858133 0.008363 0.016583 +4 0.088710 0.359950 0.008363 0.016583 +4 0.095281 0.355179 0.008363 0.016583 +5 0.102151 0.346547 0.008363 0.016583 +4 0.116189 0.248864 0.008363 0.016583 +4 0.125448 0.256134 0.008363 0.016583 +4 0.255376 0.637438 0.008363 0.016356 +4 0.444444 0.551000 0.008363 0.016583 +3 0.452509 0.551000 0.008363 0.016583 +3 0.640980 0.775897 0.008363 0.016583 +5 0.646655 0.776806 0.008363 0.016583 +4 0.411888 0.639936 0.008363 0.015448 +4 0.636499 0.637892 0.008363 0.016356 +4 0.089904 0.115743 0.008363 0.016583 +4 0.101254 0.110972 0.008363 0.016583 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_39.jpg b/data_dataset/dvo/debug/debug_39.jpg new file mode 100644 index 0000000..199fe1f Binary files /dev/null and b/data_dataset/dvo/debug/debug_39.jpg differ diff --git a/data_dataset/dvo/debug/debug_39.txt b/data_dataset/dvo/debug/debug_39.txt new file mode 100644 index 0000000..e9f8c84 --- /dev/null +++ b/data_dataset/dvo/debug/debug_39.txt @@ -0,0 +1,662 @@ +10 0.171940 0.944482 0.016716 0.004768 +7 0.217910 0.940395 0.011940 0.013851 +6 0.877612 0.936308 0.009552 0.018392 +10 0.171045 0.907584 0.007761 0.002271 +7 0.217612 0.902248 0.011343 0.012943 +10 0.290746 0.866712 0.005970 0.003633 +10 0.714030 0.865577 0.007164 0.004995 +8 0.216418 0.862738 0.011343 0.012943 +6 0.542090 0.859787 0.010746 0.007039 +8 0.430448 0.860468 0.011940 0.017484 +10 0.217313 0.854905 0.009552 0.004995 +8 0.656119 0.862965 0.011940 0.012943 +8 0.775522 0.855018 0.011940 0.008401 +8 0.322687 0.860241 0.013731 0.018392 +10 0.194179 0.829246 0.006269 0.001817 +10 0.174627 0.829246 0.007164 0.001817 +6 0.542985 0.811649 0.009552 0.007039 +8 0.216418 0.817098 0.010746 0.017938 +10 0.323582 0.811081 0.010149 0.004995 +8 0.433134 0.813692 0.010746 0.012035 +7 0.657313 0.813238 0.011343 0.013397 +10 0.751940 0.809264 0.011940 0.004995 +8 0.867761 0.808697 0.011940 0.006585 +6 0.430746 0.769868 0.009552 0.007039 +8 0.215522 0.776907 0.012537 0.013851 +8 0.322090 0.776907 0.011940 0.013397 +8 0.657313 0.773274 0.011343 0.017938 +8 0.543582 0.770095 0.013134 0.012035 +10 0.722687 0.765100 0.005970 0.002044 +10 0.201493 0.728315 0.005970 0.002044 +9 0.880896 0.728315 0.004776 0.006585 +7 0.676716 0.728315 0.009552 0.007947 +8 0.880896 0.722184 0.011940 0.008856 +8 0.797015 0.728996 0.012537 0.011580 +9 0.574030 0.713669 0.008358 0.024523 +10 0.770746 0.680177 0.005970 0.002952 +10 0.471940 0.675295 0.007761 0.002725 +7 0.677313 0.674728 0.011343 0.012489 +10 0.879403 0.670527 0.008358 0.004995 +10 0.182090 0.628974 0.007164 0.002725 +7 0.180896 0.624773 0.013134 0.013851 +7 0.678507 0.626135 0.011343 0.007947 +8 0.796716 0.627498 0.012537 0.012035 +10 0.877910 0.619210 0.006567 0.004995 +10 0.814328 0.613079 0.009552 0.002725 +9 0.638806 0.615236 0.008358 0.028837 +10 0.684179 0.589691 0.008358 0.004541 +8 0.797612 0.581176 0.013134 0.018392 +10 0.895522 0.541553 0.010149 0.004995 +8 0.797313 0.541440 0.013134 0.017938 +9 0.388060 0.527929 0.004179 0.023161 +8 0.693134 0.526226 0.012537 0.021571 +9 0.257910 0.523728 0.004179 0.030200 +9 0.161194 0.523501 0.004179 0.031108 +10 0.879701 0.483765 0.008358 0.002498 +10 0.846866 0.481835 0.005970 0.003633 +10 0.194925 0.480245 0.011940 0.004995 +10 0.451194 0.434605 0.007463 0.001817 +10 0.561940 0.435740 0.010448 0.004995 +9 0.570896 0.426090 0.005672 0.023388 +9 0.357761 0.419051 0.004478 0.027929 +10 0.764179 0.389305 0.009552 0.002498 +10 0.660299 0.389192 0.007164 0.002271 +10 0.209552 0.384423 0.005970 0.003179 +8 0.225970 0.379541 0.004179 0.015668 +7 0.208358 0.338215 0.011940 0.012943 +7 0.169254 0.335263 0.011343 0.007947 +8 0.187761 0.297570 0.010746 0.013397 +8 0.382836 0.294391 0.012239 0.006585 +6 0.310000 0.296889 0.009851 0.017938 +10 0.890149 0.239782 0.006567 0.004541 +10 0.848955 0.240009 0.007761 0.004995 +10 0.776716 0.239555 0.011343 0.004995 +7 0.667164 0.242620 0.011940 0.013851 +7 0.611045 0.242847 0.011940 0.013397 +10 0.517612 0.238647 0.011343 0.004995 +10 0.357910 0.238420 0.011940 0.004995 +8 0.221791 0.238306 0.011940 0.006585 +9 0.665970 0.198456 0.005970 0.018165 +6 0.235224 0.197094 0.008955 0.017711 +6 0.371642 0.196299 0.009552 0.018392 +10 0.793582 0.161217 0.005672 0.004541 +10 0.892239 0.159628 0.006567 0.004995 +9 0.463284 0.151907 0.008358 0.028156 +9 0.311045 0.151567 0.007164 0.028837 +10 0.903284 0.139986 0.005970 0.001589 +10 0.878209 0.108765 0.011940 0.004995 +7 0.791343 0.109332 0.008955 0.007493 +8 0.657313 0.107743 0.011940 0.006585 +7 0.494627 0.110695 0.010149 0.012943 +6 0.372537 0.109332 0.009552 0.017030 +6 0.236418 0.108197 0.008358 0.017938 +10 0.488955 0.077657 0.019104 0.001817 +10 0.209851 0.075840 0.008955 0.004541 +10 0.415672 0.072207 0.010448 0.001817 +9 0.690746 0.064941 0.007164 0.015441 +9 0.272537 0.060854 0.004179 0.029973 +7 0.315821 0.069142 0.012537 0.018392 +9 0.677910 0.055631 0.007761 0.034060 +11 0.714478 0.952657 0.009254 0.006585 +11 0.604478 0.948115 0.008955 0.004768 +11 0.758060 0.947207 0.009254 0.005677 +11 0.175522 0.944142 0.005373 0.002725 +12 0.183134 0.922684 0.009254 0.007039 +11 0.484179 0.945163 0.009552 0.005677 +11 0.836567 0.944482 0.009851 0.006131 +11 0.638955 0.942098 0.009851 0.006358 +11 0.521791 0.939714 0.009552 0.005677 +11 0.374776 0.939827 0.010448 0.006358 +12 0.136119 0.937784 0.007761 0.004541 +18 0.136119 0.942325 0.007761 0.004541 +11 0.269254 0.935173 0.009552 0.006131 +11 0.410896 0.934718 0.009851 0.006131 +11 0.305672 0.930177 0.009552 0.006131 +12 0.165224 0.928134 0.009254 0.006131 +12 0.201940 0.921776 0.008657 0.007039 +11 0.715075 0.914282 0.009254 0.006131 +11 0.603731 0.909514 0.009851 0.005677 +11 0.758657 0.908833 0.009254 0.006131 +11 0.484925 0.907243 0.009851 0.006131 +11 0.838507 0.905881 0.010149 0.007039 +11 0.640448 0.904292 0.009254 0.006131 +11 0.376269 0.902021 0.009851 0.006131 +11 0.522537 0.901907 0.009851 0.006358 +12 0.135821 0.899977 0.007761 0.004314 +11 0.270597 0.897480 0.009851 0.006131 +11 0.411791 0.896912 0.008060 0.005904 +11 0.305672 0.892484 0.010149 0.006131 +12 0.164776 0.890213 0.008955 0.005677 +12 0.201045 0.884310 0.009254 0.006585 +12 0.184179 0.883856 0.009552 0.006585 +17 0.838657 0.868074 0.011642 0.005904 +17 0.838657 0.873978 0.011642 0.005904 +12 0.623433 0.866144 0.009254 0.005223 +12 0.740896 0.865917 0.009552 0.005677 +12 0.740896 0.871594 0.009552 0.005677 +12 0.639851 0.865917 0.009254 0.005677 +12 0.759254 0.865577 0.009254 0.005904 +12 0.759254 0.871480 0.009254 0.005904 +11 0.714478 0.868529 0.009254 0.005450 +12 0.714478 0.863079 0.009254 0.005450 +11 0.673433 0.863079 0.009552 0.005450 +11 0.673433 0.868529 0.009552 0.005450 +12 0.603731 0.863647 0.009851 0.006585 +12 0.559403 0.863306 0.009552 0.006358 +12 0.525224 0.861149 0.009254 0.005677 +12 0.506119 0.861149 0.009254 0.005677 +12 0.484925 0.858424 0.009851 0.006585 +12 0.449104 0.858311 0.009851 0.006358 +12 0.410299 0.855472 0.008657 0.005677 +12 0.393881 0.855699 0.010448 0.006131 +12 0.375522 0.853202 0.009552 0.006585 +12 0.341940 0.852975 0.009851 0.006131 +12 0.306716 0.851045 0.008060 0.005904 +12 0.289104 0.851158 0.009851 0.006131 +13 0.234478 0.848433 0.009254 0.006585 +12 0.268955 0.848093 0.010149 0.007266 +12 0.183134 0.846163 0.009254 0.005677 +12 0.201045 0.845595 0.009254 0.006358 +12 0.162537 0.842870 0.008657 0.006358 +12 0.624179 0.833220 0.009552 0.006585 +12 0.640149 0.832993 0.009851 0.007039 +12 0.604925 0.830268 0.009851 0.006131 +12 0.560149 0.829587 0.009851 0.006131 +12 0.524478 0.826862 0.009552 0.005223 +12 0.508209 0.826862 0.009254 0.005223 +12 0.448358 0.824478 0.010149 0.005904 +12 0.486866 0.824137 0.010149 0.006131 +12 0.413134 0.821639 0.008955 0.006131 +12 0.395970 0.821639 0.009254 0.006131 +12 0.375672 0.819369 0.009254 0.006131 +12 0.341642 0.819369 0.009254 0.006131 +18 0.321343 0.816644 0.006866 0.004314 +13 0.429104 0.816644 0.005075 0.004768 +12 0.307313 0.817098 0.009851 0.006131 +12 0.288657 0.816757 0.008955 0.005450 +12 0.270896 0.814600 0.009851 0.005677 +12 0.234328 0.814714 0.009552 0.006358 +12 0.202836 0.812103 0.009851 0.005677 +12 0.185522 0.812330 0.009851 0.006131 +17 0.134776 0.811876 0.007463 0.005223 +18 0.134478 0.806880 0.006866 0.004314 +12 0.165224 0.809378 0.008657 0.006585 +12 0.861493 0.788601 0.007761 0.005904 +12 0.881343 0.788942 0.009254 0.007493 +12 0.840746 0.786104 0.009254 0.006358 +12 0.793134 0.786217 0.009552 0.006585 +12 0.759104 0.785309 0.009552 0.006131 +13 0.739254 0.785763 0.009254 0.007039 +12 0.903433 0.785309 0.009254 0.006585 +12 0.717463 0.783833 0.008657 0.005904 +12 0.674776 0.783946 0.009254 0.006131 +12 0.640299 0.781676 0.009552 0.006131 +12 0.623284 0.781335 0.010149 0.006358 +12 0.562985 0.779178 0.008955 0.006131 +12 0.604925 0.778951 0.009254 0.006131 +12 0.524627 0.776680 0.009851 0.005677 +12 0.507015 0.776453 0.009254 0.006131 +18 0.429254 0.775204 0.005373 0.003633 +12 0.486716 0.774410 0.009254 0.005677 +12 0.449552 0.774296 0.008955 0.005450 +18 0.774179 0.772820 0.005075 0.004314 +12 0.775821 0.767598 0.004179 0.003860 +12 0.413582 0.771458 0.009851 0.005677 +12 0.394925 0.771571 0.009552 0.005904 +12 0.376269 0.769414 0.009254 0.006131 +12 0.341940 0.769187 0.009851 0.005677 +12 0.305821 0.766916 0.010448 0.005677 +12 0.288806 0.767144 0.009851 0.006131 +12 0.269701 0.765100 0.009851 0.005677 +12 0.234776 0.764873 0.009254 0.005677 +18 0.135970 0.763851 0.006269 0.003633 +12 0.200597 0.762148 0.010149 0.006585 +12 0.183284 0.761921 0.010149 0.007039 +12 0.163731 0.759537 0.008060 0.005904 +12 0.743731 0.720368 0.009851 0.006131 +12 0.713881 0.720595 0.009851 0.006585 +11 0.850299 0.717870 0.009254 0.005223 +12 0.812239 0.718211 0.009552 0.005904 +13 0.781194 0.715599 0.010149 0.006131 +12 0.761791 0.715372 0.009552 0.006131 +12 0.915672 0.712421 0.008657 0.006131 +12 0.212836 0.711399 0.009552 0.005904 +12 0.197612 0.709355 0.008955 0.006358 +12 0.181343 0.709242 0.008657 0.007039 +11 0.638955 0.708560 0.008060 0.007039 +13 0.596567 0.708333 0.009254 0.006585 +12 0.581045 0.705949 0.009254 0.005904 +12 0.563433 0.706063 0.008657 0.006131 +12 0.164925 0.705381 0.008657 0.006585 +12 0.547015 0.703224 0.009254 0.006812 +12 0.502239 0.703338 0.009254 0.007039 +12 0.321791 0.701181 0.008955 0.005904 +12 0.417761 0.700840 0.008657 0.006131 +12 0.485522 0.700840 0.008060 0.006585 +12 0.468657 0.700840 0.009552 0.006585 +11 0.357612 0.699024 0.010149 0.007039 +11 0.263881 0.698569 0.010149 0.007039 +12 0.452388 0.697207 0.008657 0.007493 +18 0.121343 0.676203 0.005075 0.003633 +12 0.133881 0.673025 0.006269 0.003633 +12 0.745075 0.669505 0.009552 0.006131 +12 0.714627 0.669278 0.009552 0.006585 +12 0.814179 0.666780 0.009254 0.005677 +11 0.850896 0.666553 0.009851 0.006131 +12 0.764179 0.664510 0.009552 0.006131 +12 0.781940 0.664282 0.009254 0.006131 +12 0.915970 0.660876 0.008657 0.005677 +12 0.214328 0.660649 0.009552 0.006131 +12 0.198209 0.658379 0.009552 0.007039 +12 0.181791 0.658379 0.008955 0.007039 +11 0.640299 0.657016 0.008955 0.006585 +12 0.597612 0.657016 0.009552 0.007493 +12 0.163433 0.655995 0.009254 0.005904 +12 0.581343 0.654746 0.009254 0.006131 +12 0.565522 0.654746 0.008657 0.006131 +12 0.547910 0.652475 0.009254 0.007039 +12 0.503134 0.651453 0.008060 0.005904 +12 0.322836 0.650431 0.009254 0.006131 +12 0.487910 0.650204 0.009851 0.006131 +12 0.470746 0.650204 0.009552 0.006131 +12 0.417761 0.650091 0.009254 0.005904 +11 0.357463 0.647934 0.008060 0.006585 +11 0.262687 0.647707 0.008955 0.007039 +11 0.453582 0.646685 0.008060 0.006358 +17 0.771045 0.635104 0.006567 0.002271 +12 0.780448 0.613079 0.009851 0.005450 +12 0.780448 0.618529 0.009851 0.005450 +18 0.751642 0.634877 0.007164 0.002271 +13 0.189701 0.621026 0.005075 0.003179 +13 0.454179 0.617053 0.010448 0.006131 +13 0.549552 0.616599 0.010149 0.006131 +11 0.813433 0.615690 0.008955 0.005223 +12 0.813433 0.620913 0.008955 0.005223 +18 0.849104 0.615009 0.007463 0.005677 +18 0.849701 0.620913 0.008657 0.004768 +13 0.262239 0.615009 0.006269 0.006131 +13 0.358060 0.614555 0.010448 0.007039 +12 0.763433 0.612965 0.009254 0.005677 +12 0.763433 0.618642 0.009254 0.005677 +13 0.393433 0.611830 0.008955 0.006131 +13 0.294925 0.612057 0.009552 0.006585 +13 0.581343 0.611149 0.009851 0.006131 +13 0.486716 0.611490 0.009851 0.006812 +12 0.746119 0.610581 0.009254 0.005450 +12 0.746119 0.616031 0.009254 0.005450 +12 0.714030 0.610581 0.009552 0.005450 +12 0.714030 0.616031 0.009552 0.005450 +13 0.165821 0.608311 0.010448 0.005904 +13 0.165821 0.614214 0.010448 0.005904 +12 0.916866 0.607516 0.009254 0.006131 +11 0.641045 0.605359 0.009254 0.005904 +11 0.641045 0.611262 0.009254 0.005904 +12 0.199254 0.603769 0.010448 0.005904 +12 0.199254 0.609673 0.010448 0.005904 +17 0.069701 0.598206 0.004478 0.003406 +12 0.069552 0.584809 0.004179 0.004768 +12 0.070000 0.544505 0.004478 0.005904 +12 0.573582 0.590827 0.003881 0.004541 +13 0.580746 0.576635 0.008060 0.005223 +13 0.581343 0.568120 0.010448 0.007266 +12 0.386567 0.587988 0.004776 0.006585 +12 0.393582 0.570845 0.011045 0.005904 +12 0.393582 0.576748 0.011045 0.005904 +11 0.706119 0.585718 0.006866 0.004768 +12 0.714179 0.573683 0.009851 0.005223 +18 0.897910 0.580041 0.009552 0.004768 +12 0.881045 0.580495 0.009254 0.005677 +12 0.866119 0.580722 0.009254 0.006131 +12 0.813582 0.578451 0.009851 0.006131 +12 0.849851 0.577997 0.008955 0.006131 +13 0.487910 0.576635 0.009851 0.006131 +13 0.487761 0.568688 0.010746 0.006585 +13 0.454179 0.576294 0.010448 0.005450 +13 0.454179 0.581744 0.010448 0.005450 +13 0.357761 0.576067 0.009851 0.005450 +13 0.357761 0.581517 0.009851 0.005450 +13 0.264328 0.577203 0.010448 0.007720 +12 0.781493 0.575954 0.008358 0.005677 +13 0.549701 0.575840 0.010448 0.005450 +13 0.549701 0.581290 0.010448 0.005450 +12 0.763881 0.575840 0.008955 0.005904 +13 0.167015 0.574251 0.010448 0.006812 +12 0.745672 0.573342 0.009552 0.006358 +12 0.914925 0.572775 0.009552 0.006585 +12 0.679851 0.571185 0.008060 0.005677 +12 0.664478 0.571299 0.008955 0.005904 +13 0.296567 0.570845 0.010448 0.005904 +13 0.296567 0.576748 0.010448 0.005904 +13 0.200746 0.570731 0.010448 0.007039 +12 0.640149 0.568460 0.009851 0.006585 +12 0.916866 0.526226 0.008657 0.006131 +12 0.866418 0.524750 0.009254 0.006812 +12 0.410000 0.524183 0.009851 0.006131 +12 0.881642 0.524069 0.009851 0.006358 +12 0.392985 0.521685 0.009254 0.007493 +12 0.377761 0.521231 0.009851 0.007493 +12 0.848806 0.520890 0.008657 0.007266 +12 0.812985 0.520663 0.009851 0.006812 +12 0.358657 0.518733 0.008657 0.006131 +12 0.312687 0.518733 0.009851 0.006131 +12 0.781343 0.518733 0.009851 0.006585 +12 0.762239 0.518506 0.009851 0.006585 +12 0.295373 0.516235 0.008657 0.006585 +12 0.744179 0.515781 0.008358 0.006585 +13 0.714179 0.516122 0.009254 0.007266 +12 0.226418 0.515781 0.009254 0.007039 +12 0.280448 0.515554 0.008657 0.007039 +12 0.514776 0.514078 0.009254 0.006358 +12 0.678358 0.513738 0.009254 0.006131 +12 0.608209 0.513738 0.009254 0.006131 +12 0.662537 0.513510 0.009851 0.006585 +12 0.262836 0.512943 0.009254 0.006358 +11 0.166119 0.512602 0.009254 0.006131 +12 0.636866 0.511467 0.008657 0.007039 +11 0.547910 0.511467 0.009851 0.007493 +11 0.455373 0.511013 0.008657 0.006585 +12 0.592090 0.471503 0.009851 0.006131 +12 0.558657 0.469687 0.009254 0.005677 +12 0.575522 0.469233 0.009552 0.006585 +11 0.543134 0.465940 0.009851 0.006358 +12 0.503731 0.466281 0.009851 0.007039 +12 0.468209 0.464918 0.009254 0.006131 +12 0.329701 0.464237 0.009254 0.006131 +12 0.903433 0.463783 0.009254 0.005677 +12 0.485224 0.464010 0.009851 0.006131 +12 0.404925 0.463783 0.009254 0.006131 +11 0.361493 0.461853 0.008358 0.006812 +11 0.279104 0.461853 0.008358 0.006812 +12 0.807612 0.461626 0.008657 0.006812 +12 0.888955 0.461285 0.008955 0.007039 +12 0.443134 0.461058 0.009254 0.006585 +12 0.709104 0.461285 0.008657 0.007493 +12 0.870896 0.460831 0.009851 0.007039 +11 0.639851 0.458787 0.009851 0.006131 +12 0.846567 0.458447 0.009552 0.005904 +11 0.741343 0.458106 0.009851 0.005677 +18 0.138806 0.429496 0.007164 0.003406 +12 0.208358 0.428588 0.008955 0.006131 +12 0.168806 0.428588 0.009254 0.006131 +12 0.592388 0.421435 0.009851 0.006358 +12 0.576269 0.418597 0.008657 0.006131 +12 0.559851 0.418029 0.009254 0.005904 +11 0.544030 0.414850 0.008657 0.005904 +12 0.505970 0.415645 0.009552 0.007493 +12 0.469104 0.412920 0.009254 0.005677 +12 0.406269 0.412693 0.008955 0.005677 +12 0.903881 0.412466 0.008955 0.005677 +12 0.487612 0.412693 0.009254 0.006131 +12 0.329701 0.412239 0.008657 0.006585 +12 0.872836 0.410763 0.008358 0.006812 +12 0.806716 0.410876 0.008657 0.007039 +12 0.707910 0.410422 0.008060 0.006585 +12 0.887612 0.410309 0.009254 0.006812 +12 0.440149 0.410536 0.009851 0.007266 +12 0.185970 0.410422 0.008955 0.007039 +11 0.278955 0.410195 0.008657 0.007039 +12 0.224925 0.409968 0.009254 0.007039 +11 0.362537 0.409628 0.008657 0.006812 +11 0.744328 0.408152 0.009254 0.006585 +12 0.845821 0.407698 0.009254 0.006131 +11 0.640149 0.407470 0.008657 0.006131 +13 0.454627 0.389986 0.008358 0.007947 +11 0.769104 0.386807 0.005075 0.004314 +13 0.776866 0.368983 0.009851 0.006812 +13 0.669254 0.381017 0.005373 0.003179 +12 0.207910 0.381358 0.007463 0.005223 +12 0.207910 0.386580 0.007463 0.005223 +12 0.186418 0.381358 0.008657 0.005223 +12 0.186418 0.386580 0.008657 0.005223 +12 0.169552 0.379087 0.008955 0.005223 +12 0.169552 0.384310 0.008955 0.005223 +12 0.225522 0.376362 0.008060 0.005223 +12 0.225522 0.381585 0.008060 0.005223 +13 0.362239 0.376817 0.010448 0.006585 +13 0.544925 0.376589 0.010448 0.006585 +13 0.444179 0.376589 0.010149 0.006585 +13 0.281642 0.376362 0.010448 0.006585 +13 0.640000 0.374205 0.009552 0.006812 +13 0.742836 0.373865 0.008657 0.007039 +13 0.847164 0.373183 0.010149 0.008856 +13 0.575373 0.371367 0.009254 0.006131 +13 0.487164 0.371594 0.009552 0.006585 +13 0.388209 0.371367 0.009851 0.006585 +13 0.311791 0.371594 0.009851 0.007039 +12 0.679254 0.368756 0.010448 0.006812 +13 0.887761 0.368188 0.010149 0.007039 +11 0.767015 0.351499 0.008060 0.004087 +13 0.777313 0.334128 0.009552 0.007039 +18 0.459851 0.350590 0.006269 0.004541 +18 0.465522 0.345708 0.008060 0.003860 +12 0.187463 0.346163 0.010149 0.005677 +13 0.744030 0.338896 0.010448 0.006131 +13 0.641194 0.338896 0.010746 0.007039 +13 0.364179 0.338896 0.010746 0.007039 +13 0.281045 0.338669 0.010448 0.006585 +12 0.544478 0.338442 0.009552 0.006585 +13 0.444776 0.338556 0.009552 0.006812 +13 0.388806 0.333447 0.009851 0.006131 +13 0.312388 0.333674 0.009851 0.006585 +13 0.846119 0.333674 0.009851 0.007039 +13 0.486567 0.333447 0.010149 0.006585 +13 0.678657 0.333333 0.010448 0.006812 +13 0.576567 0.332993 0.010448 0.006585 +13 0.888507 0.330268 0.008657 0.006585 +12 0.226567 0.328224 0.009552 0.006131 +18 0.115821 0.326181 0.006567 0.003406 +17 0.115075 0.331403 0.005672 0.003406 +18 0.191493 0.299046 0.007463 0.005450 +12 0.281642 0.288034 0.009851 0.006131 +12 0.280597 0.269414 0.008955 0.007039 +13 0.169851 0.287579 0.009552 0.006585 +12 0.795224 0.286331 0.010149 0.005904 +12 0.761642 0.284287 0.008657 0.005904 +11 0.778060 0.283719 0.009254 0.006131 +12 0.701940 0.281449 0.008657 0.006585 +12 0.745522 0.279632 0.008657 0.005677 +12 0.606418 0.278497 0.009851 0.006131 +12 0.682090 0.278043 0.009552 0.006131 +12 0.663134 0.278043 0.009851 0.006131 +12 0.516866 0.277816 0.008657 0.006131 +12 0.919254 0.276226 0.009851 0.006585 +12 0.640000 0.275772 0.008955 0.007039 +11 0.444478 0.275204 0.008358 0.007266 +11 0.545672 0.274977 0.008955 0.007720 +18 0.846119 0.273161 0.009254 0.005904 +13 0.210746 0.269074 0.010149 0.007720 +11 0.867313 0.238079 0.009851 0.006585 +12 0.639851 0.237625 0.009851 0.006131 +18 0.915522 0.220027 0.008955 0.004995 +12 0.915821 0.177339 0.008955 0.006812 +12 0.696567 0.220595 0.009851 0.006585 +12 0.534627 0.201294 0.008955 0.005677 +12 0.463433 0.201521 0.009254 0.006131 +12 0.311791 0.201067 0.008060 0.005677 +12 0.171493 0.198115 0.009254 0.006585 +12 0.851642 0.194482 0.009552 0.005677 +12 0.792090 0.194482 0.009851 0.005677 +12 0.893433 0.194255 0.009552 0.006131 +12 0.749104 0.193801 0.009851 0.005677 +12 0.669403 0.193801 0.009254 0.005677 +12 0.612537 0.193688 0.010149 0.006358 +12 0.562090 0.182788 0.008358 0.005904 +11 0.340448 0.182675 0.008060 0.006131 +12 0.495672 0.182448 0.009254 0.006131 +12 0.207910 0.179950 0.009254 0.006585 +12 0.868806 0.177679 0.009254 0.006585 +12 0.812687 0.177225 0.009254 0.006585 +12 0.770000 0.176998 0.008657 0.007039 +12 0.697463 0.176658 0.009254 0.006812 +12 0.639254 0.176771 0.008657 0.007039 +12 0.074328 0.165645 0.004776 0.004314 +18 0.687015 0.164396 0.006866 0.002271 +12 0.768806 0.165191 0.008060 0.005223 +12 0.769104 0.159514 0.007463 0.005677 +12 0.892388 0.163034 0.006866 0.004541 +12 0.892239 0.157243 0.008955 0.005677 +12 0.794030 0.159401 0.009552 0.005450 +12 0.794030 0.164850 0.009552 0.005450 +12 0.869403 0.156789 0.008657 0.005677 +12 0.869403 0.162466 0.008657 0.005677 +12 0.750000 0.156108 0.009851 0.005677 +12 0.750000 0.161785 0.009851 0.005677 +12 0.852836 0.154746 0.008955 0.005223 +12 0.852836 0.159968 0.008955 0.005223 +12 0.813284 0.154405 0.008657 0.005450 +12 0.813284 0.159855 0.008657 0.005450 +18 0.417313 0.152248 0.005373 0.003406 +12 0.416567 0.146571 0.004478 0.003860 +18 0.263731 0.152021 0.006866 0.003860 +12 0.917463 0.151680 0.009254 0.005450 +12 0.917463 0.157130 0.009254 0.005450 +12 0.535075 0.144868 0.008657 0.005450 +12 0.535075 0.150318 0.008657 0.005450 +13 0.518358 0.144868 0.008657 0.005450 +13 0.518358 0.150318 0.008657 0.005450 +12 0.427761 0.144414 0.010149 0.005450 +12 0.427761 0.149864 0.010149 0.005450 +12 0.275970 0.144074 0.008657 0.005223 +12 0.275970 0.149296 0.008657 0.005223 +12 0.669254 0.143506 0.008358 0.004995 +12 0.669254 0.148501 0.008358 0.004995 +12 0.640448 0.143165 0.009254 0.005223 +12 0.640448 0.148388 0.009254 0.005223 +12 0.465224 0.142144 0.008657 0.005450 +12 0.465224 0.147593 0.008657 0.005450 +11 0.313881 0.141462 0.009254 0.005450 +11 0.313881 0.146912 0.009254 0.005450 +11 0.170597 0.140554 0.009254 0.004995 +11 0.170597 0.145550 0.009254 0.004995 +12 0.698209 0.140327 0.008955 0.005904 +12 0.698209 0.146231 0.008955 0.005904 +12 0.613284 0.140213 0.007463 0.005677 +12 0.613284 0.145890 0.007463 0.005677 +13 0.578657 0.139192 0.009851 0.005904 +13 0.578657 0.145095 0.009851 0.005904 +12 0.769104 0.120232 0.009851 0.005223 +11 0.171045 0.112057 0.010149 0.006131 +13 0.535075 0.108651 0.009851 0.005677 +12 0.464627 0.108424 0.008657 0.005223 +11 0.314179 0.108197 0.009851 0.006131 +12 0.814478 0.102293 0.009851 0.006585 +12 0.141343 0.100704 0.008060 0.004314 +11 0.349104 0.073569 0.004478 0.005904 +12 0.355522 0.053928 0.008955 0.005677 +13 0.262239 0.064146 0.008657 0.006131 +13 0.207910 0.063919 0.008657 0.006131 +13 0.697463 0.061421 0.009851 0.006131 +13 0.638209 0.061194 0.008358 0.005677 +13 0.851791 0.061421 0.008060 0.006585 +13 0.670896 0.060967 0.009254 0.006131 +13 0.750597 0.060967 0.011045 0.007039 +13 0.496567 0.060286 0.009254 0.006131 +13 0.403731 0.059605 0.009851 0.006131 +13 0.342239 0.059378 0.008657 0.006585 +13 0.249701 0.059378 0.009851 0.006585 +13 0.223433 0.058924 0.009851 0.006131 +13 0.184627 0.058924 0.009851 0.006131 +13 0.564030 0.058243 0.009254 0.005677 +13 0.627015 0.055064 0.008657 0.006131 +13 0.480149 0.053928 0.009851 0.006131 +13 0.388060 0.053247 0.008955 0.006131 +13 0.327910 0.052566 0.009851 0.006585 +13 0.237463 0.052112 0.009254 0.006131 +13 0.551045 0.052112 0.009552 0.007039 +13 0.170896 0.051658 0.008657 0.006131 +13 0.277761 0.050976 0.009851 0.007039 +13 0.535373 0.049387 0.008060 0.005223 +13 0.612985 0.049160 0.009254 0.006131 +13 0.465672 0.048479 0.008955 0.006131 +13 0.374478 0.048025 0.008657 0.005677 +13 0.311940 0.047570 0.008955 0.006585 +13 0.580149 0.047116 0.009254 0.007039 +13 0.520448 0.047116 0.009254 0.007039 +13 0.428955 0.046208 0.008955 0.007039 +13 0.684478 0.043597 0.008955 0.007720 +13 0.713881 0.042802 0.009254 0.007039 +13 0.653582 0.042802 0.009254 0.007039 +13 0.793582 0.042575 0.008657 0.007039 +0 0.090597 0.858424 0.023582 0.022934 +1 0.095672 0.067552 0.021791 0.039737 +3 0.157164 0.377044 0.006269 0.015668 +4 0.196866 0.062330 0.006866 0.012035 +2 0.089104 0.674728 0.018209 0.018847 +3 0.159254 0.199024 0.007463 0.017484 +2 0.094478 0.195845 0.017612 0.018392 +5 0.456866 0.408379 0.006269 0.008401 +3 0.195970 0.179723 0.006866 0.017030 +0 0.095075 0.151340 0.022985 0.023842 +4 0.502836 0.514192 0.009254 0.013851 +4 0.112687 0.897934 0.009254 0.012943 +3 0.415970 0.046776 0.006866 0.018619 +4 0.317463 0.464010 0.008657 0.014759 +0 0.092388 0.535309 0.021791 0.031562 +1 0.093881 0.383856 0.021791 0.039282 +4 0.504328 0.150431 0.009254 0.012943 +4 0.596866 0.513738 0.009851 0.016122 +5 0.456567 0.463329 0.006269 0.010218 +4 0.138358 0.334128 0.009254 0.013397 +2 0.090299 0.482175 0.017612 0.018847 +0 0.125821 0.667688 0.008060 0.009310 +5 0.134776 0.768506 0.008657 0.009310 +2 0.093881 0.240350 0.018806 0.019301 +1 0.090896 0.769868 0.022388 0.033833 +2 0.090299 0.725136 0.022388 0.018847 +4 0.858955 0.461285 0.008657 0.013397 +3 0.650299 0.511921 0.006866 0.016122 +2 0.091940 0.431540 0.016119 0.017484 +0 0.092388 0.624092 0.022388 0.023842 +2 0.089403 0.939941 0.020000 0.019755 +2 0.088806 0.902248 0.020000 0.018847 +4 0.651194 0.276907 0.008657 0.012035 +4 0.116567 0.286217 0.009254 0.012943 +4 0.133134 0.726385 0.008358 0.013624 +0 0.111343 0.721390 0.008955 0.011807 +4 0.124776 0.065168 0.008955 0.015441 +4 0.116418 0.057902 0.010149 0.014532 +4 0.116119 0.097411 0.009552 0.013624 +4 0.133433 0.094233 0.007164 0.011807 +4 0.134328 0.855586 0.008955 0.015895 +4 0.127463 0.799955 0.007761 0.012716 +4 0.136418 0.482516 0.008955 0.013624 +0 0.093433 0.333333 0.020299 0.027702 +4 0.112836 0.849228 0.008955 0.013170 +4 0.128657 0.524523 0.007761 0.013170 +0 0.138806 0.241144 0.008955 0.011353 +4 0.124478 0.382153 0.008358 0.013624 +4 0.138507 0.378974 0.008955 0.014532 +4 0.113731 0.615577 0.008358 0.013624 +4 0.124627 0.718097 0.008657 0.013397 +5 0.118955 0.728088 0.008657 0.013397 +4 0.132985 0.055745 0.008657 0.013397 +4 0.140597 0.063238 0.008358 0.013397 +4 0.128209 0.566190 0.008657 0.013397 +4 0.135522 0.571185 0.008358 0.013397 +5 0.124328 0.199478 0.008657 0.013397 +4 0.132090 0.188579 0.008657 0.013397 +4 0.139701 0.197888 0.008358 0.013397 +4 0.114179 0.478769 0.008657 0.013397 +4 0.121791 0.484446 0.008358 0.013397 +4 0.094179 0.343438 0.008657 0.013397 +5 0.100000 0.343438 0.008358 0.013397 +4 0.113582 0.529632 0.008657 0.013397 +5 0.120597 0.534855 0.008358 0.013397 +5 0.124627 0.152248 0.008657 0.013397 +4 0.131642 0.149069 0.008358 0.013397 +4 0.088209 0.297570 0.008657 0.013397 +4 0.098507 0.293256 0.008358 0.013397 +4 0.088507 0.109105 0.008657 0.013397 +4 0.095373 0.105245 0.008657 0.013397 +5 0.102388 0.114555 0.008358 0.013397 +4 0.112985 0.934718 0.008657 0.013397 +4 0.121493 0.941757 0.008358 0.013397 +4 0.090597 0.583674 0.008657 0.011580 +5 0.097015 0.583674 0.008358 0.011580 +4 0.084627 0.579587 0.008657 0.013397 +4 0.096716 0.566190 0.008358 0.013397 +4 0.084030 0.814373 0.008657 0.013397 +4 0.090597 0.810513 0.008657 0.013397 +5 0.097313 0.801658 0.008358 0.013397 +5 0.119851 0.623411 0.008657 0.013397 +4 0.127463 0.614555 0.008358 0.013397 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_4.jpg b/data_dataset/dvo/debug/debug_4.jpg new file mode 100644 index 0000000..6436a36 Binary files /dev/null and b/data_dataset/dvo/debug/debug_4.jpg differ diff --git a/data_dataset/dvo/debug/debug_4.txt b/data_dataset/dvo/debug/debug_4.txt new file mode 100644 index 0000000..778ef2e --- /dev/null +++ b/data_dataset/dvo/debug/debug_4.txt @@ -0,0 +1,665 @@ +8 0.707062 0.939404 0.011969 0.007049 +8 0.239378 0.938267 0.012567 0.006594 +8 0.574207 0.938040 0.011969 0.007958 +6 0.802813 0.940541 0.009575 0.018417 +6 0.194494 0.938722 0.010174 0.017508 +10 0.366547 0.909732 0.009575 0.003638 +10 0.576601 0.900068 0.005984 0.001592 +6 0.802513 0.893020 0.010174 0.018872 +6 0.448235 0.840041 0.007780 0.019327 +6 0.802513 0.839359 0.010174 0.017963 +7 0.629563 0.829354 0.013764 0.009777 +10 0.299521 0.807640 0.015560 0.002274 +10 0.379114 0.804457 0.007181 0.005002 +9 0.306703 0.793656 0.009575 0.025693 +9 0.239078 0.790700 0.007181 0.019782 +10 0.196589 0.788313 0.005984 0.004548 +10 0.177439 0.788085 0.005984 0.004093 +9 0.149910 0.793770 0.008378 0.025921 +8 0.285757 0.792747 0.004788 0.022965 +10 0.284560 0.783083 0.005984 0.002274 +10 0.196589 0.783311 0.008378 0.002729 +10 0.265111 0.782856 0.006583 0.002729 +10 0.152603 0.782856 0.006583 0.002729 +9 0.626272 0.741132 0.007181 0.023420 +10 0.250150 0.725443 0.011370 0.002046 +10 0.783064 0.725330 0.005984 0.002274 +10 0.383902 0.724875 0.007181 0.002274 +10 0.249850 0.722942 0.010772 0.002046 +7 0.538300 0.723965 0.008378 0.006821 +8 0.784560 0.729650 0.010174 0.021828 +10 0.517953 0.697590 0.011969 0.002274 +9 0.707361 0.693838 0.008977 0.021601 +10 0.303112 0.689632 0.005984 0.002729 +9 0.819868 0.684629 0.010174 0.019100 +10 0.361460 0.677353 0.007780 0.002729 +10 0.447038 0.672124 0.006583 0.002274 +10 0.151406 0.612096 0.012567 0.005002 +7 0.673848 0.613802 0.011370 0.011596 +7 0.479653 0.612892 0.010772 0.009777 +7 0.877917 0.612892 0.011370 0.010687 +10 0.273190 0.610732 0.008378 0.005002 +6 0.633453 0.613802 0.009575 0.017963 +6 0.836326 0.613574 0.009575 0.018417 +6 0.795931 0.614029 0.010174 0.019327 +6 0.592160 0.614029 0.009575 0.018417 +6 0.435368 0.613347 0.009575 0.017053 +6 0.393776 0.612892 0.010174 0.017963 +6 0.233992 0.611983 0.008977 0.017053 +10 0.894973 0.605048 0.007181 0.002729 +10 0.695691 0.583447 0.020347 0.005002 +10 0.886595 0.577308 0.005984 0.001819 +10 0.280371 0.573897 0.007181 0.002274 +9 0.231598 0.565825 0.005386 0.022965 +10 0.817774 0.557299 0.005984 0.002729 +10 0.776780 0.557299 0.007780 0.002729 +9 0.434470 0.559686 0.006583 0.023420 +10 0.561041 0.553206 0.007181 0.002729 +8 0.616996 0.559686 0.010174 0.023420 +10 0.644225 0.481810 0.005984 0.001819 +10 0.637044 0.479991 0.007181 0.003638 +7 0.349791 0.472601 0.010772 0.022965 +9 0.395272 0.461573 0.008378 0.030923 +9 0.438061 0.459300 0.010174 0.025466 +9 0.377917 0.462710 0.009575 0.033197 +9 0.510473 0.459527 0.011370 0.025011 +10 0.438959 0.449068 0.005984 0.002729 +7 0.193896 0.408481 0.011370 0.013870 +8 0.794434 0.406207 0.011969 0.009322 +7 0.591562 0.408709 0.011969 0.014325 +6 0.753740 0.407344 0.010772 0.017963 +6 0.356074 0.407344 0.010174 0.018872 +6 0.153501 0.406889 0.009575 0.017963 +6 0.550868 0.406889 0.009575 0.018872 +10 0.237882 0.354707 0.005984 0.002274 +8 0.550569 0.349818 0.008977 0.013870 +10 0.595153 0.344930 0.007181 0.004548 +10 0.380910 0.335380 0.009575 0.002729 +8 0.718432 0.278877 0.011969 0.006594 +8 0.881508 0.278422 0.011370 0.006594 +7 0.846200 0.280696 0.010174 0.014779 +6 0.858169 0.280014 0.008977 0.017963 +6 0.669659 0.279786 0.010174 0.018417 +6 0.540694 0.279104 0.009575 0.018872 +6 0.424297 0.278877 0.010174 0.018417 +8 0.880910 0.232265 0.011370 0.007049 +8 0.459306 0.232492 0.011969 0.009322 +8 0.845302 0.231583 0.010772 0.008413 +7 0.576002 0.234311 0.010772 0.012960 +6 0.858468 0.233856 0.009575 0.017508 +10 0.726810 0.218963 0.005984 0.001819 +9 0.678037 0.230559 0.010174 0.026830 +9 0.165171 0.225102 0.004189 0.039109 +10 0.723220 0.206685 0.013166 0.004548 +10 0.682525 0.203388 0.008378 0.002046 +10 0.682825 0.201000 0.008977 0.002274 +10 0.693597 0.188267 0.007780 0.003183 +9 0.645422 0.189063 0.008378 0.025693 +10 0.741771 0.188267 0.007181 0.005002 +10 0.213944 0.183265 0.005984 0.004093 +9 0.235189 0.188836 0.007780 0.031151 +7 0.845302 0.182469 0.010772 0.012960 +10 0.237283 0.178263 0.008378 0.003183 +10 0.212747 0.178035 0.007181 0.002729 +9 0.154099 0.184970 0.009575 0.027967 +6 0.856673 0.181332 0.009575 0.017963 +10 0.236984 0.140291 0.006583 0.003638 +8 0.880910 0.128581 0.011370 0.007049 +10 0.774087 0.125057 0.023938 0.005002 +6 0.856373 0.129491 0.008977 0.017963 +10 0.410533 0.088222 0.008977 0.003183 +10 0.300718 0.088222 0.005984 0.003183 +7 0.272591 0.084698 0.011969 0.025693 +9 0.686116 0.080946 0.011969 0.018645 +9 0.520946 0.081514 0.010772 0.039336 +10 0.383303 0.063893 0.005984 0.004548 +10 0.867145 0.062528 0.007780 0.002729 +8 0.094255 0.033538 0.004788 0.012506 +11 0.852334 0.954866 0.009276 0.006594 +11 0.150958 0.934970 0.009276 0.006821 +11 0.167864 0.912233 0.008378 0.006821 +12 0.176242 0.889154 0.009575 0.007049 +12 0.149761 0.907799 0.008079 0.006139 +17 0.708707 0.905980 0.010473 0.007049 +11 0.853680 0.900296 0.009575 0.006594 +12 0.619838 0.900068 0.009874 0.006139 +12 0.644674 0.897567 0.009276 0.005684 +12 0.506433 0.897567 0.008079 0.005684 +12 0.446290 0.897226 0.008677 0.005912 +17 0.411131 0.897112 0.010174 0.006594 +12 0.668462 0.895066 0.009575 0.006139 +12 0.470527 0.894839 0.009276 0.006594 +12 0.388390 0.894384 0.010174 0.006594 +12 0.531119 0.892337 0.008378 0.006139 +12 0.362059 0.892110 0.008977 0.005684 +13 0.264961 0.889268 0.009874 0.006367 +12 0.239527 0.889268 0.009276 0.006367 +13 0.220527 0.889268 0.009575 0.006367 +12 0.194644 0.889382 0.009276 0.006594 +13 0.311640 0.889154 0.009874 0.007049 +12 0.283064 0.889040 0.010174 0.006821 +12 0.573758 0.887108 0.007481 0.006594 +12 0.549222 0.884720 0.009874 0.006367 +12 0.594405 0.884607 0.010473 0.007049 +17 0.709455 0.852319 0.009575 0.007049 +11 0.854129 0.847090 0.010473 0.005684 +18 0.619838 0.846635 0.009874 0.006594 +12 0.444644 0.844930 0.004189 0.004093 +12 0.645572 0.844134 0.009874 0.006139 +12 0.507331 0.843452 0.008677 0.004775 +12 0.669210 0.841633 0.009276 0.006594 +17 0.152753 0.840609 0.010473 0.007276 +12 0.531119 0.838904 0.009575 0.006594 +11 0.240126 0.835721 0.010473 0.006594 +13 0.575554 0.833674 0.009874 0.006139 +12 0.593507 0.831173 0.009874 0.006594 +12 0.550419 0.830832 0.009874 0.006821 +11 0.283214 0.827763 0.009276 0.006139 +17 0.362807 0.827422 0.010473 0.007276 +12 0.168761 0.803206 0.006583 0.005230 +12 0.176691 0.791269 0.006882 0.004093 +12 0.176691 0.785584 0.008079 0.005457 +12 0.213944 0.801614 0.006583 0.003865 +12 0.222322 0.785471 0.009575 0.005230 +12 0.222322 0.790700 0.009575 0.005230 +12 0.644973 0.801842 0.008677 0.006139 +12 0.621634 0.798886 0.009874 0.005684 +18 0.609515 0.801160 0.008378 0.005230 +18 0.609515 0.795930 0.008378 0.005230 +11 0.854877 0.794452 0.009575 0.007731 +11 0.854578 0.786153 0.008977 0.005684 +12 0.574656 0.791382 0.009276 0.006139 +12 0.530969 0.791155 0.008079 0.005684 +12 0.470527 0.790928 0.009276 0.007049 +12 0.389437 0.790814 0.008677 0.006821 +12 0.594405 0.788199 0.010473 0.006139 +12 0.508229 0.788199 0.009276 0.006139 +12 0.549970 0.788085 0.010174 0.006821 +17 0.447935 0.788085 0.009575 0.006821 +17 0.411131 0.788427 0.010174 0.007503 +12 0.669808 0.786153 0.009276 0.005684 +17 0.709904 0.791041 0.010473 0.005457 +17 0.709904 0.796498 0.010473 0.005457 +17 0.709904 0.785584 0.010473 0.005457 +12 0.284411 0.785584 0.008079 0.005457 +12 0.284411 0.791041 0.008079 0.005457 +12 0.195542 0.785471 0.008677 0.005230 +12 0.195542 0.790700 0.008677 0.005230 +13 0.265859 0.785357 0.009276 0.005457 +13 0.265859 0.790814 0.009276 0.005457 +12 0.312837 0.785130 0.008677 0.005457 +12 0.312837 0.790587 0.008677 0.005457 +12 0.241173 0.785243 0.008977 0.005684 +12 0.241173 0.790928 0.008977 0.005684 +12 0.152005 0.785130 0.008977 0.005457 +12 0.152005 0.790587 0.008977 0.005457 +12 0.363106 0.782515 0.009874 0.005684 +12 0.363106 0.788199 0.009874 0.005684 +12 0.620586 0.748863 0.009575 0.006594 +12 0.645123 0.746135 0.008977 0.006594 +12 0.594105 0.745794 0.009874 0.006821 +12 0.669958 0.743520 0.009575 0.005912 +12 0.575254 0.743179 0.009276 0.006139 +12 0.755386 0.741246 0.009276 0.005912 +13 0.736236 0.741132 0.009276 0.006594 +12 0.708707 0.740905 0.009276 0.006139 +12 0.531718 0.740678 0.008977 0.005684 +12 0.507481 0.740678 0.008977 0.005684 +12 0.471125 0.740564 0.010473 0.006367 +11 0.446888 0.740450 0.009874 0.006139 +18 0.453471 0.724534 0.004488 0.003411 +17 0.410832 0.740450 0.009575 0.006139 +12 0.390036 0.740223 0.009874 0.006594 +18 0.384949 0.723056 0.008079 0.002274 +11 0.363106 0.740223 0.009874 0.006594 +11 0.371484 0.723624 0.006284 0.003411 +12 0.312388 0.740109 0.009575 0.006367 +18 0.284111 0.739995 0.009874 0.006139 +12 0.241622 0.739995 0.009874 0.006139 +13 0.221275 0.739995 0.009874 0.006139 +12 0.196140 0.739995 0.009874 0.006139 +13 0.176990 0.739995 0.008677 0.006139 +11 0.151855 0.739995 0.009874 0.006139 +11 0.158438 0.724307 0.005685 0.003865 +12 0.550120 0.737835 0.009276 0.006367 +12 0.854129 0.736016 0.008079 0.006367 +12 0.853980 0.725443 0.009575 0.006139 +13 0.832585 0.735903 0.008079 0.006139 +13 0.832735 0.722942 0.009575 0.006594 +12 0.802962 0.736130 0.009874 0.006594 +13 0.784261 0.736130 0.009575 0.006594 +13 0.782166 0.724193 0.004189 0.003638 +18 0.266008 0.729764 0.007181 0.003865 +18 0.265859 0.739995 0.009276 0.006139 +18 0.124925 0.727262 0.007481 0.005230 +18 0.124327 0.722260 0.006284 0.004320 +11 0.727409 0.696112 0.007181 0.003865 +12 0.736685 0.682469 0.009575 0.006594 +18 0.170108 0.691110 0.005087 0.002956 +11 0.213645 0.686562 0.005386 0.002956 +12 0.222023 0.669054 0.009575 0.006139 +12 0.709306 0.687926 0.009874 0.006594 +11 0.822711 0.685312 0.008677 0.005912 +12 0.832286 0.663824 0.009874 0.007503 +12 0.644524 0.685312 0.007780 0.005912 +12 0.755087 0.682810 0.009874 0.006367 +12 0.619988 0.682697 0.009575 0.006139 +13 0.912029 0.682583 0.010174 0.006821 +12 0.669659 0.682697 0.010174 0.007049 +13 0.328097 0.682015 0.009276 0.006594 +11 0.258378 0.683038 0.007481 0.008640 +11 0.267056 0.664279 0.008677 0.007503 +12 0.152154 0.682015 0.009276 0.006594 +12 0.594405 0.679854 0.008079 0.005912 +12 0.550419 0.679854 0.009874 0.005912 +12 0.361909 0.679513 0.008677 0.006139 +13 0.895123 0.677240 0.009874 0.006139 +12 0.802513 0.677467 0.009575 0.006594 +13 0.784411 0.677467 0.009874 0.006594 +12 0.575554 0.677467 0.009874 0.006594 +12 0.531269 0.677467 0.009874 0.006594 +13 0.314183 0.677012 0.010174 0.006594 +12 0.178785 0.677012 0.009874 0.006594 +12 0.196140 0.676558 0.009874 0.006594 +12 0.506134 0.674852 0.007481 0.005457 +12 0.447187 0.674625 0.008079 0.005912 +17 0.411281 0.674170 0.010473 0.007276 +12 0.471724 0.672351 0.009276 0.006367 +12 0.390634 0.672010 0.009874 0.006594 +13 0.299970 0.669054 0.009276 0.006139 +12 0.241921 0.668827 0.009276 0.005684 +13 0.869988 0.667235 0.008677 0.006139 +13 0.284111 0.664507 0.008677 0.007049 +13 0.853980 0.664279 0.008977 0.007503 +12 0.301616 0.624716 0.008977 0.005684 +12 0.495063 0.617440 0.009276 0.005684 +11 0.355775 0.617212 0.009575 0.006139 +12 0.704817 0.615052 0.009874 0.006367 +11 0.551017 0.614711 0.009874 0.006594 +12 0.895422 0.606980 0.006882 0.005684 +11 0.754788 0.607208 0.008079 0.006139 +12 0.551017 0.586176 0.008677 0.007731 +18 0.701376 0.583106 0.007181 0.002501 +11 0.709605 0.580491 0.006284 0.005457 +12 0.717983 0.567417 0.009874 0.006594 +11 0.651556 0.579013 0.007481 0.004320 +12 0.659785 0.567417 0.009575 0.006594 +12 0.755087 0.577649 0.009874 0.007049 +18 0.152304 0.576626 0.009575 0.006821 +12 0.355775 0.569691 0.009575 0.005684 +11 0.456164 0.568099 0.006882 0.006139 +12 0.464542 0.553320 0.009276 0.006594 +12 0.673250 0.567190 0.008977 0.006139 +12 0.633004 0.567417 0.009874 0.006594 +13 0.616846 0.567417 0.009874 0.006594 +12 0.592609 0.567190 0.009276 0.006139 +13 0.575853 0.567417 0.009276 0.006594 +13 0.817923 0.559686 0.007481 0.005684 +12 0.794883 0.559686 0.009276 0.005684 +12 0.895422 0.559345 0.008079 0.005912 +13 0.777229 0.559459 0.008677 0.006139 +12 0.301765 0.559004 0.009276 0.005230 +12 0.273639 0.559345 0.008079 0.005912 +13 0.258229 0.559118 0.008378 0.005457 +12 0.234889 0.558890 0.008378 0.005457 +13 0.217385 0.558890 0.008079 0.005912 +12 0.192250 0.558777 0.009276 0.005684 +13 0.177289 0.558777 0.009276 0.005684 +12 0.876272 0.554457 0.009276 0.006139 +12 0.480700 0.553433 0.009276 0.006821 +12 0.495961 0.552865 0.008677 0.006594 +12 0.437014 0.552638 0.009276 0.006139 +13 0.419808 0.552410 0.008977 0.005684 +12 0.395422 0.552638 0.008677 0.006139 +12 0.379862 0.552751 0.008677 0.006367 +12 0.857271 0.551728 0.008977 0.006139 +11 0.836774 0.547635 0.009276 0.006139 +13 0.896020 0.519213 0.009276 0.006594 +11 0.673698 0.517167 0.008677 0.006139 +13 0.496559 0.517167 0.009874 0.006139 +13 0.910981 0.516712 0.009276 0.006139 +11 0.755236 0.514438 0.009575 0.006139 +13 0.511221 0.514438 0.009276 0.006139 +17 0.552513 0.511710 0.010473 0.007049 +12 0.080940 0.511369 0.004488 0.006821 +11 0.634800 0.509209 0.009874 0.006594 +11 0.234440 0.508981 0.009874 0.006139 +12 0.877169 0.508754 0.009874 0.006594 +12 0.480551 0.506935 0.008378 0.005684 +13 0.856224 0.506480 0.008677 0.005684 +12 0.453022 0.501705 0.008977 0.006139 +11 0.276032 0.501364 0.009276 0.005457 +11 0.836625 0.501251 0.009575 0.006139 +12 0.820168 0.501137 0.009575 0.005912 +17 0.153501 0.501023 0.009575 0.006594 +12 0.437014 0.498977 0.008079 0.006139 +17 0.357570 0.499432 0.010772 0.007049 +17 0.610263 0.477831 0.005087 0.002956 +13 0.618492 0.466462 0.008977 0.006594 +13 0.617744 0.453729 0.009276 0.005684 +12 0.652454 0.478854 0.006284 0.007731 +11 0.660533 0.466348 0.008677 0.006367 +12 0.659934 0.453502 0.008677 0.006139 +11 0.209455 0.472146 0.006583 0.006139 +12 0.218282 0.458163 0.008677 0.006367 +18 0.347546 0.468849 0.006284 0.005002 +12 0.754788 0.468736 0.008079 0.005684 +12 0.754189 0.458276 0.009276 0.006594 +12 0.504039 0.467713 0.005685 0.003638 +12 0.511520 0.451228 0.008677 0.005230 +12 0.511520 0.456457 0.008677 0.005230 +12 0.593357 0.466689 0.009575 0.006139 +12 0.592908 0.453843 0.009874 0.006367 +13 0.576750 0.466462 0.008677 0.005684 +13 0.576152 0.453615 0.009874 0.006367 +12 0.705117 0.466348 0.009276 0.006367 +12 0.703920 0.453502 0.008079 0.005230 +12 0.634949 0.466462 0.008977 0.006594 +12 0.633902 0.453502 0.008079 0.005230 +12 0.357870 0.466007 0.008378 0.005684 +12 0.235937 0.463620 0.009276 0.005457 +12 0.795931 0.463279 0.006583 0.005684 +12 0.795482 0.450546 0.009276 0.006594 +13 0.778127 0.463279 0.008079 0.005684 +13 0.777828 0.450546 0.009874 0.006594 +13 0.258977 0.463279 0.008677 0.005684 +12 0.896020 0.462483 0.008079 0.006821 +12 0.895422 0.449977 0.009276 0.006367 +12 0.674596 0.461232 0.009276 0.006139 +12 0.674746 0.448499 0.009575 0.006139 +12 0.552065 0.461005 0.009575 0.005684 +12 0.552065 0.466689 0.009575 0.005684 +13 0.819420 0.458276 0.006882 0.005684 +13 0.819719 0.445089 0.008677 0.006594 +13 0.317923 0.458390 0.009276 0.005912 +12 0.193597 0.458276 0.008378 0.005684 +12 0.877169 0.457935 0.008677 0.005912 +12 0.876571 0.445543 0.008677 0.006594 +12 0.275583 0.458049 0.009575 0.006139 +13 0.177887 0.458049 0.009276 0.006139 +12 0.154249 0.458049 0.009874 0.006139 +11 0.836625 0.455548 0.009575 0.006594 +12 0.836026 0.442815 0.008977 0.006594 +12 0.481747 0.451000 0.008977 0.005684 +12 0.481747 0.456685 0.008977 0.005684 +13 0.465141 0.450887 0.009276 0.005457 +13 0.465141 0.456344 0.009276 0.005457 +12 0.439408 0.450659 0.009276 0.005912 +12 0.439408 0.456571 0.009276 0.005912 +13 0.421005 0.450546 0.009575 0.005684 +13 0.421005 0.456230 0.009575 0.005684 +12 0.397217 0.450546 0.008677 0.005684 +12 0.397217 0.456230 0.008677 0.005684 +13 0.380910 0.450432 0.009575 0.005457 +13 0.380910 0.455889 0.009575 0.005457 +17 0.081089 0.407799 0.004189 0.003865 +17 0.235637 0.403706 0.009874 0.006594 +17 0.236385 0.385516 0.010174 0.007503 +12 0.218133 0.403479 0.008378 0.006139 +12 0.217834 0.385289 0.008977 0.007049 +12 0.419659 0.401432 0.008079 0.005684 +12 0.419659 0.383129 0.009276 0.006367 +17 0.438809 0.401205 0.009276 0.006139 +17 0.438959 0.383583 0.010772 0.007276 +17 0.634500 0.399159 0.008079 0.006594 +17 0.635248 0.381082 0.009575 0.006821 +12 0.617295 0.398818 0.007780 0.005912 +12 0.617744 0.380741 0.009276 0.007049 +12 0.820018 0.395407 0.009276 0.006367 +12 0.819270 0.378467 0.008378 0.006139 +12 0.837074 0.378467 0.009874 0.007049 +17 0.836475 0.395293 0.008677 0.006139 +18 0.208408 0.354479 0.005685 0.003638 +11 0.811640 0.350728 0.005685 0.003411 +12 0.819420 0.332424 0.009276 0.005912 +13 0.672501 0.351182 0.003890 0.005230 +12 0.673998 0.329923 0.009276 0.006367 +13 0.893926 0.349932 0.009874 0.006367 +13 0.718881 0.347772 0.009276 0.005684 +12 0.550868 0.347544 0.008378 0.005230 +12 0.550868 0.352774 0.008378 0.005230 +12 0.355775 0.347885 0.008977 0.005912 +13 0.909186 0.347203 0.009276 0.006367 +12 0.754189 0.345271 0.010473 0.006139 +12 0.155446 0.344930 0.009874 0.005457 +12 0.155446 0.350387 0.009874 0.005457 +13 0.317026 0.345043 0.009874 0.006594 +13 0.704369 0.343111 0.008977 0.005457 +12 0.634500 0.343224 0.008079 0.005684 +12 0.634201 0.335493 0.009276 0.005684 +13 0.575853 0.343224 0.008677 0.005684 +12 0.593806 0.342542 0.009276 0.005230 +12 0.593806 0.347772 0.009276 0.005230 +12 0.235937 0.340268 0.009276 0.005230 +12 0.235637 0.332538 0.009874 0.006139 +12 0.875075 0.340041 0.009276 0.005684 +13 0.776930 0.340268 0.009276 0.006139 +13 0.302364 0.340041 0.009276 0.005684 +12 0.218731 0.340155 0.008378 0.005912 +12 0.218582 0.333220 0.009276 0.005684 +12 0.193447 0.339927 0.009276 0.005457 +12 0.193447 0.345384 0.009276 0.005457 +13 0.177439 0.339927 0.008378 0.005457 +13 0.177439 0.345384 0.008378 0.005457 +12 0.795183 0.339814 0.009276 0.006139 +12 0.395721 0.337767 0.008079 0.005684 +13 0.380461 0.337881 0.009874 0.005912 +12 0.855326 0.337540 0.009276 0.006139 +13 0.689258 0.335266 0.009874 0.006139 +13 0.618043 0.335380 0.008677 0.006367 +12 0.836176 0.332538 0.009276 0.006139 +13 0.288749 0.332651 0.009575 0.006367 +13 0.420856 0.330719 0.009276 0.006139 +13 0.658737 0.330264 0.008677 0.006139 +17 0.439108 0.330264 0.011071 0.007049 +13 0.275434 0.327422 0.009276 0.006821 +13 0.261071 0.326171 0.009276 0.006139 +11 0.291143 0.294111 0.008977 0.006594 +17 0.153950 0.286380 0.008079 0.005684 +11 0.621035 0.286153 0.008677 0.006139 +11 0.485637 0.286153 0.008977 0.006139 +11 0.369838 0.286153 0.008977 0.006139 +12 0.828995 0.285698 0.009276 0.006139 +12 0.083034 0.255457 0.005087 0.004775 +11 0.187463 0.242497 0.010473 0.005230 +12 0.197636 0.217713 0.009276 0.006594 +12 0.367893 0.240109 0.007481 0.005912 +11 0.827199 0.239882 0.009276 0.006367 +12 0.764811 0.239882 0.008977 0.006367 +12 0.717086 0.239995 0.009276 0.006594 +12 0.670108 0.239995 0.009874 0.006594 +12 0.622531 0.239882 0.009276 0.006367 +13 0.486086 0.239995 0.009276 0.006594 +12 0.250748 0.237722 0.004788 0.003865 +12 0.291592 0.237267 0.008079 0.005684 +13 0.498205 0.234766 0.009575 0.006139 +13 0.387941 0.234766 0.009276 0.006139 +12 0.262268 0.234652 0.009276 0.005912 +12 0.790096 0.232492 0.009276 0.006139 +12 0.741622 0.232265 0.008677 0.005684 +12 0.694195 0.232492 0.009575 0.006139 +12 0.646469 0.232265 0.009276 0.005684 +13 0.510772 0.232265 0.007780 0.005684 +13 0.399312 0.231696 0.009276 0.004548 +12 0.324806 0.232492 0.009874 0.006139 +13 0.523190 0.229764 0.009276 0.006139 +13 0.412029 0.229764 0.008977 0.006139 +12 0.236535 0.229764 0.009276 0.006139 +12 0.153202 0.229764 0.009575 0.006139 +12 0.426691 0.227262 0.007780 0.005684 +12 0.542190 0.227035 0.007780 0.006139 +12 0.212896 0.222260 0.008677 0.005684 +12 0.170108 0.210437 0.009276 0.006594 +12 0.670407 0.193611 0.009276 0.005684 +11 0.487582 0.193611 0.009874 0.005684 +11 0.487283 0.185880 0.009276 0.005684 +11 0.432226 0.192246 0.005685 0.002956 +12 0.828396 0.193383 0.008677 0.006139 +12 0.827648 0.185425 0.008977 0.005684 +12 0.767056 0.193383 0.009874 0.006139 +12 0.717534 0.193383 0.009575 0.006139 +12 0.717086 0.185880 0.009276 0.005684 +12 0.622531 0.193383 0.009276 0.006139 +11 0.622531 0.185653 0.009276 0.006139 +12 0.261670 0.193156 0.009276 0.005684 +12 0.261670 0.185425 0.009276 0.005684 +11 0.540245 0.188267 0.008677 0.005912 +11 0.547726 0.190769 0.008677 0.005912 +18 0.406643 0.187813 0.005984 0.005002 +11 0.291891 0.187813 0.008677 0.005912 +11 0.299072 0.190769 0.008677 0.005912 +12 0.695093 0.185653 0.008378 0.005230 +12 0.695093 0.190882 0.008378 0.005230 +12 0.371185 0.186107 0.009276 0.006139 +18 0.371484 0.193383 0.009874 0.006139 +12 0.273040 0.185425 0.008079 0.004775 +18 0.273040 0.190200 0.008079 0.004775 +12 0.790694 0.185198 0.009276 0.005230 +12 0.790694 0.190427 0.009276 0.005230 +11 0.742220 0.185425 0.009276 0.005684 +11 0.742220 0.191110 0.009276 0.005684 +11 0.647367 0.184970 0.008677 0.005684 +11 0.647367 0.190655 0.008677 0.005684 +12 0.155446 0.181332 0.006284 0.003865 +12 0.237582 0.180309 0.007780 0.005457 +12 0.237582 0.185766 0.007780 0.005457 +12 0.212896 0.180196 0.008677 0.005230 +12 0.212896 0.185425 0.008677 0.005230 +17 0.153651 0.175421 0.012268 0.005684 +11 0.372083 0.150182 0.007481 0.006139 +11 0.371783 0.144156 0.009276 0.005457 +18 0.279025 0.144156 0.005685 0.003183 +12 0.766158 0.144043 0.009276 0.005684 +12 0.261520 0.144043 0.008977 0.005684 +12 0.826900 0.143588 0.008677 0.005684 +12 0.718133 0.143588 0.008977 0.005684 +12 0.671305 0.143929 0.009874 0.006367 +12 0.623130 0.143588 0.008079 0.005684 +11 0.486086 0.143588 0.008079 0.005684 +11 0.486086 0.149272 0.008079 0.005684 +12 0.789946 0.140859 0.009575 0.005684 +12 0.741921 0.141087 0.009874 0.006139 +12 0.693896 0.140859 0.009575 0.005684 +12 0.645272 0.141087 0.009276 0.006139 +11 0.542938 0.140632 0.009276 0.005230 +11 0.542938 0.145862 0.009276 0.005230 +11 0.426840 0.140973 0.009276 0.005912 +11 0.426840 0.146885 0.009276 0.005912 +11 0.292190 0.140973 0.009276 0.005912 +11 0.292190 0.146885 0.009276 0.005912 +12 0.236834 0.138586 0.008677 0.005684 +12 0.211849 0.138813 0.008977 0.006139 +11 0.153651 0.131537 0.009874 0.006139 +18 0.842460 0.128126 0.005087 0.004775 +12 0.826750 0.097203 0.009575 0.007503 +13 0.716188 0.097203 0.008677 0.007503 +13 0.621634 0.096976 0.009874 0.007049 +12 0.906194 0.096521 0.009276 0.007049 +12 0.880760 0.096521 0.008677 0.007049 +12 0.856972 0.096635 0.008977 0.007276 +13 0.765859 0.096294 0.009874 0.006594 +12 0.669958 0.096749 0.009575 0.007503 +13 0.542340 0.095384 0.009276 0.006594 +13 0.272890 0.092428 0.008977 0.006139 +13 0.560293 0.091746 0.009276 0.006594 +13 0.521544 0.091860 0.008378 0.006821 +13 0.290395 0.089245 0.009276 0.006139 +13 0.575105 0.088904 0.010174 0.006367 +13 0.425344 0.088790 0.009874 0.006139 +12 0.221574 0.087426 0.009276 0.006139 +12 0.220676 0.072306 0.005087 0.004548 +12 0.235937 0.086858 0.009276 0.005457 +18 0.301466 0.086517 0.008677 0.005230 +13 0.633303 0.086289 0.009276 0.005684 +13 0.777678 0.085834 0.009575 0.005684 +13 0.729803 0.085834 0.008378 0.005684 +18 0.437911 0.085948 0.007481 0.005912 +13 0.692250 0.083674 0.008677 0.005912 +13 0.679982 0.086289 0.009276 0.006594 +11 0.687612 0.070032 0.006583 0.004093 +13 0.645871 0.083788 0.009276 0.006139 +13 0.790245 0.083333 0.008378 0.006139 +13 0.596050 0.083561 0.008977 0.006594 +13 0.741622 0.083106 0.009276 0.006594 +13 0.459755 0.081287 0.009276 0.005684 +13 0.323758 0.081287 0.008378 0.005684 +17 0.312837 0.081060 0.007481 0.008868 +12 0.197038 0.079468 0.010473 0.006594 +13 0.181628 0.079241 0.009575 0.006139 +12 0.485039 0.079013 0.009575 0.006594 +12 0.368642 0.079013 0.010174 0.006594 +13 0.704817 0.078331 0.008677 0.006139 +12 0.920557 0.078104 0.010473 0.006594 +12 0.896320 0.077990 0.009874 0.006367 +12 0.870886 0.077876 0.009276 0.006139 +12 0.844105 0.078104 0.008977 0.006594 +13 0.802214 0.077763 0.009575 0.005912 +13 0.753740 0.078104 0.009575 0.006594 +13 0.657989 0.078217 0.009575 0.006821 +13 0.472920 0.076285 0.009276 0.005684 +13 0.344255 0.076171 0.008079 0.005457 +12 0.154698 0.074238 0.009575 0.006139 +13 0.412029 0.070373 0.004788 0.003865 +13 0.411879 0.086176 0.009276 0.005457 +11 0.095003 0.035016 0.003890 0.007731 +3 0.281718 0.189745 0.007481 0.018872 +3 0.416966 0.190200 0.007481 0.018872 +0 0.101287 0.786835 0.022442 0.024329 +2 0.099791 0.565371 0.018253 0.020691 +2 0.098294 0.937813 0.018851 0.017963 +2 0.099192 0.513302 0.019449 0.021146 +5 0.133004 0.516940 0.023639 0.031151 +0 0.102783 0.182242 0.021843 0.023874 +3 0.379563 0.671783 0.006882 0.020691 +4 0.377469 0.234311 0.008677 0.014325 +2 0.102184 0.280014 0.018253 0.019327 +4 0.413674 0.144952 0.009276 0.012960 +4 0.659037 0.742269 0.009276 0.014325 +1 0.101586 0.410073 0.021843 0.033879 +4 0.126122 0.452592 0.009874 0.016144 +4 0.102783 0.075148 0.021843 0.032515 +4 0.261370 0.093338 0.008677 0.013415 +4 0.127020 0.333902 0.009276 0.014325 +1 0.100090 0.838677 0.021245 0.036153 +2 0.103082 0.233402 0.018851 0.018872 +4 0.126721 0.397340 0.008677 0.013870 +4 0.564782 0.833447 0.009874 0.016598 +1 0.100688 0.732719 0.021245 0.039791 +4 0.124028 0.888017 0.009276 0.013870 +4 0.563285 0.885744 0.009276 0.014779 +4 0.250898 0.142906 0.009276 0.014325 +4 0.521394 0.740223 0.009276 0.013870 +4 0.127319 0.229081 0.009874 0.014779 +4 0.840365 0.784334 0.009276 0.015689 +4 0.608767 0.748636 0.009276 0.016144 +2 0.474117 0.838222 0.012867 0.015234 +4 0.125524 0.607890 0.008677 0.014779 +4 0.883752 0.676103 0.009874 0.014779 +1 0.100389 0.677467 0.021843 0.032970 +3 0.565380 0.742497 0.007481 0.014779 +3 0.140186 0.905070 0.006882 0.015234 +4 0.126122 0.560823 0.009874 0.017053 +4 0.127917 0.121078 0.008677 0.015234 +4 0.127618 0.276148 0.009276 0.017053 +4 0.124327 0.831628 0.008677 0.012960 +4 0.279623 0.237267 0.009276 0.015689 +4 0.126721 0.174511 0.009874 0.013870 +2 0.098893 0.613120 0.017654 0.019782 +2 0.098893 0.892565 0.018851 0.019327 +4 0.124626 0.670873 0.009276 0.014325 +3 0.633303 0.895748 0.006882 0.016598 +4 0.530820 0.093679 0.008378 0.012733 +4 0.512567 0.090496 0.008977 0.014552 +4 0.122681 0.934061 0.008378 0.014552 +3 0.139737 0.932697 0.006583 0.017281 +4 0.144823 0.073670 0.008378 0.014552 +4 0.128067 0.068213 0.008378 0.013643 +4 0.091113 0.456230 0.009276 0.014779 +5 0.099042 0.456230 0.008977 0.014779 +4 0.104877 0.332538 0.009276 0.014779 +4 0.097397 0.346180 0.009276 0.014779 +4 0.103381 0.136312 0.009276 0.012506 +5 0.108618 0.136312 0.008977 0.012506 +4 0.106074 0.118804 0.009276 0.014779 +4 0.097397 0.133356 0.009276 0.014779 +4 0.361011 0.143474 0.009276 0.012733 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_40.jpg b/data_dataset/dvo/debug/debug_40.jpg new file mode 100644 index 0000000..6fc4403 Binary files /dev/null and b/data_dataset/dvo/debug/debug_40.jpg differ diff --git a/data_dataset/dvo/debug/debug_40.txt b/data_dataset/dvo/debug/debug_40.txt new file mode 100644 index 0000000..ef72391 --- /dev/null +++ b/data_dataset/dvo/debug/debug_40.txt @@ -0,0 +1,408 @@ +8 0.772591 0.945543 0.012567 0.006594 +8 0.483244 0.945089 0.011969 0.006594 +8 0.198085 0.945089 0.012567 0.006594 +8 0.678037 0.944861 0.012567 0.007049 +8 0.578396 0.944861 0.011969 0.007049 +8 0.385398 0.944634 0.012567 0.006594 +8 0.292938 0.944861 0.011969 0.007049 +7 0.687911 0.819577 0.010772 0.012960 +7 0.670257 0.819350 0.012567 0.013415 +7 0.606523 0.819122 0.011969 0.012960 +7 0.549970 0.819122 0.011370 0.012960 +7 0.495512 0.819122 0.011370 0.012960 +7 0.454518 0.818668 0.011969 0.012960 +10 0.383603 0.814916 0.011370 0.005002 +8 0.290245 0.814575 0.012567 0.006594 +8 0.196290 0.814575 0.012567 0.006594 +6 0.782466 0.817758 0.009575 0.018417 +10 0.744764 0.808777 0.005984 0.002729 +7 0.879713 0.772738 0.011370 0.013870 +7 0.840515 0.772510 0.011969 0.012506 +7 0.281867 0.772510 0.011370 0.013415 +7 0.167265 0.772738 0.011969 0.013870 +8 0.481448 0.769100 0.011969 0.006594 +7 0.301017 0.772738 0.010174 0.013870 +8 0.769599 0.768872 0.012567 0.007049 +8 0.675045 0.768872 0.012567 0.007049 +8 0.577798 0.769100 0.011969 0.007503 +7 0.224417 0.772055 0.011370 0.013415 +6 0.396768 0.770464 0.008977 0.018417 +8 0.360563 0.765007 0.009575 0.008413 +10 0.771394 0.704866 0.012567 0.005002 +10 0.675643 0.704866 0.012567 0.005002 +10 0.579294 0.704866 0.012567 0.005002 +10 0.479354 0.704866 0.012567 0.005002 +10 0.385996 0.704866 0.012567 0.005002 +8 0.195093 0.704980 0.011370 0.006594 +8 0.288151 0.704525 0.011969 0.006594 +8 0.769898 0.658595 0.010772 0.006594 +8 0.675943 0.658822 0.011969 0.007049 +10 0.477858 0.612551 0.011969 0.005002 +10 0.287253 0.612551 0.012567 0.005002 +8 0.193297 0.612665 0.012567 0.006594 +8 0.769898 0.612210 0.011969 0.006594 +8 0.674446 0.612210 0.011370 0.006594 +8 0.577499 0.612210 0.012567 0.006594 +8 0.384500 0.612437 0.011969 0.007049 +10 0.769898 0.573897 0.011969 0.005002 +8 0.676242 0.574011 0.012567 0.006594 +8 0.578396 0.573784 0.011969 0.007049 +8 0.479054 0.574011 0.011969 0.006594 +10 0.385099 0.573897 0.011969 0.005002 +10 0.287253 0.573897 0.011370 0.005002 +8 0.870736 0.573784 0.011370 0.007049 +8 0.194195 0.573784 0.011969 0.007049 +7 0.839617 0.538085 0.010174 0.012960 +7 0.785458 0.538313 0.011969 0.012506 +7 0.687911 0.538313 0.010772 0.013415 +7 0.591263 0.538540 0.011370 0.012960 +7 0.549072 0.538540 0.010772 0.012960 +7 0.494614 0.538540 0.010772 0.012960 +7 0.451825 0.537858 0.008977 0.002501 +7 0.378516 0.538313 0.010772 0.012506 +7 0.299222 0.540814 0.011370 0.007503 +7 0.204369 0.538540 0.010772 0.012960 +7 0.164871 0.538313 0.011969 0.012506 +7 0.881209 0.538313 0.011969 0.013415 +10 0.901556 0.528422 0.007181 0.002274 +10 0.358767 0.528422 0.008378 0.003183 +10 0.675344 0.477035 0.011969 0.005002 +10 0.771993 0.476580 0.012567 0.005002 +10 0.579593 0.476580 0.011969 0.005002 +10 0.482346 0.476580 0.011370 0.005002 +10 0.383004 0.476580 0.011370 0.005002 +10 0.869838 0.476126 0.011969 0.005002 +7 0.285757 0.477376 0.011969 0.008868 +8 0.195093 0.476467 0.011370 0.007049 +10 0.217534 0.432697 0.009575 0.001819 +7 0.648713 0.434402 0.011370 0.012960 +7 0.494614 0.434402 0.011969 0.012960 +7 0.706762 0.431446 0.011370 0.007958 +7 0.590066 0.433947 0.011370 0.012960 +7 0.398265 0.434175 0.011969 0.013415 +10 0.867744 0.384266 0.010174 0.005002 +8 0.770197 0.384152 0.011370 0.007049 +10 0.769599 0.346521 0.011370 0.005002 +10 0.675045 0.346521 0.012567 0.005002 +10 0.483842 0.346521 0.011969 0.005002 +8 0.579294 0.346407 0.012567 0.007049 +8 0.384201 0.346180 0.011370 0.006594 +8 0.285757 0.346180 0.011969 0.006594 +8 0.195990 0.346180 0.011969 0.006594 +8 0.870437 0.345953 0.011969 0.007049 +7 0.899162 0.303206 0.011969 0.010687 +7 0.839318 0.304798 0.011969 0.012960 +7 0.781867 0.304570 0.011969 0.013415 +10 0.382406 0.301501 0.011370 0.005002 +8 0.676242 0.301160 0.012567 0.006594 +8 0.579294 0.301160 0.012567 0.006594 +8 0.481448 0.301160 0.013166 0.006594 +8 0.284261 0.301160 0.010174 0.006594 +10 0.195691 0.301046 0.012567 0.005002 +8 0.574806 0.243179 0.011969 0.007049 +8 0.870736 0.242497 0.012567 0.006594 +8 0.771993 0.242497 0.012567 0.006594 +8 0.675643 0.242724 0.012567 0.007049 +8 0.483842 0.242724 0.011969 0.007049 +8 0.385697 0.242497 0.011969 0.006594 +8 0.288749 0.242497 0.011969 0.006594 +8 0.195392 0.242497 0.011969 0.006594 +10 0.877020 0.201455 0.015560 0.003183 +10 0.771694 0.113688 0.011969 0.005002 +9 0.869838 0.113574 0.011969 0.007049 +8 0.673848 0.113802 0.011370 0.007503 +8 0.573309 0.113347 0.011370 0.006594 +8 0.481149 0.113347 0.011370 0.007503 +8 0.386894 0.113347 0.011969 0.006594 +10 0.291143 0.112779 0.011969 0.005002 +8 0.195392 0.112437 0.011969 0.006594 +10 0.476960 0.088449 0.007780 0.004548 +10 0.759725 0.073442 0.014363 0.001819 +10 0.758528 0.070941 0.013166 0.002274 +7 0.862956 0.072647 0.011370 0.013415 +17 0.844554 0.951910 0.010473 0.006139 +11 0.785009 0.910982 0.008677 0.006139 +11 0.743118 0.910755 0.008677 0.005684 +17 0.650209 0.910869 0.010772 0.006821 +18 0.904997 0.904616 0.005685 0.003411 +18 0.747905 0.903593 0.005087 0.003183 +11 0.398713 0.905184 0.009276 0.006367 +17 0.362059 0.905298 0.010174 0.006594 +17 0.263465 0.904729 0.010473 0.007276 +17 0.843956 0.903479 0.010473 0.006594 +13 0.618492 0.900068 0.008977 0.006139 +11 0.552513 0.900182 0.009276 0.006367 +13 0.605027 0.897567 0.008977 0.005684 +17 0.455715 0.897112 0.010772 0.007503 +17 0.168911 0.895521 0.010473 0.007049 +17 0.455715 0.876990 0.010772 0.006367 +17 0.455566 0.865621 0.010473 0.006367 +17 0.551616 0.876876 0.011071 0.007049 +17 0.551017 0.865962 0.011071 0.007049 +11 0.744614 0.873010 0.011670 0.006594 +17 0.744614 0.879604 0.011670 0.006594 +17 0.841712 0.872328 0.010772 0.006139 +17 0.841712 0.878467 0.010772 0.006139 +17 0.649611 0.871533 0.010772 0.004548 +17 0.649611 0.876080 0.010772 0.004548 +17 0.649611 0.880628 0.010772 0.004548 +17 0.167864 0.862551 0.010772 0.005684 +17 0.167864 0.868236 0.010772 0.005684 +11 0.361161 0.860391 0.008378 0.005002 +11 0.361161 0.865393 0.008378 0.005002 +11 0.399312 0.860164 0.009276 0.005457 +11 0.399312 0.865621 0.009276 0.005457 +17 0.263465 0.859368 0.010473 0.005684 +17 0.263465 0.865052 0.010473 0.005684 +12 0.590515 0.811619 0.008677 0.005684 +13 0.475015 0.811619 0.009874 0.005684 +12 0.764662 0.809345 0.009874 0.006594 +12 0.650359 0.809345 0.009874 0.006594 +12 0.569719 0.809231 0.009575 0.006367 +12 0.513315 0.808890 0.009276 0.005684 +12 0.743716 0.806730 0.009276 0.005912 +12 0.706912 0.806844 0.009276 0.006139 +12 0.378665 0.767735 0.009874 0.006139 +12 0.262567 0.767394 0.009874 0.006367 +12 0.205416 0.767508 0.009276 0.006594 +12 0.360413 0.765348 0.009276 0.005912 +12 0.187163 0.765234 0.009874 0.005684 +12 0.321364 0.765007 0.008977 0.006139 +12 0.864004 0.759777 0.009874 0.005684 +12 0.903202 0.756821 0.008079 0.006139 +11 0.397666 0.682242 0.009575 0.007049 +17 0.550419 0.681787 0.011071 0.007958 +17 0.453770 0.681560 0.010473 0.007503 +11 0.204668 0.681219 0.008977 0.006821 +11 0.262567 0.680878 0.008677 0.007049 +11 0.165919 0.679059 0.009276 0.006139 +11 0.360712 0.678263 0.008677 0.006367 +11 0.301765 0.677808 0.009276 0.006367 +17 0.842460 0.643588 0.010473 0.007958 +17 0.842908 0.618008 0.010772 0.005912 +17 0.842908 0.623920 0.010772 0.005912 +12 0.569569 0.533879 0.009874 0.005912 +12 0.763465 0.533538 0.009874 0.006139 +12 0.667265 0.533652 0.009575 0.006367 +12 0.473818 0.533538 0.009874 0.006139 +12 0.417415 0.533538 0.009575 0.006139 +12 0.280670 0.533538 0.009575 0.006139 +12 0.862807 0.533083 0.009874 0.006139 +12 0.320616 0.533311 0.009874 0.006594 +12 0.744016 0.531378 0.010473 0.005457 +12 0.707510 0.531264 0.009276 0.005230 +12 0.649910 0.531378 0.008977 0.005457 +12 0.609366 0.531378 0.009276 0.005457 +12 0.400209 0.531264 0.009874 0.005230 +13 0.803262 0.531037 0.009874 0.005684 +12 0.512717 0.531264 0.008677 0.006139 +12 0.262717 0.531037 0.010174 0.005684 +12 0.224117 0.531151 0.008378 0.005912 +12 0.901107 0.530582 0.008677 0.005684 +12 0.359366 0.530809 0.008378 0.006139 +12 0.610263 0.453274 0.009874 0.006594 +12 0.454219 0.453274 0.008977 0.006594 +11 0.881059 0.452933 0.009276 0.006367 +11 0.782914 0.452819 0.009276 0.006594 +12 0.419060 0.452819 0.009276 0.006594 +12 0.378665 0.452819 0.008677 0.006594 +12 0.299372 0.452819 0.009276 0.006594 +12 0.282466 0.452819 0.008977 0.006594 +12 0.204817 0.452819 0.009276 0.006594 +12 0.188061 0.452819 0.009276 0.006594 +17 0.197786 0.434288 0.008378 0.003183 +12 0.668163 0.452478 0.008977 0.006367 +12 0.568671 0.452592 0.009276 0.007049 +12 0.512118 0.450773 0.009874 0.006139 +12 0.476212 0.450773 0.009874 0.006139 +12 0.320018 0.450773 0.009874 0.006139 +12 0.550120 0.450318 0.010473 0.006139 +12 0.359216 0.450318 0.009276 0.006139 +12 0.261670 0.450318 0.009276 0.006139 +12 0.225165 0.450318 0.009276 0.006139 +12 0.165919 0.450432 0.009276 0.006367 +11 0.841861 0.449409 0.009874 0.006139 +11 0.744165 0.449409 0.009575 0.006139 +12 0.688510 0.449636 0.009575 0.006594 +17 0.649761 0.396317 0.009874 0.004548 +17 0.649761 0.400864 0.009874 0.004548 +17 0.649761 0.387221 0.009874 0.004548 +17 0.649761 0.391769 0.009874 0.004548 +17 0.551466 0.387449 0.010772 0.005912 +17 0.551466 0.393361 0.010772 0.005912 +17 0.551466 0.399272 0.010772 0.005912 +17 0.454967 0.387335 0.010473 0.005684 +17 0.454967 0.393020 0.010473 0.005684 +17 0.454967 0.398704 0.010473 0.005684 +17 0.261520 0.387335 0.010174 0.005684 +17 0.261520 0.393020 0.010174 0.005684 +17 0.261520 0.398704 0.010174 0.005684 +17 0.359515 0.386312 0.011071 0.004548 +17 0.359515 0.395407 0.011071 0.004548 +17 0.359515 0.390859 0.011071 0.004548 +17 0.359515 0.399955 0.011071 0.004548 +17 0.164572 0.386994 0.011370 0.005912 +17 0.164572 0.392906 0.011370 0.005912 +17 0.164572 0.398818 0.011370 0.005912 +12 0.861610 0.299795 0.009874 0.006139 +12 0.803112 0.299795 0.009575 0.006139 +12 0.764213 0.300023 0.009575 0.006594 +12 0.743866 0.297294 0.008977 0.005684 +12 0.880760 0.297067 0.008677 0.006139 +12 0.862208 0.220441 0.009874 0.007503 +12 0.882256 0.219759 0.009276 0.007958 +12 0.901406 0.217258 0.009276 0.006594 +12 0.839467 0.217258 0.009874 0.006594 +17 0.745212 0.217485 0.010473 0.007049 +17 0.649761 0.217144 0.011071 0.007731 +17 0.551017 0.214529 0.009874 0.006594 +17 0.456463 0.214188 0.009874 0.006821 +11 0.362507 0.210664 0.011071 0.007049 +17 0.264063 0.208390 0.010473 0.006139 +17 0.166367 0.208390 0.010174 0.006139 +17 0.454967 0.170646 0.010473 0.007049 +17 0.454967 0.160414 0.009276 0.006594 +17 0.550718 0.170191 0.010473 0.007049 +11 0.550419 0.160186 0.009874 0.007049 +17 0.261969 0.164620 0.011071 0.005912 +17 0.261969 0.170532 0.011071 0.005912 +17 0.165470 0.164393 0.011370 0.006367 +17 0.165470 0.170759 0.011370 0.006367 +17 0.362208 0.162347 0.010473 0.005912 +17 0.362208 0.168258 0.010473 0.005912 +17 0.744913 0.161664 0.011071 0.006367 +17 0.744913 0.168031 0.011071 0.006367 +17 0.650509 0.161664 0.011370 0.006367 +17 0.650509 0.168031 0.011370 0.006367 +17 0.841562 0.154047 0.010473 0.005684 +17 0.841562 0.159732 0.010473 0.005684 +17 0.841562 0.165416 0.010473 0.005684 +12 0.764961 0.091519 0.009276 0.007049 +12 0.785308 0.091178 0.009276 0.007276 +12 0.690156 0.091064 0.009276 0.007049 +12 0.497008 0.090837 0.009575 0.006594 +12 0.475314 0.090723 0.009276 0.006367 +12 0.401107 0.090609 0.009276 0.006139 +12 0.589916 0.090723 0.008677 0.006821 +12 0.671005 0.090837 0.008079 0.007503 +12 0.571364 0.090155 0.008677 0.007049 +12 0.382256 0.090155 0.008677 0.007049 +12 0.303860 0.090155 0.009874 0.007049 +12 0.283214 0.090268 0.009276 0.007276 +12 0.206314 0.089472 0.008677 0.006594 +12 0.186864 0.089586 0.009276 0.006821 +12 0.804159 0.088677 0.009874 0.005912 +11 0.745212 0.088790 0.009276 0.006139 +11 0.752992 0.072419 0.006284 0.003411 +12 0.649611 0.088904 0.009575 0.006367 +12 0.840515 0.088563 0.008977 0.006594 +12 0.709455 0.088336 0.009575 0.006139 +12 0.551317 0.088449 0.009276 0.006367 +12 0.456912 0.088336 0.009575 0.006139 +12 0.363704 0.088336 0.008677 0.006139 +12 0.609366 0.087881 0.009276 0.006139 +12 0.516008 0.087881 0.009276 0.006139 +12 0.421454 0.088108 0.009276 0.006594 +12 0.263166 0.087767 0.009874 0.005912 +12 0.226960 0.087426 0.009276 0.006139 +12 0.323459 0.087085 0.008977 0.006367 +12 0.166517 0.086630 0.009276 0.006367 +18 0.143477 0.064006 0.006284 0.003865 +18 0.143327 0.069236 0.005386 0.003411 +12 0.073908 0.063097 0.004189 0.003865 +0 0.095003 0.616303 0.023040 0.023420 +2 0.092908 0.198613 0.021245 0.019327 +1 0.095901 0.073329 0.022442 0.034334 +2 0.091712 0.244770 0.020048 0.019782 +0 0.097098 0.862551 0.022442 0.023874 +0 0.095003 0.153138 0.023040 0.023874 +4 0.140485 0.480332 0.008677 0.016144 +1 0.093208 0.304798 0.021843 0.039791 +4 0.890036 0.757049 0.009276 0.016598 +0 0.095601 0.814347 0.021843 0.031151 +2 0.094105 0.660869 0.016457 0.017053 +0 0.093806 0.346180 0.021843 0.032515 +2 0.091712 0.477831 0.016457 0.018417 +2 0.093806 0.707253 0.018253 0.017963 +1 0.093806 0.577194 0.021843 0.039791 +1 0.808947 0.667235 0.017056 0.025239 +0 0.094405 0.386653 0.023040 0.024329 +1 0.095003 0.115848 0.021843 0.039336 +4 0.156044 0.893702 0.008677 0.016144 +4 0.156344 0.868008 0.009276 0.015689 +4 0.829294 0.159050 0.009874 0.015689 +4 0.141682 0.245907 0.009874 0.014779 +0 0.123728 0.812074 0.017056 0.019327 +4 0.119240 0.762733 0.009276 0.012506 +2 0.093208 0.432356 0.018253 0.018417 +4 0.140186 0.533993 0.009276 0.014325 +4 0.142280 0.709300 0.009874 0.016598 +1 0.098294 0.910300 0.022442 0.040246 +4 0.125075 0.439063 0.008378 0.013188 +4 0.140934 0.434516 0.008977 0.015007 +4 0.116697 0.429968 0.008378 0.015007 +4 0.133453 0.425421 0.008378 0.013188 +4 0.125972 0.114370 0.008977 0.013188 +4 0.118492 0.106185 0.008378 0.015007 +4 0.141233 0.614143 0.008378 0.011369 +4 0.123878 0.203274 0.008378 0.013643 +4 0.140335 0.199864 0.007780 0.015007 +4 0.116697 0.194407 0.008378 0.015916 +4 0.131658 0.191223 0.008378 0.015916 +4 0.140934 0.384720 0.008977 0.015462 +4 0.128965 0.951569 0.007780 0.015007 +4 0.121484 0.942701 0.008378 0.013643 +4 0.143028 0.859936 0.008378 0.015462 +4 0.142729 0.151205 0.008977 0.015916 +4 0.134051 0.141883 0.008378 0.013643 +4 0.117893 0.339018 0.008378 0.013188 +4 0.143627 0.814006 0.008378 0.012733 +4 0.136744 0.804684 0.007780 0.011369 +4 0.123279 0.575944 0.008378 0.013188 +4 0.115500 0.566394 0.008378 0.014097 +4 0.141831 0.662574 0.008378 0.014552 +4 0.141532 0.344930 0.007780 0.014097 +4 0.133453 0.336517 0.008378 0.013643 +4 0.119988 0.900637 0.007780 0.012278 +4 0.125673 0.302638 0.008378 0.015916 +4 0.116996 0.293543 0.007780 0.014097 +4 0.124177 0.248522 0.008977 0.015007 +4 0.116697 0.241019 0.008378 0.013643 +4 0.142729 0.766485 0.008977 0.013188 +4 0.134949 0.757844 0.007780 0.014097 +4 0.140634 0.571623 0.008378 0.014552 +4 0.132256 0.563438 0.008378 0.013643 +4 0.125374 0.153934 0.008977 0.015007 +4 0.117893 0.145748 0.008378 0.015916 +4 0.141831 0.299454 0.008378 0.015916 +4 0.134351 0.291269 0.008977 0.016826 +4 0.117594 0.474307 0.007780 0.015462 +4 0.119390 0.702592 0.008977 0.012733 +4 0.116098 0.528422 0.008378 0.013643 +4 0.135697 0.104025 0.009276 0.015689 +5 0.141532 0.109027 0.008977 0.015689 +4 0.117744 0.608572 0.009276 0.015689 +5 0.124776 0.616075 0.008977 0.015689 +4 0.117145 0.380059 0.009276 0.015689 +5 0.124327 0.385971 0.009276 0.015689 +4 0.131358 0.378013 0.008977 0.015689 +4 0.136894 0.941223 0.009276 0.015689 +4 0.143926 0.948727 0.008977 0.015689 +4 0.121335 0.856412 0.009276 0.015689 +4 0.128516 0.861187 0.009276 0.015689 +4 0.135548 0.851864 0.008977 0.015689 +4 0.118642 0.657458 0.009276 0.015689 +5 0.125972 0.657458 0.008977 0.015689 +4 0.131209 0.471237 0.009276 0.015689 +4 0.125524 0.482606 0.009276 0.015689 +4 0.096798 0.778422 0.009276 0.013415 +5 0.102633 0.778422 0.008977 0.013415 +4 0.090215 0.773874 0.009276 0.015689 +4 0.100239 0.767963 0.008977 0.015689 +4 0.088121 0.539677 0.009276 0.015689 +5 0.100838 0.535130 0.008977 0.015689 +4 0.103232 0.946680 0.008977 0.015689 +4 0.133004 0.699977 0.009276 0.015689 +4 0.127319 0.710891 0.009276 0.015689 +5 0.125524 0.528763 0.009276 0.015689 +4 0.131358 0.525807 0.008977 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_41.jpg b/data_dataset/dvo/debug/debug_41.jpg new file mode 100644 index 0000000..23c3447 Binary files /dev/null and b/data_dataset/dvo/debug/debug_41.jpg differ diff --git a/data_dataset/dvo/debug/debug_41.txt b/data_dataset/dvo/debug/debug_41.txt new file mode 100644 index 0000000..d04a40e --- /dev/null +++ b/data_dataset/dvo/debug/debug_41.txt @@ -0,0 +1,250 @@ +7 0.303465 0.941504 0.011947 0.013403 +7 0.514636 0.941050 0.012545 0.012949 +8 0.190711 0.937642 0.011051 0.006588 +6 0.471774 0.941277 0.009259 0.017946 +6 0.848566 0.939573 0.010155 0.016356 +6 0.261798 0.939687 0.009857 0.018855 +6 0.415323 0.939914 0.009857 0.018855 +6 0.764486 0.939459 0.008065 0.018401 +6 0.606780 0.939459 0.009259 0.017946 +6 0.660544 0.938323 0.009259 0.017946 +6 0.765532 0.897887 0.008961 0.017038 +9 0.196237 0.895616 0.004182 0.021581 +6 0.847670 0.898228 0.008363 0.018174 +6 0.660693 0.897887 0.009558 0.017946 +10 0.566906 0.888914 0.005974 0.002726 +10 0.661888 0.864607 0.005974 0.001817 +10 0.262246 0.862790 0.005974 0.002726 +10 0.625747 0.861881 0.006571 0.004543 +10 0.608423 0.860745 0.008961 0.004543 +10 0.286738 0.860291 0.007168 0.004998 +8 0.515233 0.856883 0.007766 0.020445 +8 0.495520 0.856883 0.007766 0.020445 +8 0.398148 0.856656 0.006571 0.019991 +9 0.199821 0.858246 0.005376 0.021354 +10 0.182198 0.855293 0.005974 0.004089 +10 0.161888 0.854612 0.005974 0.004543 +10 0.740143 0.851658 0.010753 0.003180 +10 0.672043 0.841890 0.005974 0.002726 +7 0.427121 0.852908 0.013142 0.028396 +10 0.590203 0.819627 0.005974 0.003180 +10 0.516129 0.820082 0.005974 0.004089 +10 0.418757 0.820082 0.007168 0.004089 +10 0.867384 0.809518 0.020311 0.002045 +10 0.280167 0.803271 0.013142 0.004543 +10 0.580048 0.803044 0.013142 0.004543 +7 0.606183 0.769991 0.012246 0.013403 +7 0.417712 0.769764 0.012843 0.012949 +7 0.200269 0.769764 0.012843 0.013403 +6 0.511947 0.769309 0.009558 0.018401 +6 0.564367 0.769082 0.009857 0.017946 +6 0.161738 0.768628 0.009857 0.018401 +6 0.370221 0.767719 0.009857 0.018401 +6 0.303465 0.767946 0.009558 0.018855 +8 0.567204 0.712971 0.009558 0.007497 +7 0.393967 0.716152 0.011947 0.013857 +7 0.772103 0.715470 0.011947 0.012949 +8 0.659797 0.712290 0.010753 0.006588 +6 0.354540 0.715925 0.009558 0.017492 +6 0.730884 0.714789 0.009558 0.017946 +6 0.296595 0.714562 0.009558 0.018401 +10 0.752987 0.684689 0.005974 0.004543 +7 0.297491 0.675943 0.011350 0.012949 +10 0.448626 0.666061 0.006571 0.002272 +10 0.636201 0.645616 0.008961 0.004543 +10 0.413680 0.636075 0.005974 0.002272 +9 0.904421 0.634825 0.010155 0.027033 +9 0.671744 0.635279 0.008363 0.027942 +10 0.793309 0.633348 0.006571 0.004543 +10 0.863501 0.628351 0.005974 0.003180 +9 0.730884 0.631985 0.009558 0.031804 +10 0.653226 0.628805 0.007168 0.004543 +10 0.672342 0.628124 0.007168 0.004089 +10 0.751493 0.627896 0.006571 0.004543 +10 0.632915 0.627896 0.007168 0.004543 +10 0.884409 0.627896 0.007168 0.004998 +10 0.561231 0.621763 0.005974 0.002726 +9 0.155914 0.626988 0.005376 0.025897 +10 0.369474 0.611313 0.005974 0.002272 +10 0.191159 0.574739 0.005974 0.001817 +7 0.580645 0.537597 0.011947 0.012949 +8 0.472820 0.534416 0.011350 0.006588 +7 0.278674 0.537824 0.012545 0.013857 +8 0.380526 0.534075 0.010753 0.006815 +10 0.765830 0.533621 0.011947 0.004998 +8 0.872162 0.534189 0.011947 0.007951 +6 0.541517 0.537369 0.008961 0.017038 +6 0.296894 0.537142 0.009558 0.018855 +7 0.608423 0.483757 0.011350 0.009768 +7 0.678315 0.485802 0.012545 0.014312 +9 0.306750 0.484552 0.010155 0.021808 +6 0.648148 0.483530 0.009558 0.017946 +10 0.313919 0.475920 0.006571 0.002272 +9 0.255376 0.481826 0.008961 0.027260 +10 0.458931 0.471149 0.012246 0.004998 +7 0.609916 0.445820 0.011947 0.012949 +7 0.678315 0.443094 0.012545 0.007951 +9 0.408005 0.449455 0.009558 0.021127 +6 0.649642 0.444684 0.010155 0.018401 +10 0.313321 0.436620 0.006571 0.002726 +10 0.590352 0.417992 0.005675 0.003180 +10 0.461768 0.415266 0.005974 0.003180 +10 0.474612 0.414811 0.010155 0.004998 +10 0.848417 0.410154 0.006870 0.002045 +10 0.449821 0.400727 0.006571 0.003180 +7 0.736858 0.400613 0.011947 0.013857 +8 0.608124 0.397547 0.011350 0.007724 +7 0.258065 0.400159 0.012545 0.012949 +9 0.487007 0.405838 0.013441 0.024761 +8 0.674432 0.396524 0.011350 0.006588 +10 0.185783 0.396411 0.008961 0.004998 +6 0.316010 0.397774 0.005376 0.018628 +9 0.769863 0.387892 0.009259 0.022944 +10 0.844982 0.360404 0.005974 0.003408 +7 0.591099 0.350863 0.011947 0.012949 +7 0.507766 0.350863 0.012545 0.012949 +10 0.459677 0.342799 0.008363 0.002726 +6 0.550478 0.348819 0.009558 0.017946 +9 0.850956 0.352113 0.009558 0.020900 +10 0.778674 0.339278 0.007766 0.002045 +9 0.765532 0.346661 0.010753 0.015448 +10 0.845579 0.320195 0.005974 0.002499 +10 0.471625 0.320536 0.005974 0.003635 +9 0.862903 0.311109 0.013142 0.021581 +7 0.592294 0.311109 0.011947 0.012494 +7 0.507766 0.311336 0.012545 0.013857 +10 0.304361 0.320990 0.008961 0.001817 +6 0.550777 0.310427 0.008961 0.018401 +10 0.468638 0.296910 0.009558 0.002726 +10 0.459677 0.296229 0.005974 0.004089 +7 0.893070 0.254998 0.011350 0.013857 +10 0.890382 0.211268 0.007766 0.004998 +7 0.871565 0.212971 0.011947 0.013403 +10 0.848268 0.164584 0.009558 0.002499 +6 0.892473 0.163448 0.009558 0.016129 +10 0.749104 0.127215 0.005974 0.002726 +7 0.666368 0.119605 0.010155 0.013403 +7 0.791517 0.119605 0.011947 0.013403 +7 0.686380 0.119605 0.011947 0.013403 +7 0.603644 0.119378 0.011350 0.013403 +7 0.547192 0.118923 0.011947 0.013403 +7 0.485962 0.117787 0.012545 0.012949 +7 0.441756 0.112676 0.012545 0.022263 +8 0.370968 0.113471 0.011947 0.006588 +8 0.293907 0.113017 0.008363 0.007497 +8 0.199223 0.112335 0.012545 0.007042 +9 0.504779 0.118242 0.009558 0.022944 +7 0.790621 0.075761 0.011350 0.012949 +7 0.689367 0.075534 0.011947 0.012494 +7 0.666965 0.075307 0.011350 0.012949 +7 0.607228 0.075080 0.011350 0.013857 +7 0.545699 0.075080 0.011350 0.013857 +7 0.488053 0.074171 0.011947 0.012949 +7 0.443250 0.073262 0.011947 0.013857 +7 0.295998 0.073035 0.011350 0.013857 +7 0.228196 0.071558 0.011947 0.012721 +7 0.162186 0.071672 0.012545 0.014766 +6 0.390681 0.070877 0.009558 0.018174 +13 0.070639 0.712063 0.005675 0.027942 +13 0.070639 0.669241 0.005675 0.049523 +0 0.092742 0.764312 0.020012 0.029759 +2 0.091249 0.444457 0.018817 0.018855 +2 0.090352 0.674580 0.017622 0.018401 +3 0.452957 0.110064 0.007467 0.015220 +3 0.484020 0.819741 0.007467 0.017038 +5 0.095430 0.851318 0.022401 0.023853 +5 0.574373 0.048728 0.007168 0.015220 +2 0.091547 0.252045 0.018817 0.019309 +3 0.700866 0.063721 0.008662 0.019309 +2 0.095729 0.209109 0.014636 0.017038 +3 0.738501 0.123921 0.007467 0.018855 +5 0.739098 0.060313 0.007467 0.015220 +3 0.574821 0.112790 0.007467 0.016129 +4 0.115741 0.300432 0.009857 0.015220 +4 0.123208 0.257497 0.010454 0.012949 +3 0.386350 0.822467 0.006870 0.017038 +3 0.454600 0.049409 0.007766 0.019309 +2 0.096326 0.896751 0.012246 0.015675 +2 0.094534 0.939914 0.018220 0.019309 +4 0.755227 0.752272 0.009259 0.015220 +4 0.175030 0.055089 0.008961 0.014766 +5 0.429062 0.172081 0.006272 0.010223 +4 0.425179 0.271354 0.009857 0.015220 +1 0.093041 0.353362 0.021804 0.033848 +3 0.274642 0.822467 0.008065 0.017492 +1 0.091846 0.538051 0.022401 0.039755 +2 0.090950 0.714107 0.018817 0.018401 +4 0.720281 0.754316 0.009857 0.013857 +4 0.676075 0.865629 0.009259 0.016583 +0 0.126643 0.944003 0.009558 0.011131 +4 0.863053 0.863812 0.009259 0.014312 +3 0.648895 0.821786 0.007467 0.017038 +4 0.264188 0.260904 0.010454 0.016583 +0 0.090502 0.574512 0.021505 0.032258 +4 0.137694 0.624262 0.008961 0.015448 +4 0.114994 0.618128 0.008961 0.015902 +4 0.137993 0.397206 0.008363 0.017038 +4 0.116189 0.391867 0.008961 0.015902 +4 0.124552 0.348932 0.008961 0.013630 +4 0.117384 0.338937 0.008961 0.013630 +4 0.132019 0.335984 0.008363 0.012267 +4 0.115591 0.526352 0.009558 0.014085 +4 0.114397 0.566561 0.008363 0.013630 +4 0.139486 0.849159 0.008363 0.012721 +0 0.088112 0.625170 0.012545 0.023626 +4 0.122461 0.719219 0.009558 0.014539 +4 0.115293 0.711949 0.008363 0.014539 +3 0.074074 0.485120 0.008363 0.015675 +3 0.089008 0.483076 0.008363 0.015675 +5 0.096476 0.482394 0.008363 0.015675 +4 0.115890 0.206611 0.008363 0.015675 +4 0.123357 0.214562 0.008363 0.015675 +3 0.118578 0.108246 0.008363 0.015675 +5 0.125149 0.110745 0.008363 0.015675 +4 0.083333 0.312017 0.008363 0.015675 +4 0.091099 0.307701 0.008363 0.015675 +5 0.099164 0.316788 0.008363 0.015675 +4 0.563023 0.626306 0.008363 0.011813 +4 0.583632 0.626306 0.008363 0.011813 +4 0.115293 0.760677 0.008363 0.015675 +4 0.124552 0.766356 0.008363 0.015675 +4 0.130824 0.756134 0.008363 0.015675 +3 0.137694 0.761358 0.008363 0.015675 +3 0.122162 0.156179 0.008363 0.015675 +4 0.131123 0.150954 0.008363 0.015675 +4 0.122461 0.625965 0.008363 0.015675 +4 0.130227 0.615743 0.008363 0.015675 +4 0.122461 0.399250 0.008363 0.015675 +4 0.129630 0.389482 0.008363 0.015675 +4 0.122760 0.535098 0.008363 0.015675 +4 0.129928 0.524875 0.008363 0.015675 +4 0.137097 0.532144 0.008363 0.015675 +4 0.128734 0.564857 0.008363 0.015675 +4 0.135902 0.570082 0.008363 0.015675 +4 0.115293 0.440595 0.008363 0.015675 +4 0.122760 0.448092 0.008363 0.015675 +4 0.130526 0.437869 0.008363 0.015675 +5 0.138292 0.442867 0.008363 0.015675 +4 0.117981 0.844048 0.008363 0.015675 +4 0.124851 0.851318 0.008363 0.015675 +4 0.131720 0.843367 0.008363 0.015675 +4 0.086619 0.153907 0.005974 0.015675 +5 0.086619 0.161858 0.005974 0.015675 +4 0.129331 0.297251 0.008363 0.015675 +4 0.088710 0.071445 0.008363 0.015675 +4 0.098865 0.065766 0.008363 0.015675 +4 0.114397 0.670491 0.008363 0.015675 +4 0.121864 0.678442 0.008363 0.015675 +4 0.129630 0.667537 0.008363 0.015675 +4 0.137395 0.674125 0.008363 0.015675 +4 0.114098 0.479896 0.008363 0.015675 +4 0.121565 0.487165 0.008363 0.015675 +4 0.129331 0.477624 0.008363 0.015675 +4 0.137097 0.485120 0.008363 0.015675 +4 0.087814 0.115289 0.008363 0.015675 +4 0.100060 0.111199 0.008363 0.015675 +4 0.130227 0.707974 0.008363 0.015675 +4 0.137993 0.715016 0.008363 0.015675 +4 0.086619 0.809064 0.008363 0.015675 +4 0.092891 0.805202 0.008363 0.015675 +5 0.099462 0.804294 0.008363 0.015675 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_42.jpg b/data_dataset/dvo/debug/debug_42.jpg new file mode 100644 index 0000000..769e6ce Binary files /dev/null and b/data_dataset/dvo/debug/debug_42.jpg differ diff --git a/data_dataset/dvo/debug/debug_42.txt b/data_dataset/dvo/debug/debug_42.txt new file mode 100644 index 0000000..41729d2 --- /dev/null +++ b/data_dataset/dvo/debug/debug_42.txt @@ -0,0 +1,793 @@ +7 0.790245 0.943724 0.011969 0.012960 +7 0.571813 0.943952 0.011969 0.013415 +7 0.345901 0.943724 0.012567 0.012960 +6 0.893477 0.943270 0.008977 0.018417 +6 0.214542 0.941678 0.009575 0.017963 +6 0.677738 0.941678 0.009575 0.017963 +6 0.466188 0.941223 0.007780 0.017963 +9 0.591562 0.944179 0.009575 0.024784 +9 0.519449 0.943952 0.010174 0.025239 +9 0.416517 0.943724 0.008977 0.024784 +6 0.215739 0.901887 0.009575 0.017508 +10 0.166667 0.871533 0.007181 0.002729 +10 0.163974 0.857435 0.007780 0.004548 +10 0.445841 0.854934 0.006583 0.002274 +10 0.236086 0.849250 0.007181 0.002729 +10 0.356373 0.837881 0.007181 0.002729 +10 0.586176 0.836176 0.007181 0.002501 +10 0.175045 0.836971 0.008378 0.004548 +10 0.693896 0.824011 0.009575 0.002274 +7 0.629563 0.813438 0.012567 0.012506 +7 0.850090 0.812983 0.011969 0.013415 +8 0.332735 0.810027 0.010174 0.006594 +8 0.199880 0.810255 0.011370 0.007049 +8 0.554758 0.810027 0.012567 0.007503 +8 0.449731 0.809800 0.010772 0.007049 +8 0.697187 0.813893 0.012567 0.023420 +7 0.648713 0.772055 0.012567 0.012506 +9 0.304608 0.774898 0.012567 0.018190 +7 0.163674 0.772510 0.011969 0.013415 +10 0.629563 0.767394 0.007780 0.002729 +7 0.745063 0.771601 0.012567 0.013415 +6 0.679533 0.771146 0.008378 0.017963 +9 0.804907 0.771828 0.012567 0.022965 +9 0.520347 0.776489 0.008378 0.015007 +9 0.767205 0.773874 0.010174 0.027967 +9 0.500000 0.718622 0.010772 0.009322 +7 0.214542 0.716803 0.011969 0.012960 +7 0.686715 0.716576 0.011969 0.012506 +7 0.429384 0.716803 0.011969 0.012960 +7 0.895272 0.713392 0.008977 0.007958 +10 0.856972 0.712142 0.010174 0.003183 +10 0.764213 0.712142 0.010174 0.003183 +8 0.915919 0.719304 0.011969 0.020691 +6 0.800120 0.714075 0.008977 0.017508 +6 0.315978 0.714757 0.008977 0.017053 +6 0.552364 0.714302 0.008977 0.017963 +9 0.276182 0.714757 0.008378 0.019782 +10 0.632555 0.680082 0.017355 0.003638 +8 0.499102 0.673147 0.012567 0.007503 +8 0.196290 0.672692 0.012567 0.006594 +8 0.570916 0.674056 0.011370 0.019327 +10 0.569120 0.667349 0.006583 0.004548 +8 0.705566 0.673829 0.012567 0.019782 +8 0.648713 0.673829 0.011370 0.019782 +10 0.276481 0.631878 0.007780 0.004548 +9 0.819270 0.627558 0.007780 0.017735 +10 0.374626 0.631651 0.007780 0.005002 +9 0.429084 0.627103 0.007780 0.020464 +9 0.162478 0.629832 0.009575 0.029559 +9 0.570916 0.625853 0.008977 0.034334 +9 0.652005 0.626535 0.009575 0.037517 +10 0.387493 0.610050 0.009575 0.001819 +7 0.399162 0.625398 0.008977 0.036153 +7 0.518552 0.581514 0.011969 0.012506 +9 0.882406 0.577422 0.009575 0.007049 +9 0.315380 0.585380 0.008977 0.022055 +9 0.213645 0.581628 0.008977 0.022738 +6 0.552065 0.580605 0.005984 0.018872 +10 0.277379 0.571169 0.005984 0.002274 +10 0.218432 0.537972 0.010174 0.004093 +7 0.519449 0.538085 0.010174 0.012960 +10 0.879114 0.534106 0.008977 0.004548 +10 0.786355 0.534334 0.008977 0.005002 +8 0.669060 0.534447 0.008977 0.007503 +6 0.552364 0.537631 0.008977 0.018417 +9 0.158588 0.526148 0.004189 0.026376 +7 0.541891 0.485334 0.004788 0.007503 +9 0.327947 0.484652 0.010174 0.007958 +7 0.721724 0.479650 0.006583 0.007958 +7 0.768701 0.482606 0.010772 0.002501 +7 0.307899 0.482151 0.011969 0.012960 +6 0.651107 0.481696 0.010174 0.018417 +6 0.875224 0.481014 0.009575 0.017963 +6 0.415619 0.481241 0.007181 0.018417 +6 0.203172 0.480332 0.008378 0.017508 +10 0.267205 0.447704 0.005984 0.004548 +7 0.595153 0.443270 0.011969 0.013415 +9 0.327050 0.444407 0.009575 0.025693 +9 0.685218 0.442815 0.010174 0.005230 +10 0.555356 0.436562 0.006583 0.005002 +6 0.875524 0.440996 0.010174 0.018872 +8 0.734291 0.440086 0.011370 0.017053 +9 0.753740 0.441451 0.011969 0.021601 +8 0.670257 0.438495 0.012567 0.014779 +6 0.415320 0.440769 0.010174 0.019327 +9 0.716637 0.441337 0.008378 0.021373 +10 0.686116 0.432697 0.007181 0.002729 +9 0.634650 0.444634 0.011969 0.027967 +10 0.513764 0.414052 0.005984 0.002729 +10 0.854877 0.410414 0.010772 0.002729 +10 0.765709 0.409845 0.007181 0.002046 +10 0.841113 0.410414 0.015560 0.003638 +10 0.830341 0.409277 0.009575 0.005002 +9 0.556254 0.405639 0.008378 0.015462 +10 0.490425 0.396089 0.005984 0.003183 +9 0.900359 0.395066 0.009575 0.027513 +10 0.841712 0.387221 0.005984 0.002729 +9 0.416517 0.378809 0.010174 0.017735 +10 0.293238 0.374147 0.006583 0.002501 +10 0.322861 0.373806 0.015560 0.002274 +10 0.276182 0.373806 0.005984 0.002274 +10 0.392280 0.371760 0.008378 0.002729 +9 0.496110 0.386426 0.008977 0.035243 +7 0.625673 0.377103 0.005984 0.017508 +10 0.611909 0.370396 0.011969 0.001819 +10 0.652005 0.371078 0.045482 0.005002 +9 0.455416 0.352092 0.007780 0.008413 +9 0.401257 0.347203 0.007181 0.018190 +8 0.508378 0.345043 0.011969 0.014325 +9 0.434470 0.346407 0.010174 0.008868 +8 0.897367 0.349363 0.013166 0.024784 +10 0.854877 0.339700 0.005984 0.003183 +7 0.823758 0.343906 0.011969 0.012960 +7 0.619390 0.343906 0.012567 0.012960 +7 0.367145 0.344134 0.013166 0.013415 +8 0.756433 0.340723 0.012567 0.007503 +8 0.289946 0.340496 0.010772 0.007958 +6 0.652603 0.344134 0.005984 0.018872 +10 0.094255 0.303547 0.005984 0.002729 +7 0.621185 0.303661 0.011370 0.013415 +7 0.368342 0.303433 0.011969 0.012960 +7 0.824057 0.303206 0.011370 0.013415 +10 0.754339 0.299682 0.008378 0.005002 +10 0.292938 0.299682 0.008378 0.005002 +10 0.190305 0.299682 0.011370 0.005002 +6 0.652005 0.302069 0.009575 0.017508 +8 0.434770 0.299568 0.011969 0.023420 +10 0.432376 0.290814 0.005984 0.004548 +8 0.896469 0.296157 0.012567 0.019327 +8 0.505984 0.299341 0.013166 0.025693 +9 0.513166 0.253297 0.009575 0.017735 +7 0.442250 0.250910 0.012567 0.012506 +7 0.890485 0.250000 0.011370 0.012506 +7 0.647516 0.250682 0.011370 0.012960 +6 0.311191 0.248408 0.008977 0.017508 +6 0.163674 0.248408 0.009575 0.017508 +6 0.754339 0.249090 0.005984 0.018872 +10 0.840215 0.215553 0.006583 0.003183 +10 0.831239 0.215553 0.007780 0.004093 +7 0.698085 0.211573 0.011969 0.013870 +7 0.441053 0.211119 0.011370 0.012960 +8 0.635847 0.207708 0.009575 0.007958 +6 0.162478 0.210437 0.009575 0.017053 +6 0.313285 0.210209 0.009575 0.018417 +6 0.552663 0.209300 0.009575 0.018417 +9 0.915320 0.204184 0.005984 0.021828 +8 0.906344 0.204070 0.009575 0.019782 +8 0.850389 0.204297 0.012567 0.019327 +10 0.714243 0.186221 0.014363 0.001819 +10 0.422202 0.186903 0.007181 0.003183 +10 0.440754 0.185880 0.008378 0.002501 +10 0.187911 0.173033 0.010174 0.002729 +10 0.513166 0.170532 0.008378 0.005002 +10 0.331239 0.170077 0.007181 0.005002 +9 0.257032 0.172124 0.009575 0.030014 +9 0.754638 0.175080 0.008977 0.018190 +9 0.464093 0.164848 0.009575 0.020919 +10 0.626870 0.165530 0.007181 0.004093 +9 0.725314 0.155525 0.008977 0.017735 +10 0.889587 0.158026 0.009575 0.002729 +10 0.765111 0.147112 0.005984 0.001819 +9 0.394973 0.164166 0.011370 0.031378 +10 0.737582 0.146658 0.005984 0.002729 +7 0.894674 0.149955 0.006583 0.010687 +10 0.882705 0.144725 0.006583 0.001592 +10 0.748354 0.145748 0.010772 0.004548 +10 0.204967 0.131196 0.007181 0.002729 +10 0.388689 0.129377 0.007181 0.004548 +7 0.726212 0.114484 0.011969 0.012506 +8 0.461101 0.119714 0.011969 0.022965 +9 0.443148 0.118236 0.009575 0.020919 +9 0.383603 0.119714 0.006583 0.025693 +9 0.293238 0.120623 0.010174 0.026603 +7 0.260922 0.113802 0.011370 0.012960 +8 0.872531 0.110391 0.012567 0.007049 +6 0.754339 0.112665 0.007181 0.016144 +7 0.724716 0.071510 0.012567 0.012960 +9 0.188211 0.068327 0.008378 0.009322 +6 0.754039 0.069918 0.010174 0.018872 +6 0.459904 0.060823 0.005984 0.012506 +8 0.331538 0.059686 0.011370 0.012051 +9 0.510473 0.057640 0.004189 0.030696 +8 0.085577 0.034902 0.007780 0.013415 +11 0.162926 0.938950 0.010473 0.006594 +12 0.363854 0.938495 0.007780 0.006594 +11 0.289797 0.938722 0.009276 0.007049 +11 0.418462 0.936221 0.006882 0.004775 +12 0.592908 0.936221 0.007481 0.005684 +11 0.520497 0.936221 0.008677 0.006594 +12 0.809844 0.933947 0.009276 0.006594 +11 0.745661 0.933606 0.008977 0.006821 +11 0.629114 0.933492 0.009874 0.006594 +11 0.853531 0.931332 0.009276 0.005912 +13 0.070168 0.924966 0.004488 0.005002 +12 0.070766 0.913256 0.005685 0.011141 +17 0.086026 0.917804 0.005087 0.005230 +12 0.520497 0.913142 0.011071 0.007731 +17 0.746709 0.911210 0.011071 0.006594 +17 0.630610 0.910982 0.011071 0.007049 +17 0.855027 0.909732 0.011071 0.007276 +11 0.163375 0.900182 0.008378 0.005457 +17 0.292340 0.897908 0.011370 0.007276 +17 0.419958 0.895066 0.009874 0.006139 +12 0.573459 0.865734 0.010473 0.006594 +12 0.571065 0.857549 0.006882 0.005684 +12 0.521095 0.865507 0.010473 0.007049 +12 0.519749 0.857322 0.007181 0.006139 +12 0.466038 0.865280 0.009874 0.006594 +12 0.465141 0.857094 0.009276 0.005684 +17 0.419360 0.865280 0.011071 0.006594 +11 0.418163 0.856867 0.007481 0.005230 +13 0.430580 0.835266 0.009575 0.002956 +18 0.733543 0.862551 0.007481 0.006594 +12 0.217235 0.860732 0.006583 0.004775 +12 0.217983 0.854138 0.008079 0.006139 +12 0.345601 0.860505 0.006583 0.005230 +12 0.345601 0.853456 0.008378 0.004775 +12 0.163674 0.860277 0.007181 0.005684 +12 0.164123 0.853911 0.008079 0.005684 +13 0.070766 0.865052 0.005685 0.016144 +12 0.592908 0.858004 0.008677 0.005684 +12 0.591861 0.846862 0.007780 0.004320 +12 0.547427 0.858004 0.008677 0.005684 +18 0.544135 0.847090 0.005087 0.004775 +12 0.274835 0.857208 0.008079 0.005002 +12 0.274835 0.862210 0.008079 0.005002 +12 0.446140 0.857208 0.008378 0.005912 +12 0.444494 0.847544 0.008677 0.003865 +13 0.457510 0.835380 0.011370 0.003183 +12 0.314034 0.855048 0.006284 0.005230 +12 0.307151 0.851864 0.006882 0.004320 +12 0.629563 0.854252 0.011370 0.006367 +12 0.629563 0.860618 0.011370 0.006367 +12 0.372681 0.854366 0.008677 0.006594 +12 0.364901 0.851637 0.008677 0.005684 +12 0.291442 0.854138 0.008378 0.006139 +12 0.290395 0.860505 0.006882 0.005230 +12 0.246110 0.854138 0.008079 0.006139 +12 0.237133 0.851751 0.009276 0.005912 +12 0.192549 0.854366 0.008677 0.006594 +12 0.183124 0.851864 0.008977 0.006139 +12 0.747307 0.852547 0.011071 0.004775 +12 0.747307 0.857322 0.011071 0.004775 +12 0.747307 0.862096 0.011071 0.004775 +12 0.853980 0.851978 0.012567 0.006367 +12 0.853980 0.858345 0.012567 0.006367 +12 0.679234 0.849704 0.011370 0.006367 +12 0.679234 0.856071 0.011370 0.006367 +12 0.789497 0.847772 0.011670 0.004775 +12 0.789497 0.852547 0.011670 0.004775 +12 0.789497 0.857322 0.011670 0.004775 +12 0.895272 0.847203 0.010772 0.005912 +12 0.895272 0.853115 0.010772 0.005912 +18 0.482047 0.835607 0.004788 0.003638 +12 0.484291 0.857322 0.008079 0.006139 +12 0.483393 0.847658 0.007481 0.004093 +12 0.704369 0.818895 0.004189 0.003865 +18 0.450928 0.809686 0.005984 0.002729 +13 0.713794 0.803661 0.008677 0.006139 +12 0.678785 0.803661 0.008677 0.006139 +12 0.659934 0.803774 0.008079 0.006367 +17 0.747307 0.803888 0.011071 0.007503 +13 0.919060 0.801387 0.008677 0.006139 +12 0.893327 0.801387 0.008677 0.006139 +12 0.875075 0.801046 0.009276 0.006367 +18 0.238480 0.785584 0.008378 0.002729 +13 0.225613 0.785584 0.008977 0.002729 +11 0.247307 0.785016 0.004488 0.004320 +13 0.253740 0.767735 0.008977 0.006139 +11 0.317175 0.781151 0.007780 0.003865 +13 0.326002 0.767622 0.008079 0.005912 +11 0.371484 0.783311 0.009874 0.008640 +12 0.380910 0.767508 0.008977 0.005684 +11 0.812687 0.780696 0.008378 0.003865 +13 0.821065 0.763984 0.008977 0.005912 +12 0.592759 0.777399 0.007780 0.006367 +12 0.573459 0.772283 0.010473 0.006139 +12 0.559695 0.771714 0.008079 0.008640 +12 0.629114 0.769668 0.009276 0.005457 +13 0.289048 0.767622 0.008378 0.005912 +12 0.219180 0.767849 0.008677 0.006367 +12 0.198085 0.767849 0.008378 0.006367 +13 0.545482 0.767281 0.008977 0.006139 +12 0.345452 0.767281 0.009276 0.007049 +12 0.853531 0.767508 0.011670 0.008413 +18 0.532765 0.765007 0.005087 0.003865 +12 0.521544 0.765007 0.006583 0.005230 +13 0.768402 0.764325 0.008378 0.005684 +12 0.785607 0.764097 0.008677 0.006139 +12 0.421155 0.764552 0.011071 0.007049 +11 0.165320 0.730900 0.009276 0.006139 +12 0.239228 0.730218 0.009874 0.006594 +11 0.374626 0.727490 0.008378 0.006594 +12 0.456164 0.726808 0.009276 0.007958 +11 0.499551 0.719191 0.008677 0.004093 +13 0.706463 0.716689 0.007780 0.005912 +17 0.624327 0.717030 0.009276 0.006594 +11 0.855326 0.714870 0.006882 0.004093 +12 0.915919 0.714643 0.008977 0.005457 +11 0.764063 0.714529 0.009874 0.005230 +11 0.277528 0.709186 0.008079 0.005457 +12 0.375224 0.686562 0.011370 0.007503 +12 0.717834 0.679968 0.007181 0.003411 +13 0.726361 0.662233 0.009874 0.006139 +11 0.661730 0.678149 0.005685 0.006594 +13 0.669060 0.662347 0.009575 0.005457 +11 0.581538 0.678035 0.008677 0.007731 +13 0.591412 0.662801 0.009276 0.006367 +13 0.915919 0.672237 0.008977 0.006139 +13 0.897516 0.667235 0.007481 0.005230 +17 0.277229 0.668372 0.010473 0.007503 +12 0.554010 0.663029 0.008677 0.005912 +12 0.534111 0.663142 0.010772 0.006139 +13 0.689856 0.662460 0.008677 0.005684 +13 0.878067 0.662005 0.009276 0.005684 +12 0.626122 0.662460 0.009276 0.006594 +12 0.855027 0.659050 0.009874 0.006139 +17 0.761520 0.659163 0.010772 0.007276 +13 0.856673 0.638586 0.009575 0.006139 +13 0.855625 0.632560 0.008677 0.005002 +13 0.897516 0.634266 0.008677 0.004775 +13 0.897516 0.639040 0.008677 0.004775 +18 0.688510 0.635175 0.009575 0.006594 +12 0.688659 0.627103 0.008677 0.005912 +12 0.624028 0.635402 0.009276 0.007049 +12 0.623279 0.627672 0.008378 0.005230 +12 0.820168 0.632788 0.008977 0.004548 +12 0.819868 0.623920 0.007780 0.005912 +13 0.800269 0.633242 0.010473 0.005457 +13 0.800269 0.638699 0.010473 0.005457 +13 0.758079 0.632447 0.005087 0.004775 +12 0.759276 0.639268 0.008677 0.005684 +12 0.374776 0.633129 0.009276 0.006139 +12 0.374626 0.625171 0.010174 0.006594 +12 0.317175 0.633129 0.008378 0.006139 +12 0.317175 0.624943 0.008378 0.006139 +17 0.329443 0.608458 0.013166 0.002274 +12 0.276631 0.633129 0.009276 0.006139 +12 0.275733 0.624943 0.009874 0.006139 +13 0.916218 0.632674 0.008977 0.006139 +13 0.915769 0.624488 0.009276 0.006139 +12 0.875972 0.632674 0.009874 0.006139 +12 0.876571 0.624034 0.007481 0.006139 +13 0.778875 0.632788 0.010772 0.006367 +13 0.778875 0.624488 0.009575 0.006139 +18 0.553112 0.632674 0.009276 0.006139 +12 0.552962 0.625057 0.008977 0.006367 +12 0.498654 0.632674 0.008079 0.006139 +12 0.498504 0.624602 0.008378 0.005457 +12 0.239677 0.631082 0.007181 0.004775 +12 0.240126 0.624488 0.009276 0.004320 +17 0.102932 0.630286 0.004189 0.005002 +12 0.429832 0.627331 0.009276 0.005457 +12 0.429832 0.632788 0.009276 0.005457 +12 0.403202 0.625966 0.006284 0.004548 +12 0.395871 0.622556 0.009575 0.005912 +12 0.337373 0.626080 0.007481 0.004775 +12 0.337971 0.619827 0.008677 0.005912 +12 0.572262 0.625512 0.008079 0.005457 +12 0.573309 0.619031 0.008378 0.005230 +12 0.519898 0.625512 0.007481 0.005457 +12 0.520048 0.619486 0.008977 0.005230 +12 0.222472 0.625398 0.009874 0.007049 +12 0.213794 0.622442 0.009276 0.004775 +12 0.190305 0.625398 0.007780 0.007049 +12 0.182376 0.621987 0.008677 0.004775 +12 0.163824 0.624829 0.009874 0.005912 +12 0.163824 0.630741 0.009874 0.005912 +12 0.457361 0.622669 0.009276 0.005230 +17 0.457361 0.627899 0.009276 0.005230 +12 0.707062 0.627444 0.008977 0.005230 +12 0.707062 0.622215 0.008977 0.005230 +12 0.653052 0.622101 0.008079 0.005457 +12 0.653052 0.627558 0.008079 0.005457 +12 0.296828 0.625398 0.008977 0.005684 +17 0.308049 0.608686 0.011071 0.002729 +12 0.296828 0.619714 0.008977 0.005684 +12 0.087822 0.596862 0.005087 0.004548 +11 0.187313 0.593565 0.006583 0.006139 +12 0.193746 0.579468 0.007481 0.005684 +12 0.375972 0.586971 0.009276 0.006594 +13 0.175194 0.584698 0.005087 0.004320 +13 0.430281 0.581969 0.008378 0.005684 +12 0.086326 0.581287 0.005087 0.005230 +13 0.415470 0.579127 0.005685 0.004548 +12 0.498354 0.579468 0.008677 0.006139 +12 0.316727 0.579241 0.006882 0.005684 +12 0.214841 0.579127 0.007780 0.006367 +12 0.163674 0.579127 0.008977 0.006367 +12 0.238929 0.576512 0.009874 0.006594 +11 0.276631 0.574125 0.008079 0.005457 +13 0.177289 0.526035 0.005685 0.004775 +11 0.375673 0.525466 0.009874 0.006367 +12 0.429234 0.519554 0.008677 0.007276 +12 0.497606 0.517735 0.008977 0.006367 +11 0.314931 0.517849 0.009874 0.006594 +13 0.193447 0.517849 0.009276 0.006594 +12 0.162478 0.517622 0.008977 0.006139 +13 0.210952 0.517167 0.008378 0.006139 +12 0.238929 0.515121 0.008079 0.007503 +11 0.273339 0.511937 0.008677 0.006594 +12 0.327199 0.485334 0.008677 0.004320 +13 0.163824 0.485448 0.008677 0.005457 +11 0.259575 0.485107 0.009276 0.005684 +13 0.069569 0.486016 0.005685 0.012051 +12 0.070168 0.475784 0.004488 0.007958 +11 0.069569 0.461460 0.005685 0.017963 +13 0.069569 0.439404 0.005685 0.022055 +13 0.069569 0.409163 0.005685 0.020236 +12 0.069569 0.393361 0.005685 0.007276 +12 0.069868 0.368577 0.005087 0.003638 +12 0.070766 0.298090 0.005685 0.010005 +11 0.489078 0.482606 0.009276 0.006139 +12 0.559695 0.482378 0.008079 0.006594 +12 0.367893 0.482378 0.009874 0.006594 +12 0.476960 0.479195 0.005984 0.002956 +13 0.789797 0.479764 0.008677 0.005002 +11 0.719479 0.479877 0.009874 0.005230 +18 0.595751 0.479877 0.008378 0.005230 +12 0.826302 0.477149 0.009874 0.006139 +11 0.085129 0.456571 0.005685 0.004093 +13 0.665021 0.452706 0.015260 0.003638 +12 0.678187 0.448613 0.005685 0.003638 +12 0.686415 0.435198 0.008977 0.005912 +13 0.369090 0.442474 0.009874 0.006821 +13 0.564333 0.439745 0.004189 0.003638 +18 0.522741 0.439291 0.004788 0.003183 +12 0.328396 0.439518 0.007481 0.004548 +13 0.635099 0.436107 0.006882 0.004093 +12 0.654847 0.435880 0.008079 0.004548 +13 0.755685 0.435653 0.007481 0.005002 +12 0.310443 0.435653 0.007481 0.005912 +12 0.718881 0.435312 0.006882 0.006139 +11 0.826750 0.432356 0.008977 0.006594 +13 0.790096 0.429854 0.009276 0.007049 +12 0.283513 0.429513 0.009276 0.006367 +12 0.770796 0.427126 0.008378 0.006139 +12 0.258677 0.427126 0.009276 0.007049 +17 0.164123 0.426671 0.010473 0.007958 +11 0.363106 0.419281 0.003890 0.004093 +12 0.368791 0.402228 0.009276 0.006367 +12 0.370138 0.393929 0.008378 0.006139 +18 0.660383 0.410186 0.008378 0.002274 +18 0.632855 0.410186 0.017953 0.002274 +18 0.609665 0.410186 0.007481 0.002274 +12 0.315081 0.410186 0.009575 0.002274 +12 0.328097 0.393588 0.009276 0.005457 +12 0.328097 0.399045 0.009276 0.005457 +12 0.294434 0.410186 0.014961 0.002274 +12 0.308498 0.385744 0.008378 0.006139 +12 0.308947 0.394156 0.009276 0.005684 +18 0.488779 0.402456 0.008677 0.005912 +12 0.489078 0.394497 0.009276 0.005457 +12 0.433573 0.402456 0.007780 0.006367 +12 0.434919 0.394384 0.007481 0.004320 +11 0.093208 0.400068 0.003890 0.003865 +12 0.102184 0.395748 0.005087 0.005230 +12 0.621484 0.395180 0.008977 0.005002 +12 0.619988 0.381878 0.009575 0.006594 +12 0.597397 0.395293 0.009276 0.005230 +12 0.597397 0.400523 0.009276 0.005230 +12 0.796230 0.395066 0.007181 0.005684 +12 0.788001 0.392451 0.008677 0.006821 +12 0.721125 0.395066 0.008378 0.005684 +12 0.712747 0.392337 0.008378 0.006594 +12 0.672202 0.399955 0.009276 0.005457 +12 0.672202 0.394497 0.009276 0.005457 +12 0.653202 0.394839 0.008378 0.006139 +12 0.655296 0.381878 0.009575 0.006594 +12 0.387941 0.394270 0.009276 0.005457 +12 0.559695 0.394270 0.008079 0.005912 +12 0.558049 0.402797 0.006583 0.006594 +12 0.417864 0.394497 0.009276 0.006367 +12 0.417265 0.384152 0.009276 0.005684 +12 0.186864 0.394270 0.008079 0.005912 +12 0.186565 0.386198 0.009874 0.006139 +12 0.259425 0.393588 0.009575 0.005457 +12 0.259425 0.399045 0.009575 0.005457 +12 0.224117 0.393474 0.008977 0.005230 +12 0.224117 0.398704 0.008977 0.005230 +12 0.162627 0.393702 0.009276 0.005684 +12 0.162627 0.399386 0.009276 0.005684 +13 0.902902 0.392110 0.007481 0.006139 +13 0.901706 0.398022 0.006284 0.005230 +12 0.883453 0.392110 0.006882 0.006139 +12 0.874626 0.389609 0.007780 0.003411 +12 0.851436 0.392224 0.007481 0.006367 +12 0.843058 0.389950 0.008677 0.004548 +12 0.826302 0.391996 0.008677 0.005912 +12 0.826302 0.397908 0.008677 0.005912 +13 0.771544 0.392337 0.009276 0.006594 +12 0.770646 0.381992 0.009874 0.006821 +12 0.737133 0.392451 0.009276 0.006821 +12 0.737133 0.382106 0.009874 0.006139 +12 0.283214 0.386085 0.009276 0.006821 +12 0.283363 0.394497 0.008378 0.006367 +18 0.204967 0.385971 0.009575 0.006594 +12 0.204219 0.394043 0.007481 0.005457 +12 0.507181 0.384607 0.009575 0.004775 +12 0.506882 0.397340 0.008977 0.006594 +11 0.173698 0.386312 0.005685 0.009095 +12 0.543387 0.384266 0.008977 0.005912 +12 0.542041 0.397112 0.008677 0.007049 +18 0.084979 0.359368 0.006583 0.006139 +11 0.909336 0.356412 0.008378 0.008413 +11 0.918612 0.341746 0.007780 0.005457 +12 0.400808 0.353001 0.008677 0.004320 +13 0.524985 0.352092 0.009276 0.005230 +12 0.489677 0.352319 0.010473 0.005684 +13 0.453172 0.352319 0.009276 0.005684 +12 0.419060 0.351751 0.007481 0.005457 +12 0.595452 0.349591 0.008977 0.006594 +12 0.504339 0.347090 0.005087 0.005230 +12 0.560293 0.346862 0.009276 0.005684 +12 0.545332 0.344134 0.010473 0.006594 +12 0.855625 0.341860 0.008079 0.005684 +12 0.875374 0.341746 0.008677 0.005912 +11 0.394375 0.322078 0.004189 0.004320 +12 0.400958 0.293315 0.008378 0.006821 +18 0.085727 0.317531 0.004488 0.003411 +12 0.087971 0.301842 0.007780 0.006594 +13 0.445691 0.307299 0.007481 0.006594 +13 0.453022 0.293429 0.008378 0.006139 +18 0.755386 0.299909 0.005087 0.003638 +18 0.190754 0.299682 0.007481 0.003183 +18 0.116248 0.296839 0.006882 0.003865 +12 0.094853 0.296839 0.005984 0.006139 +12 0.141382 0.295134 0.008079 0.005002 +18 0.141382 0.300136 0.008079 0.005002 +13 0.524087 0.293201 0.008677 0.005684 +12 0.488181 0.293315 0.009874 0.006821 +12 0.416816 0.293315 0.008977 0.006821 +12 0.596798 0.290359 0.009874 0.005457 +12 0.559994 0.287972 0.008677 0.006139 +13 0.916517 0.283311 0.008378 0.005912 +12 0.854728 0.282970 0.009276 0.006139 +12 0.542639 0.283993 0.009874 0.008186 +12 0.874925 0.282628 0.009575 0.006367 +13 0.259425 0.264325 0.009575 0.006139 +11 0.465290 0.261141 0.009575 0.006139 +13 0.385847 0.261141 0.009874 0.007049 +12 0.205715 0.261028 0.009874 0.006821 +11 0.611161 0.258640 0.009276 0.003865 +12 0.661879 0.258981 0.008977 0.005002 +11 0.513914 0.258413 0.008677 0.004320 +12 0.907391 0.255230 0.008079 0.005230 +17 0.698983 0.255912 0.008977 0.006594 +13 0.142130 0.253979 0.007181 0.003183 +11 0.829144 0.255457 0.008378 0.006594 +13 0.551167 0.253183 0.004788 0.004775 +13 0.118941 0.242951 0.007481 0.003411 +11 0.259425 0.224307 0.009575 0.006139 +12 0.464093 0.221919 0.009575 0.006821 +11 0.383752 0.221805 0.009276 0.006594 +11 0.204219 0.221692 0.009276 0.006367 +11 0.515560 0.218736 0.009575 0.005912 +18 0.126721 0.216576 0.005087 0.003411 +11 0.784710 0.213734 0.006882 0.005912 +12 0.793537 0.198386 0.009575 0.006139 +12 0.141382 0.208618 0.008079 0.004775 +18 0.902753 0.203843 0.004788 0.004320 +12 0.756583 0.198386 0.009276 0.006139 +12 0.740275 0.198499 0.009575 0.006367 +13 0.920257 0.198158 0.007481 0.006594 +12 0.890784 0.198045 0.009575 0.006367 +13 0.870736 0.198158 0.009575 0.006594 +12 0.828097 0.198158 0.009874 0.006594 +18 0.173848 0.188267 0.009575 0.002274 +12 0.415171 0.186335 0.011670 0.003865 +17 0.412178 0.165871 0.006284 0.005230 +12 0.404698 0.162460 0.008079 0.006139 +17 0.415619 0.148249 0.008378 0.002274 +12 0.400808 0.187244 0.009874 0.003865 +11 0.566577 0.185653 0.006284 0.004320 +12 0.574057 0.167917 0.009276 0.006139 +12 0.574057 0.174056 0.009276 0.006139 +18 0.542490 0.184629 0.009575 0.002274 +12 0.832585 0.174284 0.004488 0.003411 +12 0.825853 0.169964 0.006583 0.004775 +11 0.206912 0.175648 0.008677 0.006139 +12 0.206014 0.164848 0.009276 0.005457 +11 0.186565 0.175534 0.008677 0.006821 +12 0.185518 0.165302 0.008977 0.004548 +12 0.165619 0.175648 0.008677 0.007049 +12 0.164722 0.167462 0.009276 0.006139 +12 0.781119 0.173715 0.005685 0.005002 +12 0.773489 0.170418 0.008378 0.004775 +12 0.912178 0.173261 0.006882 0.005912 +12 0.903950 0.170418 0.008378 0.005684 +13 0.330940 0.173147 0.007780 0.005684 +13 0.331837 0.166894 0.008977 0.005002 +12 0.697038 0.170987 0.008677 0.005912 +12 0.704518 0.173261 0.008677 0.005912 +12 0.385996 0.169964 0.008977 0.004775 +12 0.385847 0.177012 0.007481 0.005684 +12 0.446439 0.166894 0.005386 0.002729 +12 0.441502 0.162460 0.008677 0.006139 +12 0.662627 0.167690 0.008079 0.005684 +12 0.662627 0.173374 0.008079 0.005684 +12 0.609964 0.167690 0.009874 0.005684 +12 0.609964 0.173374 0.009874 0.005684 +11 0.514063 0.167690 0.009575 0.005684 +11 0.514063 0.173374 0.009575 0.005684 +12 0.098594 0.170532 0.008677 0.005912 +11 0.103980 0.167804 0.008677 0.005912 +12 0.105625 0.155070 0.003591 0.004093 +13 0.258677 0.167235 0.009276 0.005684 +13 0.258677 0.172920 0.009276 0.005684 +12 0.465141 0.165189 0.009276 0.005230 +12 0.465141 0.170418 0.009276 0.005230 +12 0.646320 0.162688 0.008977 0.005684 +12 0.646320 0.168372 0.008977 0.005684 +12 0.627169 0.162801 0.009575 0.005912 +12 0.627169 0.168713 0.009575 0.005912 +12 0.554758 0.168258 0.010174 0.005912 +12 0.554758 0.162347 0.010174 0.005912 +12 0.314183 0.162119 0.008977 0.005457 +12 0.314183 0.167576 0.008977 0.005457 +12 0.277528 0.162119 0.008677 0.005457 +12 0.277528 0.167576 0.008677 0.005457 +12 0.535757 0.162005 0.009276 0.006139 +12 0.535757 0.168145 0.009276 0.006139 +18 0.888839 0.160641 0.009276 0.005230 +12 0.888989 0.170418 0.007181 0.005684 +12 0.853381 0.160300 0.008977 0.004548 +12 0.853082 0.170418 0.007780 0.005684 +12 0.754488 0.160186 0.008677 0.005230 +12 0.755685 0.170418 0.007481 0.005684 +12 0.726062 0.160528 0.009276 0.005912 +12 0.725763 0.170646 0.007481 0.006139 +11 0.521095 0.149386 0.004488 0.003638 +11 0.205715 0.129263 0.009874 0.006139 +12 0.185667 0.129263 0.009276 0.006139 +12 0.165470 0.129491 0.009575 0.006594 +12 0.346200 0.127672 0.006583 0.005684 +12 0.352035 0.111642 0.006882 0.006367 +12 0.413375 0.126080 0.006284 0.006139 +11 0.470527 0.126421 0.009874 0.008640 +12 0.480401 0.112210 0.007481 0.005684 +12 0.698235 0.121987 0.009874 0.006139 +12 0.662627 0.121987 0.005685 0.006139 +12 0.647965 0.117212 0.008677 0.005684 +12 0.096200 0.115848 0.004488 0.003865 +12 0.101287 0.105161 0.004488 0.004320 +12 0.444794 0.112665 0.006882 0.003865 +12 0.627169 0.112096 0.006583 0.005457 +12 0.293686 0.112096 0.005087 0.005457 +12 0.092609 0.111301 0.006284 0.003865 +18 0.089019 0.128126 0.005087 0.002956 +12 0.422651 0.111869 0.008079 0.005912 +12 0.386445 0.111869 0.007481 0.005912 +12 0.314034 0.111528 0.008677 0.006139 +12 0.609665 0.109482 0.008677 0.006594 +17 0.515410 0.109482 0.010473 0.007503 +18 0.090963 0.084698 0.007780 0.006139 +12 0.093357 0.067872 0.008378 0.007049 +11 0.194494 0.082310 0.010174 0.004093 +12 0.205865 0.068213 0.008378 0.005912 +12 0.188211 0.068440 0.008977 0.005912 +18 0.632107 0.074125 0.006882 0.005002 +12 0.627768 0.051501 0.010772 0.006139 +12 0.130910 0.070600 0.005087 0.004320 +18 0.143776 0.068554 0.008079 0.004775 +12 0.143028 0.062642 0.005386 0.004775 +12 0.473070 0.067417 0.005386 0.003411 +12 0.481149 0.050819 0.008977 0.006594 +18 0.458707 0.063779 0.004788 0.003865 +12 0.461400 0.058890 0.004189 0.003638 +12 0.696738 0.061619 0.008079 0.006367 +12 0.664273 0.061733 0.008378 0.006594 +18 0.120736 0.057867 0.008677 0.005230 +18 0.120736 0.063097 0.008677 0.005230 +13 0.646469 0.056389 0.009276 0.006821 +12 0.442849 0.050591 0.008378 0.006139 +13 0.352334 0.050250 0.009276 0.006367 +13 0.424746 0.049682 0.008677 0.006139 +12 0.315978 0.049682 0.009575 0.006139 +13 0.167415 0.049909 0.008677 0.006594 +12 0.385548 0.049454 0.008079 0.006594 +12 0.296080 0.049454 0.008677 0.006594 +13 0.222172 0.049454 0.010473 0.006594 +12 0.610862 0.048204 0.008677 0.007731 +17 0.515111 0.047408 0.009874 0.007049 +12 0.085577 0.035016 0.004189 0.007731 +1 0.093806 0.900296 0.021843 0.035698 +3 0.714692 0.159732 0.008079 0.019782 +0 0.095003 0.810482 0.023040 0.032515 +4 0.842759 0.160414 0.009276 0.016598 +4 0.225464 0.515348 0.009874 0.014325 +4 0.153052 0.174511 0.009874 0.014779 +1 0.092908 0.438495 0.021245 0.032515 +2 0.094405 0.480559 0.015859 0.017508 +2 0.095003 0.209754 0.019449 0.018872 +4 0.371783 0.175648 0.011670 0.016144 +3 0.502244 0.049682 0.006882 0.015234 +3 0.502244 0.108572 0.006882 0.012960 +4 0.132107 0.289336 0.009874 0.013415 +4 0.411879 0.518759 0.010473 0.016598 +4 0.296679 0.435539 0.009874 0.015689 +1 0.089019 0.161551 0.007481 0.023420 +4 0.533962 0.767508 0.009276 0.016598 +4 0.226062 0.576512 0.009874 0.016598 +2 0.096798 0.941223 0.011071 0.015689 +2 0.097098 0.674056 0.012867 0.016144 +1 0.094105 0.579241 0.022442 0.034789 +3 0.357421 0.483970 0.006882 0.017053 +2 0.098594 0.248863 0.011071 0.012506 +0 0.732346 0.933038 0.013465 0.015689 +4 0.534261 0.857322 0.009874 0.016144 +4 0.402902 0.856639 0.012867 0.017508 +2 0.094704 0.716121 0.017654 0.018417 +4 0.118043 0.333674 0.010473 0.016598 +4 0.144823 0.108686 0.008378 0.014552 +4 0.121484 0.104366 0.008378 0.014097 +4 0.140934 0.944293 0.008977 0.015916 +4 0.132855 0.934288 0.008378 0.013188 +4 0.124177 0.580946 0.008977 0.013188 +4 0.116697 0.570487 0.008378 0.014097 +4 0.117295 0.383811 0.009575 0.014552 +3 0.152902 0.859254 0.006583 0.019554 +4 0.140934 0.851978 0.008977 0.015916 +4 0.142130 0.717144 0.008977 0.015462 +4 0.140934 0.622556 0.008977 0.015462 +4 0.119988 0.154388 0.008977 0.015007 +4 0.140934 0.677353 0.008977 0.015007 +4 0.140036 0.810368 0.008378 0.013643 +4 0.142430 0.767394 0.009575 0.015007 +0 0.141233 0.337199 0.008378 0.010459 +4 0.117594 0.845839 0.008977 0.014552 +4 0.140036 0.483174 0.008378 0.014097 +4 0.117445 0.939177 0.009874 0.016598 +5 0.125075 0.943042 0.009575 0.016598 +4 0.132406 0.569918 0.009874 0.016598 +4 0.140036 0.576057 0.009575 0.016598 +4 0.118342 0.203956 0.009874 0.014552 +4 0.133453 0.203956 0.009575 0.014552 +4 0.124626 0.390973 0.009874 0.016598 +4 0.131658 0.381651 0.009575 0.016598 +3 0.069719 0.234993 0.005984 0.016598 +3 0.069719 0.250682 0.005984 0.016598 +4 0.118642 0.714984 0.009874 0.016598 +4 0.125673 0.719986 0.009575 0.016598 +4 0.118043 0.617667 0.009874 0.016598 +4 0.131658 0.616758 0.009575 0.016598 +4 0.640784 0.627444 0.009874 0.016598 +5 0.128217 0.159504 0.009874 0.016598 +5 0.143028 0.155412 0.009575 0.016598 +4 0.083782 0.387563 0.009575 0.016598 +4 0.118043 0.674056 0.009874 0.016598 +4 0.132256 0.669964 0.009575 0.016598 +3 0.177588 0.590041 0.009874 0.016371 +4 0.114452 0.433492 0.009874 0.016598 +4 0.123878 0.439177 0.009575 0.016598 +3 0.133004 0.432583 0.009874 0.016598 +4 0.138839 0.436448 0.009575 0.016598 +3 0.119240 0.807071 0.009874 0.016598 +5 0.125075 0.807071 0.009575 0.016598 +4 0.443896 0.627899 0.009874 0.016598 +4 0.119240 0.765007 0.009874 0.016598 +4 0.127020 0.769327 0.009874 0.016598 +4 0.134650 0.760914 0.009575 0.016598 +4 0.271095 0.387335 0.009575 0.016598 +5 0.090215 0.114029 0.009874 0.016598 +4 0.125823 0.340496 0.009874 0.016598 +4 0.133453 0.331628 0.009575 0.016598 +4 0.417564 0.627558 0.009874 0.015007 +5 0.125224 0.851637 0.009874 0.016598 +4 0.132855 0.844588 0.009575 0.016598 +4 0.086026 0.344588 0.009874 0.016598 +3 0.098743 0.343452 0.009575 0.016598 +4 0.458259 0.680650 0.009874 0.016598 +5 0.466188 0.679286 0.009575 0.016598 +3 0.117445 0.480332 0.009874 0.016598 +4 0.131658 0.475330 0.009575 0.016598 +4 0.715589 0.218395 0.009874 0.016598 +4 0.722322 0.217258 0.009575 0.016598 +4 0.115949 0.531719 0.009874 0.016598 +5 0.127319 0.530355 0.009874 0.016598 +4 0.138839 0.532401 0.009575 0.016598 +4 0.089617 0.773192 0.009874 0.016598 +5 0.102334 0.769554 0.009575 0.016598 +4 0.087223 0.538995 0.009874 0.016598 +5 0.100539 0.534902 0.009575 0.016598 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_43.jpg b/data_dataset/dvo/debug/debug_43.jpg new file mode 100644 index 0000000..38f134a Binary files /dev/null and b/data_dataset/dvo/debug/debug_43.jpg differ diff --git a/data_dataset/dvo/debug/debug_43.txt b/data_dataset/dvo/debug/debug_43.txt new file mode 100644 index 0000000..e5fba89 --- /dev/null +++ b/data_dataset/dvo/debug/debug_43.txt @@ -0,0 +1,785 @@ +10 0.568223 0.952933 0.005984 0.003638 +10 0.306104 0.947249 0.015560 0.002274 +9 0.456314 0.942929 0.008378 0.021373 +9 0.245661 0.937131 0.009575 0.027058 +6 0.669360 0.939632 0.008378 0.017508 +8 0.470078 0.939404 0.013166 0.017053 +8 0.423399 0.943270 0.011969 0.024784 +9 0.405446 0.941223 0.008378 0.021601 +10 0.374925 0.932469 0.007181 0.002729 +8 0.358767 0.942815 0.013166 0.024784 +6 0.778576 0.938722 0.008977 0.017508 +8 0.583483 0.938495 0.012567 0.017053 +8 0.536505 0.941564 0.013166 0.023192 +8 0.303112 0.934857 0.011969 0.017053 +8 0.181927 0.935766 0.012567 0.018872 +10 0.526032 0.909618 0.006583 0.001592 +9 0.545781 0.902115 0.005386 0.023420 +9 0.434470 0.902115 0.006583 0.025239 +9 0.320467 0.894725 0.007181 0.028195 +6 0.780371 0.897567 0.008977 0.017053 +6 0.880311 0.897567 0.008977 0.017963 +6 0.669659 0.897794 0.008977 0.017508 +8 0.424297 0.899500 0.013764 0.020919 +8 0.358169 0.900978 0.013166 0.014779 +8 0.583483 0.897794 0.011370 0.010232 +9 0.373728 0.899500 0.009575 0.021828 +8 0.303112 0.898477 0.013166 0.019782 +8 0.183722 0.893929 0.012567 0.018872 +8 0.231897 0.892792 0.013166 0.019327 +10 0.242370 0.860164 0.006583 0.003638 +9 0.628366 0.868236 0.008977 0.013870 +6 0.669659 0.857094 0.008977 0.017963 +6 0.779174 0.855730 0.008977 0.017963 +6 0.880311 0.854820 0.008977 0.018872 +8 0.422202 0.853229 0.011969 0.015689 +8 0.534411 0.851182 0.012567 0.017963 +8 0.470975 0.850955 0.013764 0.019327 +8 0.359964 0.849363 0.013166 0.032515 +8 0.232795 0.853229 0.013764 0.022965 +8 0.306403 0.850955 0.013764 0.018417 +8 0.583483 0.853001 0.011370 0.014325 +9 0.432376 0.847999 0.009575 0.034334 +9 0.485637 0.847317 0.009575 0.032970 +9 0.404847 0.846294 0.010772 0.031833 +9 0.285159 0.846749 0.010772 0.031833 +8 0.567923 0.840950 0.005386 0.021146 +9 0.550569 0.846294 0.010174 0.031833 +9 0.597846 0.846294 0.010174 0.031833 +9 0.516756 0.846294 0.009575 0.032742 +9 0.454518 0.843679 0.009575 0.037972 +9 0.325853 0.845271 0.011969 0.029786 +7 0.629264 0.808436 0.011969 0.013415 +10 0.672950 0.803774 0.007181 0.002729 +10 0.654399 0.803774 0.005984 0.002729 +7 0.836924 0.807981 0.011969 0.013415 +8 0.233692 0.804570 0.013166 0.012960 +8 0.181927 0.809004 0.013764 0.021828 +8 0.301616 0.805252 0.013764 0.021601 +8 0.473070 0.802410 0.013166 0.021373 +8 0.422801 0.799341 0.013166 0.012506 +10 0.347397 0.771260 0.005984 0.002274 +10 0.170257 0.770578 0.008378 0.004548 +10 0.238480 0.769895 0.014363 0.004093 +10 0.346499 0.768531 0.010174 0.002274 +8 0.644524 0.767508 0.011370 0.007958 +6 0.670257 0.768872 0.008977 0.017053 +6 0.779773 0.769100 0.008977 0.017508 +6 0.880012 0.768645 0.009575 0.018417 +9 0.928785 0.774329 0.004189 0.033424 +8 0.531718 0.752274 0.010772 0.012960 +8 0.182226 0.760232 0.013166 0.024329 +8 0.233992 0.758186 0.013764 0.021146 +8 0.356972 0.757503 0.013166 0.020691 +8 0.303112 0.756821 0.013166 0.019327 +8 0.584081 0.753411 0.012567 0.015234 +10 0.532914 0.748977 0.008378 0.005002 +9 0.191801 0.755684 0.008378 0.037062 +9 0.214542 0.755684 0.010772 0.037062 +9 0.478755 0.751705 0.007780 0.038199 +9 0.516457 0.751251 0.008977 0.039109 +10 0.451526 0.721010 0.005984 0.002729 +10 0.654399 0.715553 0.023938 0.003638 +9 0.137642 0.710323 0.005386 0.016826 +8 0.243866 0.703843 0.013166 0.019782 +8 0.856373 0.701910 0.013764 0.017735 +8 0.185518 0.703161 0.012567 0.019327 +10 0.413525 0.669623 0.007780 0.002729 +10 0.225314 0.668258 0.005984 0.001819 +10 0.426990 0.669395 0.009575 0.005002 +10 0.187313 0.667121 0.007780 0.004093 +10 0.231299 0.665530 0.005984 0.001819 +10 0.467684 0.653706 0.007181 0.002729 +9 0.636146 0.652910 0.008977 0.027967 +8 0.856673 0.654502 0.013166 0.013870 +9 0.252244 0.656321 0.009575 0.026603 +8 0.242669 0.655639 0.013166 0.018872 +8 0.187911 0.655184 0.012567 0.018872 +10 0.730401 0.612551 0.007181 0.005002 +6 0.853680 0.607208 0.010772 0.007503 +10 0.520946 0.578445 0.020347 0.002274 +9 0.360263 0.567303 0.005386 0.023192 +7 0.292639 0.564916 0.012567 0.013870 +8 0.350090 0.563552 0.012567 0.016598 +8 0.692400 0.564461 0.012567 0.020236 +8 0.909635 0.564688 0.012567 0.026148 +8 0.860263 0.564006 0.013166 0.019327 +8 0.751346 0.565257 0.013166 0.022738 +8 0.577499 0.564006 0.012567 0.021146 +10 0.544883 0.556162 0.007181 0.003183 +8 0.465889 0.563097 0.011969 0.018417 +10 0.629264 0.527058 0.009575 0.004093 +10 0.165470 0.526830 0.005984 0.004548 +7 0.295631 0.523306 0.011370 0.007958 +7 0.466188 0.517849 0.011370 0.014325 +10 0.904548 0.512051 0.005984 0.004093 +8 0.797726 0.513984 0.011370 0.009322 +10 0.747457 0.512278 0.010174 0.004548 +8 0.639138 0.513984 0.011370 0.010232 +7 0.526631 0.517167 0.011370 0.015689 +7 0.574207 0.515121 0.011969 0.013415 +8 0.857271 0.512392 0.011969 0.007958 +8 0.410832 0.515348 0.013166 0.019327 +8 0.693896 0.513984 0.013166 0.021146 +10 0.566727 0.471578 0.024536 0.004093 +10 0.511370 0.471351 0.015560 0.004548 +7 0.845003 0.466689 0.011370 0.012960 +7 0.396469 0.467599 0.011969 0.013870 +10 0.273489 0.457481 0.006583 0.002274 +8 0.459605 0.462142 0.008977 0.024784 +9 0.573908 0.462597 0.012567 0.023874 +9 0.523938 0.456230 0.013166 0.012051 +10 0.347696 0.430878 0.006583 0.002729 +10 0.523938 0.429968 0.011969 0.001819 +10 0.745961 0.430878 0.005984 0.004548 +10 0.328845 0.425421 0.007181 0.002729 +7 0.843507 0.424852 0.010772 0.013870 +7 0.395871 0.424852 0.011969 0.013870 +8 0.574207 0.420305 0.010772 0.013870 +9 0.584979 0.418372 0.004788 0.020919 +9 0.534111 0.419168 0.004788 0.022510 +8 0.524536 0.419168 0.013166 0.022510 +8 0.458707 0.419395 0.013166 0.022055 +9 0.439856 0.383697 0.010174 0.026148 +10 0.730999 0.374943 0.007181 0.003638 +6 0.167564 0.380969 0.008977 0.017963 +6 0.622382 0.380741 0.008977 0.018417 +6 0.396469 0.380741 0.009575 0.018417 +10 0.441352 0.372669 0.005984 0.002729 +9 0.778576 0.377217 0.007780 0.034561 +10 0.682825 0.341064 0.007780 0.005002 +7 0.621783 0.337312 0.011370 0.009777 +10 0.685817 0.335607 0.010174 0.005002 +8 0.346499 0.341633 0.012567 0.018417 +8 0.224716 0.340268 0.010772 0.006594 +7 0.166966 0.338449 0.012567 0.012960 +7 0.514363 0.325716 0.013166 0.007503 +8 0.361759 0.333220 0.010772 0.024329 +10 0.564632 0.314006 0.009575 0.002729 +7 0.166367 0.301160 0.011370 0.012960 +8 0.683423 0.297294 0.011370 0.014325 +9 0.234291 0.294566 0.009575 0.027058 +8 0.344704 0.296385 0.011370 0.014325 +8 0.295332 0.295703 0.013166 0.022055 +8 0.225015 0.294111 0.012567 0.018872 +9 0.757929 0.292178 0.008378 0.028649 +10 0.905446 0.241928 0.010174 0.005002 +7 0.437762 0.243861 0.011969 0.012960 +7 0.204967 0.240678 0.007181 0.007503 +6 0.313585 0.241814 0.008977 0.016144 +6 0.561041 0.241814 0.009575 0.017963 +9 0.860563 0.199068 0.012567 0.019782 +8 0.803112 0.199864 0.012567 0.021373 +10 0.816876 0.190769 0.006583 0.002729 +10 0.641831 0.169623 0.005984 0.003183 +10 0.519150 0.168940 0.011969 0.001819 +10 0.385697 0.169168 0.020347 0.002274 +10 0.635847 0.167121 0.008378 0.001819 +10 0.297427 0.165302 0.010174 0.002729 +9 0.375224 0.155866 0.007780 0.023874 +10 0.879414 0.156435 0.011969 0.005002 +7 0.757032 0.159959 0.011370 0.013415 +8 0.677139 0.154957 0.010772 0.027513 +10 0.285159 0.153251 0.007181 0.004093 +10 0.438360 0.150978 0.005984 0.003183 +10 0.676840 0.149841 0.006583 0.002729 +6 0.788151 0.155184 0.007780 0.017508 +9 0.406643 0.151091 0.010772 0.033424 +10 0.662777 0.135289 0.007181 0.004548 +10 0.579892 0.133925 0.008977 0.004548 +10 0.425793 0.133697 0.009575 0.005002 +10 0.400060 0.110505 0.020347 0.005002 +7 0.757929 0.108117 0.011969 0.013415 +8 0.880311 0.104252 0.012567 0.006594 +6 0.788749 0.106071 0.008977 0.018417 +9 0.317175 0.100159 0.011370 0.023874 +9 0.413824 0.100614 0.007181 0.022965 +9 0.292938 0.100387 0.008378 0.024329 +8 0.402154 0.095612 0.012567 0.012960 +8 0.333034 0.101069 0.013166 0.023874 +8 0.285159 0.099932 0.011969 0.022510 +10 0.584979 0.073670 0.009575 0.002274 +10 0.680431 0.072988 0.007780 0.004548 +10 0.638540 0.072988 0.014961 0.004548 +10 0.575703 0.070828 0.012567 0.002046 +10 0.210353 0.068668 0.007181 0.002274 +10 0.879713 0.058663 0.011370 0.005002 +7 0.757630 0.061733 0.011370 0.013415 +7 0.509575 0.060596 0.011969 0.012960 +7 0.166667 0.058322 0.011969 0.013870 +6 0.786954 0.059231 0.008977 0.017508 +8 0.580491 0.058549 0.011370 0.017053 +13 0.439258 0.937017 0.008977 0.006367 +12 0.199132 0.930537 0.009874 0.006139 +11 0.838121 0.938495 0.008378 0.005684 +13 0.599192 0.937017 0.009276 0.006367 +13 0.486535 0.937017 0.008378 0.006367 +12 0.456912 0.937017 0.007181 0.006367 +11 0.735039 0.936448 0.009276 0.006139 +11 0.629414 0.936562 0.008677 0.006367 +12 0.567774 0.936676 0.009874 0.006594 +13 0.550419 0.936676 0.009874 0.006594 +12 0.518103 0.936789 0.008677 0.006821 +12 0.407241 0.935084 0.007181 0.004775 +18 0.230551 0.935539 0.009276 0.005684 +13 0.375075 0.934857 0.007481 0.005684 +11 0.272442 0.935198 0.005685 0.006821 +12 0.343656 0.932356 0.009276 0.006139 +12 0.327199 0.932469 0.009874 0.006367 +12 0.286505 0.932583 0.009874 0.006594 +12 0.253441 0.932583 0.010174 0.006594 +12 0.216188 0.930082 0.009276 0.006139 +12 0.164722 0.927353 0.009276 0.006139 +12 0.598893 0.895180 0.009874 0.006367 +11 0.431329 0.905866 0.007481 0.004093 +12 0.440904 0.895521 0.009874 0.006139 +11 0.246559 0.903251 0.006583 0.006139 +12 0.253890 0.890746 0.009276 0.006594 +12 0.199731 0.888472 0.009874 0.005684 +18 0.142430 0.898363 0.007780 0.004548 +11 0.836176 0.897794 0.008079 0.005230 +18 0.837074 0.885630 0.008677 0.005457 +11 0.629264 0.895407 0.009575 0.005912 +13 0.552214 0.895521 0.009874 0.006139 +13 0.486086 0.895521 0.009276 0.006139 +12 0.454967 0.895521 0.009276 0.006139 +11 0.737133 0.895066 0.009874 0.006139 +12 0.568372 0.895293 0.009874 0.006594 +12 0.518402 0.895293 0.009276 0.006594 +12 0.407241 0.893020 0.007780 0.005684 +13 0.375224 0.893020 0.007780 0.005684 +12 0.343058 0.890746 0.009276 0.006594 +12 0.326601 0.890518 0.008677 0.006139 +12 0.287104 0.890746 0.009874 0.006594 +12 0.216338 0.888245 0.009575 0.006139 +12 0.166218 0.885744 0.009276 0.006594 +13 0.352633 0.862324 0.012867 0.002501 +12 0.244464 0.859482 0.008378 0.005912 +12 0.253890 0.835380 0.009276 0.005912 +12 0.253890 0.841291 0.009276 0.005912 +12 0.551915 0.835152 0.009276 0.005457 +12 0.551915 0.840609 0.009276 0.005457 +12 0.439408 0.835834 0.009276 0.005912 +12 0.439408 0.841746 0.009276 0.005912 +12 0.487433 0.835493 0.009575 0.006139 +12 0.487433 0.841633 0.009575 0.006139 +11 0.736385 0.855275 0.008378 0.005684 +17 0.736385 0.860960 0.008378 0.005684 +11 0.630311 0.852888 0.009276 0.005457 +11 0.630311 0.858345 0.009276 0.005457 +11 0.837074 0.847317 0.009874 0.006139 +17 0.828097 0.860618 0.007481 0.005457 +11 0.836774 0.857549 0.008079 0.005684 +12 0.164722 0.846635 0.008079 0.006594 +12 0.164273 0.835834 0.009575 0.006821 +13 0.199132 0.844588 0.008677 0.006139 +13 0.199132 0.835721 0.009276 0.006594 +12 0.215589 0.843906 0.009276 0.006594 +12 0.214393 0.835380 0.009276 0.006821 +12 0.517953 0.841405 0.007181 0.005230 +12 0.518402 0.834698 0.009276 0.006367 +12 0.456164 0.835380 0.008677 0.005912 +12 0.456164 0.841291 0.008677 0.005912 +12 0.286804 0.835380 0.009276 0.005912 +12 0.286804 0.841291 0.009276 0.005912 +13 0.599791 0.834925 0.009276 0.005912 +13 0.599791 0.840837 0.009276 0.005912 +12 0.567774 0.835039 0.008677 0.006139 +12 0.567774 0.841178 0.008677 0.006139 +12 0.406493 0.834811 0.009276 0.005684 +12 0.406493 0.840496 0.009276 0.005684 +13 0.374327 0.834925 0.008378 0.005912 +13 0.374327 0.840837 0.008378 0.005912 +12 0.342759 0.835039 0.009874 0.006139 +12 0.342759 0.841178 0.009874 0.006139 +13 0.325703 0.835152 0.009276 0.006367 +13 0.325703 0.841519 0.009276 0.006367 +12 0.913226 0.807981 0.009575 0.005684 +11 0.696738 0.820714 0.008079 0.007503 +11 0.703770 0.805935 0.008977 0.006139 +13 0.294883 0.817758 0.015260 0.002501 +12 0.800569 0.816394 0.009874 0.006139 +12 0.198384 0.799341 0.009575 0.006594 +12 0.253740 0.799113 0.010174 0.006139 +12 0.782466 0.813665 0.009575 0.007049 +12 0.764213 0.811050 0.008977 0.005457 +11 0.591263 0.809459 0.006583 0.005002 +12 0.599791 0.793429 0.009276 0.006594 +11 0.542041 0.810482 0.007481 0.007049 +11 0.550718 0.793884 0.009276 0.005684 +12 0.440006 0.793656 0.008079 0.006139 +12 0.486984 0.794111 0.008677 0.006139 +12 0.866098 0.808208 0.009276 0.006139 +12 0.737433 0.808436 0.009276 0.006594 +12 0.882406 0.807981 0.009575 0.006594 +12 0.673399 0.806162 0.008079 0.005684 +12 0.653950 0.806162 0.007481 0.005684 +12 0.214692 0.799454 0.009874 0.005912 +12 0.165919 0.799341 0.009276 0.006594 +12 0.343208 0.798886 0.009575 0.006594 +13 0.327050 0.798886 0.010174 0.006594 +12 0.285607 0.799000 0.009276 0.006821 +12 0.406792 0.796385 0.008677 0.006139 +12 0.375524 0.796385 0.010174 0.006139 +12 0.567774 0.794452 0.008677 0.005912 +12 0.518402 0.794111 0.009276 0.006139 +12 0.457660 0.794111 0.009874 0.006139 +12 0.552214 0.737040 0.008677 0.007503 +12 0.484440 0.737722 0.008378 0.007049 +11 0.433273 0.768759 0.006583 0.008186 +18 0.441352 0.737267 0.009575 0.007049 +11 0.191352 0.767735 0.006284 0.007049 +12 0.199282 0.742383 0.008977 0.007276 +17 0.591861 0.765916 0.007181 0.004320 +12 0.599342 0.737153 0.008977 0.006821 +13 0.246110 0.766598 0.006882 0.005684 +12 0.253441 0.742042 0.008378 0.006594 +12 0.365799 0.765007 0.006882 0.004320 +18 0.373279 0.739086 0.008677 0.006139 +11 0.838270 0.757049 0.008677 0.006594 +11 0.735637 0.754775 0.008079 0.006594 +13 0.325853 0.742269 0.008378 0.007049 +12 0.163674 0.742497 0.008977 0.007503 +12 0.286804 0.741814 0.009276 0.007049 +12 0.215589 0.742269 0.009276 0.007958 +12 0.342310 0.741701 0.009575 0.007731 +18 0.838570 0.739995 0.009276 0.006139 +18 0.405296 0.738859 0.009276 0.006594 +18 0.735039 0.737494 0.009276 0.006594 +17 0.734889 0.690200 0.010174 0.007503 +12 0.630012 0.737267 0.008677 0.007049 +12 0.567774 0.737608 0.009276 0.007731 +12 0.454967 0.737267 0.009276 0.007049 +12 0.260622 0.695316 0.008977 0.006821 +11 0.195841 0.711005 0.006882 0.005457 +12 0.203621 0.695884 0.009276 0.006139 +12 0.140036 0.710437 0.007780 0.008868 +12 0.921753 0.694861 0.008079 0.005912 +12 0.467534 0.703274 0.009276 0.006367 +12 0.444045 0.700432 0.008977 0.006139 +12 0.694045 0.700205 0.009874 0.006594 +18 0.430580 0.698727 0.008378 0.004548 +18 0.430580 0.703274 0.008378 0.004548 +12 0.672202 0.697931 0.008079 0.005684 +12 0.414572 0.698158 0.008677 0.006139 +12 0.394225 0.695430 0.008677 0.006139 +17 0.296080 0.695657 0.011071 0.006594 +12 0.222621 0.695430 0.008977 0.006139 +12 0.166517 0.695430 0.009276 0.006139 +13 0.643926 0.694520 0.009575 0.006139 +12 0.894075 0.692929 0.009575 0.006594 +12 0.619838 0.692929 0.009276 0.006594 +17 0.512717 0.693383 0.009874 0.007503 +12 0.518402 0.736926 0.009276 0.007276 +12 0.878067 0.692701 0.009276 0.007049 +12 0.839617 0.690882 0.008977 0.006139 +11 0.915470 0.664507 0.006284 0.005230 +12 0.922501 0.648136 0.008378 0.006139 +11 0.869838 0.663256 0.008378 0.003638 +12 0.878366 0.645634 0.008677 0.006594 +11 0.251945 0.664166 0.007181 0.007276 +12 0.259425 0.647453 0.008977 0.006594 +12 0.203920 0.647681 0.008677 0.006139 +12 0.140335 0.660528 0.007181 0.004548 +18 0.140335 0.665075 0.007181 0.004548 +12 0.467834 0.656207 0.007481 0.005912 +12 0.694045 0.653593 0.009874 0.006139 +12 0.443896 0.653251 0.008677 0.006367 +12 0.672801 0.650864 0.009276 0.006139 +12 0.412627 0.650864 0.009575 0.006139 +12 0.643477 0.648477 0.009276 0.005912 +17 0.295482 0.647908 0.011071 0.007503 +12 0.221574 0.647453 0.009276 0.006594 +11 0.395272 0.647226 0.008977 0.007049 +12 0.162926 0.647112 0.009276 0.006821 +12 0.620736 0.645975 0.009276 0.007276 +12 0.894823 0.645407 0.009276 0.007049 +11 0.840066 0.644270 0.008677 0.005684 +17 0.512118 0.645180 0.009874 0.007503 +17 0.735338 0.642678 0.009874 0.007049 +12 0.922950 0.602888 0.008079 0.006594 +12 0.922950 0.591746 0.009276 0.007049 +17 0.869090 0.616075 0.008079 0.003865 +12 0.878665 0.602888 0.009276 0.006594 +12 0.878067 0.594361 0.009276 0.005912 +17 0.621933 0.610960 0.009276 0.006821 +17 0.621484 0.603001 0.010174 0.006821 +12 0.767953 0.597658 0.009276 0.006139 +17 0.393627 0.604252 0.011071 0.004775 +17 0.393627 0.609027 0.011071 0.004775 +17 0.393627 0.613802 0.011071 0.004775 +17 0.294883 0.604252 0.011670 0.004775 +17 0.294883 0.609027 0.011670 0.004775 +17 0.294883 0.613802 0.011670 0.004775 +12 0.894524 0.602888 0.009874 0.006594 +12 0.894225 0.594702 0.009276 0.005684 +17 0.166218 0.602206 0.012268 0.006139 +17 0.166218 0.608345 0.012268 0.006139 +17 0.511221 0.599591 0.010473 0.006367 +17 0.511221 0.605957 0.010473 0.006367 +11 0.783513 0.597090 0.009276 0.005912 +11 0.783513 0.603001 0.009276 0.005912 +13 0.840365 0.596407 0.009276 0.006367 +13 0.840365 0.602774 0.009276 0.006367 +12 0.483393 0.560823 0.009874 0.006139 +12 0.594105 0.558095 0.009874 0.006139 +12 0.545332 0.558322 0.008079 0.005684 +12 0.246110 0.573101 0.008079 0.006139 +12 0.709007 0.558322 0.008677 0.005684 +11 0.924596 0.556162 0.009575 0.005912 +12 0.767056 0.555480 0.009874 0.006367 +11 0.870886 0.570600 0.009276 0.003865 +12 0.880461 0.556048 0.009276 0.005684 +11 0.805655 0.570373 0.006882 0.004320 +12 0.814034 0.555821 0.009276 0.006139 +12 0.222472 0.570828 0.008677 0.006139 +12 0.190754 0.568099 0.009874 0.006139 +12 0.443297 0.561050 0.008677 0.005684 +12 0.426990 0.560823 0.009575 0.006139 +12 0.392430 0.560709 0.009874 0.005912 +12 0.366098 0.560368 0.009874 0.006139 +12 0.334530 0.560368 0.010174 0.006139 +12 0.316727 0.560368 0.009276 0.006139 +12 0.165320 0.560027 0.010473 0.006367 +12 0.734740 0.558436 0.009874 0.005912 +13 0.657690 0.558322 0.008378 0.005684 +12 0.621783 0.558322 0.008977 0.005684 +12 0.563285 0.558322 0.008079 0.005684 +12 0.509725 0.558322 0.008677 0.005684 +12 0.674596 0.558095 0.010473 0.006139 +12 0.896918 0.556048 0.009874 0.005684 +12 0.841263 0.555821 0.009874 0.006139 +12 0.785009 0.555593 0.009874 0.006594 +12 0.656643 0.499432 0.009276 0.006139 +12 0.364153 0.502387 0.008977 0.007503 +12 0.878217 0.495907 0.009575 0.007276 +12 0.248205 0.516030 0.009874 0.006594 +12 0.224117 0.513074 0.009575 0.006139 +13 0.190006 0.511028 0.009575 0.006594 +12 0.446888 0.502615 0.008677 0.007049 +13 0.427139 0.502842 0.009874 0.007503 +12 0.166218 0.502842 0.009874 0.007503 +13 0.484291 0.502160 0.009276 0.007049 +12 0.395871 0.502387 0.008977 0.007503 +12 0.334979 0.502387 0.008677 0.007503 +12 0.320018 0.502387 0.009874 0.007503 +12 0.562089 0.501023 0.009276 0.006594 +12 0.734590 0.499886 0.009575 0.006139 +12 0.673698 0.500114 0.009874 0.006594 +11 0.623130 0.500114 0.009276 0.006594 +13 0.594405 0.500000 0.009276 0.006367 +13 0.544285 0.500000 0.009575 0.006367 +12 0.511819 0.499886 0.010473 0.006139 +13 0.710203 0.499432 0.009874 0.006139 +12 0.816128 0.497158 0.009874 0.007049 +12 0.785308 0.497499 0.009276 0.007731 +13 0.765859 0.497385 0.009874 0.007503 +18 0.895123 0.495339 0.007481 0.004320 +18 0.840664 0.496248 0.008677 0.006139 +13 0.923549 0.496248 0.009276 0.007049 +12 0.347696 0.475330 0.007780 0.006139 +12 0.328097 0.470214 0.009276 0.005912 +11 0.581239 0.468167 0.006882 0.004548 +12 0.589767 0.454638 0.009575 0.006594 +11 0.532166 0.467372 0.006882 0.004775 +12 0.540545 0.454411 0.009276 0.006139 +12 0.473070 0.454638 0.009575 0.006594 +12 0.919360 0.450773 0.009276 0.006139 +12 0.798474 0.462483 0.009276 0.005912 +12 0.296529 0.462369 0.010174 0.006594 +12 0.273639 0.459754 0.006882 0.005457 +12 0.779324 0.459754 0.009276 0.005912 +17 0.167265 0.459641 0.010174 0.006594 +12 0.748953 0.457140 0.010174 0.006139 +12 0.730551 0.454638 0.009874 0.005684 +11 0.504339 0.454980 0.009874 0.006367 +12 0.556703 0.454638 0.009276 0.006594 +11 0.442101 0.454866 0.009874 0.007049 +12 0.422053 0.454638 0.008677 0.006594 +12 0.623579 0.454411 0.009575 0.007049 +12 0.887493 0.451455 0.008977 0.005684 +12 0.867145 0.450773 0.009575 0.006139 +12 0.347995 0.432810 0.007780 0.005684 +12 0.140485 0.427808 0.007481 0.004775 +12 0.327499 0.427808 0.009276 0.005684 +12 0.918312 0.409732 0.008977 0.005912 +12 0.590664 0.412460 0.008977 0.005912 +12 0.539198 0.412347 0.008977 0.005684 +12 0.473968 0.412119 0.009575 0.006139 +12 0.798324 0.420077 0.010174 0.006594 +12 0.298474 0.420077 0.009874 0.006594 +12 0.779324 0.417576 0.009276 0.005230 +12 0.275583 0.417349 0.008977 0.005684 +12 0.167714 0.417121 0.010473 0.007049 +12 0.749850 0.415075 0.010174 0.005684 +12 0.730850 0.412460 0.009276 0.005912 +12 0.556703 0.412460 0.009276 0.005912 +12 0.424147 0.412347 0.009874 0.005684 +12 0.504339 0.412233 0.009874 0.006367 +12 0.441203 0.412119 0.009276 0.006139 +17 0.624028 0.412119 0.011071 0.007049 +12 0.886744 0.409845 0.009874 0.006139 +18 0.866996 0.409845 0.008677 0.006139 +13 0.667115 0.379832 0.006284 0.005230 +11 0.670407 0.373124 0.006882 0.006367 +12 0.207211 0.377217 0.009276 0.005457 +12 0.207211 0.382674 0.009276 0.005457 +17 0.276780 0.376648 0.010772 0.006139 +17 0.276780 0.382788 0.010772 0.006139 +11 0.441203 0.374829 0.008079 0.005230 +11 0.441203 0.380059 0.008079 0.005230 +17 0.504937 0.374147 0.009874 0.005684 +17 0.504937 0.379832 0.009874 0.005684 +11 0.731747 0.372215 0.008677 0.005457 +11 0.731747 0.377672 0.008677 0.005457 +11 0.781119 0.369827 0.009276 0.005230 +11 0.781119 0.375057 0.009276 0.005230 +17 0.847098 0.368804 0.010174 0.005912 +17 0.847098 0.374716 0.010174 0.005912 +12 0.574806 0.352092 0.009575 0.006139 +12 0.812687 0.337312 0.009575 0.005684 +11 0.757481 0.351751 0.007481 0.007276 +11 0.766158 0.336971 0.009276 0.005912 +11 0.691352 0.351296 0.006882 0.006367 +12 0.699431 0.336971 0.008677 0.005457 +13 0.556104 0.350045 0.009276 0.005684 +12 0.524686 0.347090 0.009874 0.005230 +13 0.361460 0.341405 0.008977 0.005684 +12 0.328396 0.341519 0.009276 0.005912 +13 0.312837 0.341633 0.009874 0.006139 +12 0.276182 0.341405 0.009575 0.005684 +13 0.243268 0.341633 0.009575 0.006139 +12 0.209904 0.341633 0.009874 0.006139 +12 0.191652 0.341405 0.009276 0.005684 +13 0.505236 0.339359 0.010473 0.006139 +17 0.397666 0.339131 0.010772 0.007503 +12 0.781718 0.337199 0.009276 0.005457 +12 0.732944 0.337085 0.009874 0.006139 +12 0.668163 0.336858 0.008977 0.005684 +12 0.652154 0.337085 0.009874 0.006139 +12 0.846649 0.334698 0.009874 0.006821 +12 0.765260 0.282515 0.009874 0.006139 +11 0.805356 0.303092 0.006284 0.005457 +12 0.812986 0.282060 0.008977 0.006139 +12 0.362507 0.285243 0.009874 0.006139 +11 0.304458 0.302410 0.007481 0.006821 +11 0.312986 0.285698 0.008977 0.006139 +11 0.233393 0.301614 0.006583 0.006139 +12 0.242220 0.285812 0.009874 0.006367 +12 0.576002 0.297067 0.009575 0.006139 +12 0.556104 0.294566 0.008079 0.005684 +12 0.525883 0.291837 0.009874 0.006594 +12 0.327947 0.285698 0.008977 0.006139 +12 0.206014 0.285812 0.009276 0.006367 +12 0.274835 0.285016 0.009276 0.006594 +12 0.191801 0.284902 0.008977 0.006367 +12 0.503441 0.283424 0.009276 0.007049 +12 0.780969 0.281605 0.009575 0.006139 +17 0.397516 0.282287 0.010473 0.007503 +13 0.701077 0.281378 0.010174 0.006594 +12 0.668911 0.281151 0.009874 0.006139 +12 0.649761 0.281151 0.009874 0.006139 +12 0.730251 0.280809 0.009276 0.006367 +17 0.846050 0.279104 0.009874 0.007503 +12 0.818223 0.237494 0.009276 0.006139 +12 0.919958 0.237494 0.009276 0.006139 +11 0.763465 0.251251 0.006284 0.005457 +12 0.770946 0.237267 0.009276 0.005684 +12 0.696738 0.244884 0.010473 0.006367 +17 0.624028 0.244770 0.009874 0.006139 +12 0.893627 0.237494 0.009276 0.005230 +13 0.875224 0.237722 0.007780 0.005684 +12 0.845153 0.237722 0.009276 0.005684 +12 0.788450 0.237381 0.009575 0.005912 +13 0.739228 0.237267 0.009276 0.005684 +12 0.223968 0.230446 0.009276 0.005684 +11 0.167115 0.230673 0.009276 0.006139 +11 0.378366 0.227945 0.009276 0.006139 +12 0.459156 0.227717 0.009276 0.006594 +11 0.267654 0.226580 0.009276 0.006139 +11 0.509725 0.225671 0.009874 0.007049 +12 0.920108 0.193611 0.007181 0.005684 +12 0.876571 0.192929 0.008677 0.006139 +17 0.168312 0.203956 0.010473 0.007276 +17 0.378965 0.201342 0.010473 0.006594 +17 0.268552 0.200659 0.009874 0.007049 +17 0.624626 0.200318 0.011071 0.007276 +17 0.509725 0.199864 0.011071 0.007276 +18 0.755386 0.198045 0.008079 0.005457 +12 0.844853 0.193270 0.008677 0.005912 +13 0.817026 0.193156 0.008079 0.005684 +12 0.788151 0.193042 0.008378 0.005457 +12 0.893327 0.192929 0.008677 0.006139 +13 0.770946 0.192929 0.008079 0.006139 +12 0.739527 0.192929 0.007481 0.006139 +12 0.625075 0.157117 0.008977 0.005457 +12 0.623728 0.149272 0.009276 0.006139 +12 0.562687 0.156776 0.009276 0.005684 +12 0.562537 0.148818 0.010174 0.006139 +18 0.510024 0.156776 0.009276 0.005684 +12 0.509575 0.148818 0.009575 0.006139 +12 0.169958 0.154161 0.010772 0.005912 +12 0.169958 0.160073 0.010772 0.005912 +12 0.699731 0.152456 0.008079 0.005230 +12 0.677887 0.151887 0.008677 0.005002 +12 0.677887 0.156889 0.008677 0.005002 +12 0.739378 0.150068 0.010174 0.005912 +12 0.269150 0.149386 0.009874 0.004548 +12 0.269150 0.153934 0.009874 0.004548 +12 0.269150 0.158481 0.009874 0.004548 +12 0.209605 0.148818 0.010473 0.006139 +12 0.209605 0.154957 0.010473 0.006139 +12 0.439258 0.148136 0.009575 0.005684 +12 0.439258 0.153820 0.009575 0.005684 +12 0.377169 0.147681 0.010473 0.005684 +12 0.377169 0.153365 0.010473 0.005684 +12 0.647367 0.146885 0.008677 0.005912 +12 0.655745 0.149841 0.008677 0.005912 +12 0.316727 0.146999 0.010473 0.006139 +12 0.316727 0.153138 0.010473 0.006139 +12 0.457660 0.145975 0.008677 0.005912 +12 0.467534 0.148931 0.008677 0.005912 +12 0.403202 0.145066 0.008677 0.005912 +12 0.409785 0.148477 0.008677 0.005912 +12 0.581538 0.149159 0.009874 0.005912 +12 0.581538 0.143247 0.009874 0.005912 +12 0.532017 0.142906 0.009575 0.006139 +12 0.532017 0.149045 0.009575 0.006139 +13 0.459156 0.109823 0.008079 0.005457 +11 0.626421 0.103115 0.009874 0.006594 +11 0.677289 0.098113 0.009874 0.006594 +12 0.741323 0.095157 0.009874 0.006139 +11 0.563585 0.094702 0.009874 0.006139 +12 0.440904 0.093793 0.009874 0.006139 +13 0.420557 0.093565 0.009276 0.005684 +12 0.378217 0.093338 0.008977 0.006139 +13 0.349192 0.093111 0.008977 0.005684 +12 0.317923 0.092883 0.009276 0.006139 +12 0.299970 0.092883 0.009276 0.006139 +12 0.269449 0.092542 0.009276 0.006367 +17 0.169509 0.091974 0.010473 0.007049 +13 0.482196 0.091064 0.008677 0.006139 +11 0.509276 0.087653 0.010174 0.007503 +13 0.662029 0.056730 0.009276 0.006594 +11 0.591412 0.068895 0.005685 0.005457 +12 0.598893 0.056276 0.009874 0.006594 +13 0.714243 0.056730 0.010174 0.006594 +12 0.679384 0.056730 0.009874 0.006594 +12 0.627020 0.056276 0.009874 0.006594 +12 0.565380 0.056276 0.008677 0.006594 +12 0.548773 0.055593 0.008378 0.006139 +17 0.379563 0.052296 0.010473 0.006821 +12 0.144674 0.050932 0.008677 0.005002 +18 0.144674 0.055935 0.008677 0.005002 +17 0.271245 0.051501 0.010473 0.007049 +12 0.742071 0.048658 0.008977 0.005912 +13 0.239078 0.049000 0.010174 0.006594 +12 0.207510 0.049000 0.009874 0.006594 +13 0.191801 0.048886 0.008378 0.006367 +0 0.095003 0.858458 0.023040 0.023874 +0 0.095901 0.381196 0.022442 0.024329 +4 0.390036 0.144952 0.009874 0.013870 +2 0.092310 0.196339 0.021245 0.019327 +0 0.093806 0.614939 0.023040 0.023420 +4 0.832885 0.277285 0.008677 0.013870 +4 0.175793 0.510573 0.009874 0.015689 +2 0.091712 0.465780 0.020048 0.019782 +0 0.095601 0.297976 0.021843 0.033424 +2 0.094105 0.422806 0.018851 0.018417 +2 0.092609 0.241814 0.018253 0.019327 +4 0.155446 0.203161 0.007481 0.012960 +0 0.095601 0.054457 0.021843 0.032970 +4 0.177887 0.568781 0.009276 0.014779 +4 0.118043 0.373010 0.009276 0.013415 +4 0.140784 0.559686 0.009276 0.012051 +3 0.855625 0.807071 0.006284 0.016598 +3 0.498953 0.647226 0.007481 0.015234 +3 0.660832 0.698840 0.006882 0.013870 +0 0.311640 0.937813 0.023040 0.026148 +4 0.835577 0.369145 0.009276 0.012960 +4 0.823609 0.937813 0.009276 0.014325 +4 0.825105 0.898931 0.009874 0.012960 +4 0.631209 0.695657 0.009874 0.014779 +4 0.455566 0.704525 0.009276 0.013415 +1 0.095601 0.102206 0.021843 0.035698 +1 0.094105 0.564006 0.022442 0.039791 +2 0.096798 0.941905 0.024237 0.018872 +4 0.158737 0.159732 0.009276 0.016144 +2 0.094704 0.898704 0.018851 0.019782 +4 0.098294 0.757731 0.010473 0.015234 +3 0.661430 0.648590 0.006882 0.015234 +4 0.151556 0.847772 0.009276 0.016144 +4 0.610263 0.602660 0.006284 0.010687 +4 0.243417 0.890973 0.008677 0.014325 +2 0.092609 0.661778 0.018253 0.017963 +3 0.498654 0.693156 0.006882 0.015234 +0 0.095601 0.334811 0.021843 0.032515 +4 0.455266 0.655184 0.009874 0.017508 +4 0.115649 0.706799 0.009276 0.015234 +2 0.092609 0.709527 0.018253 0.018872 +3 0.820018 0.860050 0.006882 0.018872 +3 0.683573 0.654047 0.005685 0.015234 +3 0.682974 0.702933 0.006882 0.015689 +4 0.756284 0.599250 0.008677 0.012960 +4 0.431029 0.653365 0.009276 0.015689 +4 0.125075 0.158026 0.008378 0.014097 +4 0.142729 0.154616 0.008977 0.015462 +4 0.134949 0.146658 0.008977 0.015916 +4 0.116098 0.759891 0.008378 0.013643 +4 0.126272 0.859936 0.007181 0.010914 +4 0.117594 0.850841 0.008977 0.012733 +4 0.118492 0.896317 0.008378 0.012733 +0 0.133154 0.795589 0.007780 0.011369 +4 0.125673 0.247840 0.008378 0.012733 +4 0.141532 0.467940 0.007780 0.014552 +4 0.134051 0.459982 0.008378 0.013188 +4 0.124177 0.202137 0.008977 0.013188 +5 0.140036 0.200318 0.008378 0.011369 +4 0.116397 0.192588 0.008977 0.013188 +4 0.140934 0.244429 0.007780 0.013188 +0 0.133453 0.234652 0.008378 0.010914 +0 0.141532 0.520464 0.008977 0.012278 +4 0.134051 0.510687 0.008378 0.013643 +4 0.134949 0.091405 0.008977 0.016371 +4 0.142430 0.379718 0.008378 0.014552 +4 0.142430 0.944293 0.008378 0.014097 +4 0.124476 0.617553 0.008378 0.013643 +0 0.116397 0.606867 0.008977 0.012278 +4 0.133154 0.604820 0.007780 0.011824 +4 0.126272 0.103683 0.008378 0.013643 +0 0.126272 0.055935 0.008378 0.010005 +4 0.143028 0.332879 0.008378 0.015462 +4 0.125673 0.808549 0.008378 0.012733 +5 0.115799 0.554798 0.007780 0.011824 +4 0.142130 0.296044 0.008977 0.015462 +4 0.134351 0.288313 0.008977 0.015462 +4 0.122980 0.666894 0.008977 0.013188 +4 0.115799 0.658254 0.008977 0.015007 +4 0.133902 0.759095 0.009276 0.014779 +4 0.140335 0.763870 0.008977 0.014779 +4 0.116846 0.515575 0.009276 0.014779 +4 0.125374 0.523761 0.008977 0.014779 +4 0.240724 0.932128 0.009276 0.014779 +5 0.242519 0.941905 0.009276 0.014779 +4 0.131807 0.655184 0.009276 0.014779 +4 0.117744 0.463506 0.009276 0.014779 +4 0.125374 0.470555 0.008977 0.014779 +4 0.116846 0.291382 0.009276 0.014779 +4 0.125374 0.297749 0.008977 0.014779 +5 0.127319 0.380514 0.009276 0.014779 +4 0.134351 0.372101 0.008977 0.014779 +4 0.117145 0.938495 0.009276 0.014779 +4 0.125224 0.945543 0.009276 0.014779 +4 0.133154 0.937358 0.008977 0.014779 +5 0.075554 0.156321 0.009276 0.014779 +3 0.085877 0.153138 0.008977 0.014779 +5 0.317624 0.888927 0.009276 0.014779 +5 0.317923 0.900523 0.009276 0.014779 +4 0.094405 0.530809 0.009276 0.012960 +5 0.099641 0.530809 0.008977 0.012960 +4 0.087822 0.526035 0.009276 0.014779 +4 0.098444 0.521487 0.008977 0.014779 +4 0.089019 0.809118 0.009276 0.014779 +5 0.100838 0.805252 0.008977 0.014779 +4 0.088121 0.772965 0.009276 0.014779 +5 0.100838 0.774329 0.008977 0.014779 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_44.jpg b/data_dataset/dvo/debug/debug_44.jpg new file mode 100644 index 0000000..f42c51e Binary files /dev/null and b/data_dataset/dvo/debug/debug_44.jpg differ diff --git a/data_dataset/dvo/debug/debug_44.txt b/data_dataset/dvo/debug/debug_44.txt new file mode 100644 index 0000000..6fb06a3 --- /dev/null +++ b/data_dataset/dvo/debug/debug_44.txt @@ -0,0 +1,619 @@ +7 0.848893 0.938950 0.011969 0.012506 +8 0.776780 0.935312 0.012567 0.007049 +7 0.628067 0.938495 0.011969 0.013415 +7 0.561640 0.937131 0.011969 0.014325 +7 0.517355 0.937813 0.011969 0.012960 +7 0.450329 0.936676 0.011969 0.017053 +7 0.400658 0.932924 0.011969 0.022738 +7 0.336026 0.937813 0.011969 0.012960 +7 0.288749 0.937813 0.011969 0.012960 +7 0.216038 0.937585 0.011370 0.012506 +6 0.897068 0.937358 0.008977 0.017508 +6 0.673549 0.937813 0.009575 0.018417 +10 0.353980 0.928377 0.007181 0.002729 +6 0.169060 0.936221 0.008378 0.019782 +10 0.459306 0.905184 0.007181 0.004548 +7 0.850688 0.893702 0.011969 0.012960 +10 0.776780 0.890177 0.012567 0.004548 +7 0.626870 0.893474 0.011969 0.013415 +7 0.561939 0.893474 0.011370 0.013415 +7 0.517654 0.893474 0.012567 0.013415 +7 0.451227 0.893247 0.011370 0.012960 +7 0.399761 0.896430 0.011370 0.020236 +7 0.336625 0.893020 0.011969 0.013415 +7 0.289348 0.893247 0.011969 0.013870 +7 0.218731 0.892565 0.011969 0.012506 +6 0.672651 0.894156 0.008977 0.018417 +6 0.170257 0.892337 0.008378 0.019327 +9 0.641532 0.856867 0.011370 0.018417 +8 0.473668 0.856185 0.011969 0.018872 +7 0.171155 0.854366 0.012567 0.013415 +8 0.584381 0.854366 0.013166 0.018872 +8 0.531418 0.853001 0.012567 0.026148 +8 0.420706 0.855161 0.012567 0.023647 +8 0.353381 0.856639 0.011969 0.018872 +8 0.307002 0.856639 0.011370 0.017963 +8 0.243268 0.856867 0.013166 0.019327 +7 0.915619 0.853683 0.011370 0.014779 +7 0.785757 0.853911 0.012567 0.013415 +8 0.698384 0.851410 0.011370 0.009322 +6 0.739378 0.852774 0.009575 0.017508 +10 0.299521 0.844702 0.005984 0.001819 +10 0.231897 0.844702 0.007181 0.001819 +8 0.434171 0.852092 0.011969 0.023420 +8 0.257929 0.852092 0.011370 0.023420 +8 0.655895 0.852092 0.013764 0.023420 +10 0.642130 0.842201 0.010174 0.002274 +8 0.598444 0.852092 0.013764 0.023420 +10 0.578995 0.841974 0.009575 0.001819 +8 0.489826 0.852092 0.013166 0.023420 +10 0.555655 0.811733 0.010772 0.005002 +7 0.189707 0.815030 0.012567 0.013870 +8 0.881209 0.811164 0.011969 0.007049 +10 0.779773 0.811278 0.012567 0.005002 +8 0.667864 0.811392 0.012567 0.006594 +8 0.439856 0.811619 0.012567 0.007049 +6 0.218432 0.813893 0.008977 0.017963 +9 0.171155 0.810937 0.011370 0.036608 +7 0.353381 0.785016 0.010772 0.012051 +10 0.583782 0.778536 0.005984 0.003183 +8 0.643327 0.786153 0.011370 0.013415 +10 0.351586 0.777854 0.005984 0.004548 +8 0.303710 0.783879 0.011969 0.018872 +8 0.865649 0.783879 0.010772 0.018872 +8 0.532615 0.784334 0.011370 0.019782 +8 0.473668 0.783652 0.011969 0.018417 +8 0.420407 0.785471 0.010772 0.012960 +9 0.239976 0.785925 0.011370 0.013870 +8 0.189408 0.781833 0.013166 0.024784 +10 0.347397 0.771487 0.005984 0.002729 +10 0.237882 0.770578 0.023938 0.002729 +7 0.601735 0.780696 0.007181 0.026148 +10 0.467086 0.770578 0.005984 0.004548 +10 0.251646 0.769213 0.005984 0.003638 +7 0.785458 0.770691 0.011969 0.012506 +7 0.695392 0.771146 0.012567 0.013415 +7 0.914722 0.771146 0.011969 0.015234 +6 0.738779 0.769100 0.009575 0.018417 +9 0.757630 0.730673 0.013764 0.017963 +10 0.552065 0.723511 0.011969 0.005002 +10 0.324057 0.723511 0.011969 0.005002 +7 0.188211 0.727035 0.011969 0.013415 +7 0.807600 0.726126 0.011969 0.012506 +7 0.673549 0.726580 0.011969 0.013415 +8 0.443746 0.722942 0.011969 0.007049 +7 0.893776 0.725898 0.011969 0.013870 +6 0.218133 0.726353 0.009575 0.017508 +6 0.850090 0.726353 0.009575 0.018417 +6 0.625374 0.724761 0.008977 0.017963 +8 0.877618 0.676330 0.011969 0.006594 +8 0.752843 0.676558 0.012567 0.007049 +8 0.622083 0.676558 0.011969 0.007049 +7 0.472771 0.679741 0.012567 0.013415 +6 0.505984 0.677467 0.009575 0.017963 +10 0.875823 0.640291 0.011969 0.005002 +8 0.753441 0.640177 0.012567 0.007049 +8 0.621185 0.639723 0.012567 0.007049 +10 0.493417 0.639836 0.010772 0.005002 +8 0.382705 0.639495 0.011969 0.006594 +8 0.292639 0.639495 0.012567 0.006594 +10 0.291741 0.610732 0.011969 0.005002 +9 0.298923 0.601296 0.005984 0.018417 +7 0.508079 0.598568 0.011370 0.002501 +7 0.766008 0.595612 0.011370 0.017963 +7 0.704069 0.598113 0.011969 0.012960 +7 0.635248 0.598340 0.011969 0.013415 +7 0.472172 0.598340 0.011370 0.013415 +7 0.581987 0.597885 0.011969 0.013415 +9 0.800718 0.558436 0.007780 0.020009 +9 0.546379 0.559118 0.004189 0.019554 +9 0.868941 0.558890 0.004189 0.019100 +8 0.534111 0.557185 0.013166 0.020236 +9 0.911430 0.559231 0.012567 0.015234 +8 0.855177 0.560482 0.011370 0.016826 +8 0.790545 0.556730 0.012567 0.020236 +8 0.726511 0.556730 0.013764 0.019327 +8 0.652902 0.556958 0.012567 0.019782 +9 0.599042 0.557754 0.013764 0.022283 +8 0.470975 0.556048 0.012567 0.018872 +10 0.584680 0.516598 0.012567 0.002274 +10 0.481448 0.513870 0.007181 0.004093 +8 0.534411 0.510800 0.012567 0.018417 +8 0.857570 0.510118 0.013764 0.017963 +8 0.790545 0.513529 0.012567 0.015689 +8 0.651107 0.510800 0.012567 0.019327 +8 0.600838 0.510346 0.012567 0.018417 +8 0.471275 0.511028 0.013166 0.019782 +9 0.485039 0.507617 0.008378 0.026603 +9 0.506882 0.505798 0.008977 0.023874 +8 0.192699 0.463506 0.012567 0.006594 +8 0.496110 0.463279 0.012567 0.007049 +8 0.391682 0.463279 0.011969 0.007049 +8 0.292041 0.463506 0.012567 0.007503 +10 0.769898 0.423374 0.011969 0.002274 +7 0.574806 0.420987 0.011969 0.013415 +7 0.288450 0.420305 0.011370 0.012960 +8 0.496409 0.416894 0.013166 0.007049 +8 0.391981 0.416894 0.012567 0.007049 +6 0.305805 0.419395 0.010174 0.018417 +8 0.715739 0.414620 0.013764 0.021601 +10 0.493417 0.371078 0.011969 0.005002 +7 0.388689 0.374375 0.011969 0.012960 +8 0.192101 0.370509 0.012567 0.007049 +6 0.408438 0.373238 0.009575 0.017963 +8 0.494614 0.324579 0.011969 0.007049 +8 0.292340 0.324807 0.011969 0.006594 +8 0.194195 0.325034 0.011969 0.007049 +10 0.393477 0.288768 0.011969 0.005002 +8 0.291442 0.288881 0.011370 0.006594 +8 0.191502 0.288881 0.011370 0.006594 +10 0.180431 0.236244 0.007181 0.002729 +10 0.797127 0.236471 0.012567 0.005002 +8 0.891083 0.235675 0.011370 0.006594 +6 0.699282 0.239313 0.009575 0.018417 +6 0.347696 0.238404 0.010174 0.019327 +6 0.580192 0.237949 0.009575 0.017508 +6 0.473668 0.238404 0.009575 0.019327 +6 0.232196 0.238859 0.008977 0.018417 +7 0.767804 0.199523 0.012567 0.013415 +10 0.893776 0.193497 0.005984 0.001819 +6 0.473070 0.199295 0.009575 0.018417 +6 0.232196 0.199068 0.008977 0.018872 +6 0.698085 0.199068 0.009575 0.018872 +6 0.578995 0.198386 0.009575 0.018417 +6 0.347696 0.198840 0.010174 0.018417 +9 0.177439 0.198613 0.007181 0.037062 +8 0.795631 0.147681 0.011969 0.007049 +6 0.473369 0.152001 0.010174 0.018417 +6 0.347397 0.152001 0.009575 0.018417 +6 0.579892 0.151319 0.008977 0.017963 +6 0.698983 0.151091 0.008977 0.017508 +6 0.233992 0.150182 0.008977 0.017508 +9 0.221424 0.114484 0.007780 0.020691 +10 0.661580 0.114598 0.007181 0.003183 +10 0.580192 0.114598 0.007181 0.003183 +10 0.350987 0.114598 0.005984 0.003183 +10 0.328845 0.114598 0.007181 0.003183 +10 0.351885 0.110505 0.008977 0.003183 +10 0.327648 0.110050 0.005984 0.002274 +7 0.792340 0.109709 0.011370 0.012960 +8 0.598444 0.112437 0.012567 0.018417 +9 0.365949 0.114484 0.013166 0.013415 +7 0.294434 0.109936 0.011370 0.013415 +7 0.533214 0.109709 0.012567 0.013870 +8 0.888390 0.105389 0.011969 0.007049 +6 0.807301 0.109254 0.010174 0.017508 +8 0.461400 0.102206 0.008977 0.005230 +10 0.201676 0.096407 0.008977 0.004093 +8 0.796828 0.067872 0.011969 0.006594 +6 0.347696 0.071510 0.010174 0.018417 +6 0.471275 0.070146 0.009575 0.017508 +6 0.233094 0.070373 0.009575 0.017963 +6 0.698085 0.070146 0.009575 0.017508 +6 0.578995 0.069918 0.009575 0.017053 +10 0.423399 0.063211 0.007181 0.003183 +8 0.085877 0.035812 0.005984 0.013415 +12 0.866996 0.944179 0.008677 0.005230 +11 0.644674 0.943724 0.010473 0.006139 +12 0.586774 0.935994 0.008977 0.005230 +12 0.475913 0.932583 0.009276 0.007503 +12 0.534411 0.930764 0.008977 0.005684 +12 0.353680 0.930423 0.007181 0.005002 +12 0.422501 0.928377 0.010174 0.006367 +12 0.244764 0.927922 0.008977 0.006367 +13 0.233094 0.924966 0.007181 0.004093 +12 0.308348 0.924852 0.009276 0.005684 +12 0.586924 0.909618 0.009874 0.006139 +12 0.866846 0.907344 0.009575 0.006139 +11 0.645123 0.906548 0.010174 0.006367 +12 0.475464 0.906435 0.009575 0.006139 +12 0.532615 0.903934 0.009575 0.005684 +11 0.353680 0.903706 0.010174 0.006139 +11 0.422950 0.901432 0.009874 0.006139 +12 0.246559 0.900864 0.008977 0.005912 +13 0.306703 0.898249 0.009575 0.006139 +11 0.139288 0.896885 0.005087 0.004320 +12 0.139587 0.890518 0.005685 0.005230 +18 0.125224 0.859141 0.004488 0.003411 +13 0.881658 0.859482 0.010473 0.005912 +12 0.851885 0.859368 0.010174 0.005684 +13 0.818073 0.859368 0.010174 0.005684 +12 0.676990 0.859595 0.009276 0.006139 +11 0.657540 0.859595 0.009874 0.006139 +13 0.655895 0.845498 0.008378 0.006594 +13 0.599491 0.859709 0.009874 0.006367 +12 0.563136 0.859709 0.010174 0.006367 +13 0.547427 0.859709 0.009874 0.006367 +13 0.490575 0.859709 0.009874 0.006367 +12 0.454219 0.859595 0.010174 0.006139 +12 0.401406 0.859709 0.009874 0.006367 +13 0.369988 0.859709 0.010473 0.006367 +12 0.337522 0.859595 0.010174 0.006139 +13 0.320317 0.859595 0.009276 0.006139 +11 0.896768 0.859141 0.010772 0.006139 +12 0.627020 0.859482 0.009874 0.006821 +12 0.517804 0.859595 0.010473 0.007049 +12 0.289348 0.859368 0.009575 0.006594 +12 0.220377 0.859482 0.009276 0.006821 +12 0.201526 0.859595 0.010473 0.007049 +12 0.434770 0.847090 0.004788 0.003865 +13 0.434470 0.859482 0.010174 0.006821 +18 0.257331 0.847090 0.005984 0.003865 +12 0.258378 0.859823 0.009874 0.006594 +12 0.171604 0.825261 0.009874 0.006594 +12 0.169360 0.807299 0.005984 0.005230 +18 0.096798 0.819236 0.013465 0.004548 +18 0.096798 0.823784 0.013465 0.004548 +12 0.132256 0.802524 0.007780 0.004320 +13 0.256882 0.791155 0.009276 0.007503 +12 0.674895 0.790246 0.009874 0.006594 +13 0.658438 0.790246 0.009276 0.006594 +13 0.201825 0.790473 0.009276 0.007049 +11 0.898115 0.789791 0.009874 0.006594 +13 0.879563 0.790018 0.009874 0.007049 +12 0.852035 0.790018 0.009874 0.007049 +12 0.627020 0.789791 0.009874 0.006594 +13 0.599192 0.789791 0.009276 0.006594 +12 0.564632 0.790246 0.009575 0.007503 +13 0.544883 0.790018 0.009575 0.007049 +12 0.517205 0.789791 0.009276 0.006594 +13 0.489677 0.790018 0.009276 0.007049 +13 0.435518 0.790018 0.009874 0.007049 +11 0.219779 0.790018 0.009276 0.007049 +11 0.227858 0.769782 0.007481 0.003411 +12 0.818821 0.789450 0.009276 0.006821 +12 0.455715 0.789563 0.009575 0.007049 +12 0.403501 0.789336 0.009276 0.006594 +13 0.369090 0.789677 0.008677 0.007276 +13 0.366697 0.774784 0.006284 0.002956 +12 0.288300 0.789336 0.008677 0.006594 +12 0.336924 0.788995 0.008977 0.007731 +13 0.317624 0.788881 0.008677 0.007503 +18 0.583034 0.783311 0.006882 0.003638 +12 0.417415 0.783083 0.007181 0.004093 +12 0.170108 0.770919 0.009276 0.006139 +13 0.768402 0.745452 0.009575 0.007049 +12 0.789048 0.744316 0.008378 0.005684 +12 0.706912 0.729764 0.009276 0.005684 +12 0.922950 0.728740 0.009276 0.006367 +12 0.168911 0.727262 0.009276 0.006139 +12 0.741323 0.726808 0.009874 0.006139 +12 0.447038 0.685425 0.010772 0.006139 +17 0.356972 0.685766 0.010772 0.006821 +17 0.270646 0.685425 0.010473 0.007049 +17 0.171604 0.684970 0.009874 0.007049 +12 0.236685 0.633015 0.010174 0.006821 +12 0.213794 0.630855 0.009276 0.006139 +12 0.189856 0.629718 0.009276 0.007503 +12 0.169808 0.623352 0.009874 0.006594 +17 0.914572 0.611187 0.009276 0.005912 +12 0.913674 0.592769 0.008677 0.006367 +11 0.791592 0.608799 0.009874 0.006594 +12 0.790395 0.590609 0.009874 0.005684 +11 0.652454 0.606639 0.009276 0.005912 +12 0.651706 0.588449 0.010174 0.005912 +13 0.856523 0.606071 0.006882 0.005684 +12 0.857121 0.587653 0.009276 0.006139 +12 0.730551 0.603570 0.011071 0.006139 +12 0.729503 0.585834 0.008977 0.005230 +12 0.532017 0.603570 0.007780 0.006139 +12 0.532466 0.585834 0.009874 0.006139 +12 0.519150 0.601069 0.008378 0.004775 +18 0.519150 0.605844 0.008378 0.004775 +12 0.598893 0.600955 0.009874 0.006367 +12 0.597696 0.582879 0.008677 0.005684 +12 0.321813 0.598568 0.009874 0.006139 +12 0.304907 0.596066 0.008378 0.005684 +12 0.287702 0.593565 0.009874 0.006139 +17 0.170557 0.593565 0.011370 0.006139 +17 0.170557 0.599704 0.011370 0.006139 +12 0.414572 0.592997 0.009874 0.006821 +12 0.399013 0.590950 0.008677 0.005457 +12 0.269150 0.588563 0.009874 0.006139 +12 0.381059 0.588336 0.009874 0.006594 +12 0.357121 0.585834 0.009874 0.006139 +12 0.446589 0.582651 0.009276 0.006139 +11 0.607421 0.564688 0.005386 0.002956 +12 0.617145 0.554116 0.010473 0.006367 +11 0.542190 0.564916 0.006583 0.003411 +12 0.551616 0.554002 0.009874 0.006139 +11 0.866098 0.565257 0.006882 0.005002 +12 0.874028 0.553774 0.009575 0.005684 +18 0.734740 0.563779 0.006284 0.002956 +17 0.171305 0.559686 0.010473 0.007503 +13 0.669509 0.554229 0.009874 0.005684 +13 0.808348 0.554002 0.009874 0.006139 +12 0.766008 0.554002 0.009575 0.006139 +12 0.744764 0.554116 0.009575 0.006367 +12 0.703770 0.554002 0.009575 0.006139 +12 0.635248 0.554002 0.009575 0.006139 +12 0.580341 0.554002 0.009874 0.006139 +12 0.507929 0.554002 0.009874 0.006139 +12 0.488480 0.554002 0.010473 0.006139 +13 0.929533 0.553774 0.009276 0.006594 +12 0.892729 0.553661 0.009874 0.006367 +12 0.841412 0.553774 0.010174 0.006594 +18 0.447487 0.549000 0.009874 0.006139 +17 0.355625 0.545703 0.010473 0.005912 +17 0.355625 0.551614 0.010473 0.005912 +17 0.268851 0.545248 0.010473 0.005912 +17 0.268851 0.551160 0.010473 0.005912 +11 0.919659 0.526603 0.006284 0.004093 +12 0.928486 0.517735 0.009575 0.006367 +11 0.660533 0.515462 0.006284 0.005457 +12 0.670108 0.499886 0.009874 0.007049 +11 0.609515 0.515462 0.007780 0.006367 +12 0.618791 0.499432 0.009575 0.007049 +11 0.482795 0.516144 0.007481 0.007731 +11 0.492519 0.499204 0.009575 0.007503 +12 0.543387 0.515462 0.005984 0.007276 +11 0.551317 0.499886 0.009276 0.007049 +17 0.171005 0.501933 0.011071 0.007503 +17 0.355625 0.501478 0.011071 0.007503 +17 0.267654 0.501478 0.010473 0.007503 +13 0.874177 0.500341 0.009874 0.007049 +12 0.892430 0.499886 0.009276 0.007049 +13 0.808498 0.500114 0.009575 0.007503 +12 0.705566 0.499432 0.008378 0.006139 +12 0.764063 0.499432 0.009874 0.007049 +12 0.635099 0.499659 0.008079 0.007503 +12 0.839467 0.499204 0.008677 0.007503 +13 0.745961 0.498977 0.009575 0.007049 +12 0.508827 0.499090 0.009276 0.007276 +12 0.580640 0.498863 0.009276 0.007731 +12 0.447636 0.498749 0.009575 0.007503 +17 0.699431 0.472601 0.009874 0.007049 +17 0.574806 0.472601 0.010772 0.007049 +17 0.834381 0.472146 0.010473 0.007049 +12 0.168911 0.444407 0.009276 0.006139 +12 0.187163 0.439177 0.008677 0.006594 +12 0.205416 0.433492 0.009276 0.006139 +12 0.225314 0.428490 0.009575 0.006139 +12 0.263615 0.425762 0.009575 0.006139 +11 0.653800 0.418827 0.005984 0.005912 +12 0.662777 0.405753 0.009575 0.006139 +11 0.788300 0.417576 0.008079 0.004320 +12 0.796379 0.405298 0.008677 0.006139 +12 0.916667 0.415530 0.009874 0.005684 +12 0.883303 0.413142 0.008977 0.005457 +12 0.863405 0.410755 0.009874 0.006139 +13 0.732496 0.405525 0.009575 0.005684 +12 0.698833 0.405753 0.009874 0.006139 +12 0.624925 0.405753 0.009276 0.006139 +12 0.832286 0.405298 0.009874 0.006139 +12 0.757181 0.405412 0.009276 0.006367 +12 0.603680 0.405184 0.008677 0.005912 +12 0.264662 0.395634 0.009276 0.005912 +12 0.287104 0.389836 0.009874 0.006139 +12 0.305955 0.384834 0.010473 0.006139 +12 0.324955 0.382333 0.010174 0.005684 +12 0.364602 0.379832 0.009276 0.006139 +17 0.698534 0.372328 0.010473 0.006594 +17 0.573609 0.372101 0.011370 0.007049 +17 0.833483 0.369600 0.011071 0.005684 +17 0.833483 0.375284 0.011071 0.005684 +12 0.362807 0.349363 0.009276 0.006139 +12 0.390634 0.346180 0.009276 0.006139 +12 0.409635 0.341519 0.009575 0.005912 +12 0.429234 0.336062 0.009276 0.005002 +17 0.696738 0.336289 0.010473 0.006367 +17 0.574806 0.336062 0.010772 0.006821 +17 0.833333 0.333220 0.010772 0.006594 +12 0.139886 0.320714 0.006284 0.004320 +12 0.461251 0.295248 0.008677 0.006139 +13 0.490575 0.292292 0.009874 0.005684 +12 0.519001 0.287062 0.010473 0.006139 +12 0.539497 0.282060 0.009575 0.006139 +17 0.572561 0.276603 0.011071 0.007049 +17 0.832286 0.276148 0.009874 0.007049 +17 0.699431 0.276262 0.011071 0.007276 +11 0.660533 0.245452 0.009874 0.006594 +11 0.531867 0.243179 0.008677 0.005684 +11 0.426242 0.240791 0.009276 0.006367 +11 0.296230 0.240905 0.009575 0.006594 +11 0.180281 0.238631 0.008079 0.005684 +18 0.139886 0.243406 0.008677 0.005684 +12 0.139886 0.237722 0.008677 0.005684 +12 0.922501 0.219077 0.009575 0.006594 +12 0.902154 0.212256 0.009575 0.006594 +13 0.884051 0.207026 0.009276 0.005230 +11 0.659336 0.205207 0.008677 0.006139 +11 0.659037 0.189859 0.010473 0.006367 +12 0.867744 0.204525 0.010174 0.006594 +11 0.533064 0.203161 0.008677 0.005684 +12 0.532765 0.187813 0.009276 0.005912 +11 0.294135 0.200659 0.010174 0.006139 +11 0.294584 0.187699 0.009276 0.005684 +11 0.425943 0.200432 0.009874 0.006594 +12 0.426391 0.187926 0.010174 0.006139 +12 0.827798 0.199636 0.009874 0.005912 +11 0.179384 0.198272 0.006882 0.005002 +11 0.180281 0.184970 0.009276 0.006594 +13 0.809545 0.194407 0.009874 0.006367 +12 0.792639 0.189291 0.009575 0.006139 +11 0.533962 0.170873 0.009276 0.006594 +11 0.532615 0.155412 0.007780 0.005684 +11 0.532466 0.147453 0.009874 0.006139 +11 0.426990 0.167917 0.010174 0.006139 +11 0.426541 0.155639 0.009874 0.006139 +11 0.426840 0.147681 0.009276 0.005684 +11 0.181029 0.165871 0.007181 0.005684 +12 0.181478 0.152683 0.009276 0.006594 +12 0.181179 0.142678 0.009874 0.006594 +11 0.294584 0.155412 0.009276 0.005684 +11 0.294883 0.144952 0.008677 0.005684 +11 0.294883 0.168372 0.009874 0.007049 +18 0.658438 0.149727 0.006882 0.005230 +11 0.660233 0.171555 0.009276 0.007049 +11 0.659635 0.157799 0.009276 0.005912 +18 0.413375 0.145975 0.007481 0.005002 +18 0.413375 0.150978 0.007481 0.005002 +18 0.522442 0.145634 0.007780 0.005230 +18 0.522442 0.150864 0.007780 0.005230 +13 0.493866 0.128467 0.009276 0.006367 +12 0.765859 0.127899 0.008677 0.007049 +12 0.725015 0.123238 0.009575 0.005912 +12 0.473220 0.120396 0.009874 0.006594 +12 0.255087 0.120282 0.009276 0.006367 +12 0.701526 0.117667 0.009276 0.005684 +18 0.459755 0.122328 0.009276 0.005002 +18 0.459755 0.117326 0.009276 0.005002 +12 0.681179 0.115166 0.009276 0.006139 +12 0.444494 0.115393 0.009874 0.006594 +12 0.235637 0.114825 0.009874 0.006367 +12 0.661131 0.112665 0.009874 0.005684 +13 0.614303 0.112892 0.009575 0.006139 +12 0.579743 0.112779 0.008677 0.005912 +12 0.563435 0.112892 0.009575 0.006139 +12 0.425344 0.112892 0.009874 0.006139 +11 0.380012 0.112437 0.008977 0.005230 +12 0.380012 0.097544 0.005386 0.006367 +12 0.350987 0.112665 0.009575 0.005684 +12 0.327648 0.112437 0.009575 0.006139 +12 0.209156 0.112665 0.009575 0.006594 +12 0.180431 0.109936 0.009575 0.006594 +18 0.120736 0.105957 0.005087 0.003183 +12 0.140335 0.102660 0.007181 0.004775 +17 0.113555 0.099704 0.008677 0.008868 +18 0.139288 0.071282 0.007481 0.004775 +12 0.140186 0.065143 0.008079 0.005230 +18 0.122681 0.067644 0.007181 0.003865 +12 0.112507 0.066053 0.006583 0.004320 +11 0.532765 0.064916 0.008079 0.005684 +12 0.532166 0.046157 0.009276 0.006367 +11 0.659934 0.062528 0.007481 0.006367 +12 0.659186 0.043997 0.008378 0.007503 +11 0.294883 0.062528 0.008677 0.006367 +12 0.294584 0.043429 0.009276 0.007276 +12 0.422651 0.046044 0.009276 0.006139 +18 0.179533 0.041724 0.009575 0.006594 +13 0.086026 0.037176 0.003890 0.003865 +0 0.089617 0.373693 0.023040 0.022965 +5 0.091712 0.814575 0.023639 0.024329 +2 0.088121 0.853229 0.021245 0.019782 +0 0.089916 0.598113 0.022442 0.023420 +3 0.316427 0.111983 0.007481 0.019782 +3 0.413375 0.200205 0.006284 0.020691 +4 0.195542 0.112665 0.009874 0.016598 +3 0.413076 0.169964 0.006882 0.017508 +4 0.711700 0.124261 0.009276 0.014325 +2 0.092908 0.198386 0.020048 0.017963 +4 0.376571 0.345498 0.009276 0.016598 +3 0.170108 0.142224 0.008079 0.019327 +4 0.410981 0.046271 0.009874 0.013870 +2 0.089617 0.239541 0.018253 0.018417 +4 0.519300 0.046271 0.009874 0.016598 +0 0.092011 0.152228 0.023040 0.023874 +4 0.518701 0.065371 0.009874 0.015689 +3 0.256882 0.586744 0.006882 0.018872 +4 0.139587 0.643588 0.010473 0.016144 +3 0.823908 0.333447 0.007481 0.018872 +3 0.168911 0.239313 0.008079 0.020691 +2 0.089318 0.936448 0.020048 0.019782 +4 0.154548 0.443952 0.009276 0.016144 +3 0.414273 0.239768 0.006882 0.018872 +4 0.518701 0.584243 0.009874 0.016598 +3 0.160533 0.560596 0.008079 0.015689 +3 0.687163 0.405070 0.006882 0.020236 +4 0.234141 0.900068 0.009276 0.015234 +4 0.571664 0.910073 0.009276 0.015234 +4 0.853531 0.204297 0.010473 0.016144 +3 0.169808 0.197704 0.007481 0.018417 +1 0.088420 0.552183 0.023040 0.035243 +2 0.086924 0.466007 0.020048 0.019327 +4 0.503441 0.287062 0.009276 0.016144 +2 0.088121 0.678377 0.021245 0.019327 +4 0.090215 0.767508 0.021843 0.032970 +5 0.202124 0.624943 0.006284 0.009777 +2 0.089916 0.641769 0.016457 0.017963 +2 0.090515 0.418486 0.015260 0.017963 +4 0.753591 0.128809 0.009276 0.015234 +4 0.646768 0.245907 0.009874 0.015689 +4 0.251496 0.424852 0.009276 0.014325 +3 0.411580 0.928035 0.007481 0.020236 +4 0.572861 0.935766 0.009276 0.015689 +4 0.849042 0.409618 0.009874 0.015689 +4 0.475015 0.292974 0.009874 0.016144 +3 0.718881 0.604934 0.006882 0.017963 +3 0.369689 0.588563 0.007481 0.020691 +4 0.902005 0.592883 0.009276 0.012960 +4 0.818522 0.405980 0.012268 0.016598 +4 0.817325 0.276830 0.009874 0.016598 +4 0.226062 0.633811 0.009874 0.012960 +3 0.590814 0.405980 0.006882 0.020236 +3 0.718582 0.583788 0.007481 0.019327 +3 0.410981 0.901205 0.007481 0.018417 +4 0.140186 0.680196 0.009276 0.014779 +4 0.902005 0.611073 0.009276 0.016598 +4 0.115350 0.849136 0.009874 0.016144 +4 0.139288 0.596521 0.009874 0.016598 +4 0.140485 0.766371 0.009874 0.015234 +4 0.692549 0.729309 0.009276 0.016598 +2 0.088420 0.891428 0.020646 0.019782 +1 0.091113 0.728854 0.022442 0.030241 +4 0.252394 0.397112 0.008677 0.012506 +4 0.139737 0.202137 0.008977 0.014097 +4 0.130162 0.192588 0.008977 0.015007 +4 0.138540 0.548886 0.008977 0.015462 +4 0.131358 0.233288 0.008977 0.014552 +4 0.140934 0.854025 0.008977 0.013643 +4 0.141532 0.937472 0.008977 0.015007 +4 0.132256 0.928377 0.008378 0.013188 +4 0.114004 0.145748 0.008977 0.014097 +4 0.140335 0.722146 0.008977 0.014552 +4 0.131358 0.713734 0.008977 0.015007 +4 0.139437 0.371533 0.009575 0.015462 +4 0.121783 0.154388 0.008977 0.013188 +4 0.138839 0.150523 0.009575 0.015462 +4 0.123579 0.815825 0.010174 0.013643 +4 0.115799 0.807185 0.008977 0.015462 +4 0.113704 0.759891 0.009575 0.015462 +4 0.131658 0.757844 0.008378 0.014097 +4 0.123579 0.941564 0.008977 0.013188 +4 0.114901 0.933379 0.008378 0.015007 +0 0.130760 0.278990 0.008977 0.011369 +4 0.113405 0.638472 0.008977 0.015462 +2 0.094554 0.078445 0.015560 0.016826 +4 0.112807 0.674852 0.008977 0.014552 +4 0.113106 0.589586 0.008378 0.014097 +4 0.128665 0.458618 0.008378 0.013188 +4 0.412627 0.065712 0.008977 0.015916 +4 0.123279 0.896999 0.008378 0.013188 +4 0.120886 0.552296 0.008378 0.013188 +4 0.112507 0.544338 0.008378 0.013643 +4 0.120586 0.203274 0.010174 0.015462 +4 0.112807 0.195998 0.008977 0.014552 +4 0.113405 0.506594 0.008977 0.013643 +4 0.112507 0.717599 0.009575 0.015462 +0 0.112208 0.415189 0.008977 0.011824 +5 0.642879 0.154047 0.009276 0.016598 +4 0.648414 0.150409 0.008977 0.016598 +4 0.090215 0.521260 0.009276 0.013870 +5 0.095452 0.521260 0.008977 0.013870 +4 0.083034 0.517849 0.009276 0.016598 +4 0.093656 0.511710 0.008977 0.016598 +4 0.114752 0.239313 0.009276 0.016598 +4 0.121783 0.242724 0.008977 0.016598 +4 0.121933 0.645180 0.009276 0.016598 +4 0.128965 0.636312 0.008977 0.016598 +4 0.086026 0.071737 0.009276 0.016598 +4 0.091263 0.071510 0.008977 0.016598 +4 0.647068 0.174511 0.009276 0.016598 +4 0.647666 0.205662 0.009276 0.016598 +3 0.647068 0.189063 0.009276 0.016598 +4 0.084530 0.294793 0.009276 0.016598 +3 0.097846 0.290246 0.008977 0.016598 +4 0.121335 0.681560 0.009276 0.016598 +4 0.128965 0.672237 0.008977 0.016598 +5 0.120736 0.597431 0.009276 0.016598 +4 0.129563 0.588563 0.008977 0.016598 +4 0.112657 0.285016 0.009276 0.016598 +5 0.122382 0.285471 0.008977 0.016598 +4 0.090814 0.334129 0.009276 0.013415 +5 0.096050 0.334129 0.008977 0.013415 +4 0.084231 0.329582 0.009276 0.016598 +4 0.091263 0.326626 0.008977 0.016598 +4 0.086326 0.109027 0.009276 0.016598 +4 0.097846 0.106071 0.008977 0.016598 +3 0.134201 0.809800 0.009276 0.016598 +4 0.142130 0.812528 0.008977 0.016598 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_45.jpg b/data_dataset/dvo/debug/debug_45.jpg new file mode 100644 index 0000000..2255afa Binary files /dev/null and b/data_dataset/dvo/debug/debug_45.jpg differ diff --git a/data_dataset/dvo/debug/debug_45.txt b/data_dataset/dvo/debug/debug_45.txt new file mode 100644 index 0000000..1406c85 --- /dev/null +++ b/data_dataset/dvo/debug/debug_45.txt @@ -0,0 +1,699 @@ +10 0.850688 0.950887 0.005984 0.003183 +10 0.440754 0.947931 0.020347 0.001819 +10 0.398863 0.948386 0.010772 0.002729 +10 0.377917 0.947704 0.021544 0.004093 +10 0.511969 0.946567 0.007181 0.002729 +7 0.172651 0.946908 0.011969 0.012960 +7 0.595751 0.946453 0.011969 0.012960 +7 0.541891 0.946226 0.011969 0.013415 +8 0.277080 0.902228 0.011370 0.017735 +7 0.595751 0.905753 0.011969 0.013415 +7 0.540694 0.905070 0.011969 0.012960 +7 0.171454 0.905753 0.011969 0.013415 +10 0.736984 0.891542 0.008378 0.002729 +9 0.392579 0.895862 0.004189 0.020919 +8 0.917714 0.893474 0.010772 0.017963 +7 0.715141 0.866417 0.010174 0.009322 +8 0.194195 0.855957 0.011969 0.006594 +7 0.526332 0.858458 0.011969 0.013415 +10 0.291741 0.855389 0.011969 0.005002 +8 0.398863 0.855048 0.011969 0.006594 +6 0.487433 0.857549 0.009575 0.017963 +10 0.394375 0.815143 0.043686 0.004548 +8 0.542490 0.815257 0.013166 0.013415 +9 0.419210 0.801501 0.010772 0.026830 +9 0.266607 0.802751 0.009575 0.031151 +9 0.363854 0.802751 0.011370 0.031151 +8 0.175344 0.797294 0.006583 0.021146 +9 0.596649 0.795930 0.011370 0.041155 +10 0.865051 0.758299 0.005984 0.001819 +7 0.541891 0.761369 0.011969 0.013870 +10 0.856074 0.756480 0.011969 0.003638 +10 0.435368 0.754889 0.019150 0.005002 +10 0.447038 0.750114 0.007780 0.003638 +10 0.873728 0.735789 0.006583 0.002274 +10 0.598743 0.734879 0.007181 0.002274 +10 0.781269 0.696680 0.005984 0.005002 +7 0.896170 0.694293 0.011969 0.013415 +7 0.573010 0.694293 0.011969 0.013415 +8 0.507780 0.690882 0.011969 0.006594 +8 0.397666 0.690427 0.011969 0.006594 +8 0.291442 0.690427 0.011370 0.006594 +10 0.194494 0.690314 0.012567 0.005002 +9 0.792041 0.682810 0.004788 0.026830 +10 0.477858 0.661892 0.005984 0.001819 +10 0.775883 0.652115 0.013166 0.003183 +7 0.521843 0.650182 0.011370 0.013415 +7 0.573908 0.649500 0.011370 0.012960 +7 0.171454 0.649727 0.011969 0.013415 +10 0.815978 0.645521 0.005984 0.004548 +10 0.375524 0.636880 0.007181 0.002729 +8 0.390186 0.645634 0.008977 0.026148 +9 0.362358 0.646089 0.009575 0.024329 +9 0.865051 0.636767 0.013166 0.025693 +10 0.267205 0.619372 0.005984 0.002274 +7 0.172053 0.603797 0.011969 0.013415 +7 0.522741 0.603797 0.011969 0.013415 +8 0.683423 0.599932 0.012567 0.006594 +8 0.598743 0.600159 0.011969 0.007049 +8 0.779174 0.599477 0.011370 0.006594 +8 0.880910 0.599022 0.012567 0.006594 +10 0.801017 0.565484 0.010772 0.001819 +10 0.353381 0.562074 0.005984 0.004093 +8 0.520946 0.564234 0.011969 0.013415 +8 0.893776 0.563097 0.013166 0.013870 +10 0.500598 0.550023 0.005984 0.001819 +8 0.702274 0.548772 0.009575 0.008868 +10 0.760024 0.547067 0.006583 0.005002 +10 0.498205 0.526944 0.008378 0.002501 +10 0.804010 0.516940 0.007181 0.001592 +10 0.756134 0.515916 0.011969 0.004548 +8 0.895572 0.513984 0.013166 0.012051 +10 0.506583 0.506139 0.007181 0.003183 +10 0.377319 0.503638 0.008378 0.004548 +8 0.191801 0.453274 0.011969 0.007049 +10 0.763016 0.452933 0.012567 0.005002 +8 0.664871 0.453047 0.012567 0.006594 +8 0.574806 0.453047 0.011969 0.006594 +8 0.480251 0.453047 0.011969 0.006594 +8 0.369240 0.453047 0.012567 0.006594 +8 0.275284 0.453047 0.012567 0.006594 +8 0.873429 0.452592 0.011969 0.006594 +7 0.888390 0.418713 0.011969 0.013415 +7 0.484740 0.417349 0.011370 0.012506 +7 0.549970 0.417121 0.011370 0.012960 +7 0.251646 0.417121 0.011969 0.012960 +7 0.168761 0.417576 0.011370 0.013870 +7 0.812388 0.410414 0.007181 0.020919 +9 0.648115 0.376307 0.004189 0.017735 +7 0.549072 0.368918 0.011969 0.012960 +10 0.480251 0.365621 0.011969 0.005002 +10 0.371035 0.365621 0.012567 0.005002 +10 0.271993 0.365621 0.011969 0.005002 +10 0.192101 0.365621 0.012567 0.005002 +10 0.885398 0.365166 0.007181 0.005002 +10 0.287852 0.328786 0.006583 0.004093 +10 0.838719 0.326739 0.005984 0.003638 +10 0.760323 0.326057 0.005984 0.004093 +10 0.634351 0.324238 0.006583 0.004093 +10 0.550868 0.324011 0.005984 0.003638 +8 0.482944 0.326171 0.011370 0.012960 +10 0.741771 0.306730 0.014363 0.002729 +8 0.886595 0.285471 0.011969 0.013415 +8 0.483543 0.285925 0.012567 0.013415 +9 0.806104 0.274216 0.004189 0.023647 +10 0.747157 0.268759 0.009575 0.004093 +10 0.885996 0.225557 0.011969 0.005002 +8 0.786056 0.225216 0.011969 0.006594 +8 0.696290 0.225216 0.011969 0.006594 +8 0.595452 0.224761 0.010174 0.006594 +8 0.495512 0.224761 0.012567 0.006594 +8 0.407241 0.224534 0.011969 0.007049 +8 0.312986 0.224307 0.012567 0.006594 +8 0.203172 0.224307 0.011969 0.006594 +7 0.905147 0.189745 0.011969 0.013870 +8 0.669060 0.186335 0.011370 0.007049 +7 0.562837 0.188836 0.011969 0.012960 +8 0.494913 0.185198 0.011370 0.006594 +8 0.409037 0.184743 0.011969 0.006594 +10 0.315679 0.184629 0.011969 0.005002 +10 0.201676 0.184175 0.011370 0.005002 +10 0.886595 0.145066 0.011969 0.005002 +8 0.785458 0.144952 0.011969 0.007049 +8 0.696290 0.144725 0.011969 0.006594 +8 0.596948 0.144725 0.011969 0.006594 +10 0.495811 0.144611 0.011969 0.005002 +8 0.408438 0.144043 0.011969 0.007049 +10 0.315978 0.143702 0.012567 0.005002 +10 0.202274 0.143247 0.012567 0.005002 +8 0.627169 0.115621 0.008977 0.007503 +8 0.494614 0.104934 0.011969 0.007958 +10 0.407540 0.104138 0.012567 0.005002 +7 0.314782 0.104707 0.012567 0.008413 +10 0.201376 0.103229 0.010772 0.005002 +10 0.815380 0.099022 0.005984 0.001592 +10 0.766906 0.099136 0.007181 0.002274 +6 0.462298 0.105616 0.009575 0.017508 +10 0.781867 0.096635 0.011969 0.001819 +10 0.830940 0.096407 0.007181 0.002274 +8 0.228306 0.066508 0.010772 0.013870 +8 0.508378 0.060709 0.013166 0.027285 +7 0.480551 0.062869 0.011370 0.013870 +7 0.436266 0.062642 0.011370 0.013415 +7 0.404847 0.062187 0.010772 0.013415 +8 0.297726 0.064234 0.013166 0.018417 +8 0.183423 0.066508 0.011969 0.013870 +9 0.830640 0.059459 0.011370 0.030696 +10 0.616098 0.045930 0.009575 0.004093 +7 0.788151 0.056048 0.012567 0.026603 +13 0.722172 0.952365 0.009874 0.006139 +12 0.808498 0.951910 0.010174 0.006139 +12 0.761819 0.951910 0.009575 0.006139 +12 0.745212 0.951910 0.010473 0.006139 +13 0.850239 0.949068 0.009874 0.005912 +11 0.619539 0.946908 0.009276 0.006139 +13 0.916367 0.946226 0.010473 0.006594 +12 0.872382 0.946226 0.009874 0.006594 +17 0.901855 0.944293 0.007181 0.004548 +11 0.901855 0.948840 0.007181 0.004548 +12 0.697786 0.944634 0.008977 0.005230 +12 0.653651 0.944634 0.009276 0.006139 +12 0.635398 0.944748 0.009276 0.006367 +11 0.315978 0.933947 0.008977 0.005684 +13 0.290245 0.934061 0.008378 0.005912 +12 0.363704 0.933947 0.009874 0.006594 +13 0.395721 0.930991 0.008677 0.006139 +12 0.195542 0.929968 0.009276 0.006367 +13 0.460054 0.929286 0.008677 0.006367 +12 0.420557 0.929172 0.008677 0.006139 +12 0.487732 0.929059 0.010174 0.006821 +12 0.526780 0.927126 0.009276 0.005684 +12 0.268552 0.927126 0.008677 0.006594 +11 0.210802 0.926899 0.009276 0.006139 +12 0.508229 0.926558 0.009276 0.006367 +12 0.808797 0.910982 0.009575 0.006139 +12 0.762118 0.910982 0.009575 0.006139 +12 0.744614 0.910982 0.009276 0.006139 +13 0.722172 0.910982 0.009874 0.006139 +18 0.902154 0.908026 0.008378 0.004775 +12 0.902902 0.902683 0.007481 0.004093 +13 0.849940 0.908709 0.010473 0.006139 +13 0.917265 0.905525 0.009874 0.006139 +12 0.872083 0.905525 0.010473 0.006139 +12 0.617893 0.905525 0.010174 0.006139 +12 0.697786 0.903251 0.010174 0.005230 +12 0.635996 0.903251 0.009874 0.005230 +12 0.653202 0.903024 0.009575 0.005684 +12 0.363405 0.892792 0.009276 0.006139 +11 0.316427 0.892678 0.009874 0.005912 +13 0.290844 0.892792 0.009575 0.006139 +13 0.396619 0.890064 0.008677 0.006139 +12 0.489976 0.888472 0.009874 0.006594 +13 0.459156 0.887790 0.008079 0.007049 +12 0.195392 0.887790 0.009575 0.007049 +12 0.421753 0.887108 0.009874 0.007503 +12 0.528276 0.885516 0.008677 0.006139 +12 0.508079 0.885630 0.008977 0.006367 +11 0.211101 0.885516 0.008677 0.006139 +12 0.265560 0.884834 0.008677 0.006594 +12 0.900209 0.876990 0.008079 0.006367 +13 0.872681 0.877103 0.009276 0.006594 +13 0.837971 0.876876 0.009276 0.007049 +13 0.809545 0.869259 0.009874 0.006367 +13 0.916667 0.859027 0.009874 0.005912 +18 0.886595 0.859141 0.009575 0.006139 +13 0.852783 0.859141 0.010174 0.006139 +13 0.544434 0.854025 0.009874 0.005912 +13 0.700928 0.854252 0.010473 0.007276 +13 0.598893 0.854138 0.011071 0.007049 +13 0.823309 0.851637 0.009874 0.005684 +13 0.566278 0.836403 0.009276 0.007049 +13 0.745811 0.835380 0.010473 0.007731 +13 0.637642 0.835380 0.010174 0.007731 +12 0.459007 0.795134 0.008378 0.005457 +12 0.459007 0.800591 0.008378 0.005457 +12 0.329294 0.794225 0.009276 0.006367 +13 0.916517 0.800705 0.008378 0.005684 +13 0.917115 0.783424 0.009575 0.007503 +12 0.667415 0.800705 0.009276 0.005684 +12 0.666517 0.782628 0.008677 0.006821 +12 0.565081 0.800819 0.006882 0.005912 +12 0.565380 0.782970 0.008677 0.006594 +13 0.852932 0.800364 0.008079 0.005912 +13 0.852035 0.783197 0.008677 0.007049 +12 0.778127 0.800477 0.009276 0.006139 +12 0.778576 0.782970 0.008977 0.007503 +13 0.906493 0.798317 0.007481 0.004548 +13 0.906493 0.802865 0.007481 0.004548 +12 0.871634 0.798204 0.007181 0.006139 +11 0.597995 0.798090 0.008079 0.005912 +12 0.508677 0.797863 0.010174 0.005457 +12 0.508677 0.803320 0.010174 0.005457 +12 0.528276 0.797522 0.008677 0.005684 +12 0.528276 0.803206 0.008677 0.005684 +11 0.698833 0.797863 0.008677 0.006821 +12 0.809396 0.797749 0.008378 0.007049 +12 0.488480 0.794793 0.009276 0.005684 +12 0.488480 0.800477 0.009276 0.005684 +13 0.397367 0.794793 0.008378 0.005684 +13 0.397367 0.800477 0.008378 0.005684 +12 0.227409 0.794452 0.009575 0.005912 +12 0.227409 0.800364 0.009575 0.005912 +12 0.420257 0.792406 0.009276 0.005457 +12 0.420257 0.797863 0.009276 0.005457 +12 0.364004 0.791724 0.009276 0.005912 +12 0.364004 0.797635 0.009276 0.005912 +11 0.267953 0.791724 0.009874 0.005912 +11 0.267953 0.797635 0.009874 0.005912 +11 0.174147 0.791837 0.008977 0.006139 +11 0.174147 0.797976 0.008977 0.006139 +18 0.596798 0.780014 0.009276 0.006139 +11 0.597397 0.738859 0.009276 0.007503 +17 0.562238 0.768645 0.011370 0.007049 +12 0.565679 0.741814 0.009276 0.006139 +12 0.667415 0.742156 0.008079 0.005912 +13 0.916966 0.741587 0.008079 0.005684 +13 0.851885 0.741814 0.008378 0.006139 +12 0.777828 0.741814 0.008677 0.006139 +12 0.871933 0.739200 0.007780 0.007276 +18 0.871783 0.780468 0.009874 0.006139 +12 0.810144 0.738745 0.007481 0.007276 +18 0.808199 0.780014 0.009575 0.006139 +11 0.701676 0.739086 0.008378 0.007958 +18 0.698534 0.780468 0.009276 0.006139 +12 0.508528 0.732037 0.009874 0.005684 +12 0.528576 0.731696 0.009276 0.005912 +12 0.490874 0.728627 0.009276 0.007049 +13 0.459156 0.728627 0.008079 0.007049 +12 0.329593 0.728627 0.008677 0.007049 +13 0.398115 0.728172 0.009276 0.007049 +12 0.227558 0.727945 0.008079 0.006594 +18 0.172352 0.725898 0.008977 0.006139 +18 0.419060 0.725671 0.009276 0.006594 +18 0.364004 0.725443 0.009276 0.006139 +18 0.268253 0.725443 0.009276 0.006139 +18 0.668013 0.724875 0.009276 0.006821 +18 0.778426 0.724307 0.009874 0.006594 +18 0.852932 0.723852 0.009276 0.006594 +18 0.565081 0.723283 0.009276 0.005457 +18 0.917265 0.723624 0.009874 0.007049 +18 0.596798 0.721805 0.009276 0.006139 +18 0.872382 0.721351 0.009874 0.006139 +18 0.700778 0.720896 0.008977 0.006139 +18 0.810144 0.720441 0.009874 0.006139 +12 0.678636 0.682242 0.009575 0.006139 +12 0.145272 0.692701 0.007481 0.008868 +11 0.703022 0.682469 0.009874 0.005684 +12 0.743716 0.681560 0.009874 0.004775 +12 0.773040 0.679854 0.009874 0.005912 +12 0.850539 0.676671 0.009276 0.006821 +13 0.826601 0.676785 0.009276 0.007049 +12 0.597846 0.676671 0.009575 0.006821 +12 0.797576 0.676216 0.009874 0.006821 +12 0.880311 0.674739 0.008977 0.005684 +12 0.656194 0.674966 0.008977 0.006139 +11 0.616547 0.674966 0.009276 0.006139 +12 0.864303 0.674284 0.008677 0.005684 +12 0.354578 0.654957 0.009575 0.006139 +11 0.311191 0.654957 0.009575 0.006139 +13 0.287104 0.654957 0.009874 0.006139 +13 0.389138 0.652910 0.009276 0.006594 +12 0.678187 0.636539 0.009276 0.006594 +13 0.449132 0.649955 0.010174 0.006139 +12 0.412478 0.649955 0.010473 0.006139 +12 0.195542 0.649727 0.011071 0.006594 +12 0.506732 0.647453 0.009874 0.005684 +12 0.491771 0.647567 0.009874 0.005912 +12 0.477409 0.647681 0.009874 0.006139 +11 0.212896 0.647453 0.009874 0.005684 +12 0.826601 0.631082 0.009276 0.006594 +12 0.264961 0.647226 0.009874 0.006139 +12 0.742669 0.636767 0.009575 0.006139 +11 0.703920 0.636767 0.009276 0.006139 +13 0.771245 0.633129 0.009874 0.006139 +13 0.598594 0.631310 0.009276 0.007049 +12 0.794883 0.630855 0.009276 0.007049 +12 0.849342 0.630628 0.009276 0.007503 +11 0.616248 0.628695 0.009874 0.005457 +12 0.880461 0.628467 0.008079 0.005912 +12 0.864602 0.628581 0.009874 0.006139 +12 0.655745 0.628581 0.009874 0.006139 +12 0.389288 0.604252 0.009575 0.005684 +11 0.441053 0.616758 0.007780 0.007049 +11 0.448384 0.601864 0.008079 0.005457 +11 0.312687 0.607094 0.009575 0.005912 +12 0.288600 0.606980 0.009276 0.005684 +12 0.354578 0.606753 0.009575 0.006139 +12 0.194195 0.601864 0.008378 0.005912 +12 0.412926 0.601751 0.008977 0.006139 +11 0.211999 0.599477 0.009276 0.006139 +12 0.505835 0.599022 0.009276 0.006139 +12 0.492968 0.599022 0.009874 0.006139 +12 0.478306 0.599022 0.010473 0.006139 +12 0.263465 0.599136 0.009276 0.006367 +12 0.323609 0.567644 0.008677 0.005230 +12 0.323459 0.562187 0.007181 0.005230 +11 0.263914 0.566053 0.008977 0.005684 +11 0.263465 0.559459 0.009276 0.006139 +12 0.490275 0.564575 0.009276 0.005457 +12 0.490275 0.570032 0.009276 0.005457 +12 0.505984 0.564234 0.010174 0.005684 +12 0.505984 0.569918 0.010174 0.005684 +12 0.475613 0.562187 0.008677 0.005230 +12 0.475613 0.567417 0.008677 0.005230 +13 0.447636 0.562187 0.008977 0.005230 +13 0.447636 0.567417 0.008977 0.005230 +13 0.390485 0.562187 0.008378 0.005230 +13 0.390485 0.567417 0.008378 0.005230 +12 0.228007 0.561960 0.008977 0.005684 +12 0.228007 0.567644 0.008977 0.005684 +11 0.817624 0.561619 0.009276 0.006821 +12 0.826900 0.548317 0.009874 0.006594 +11 0.172501 0.559573 0.009276 0.005457 +12 0.172501 0.565030 0.009276 0.005457 +12 0.412029 0.559118 0.009575 0.005457 +12 0.412029 0.564575 0.009575 0.005457 +12 0.354129 0.559231 0.009874 0.005684 +12 0.354129 0.564916 0.009874 0.005684 +12 0.864452 0.551046 0.008977 0.005684 +12 0.878067 0.550819 0.009276 0.006139 +12 0.628815 0.549000 0.009874 0.006139 +12 0.547726 0.549227 0.009276 0.006594 +13 0.772442 0.548545 0.009874 0.006139 +12 0.716637 0.548772 0.009575 0.006594 +12 0.852334 0.548204 0.009276 0.006367 +11 0.576900 0.546726 0.010174 0.006139 +12 0.793686 0.546157 0.009276 0.005912 +12 0.742220 0.546271 0.009276 0.006139 +11 0.654399 0.546385 0.009575 0.006367 +11 0.925344 0.542178 0.010473 0.006139 +12 0.925344 0.548317 0.010473 0.006139 +12 0.507032 0.508413 0.008079 0.005912 +12 0.492071 0.508527 0.009276 0.006139 +12 0.226212 0.506025 0.008378 0.005684 +12 0.475613 0.505798 0.009874 0.006139 +13 0.388540 0.505571 0.009276 0.005684 +12 0.448235 0.505457 0.008977 0.006367 +12 0.323160 0.505343 0.008977 0.006139 +12 0.411580 0.503297 0.009874 0.005684 +11 0.262268 0.503297 0.009276 0.005684 +11 0.172202 0.503524 0.009874 0.006139 +12 0.354279 0.503070 0.009575 0.006139 +12 0.880461 0.502387 0.009276 0.005684 +12 0.865500 0.502387 0.009276 0.005684 +13 0.628815 0.500341 0.009874 0.006139 +12 0.850239 0.499886 0.009874 0.006139 +13 0.826900 0.499886 0.009874 0.006139 +13 0.773639 0.499886 0.009874 0.006139 +12 0.716188 0.499886 0.009874 0.006139 +12 0.548025 0.500000 0.009874 0.006367 +12 0.741921 0.497613 0.009874 0.007049 +11 0.575404 0.497613 0.009575 0.007049 +12 0.796529 0.497385 0.010174 0.007503 +11 0.656344 0.497158 0.009874 0.007049 +12 0.924596 0.485789 0.008378 0.005230 +12 0.667415 0.419736 0.008079 0.005912 +12 0.336176 0.422578 0.009874 0.006139 +11 0.292340 0.422806 0.009575 0.006594 +12 0.270497 0.422578 0.008977 0.006139 +12 0.727858 0.422351 0.009276 0.006594 +11 0.677588 0.422351 0.009276 0.006594 +13 0.655147 0.422351 0.009874 0.006594 +13 0.758229 0.419964 0.010174 0.006367 +13 0.357720 0.420191 0.009874 0.006821 +13 0.411430 0.417462 0.009575 0.005912 +12 0.383752 0.417576 0.009276 0.006139 +13 0.810443 0.417121 0.009276 0.006139 +12 0.779473 0.417121 0.009575 0.006139 +12 0.569270 0.417121 0.009276 0.006139 +12 0.189408 0.417349 0.009575 0.006594 +12 0.466936 0.415075 0.008079 0.005684 +12 0.452873 0.415075 0.008677 0.005684 +12 0.438809 0.415075 0.010473 0.005684 +11 0.207510 0.415075 0.008677 0.005684 +12 0.854129 0.414507 0.009276 0.005457 +12 0.838719 0.414620 0.008977 0.005684 +12 0.634949 0.414848 0.010174 0.006139 +11 0.586625 0.414848 0.008079 0.006139 +12 0.869689 0.414393 0.009276 0.006139 +11 0.748654 0.381537 0.008977 0.004093 +12 0.758677 0.368918 0.009874 0.006139 +12 0.653351 0.371987 0.009874 0.005912 +11 0.803411 0.381764 0.007181 0.007276 +11 0.811490 0.366644 0.008977 0.005230 +12 0.728157 0.371874 0.009874 0.005684 +11 0.677738 0.371874 0.009575 0.005684 +12 0.780820 0.366644 0.008677 0.005230 +12 0.568671 0.366871 0.008079 0.005684 +12 0.871035 0.363915 0.007780 0.005230 +12 0.854578 0.363802 0.009575 0.005912 +12 0.841263 0.363802 0.009874 0.005912 +12 0.633603 0.364029 0.009874 0.006367 +11 0.587522 0.364029 0.009874 0.006367 +12 0.452723 0.332083 0.009575 0.006139 +12 0.467086 0.331855 0.010174 0.006594 +13 0.413525 0.329582 0.008977 0.005684 +13 0.359515 0.329582 0.009874 0.005684 +12 0.303262 0.329582 0.009874 0.005684 +12 0.218881 0.329582 0.009276 0.005684 +12 0.778875 0.321055 0.008977 0.005912 +12 0.439258 0.329468 0.008977 0.005912 +11 0.170108 0.327194 0.009276 0.006367 +12 0.870886 0.326285 0.009276 0.005457 +12 0.870886 0.331742 0.009276 0.005457 +12 0.855027 0.326398 0.008677 0.005684 +12 0.855027 0.332083 0.008677 0.005684 +12 0.381059 0.326853 0.009874 0.006594 +12 0.334829 0.326853 0.010174 0.006594 +11 0.253591 0.326853 0.009874 0.006594 +12 0.916966 0.324011 0.009276 0.005457 +12 0.916966 0.329468 0.009276 0.005457 +12 0.839767 0.323897 0.009276 0.005230 +12 0.839767 0.329127 0.009276 0.005230 +13 0.760323 0.324011 0.009575 0.005457 +13 0.760323 0.329468 0.009575 0.005457 +12 0.598145 0.329468 0.009575 0.005457 +11 0.598145 0.324011 0.009575 0.005457 +18 0.513764 0.324011 0.008977 0.005457 +12 0.513764 0.329468 0.008977 0.005457 +13 0.811640 0.323670 0.009276 0.005684 +13 0.811640 0.329354 0.009276 0.005684 +12 0.692250 0.323670 0.009874 0.005684 +12 0.692250 0.329354 0.009874 0.005684 +11 0.551915 0.327080 0.009874 0.005684 +11 0.551915 0.321396 0.009874 0.005684 +12 0.727259 0.321055 0.009276 0.005912 +12 0.727259 0.326967 0.009276 0.005912 +12 0.737882 0.306162 0.011370 0.003411 +11 0.635398 0.321055 0.009874 0.005912 +11 0.635398 0.326967 0.009874 0.005912 +12 0.452723 0.286494 0.009575 0.005912 +12 0.467086 0.286266 0.009575 0.006367 +12 0.437313 0.283879 0.009874 0.006139 +12 0.300868 0.283879 0.008677 0.006139 +12 0.217684 0.283879 0.009874 0.006139 +13 0.410832 0.283652 0.009575 0.006594 +13 0.361161 0.283538 0.009575 0.006367 +12 0.333932 0.281151 0.010174 0.006139 +11 0.253441 0.281264 0.010174 0.006367 +11 0.170407 0.281264 0.009874 0.006367 +12 0.381807 0.280923 0.010174 0.006594 +12 0.868791 0.273420 0.007481 0.005230 +12 0.853830 0.273306 0.007481 0.005002 +12 0.917265 0.270691 0.009874 0.006139 +12 0.837223 0.270691 0.010174 0.006139 +12 0.691652 0.270691 0.009874 0.006139 +12 0.597247 0.270691 0.008977 0.006139 +12 0.516607 0.270805 0.010473 0.006367 +13 0.811640 0.270464 0.009276 0.006594 +13 0.759575 0.270464 0.009276 0.006594 +12 0.728606 0.268190 0.010174 0.005684 +11 0.634949 0.268190 0.010174 0.005684 +11 0.550718 0.268417 0.009874 0.006139 +12 0.780221 0.267963 0.009874 0.006139 +12 0.755386 0.194975 0.010473 0.006594 +11 0.710652 0.194748 0.009575 0.006139 +12 0.686864 0.194748 0.009874 0.006139 +13 0.780820 0.192701 0.009874 0.005684 +18 0.699731 0.197590 0.008079 0.005457 +18 0.699731 0.192133 0.008079 0.005457 +13 0.831089 0.190200 0.008677 0.006139 +12 0.802813 0.190086 0.009575 0.005912 +12 0.585727 0.189291 0.009874 0.006139 +12 0.890036 0.187699 0.009276 0.005684 +12 0.875823 0.187699 0.009575 0.005684 +12 0.857121 0.187926 0.009276 0.006139 +11 0.603082 0.186903 0.009874 0.005912 +12 0.888989 0.118804 0.009575 0.006139 +12 0.873579 0.118690 0.009874 0.005912 +12 0.923399 0.116530 0.008977 0.006139 +12 0.856972 0.116303 0.008977 0.005684 +13 0.832436 0.116303 0.008977 0.005684 +13 0.782166 0.116303 0.008977 0.005684 +12 0.723220 0.116303 0.009575 0.005684 +11 0.639587 0.116075 0.009874 0.006139 +11 0.534261 0.116075 0.009874 0.006139 +12 0.802513 0.113802 0.009575 0.006139 +11 0.757181 0.113802 0.009276 0.006139 +11 0.671903 0.113802 0.008677 0.006139 +11 0.566427 0.113347 0.009575 0.006139 +12 0.141382 0.099136 0.008079 0.005002 +13 0.198833 0.080946 0.009276 0.005912 +12 0.324506 0.080832 0.009276 0.006594 +13 0.309695 0.080605 0.009575 0.007049 +12 0.214093 0.080377 0.009874 0.007503 +18 0.914123 0.068668 0.007181 0.004093 +12 0.889138 0.068327 0.009874 0.006139 +12 0.873878 0.068327 0.009276 0.006139 +12 0.723968 0.066053 0.008677 0.005230 +12 0.924895 0.065825 0.009575 0.005684 +12 0.857720 0.065825 0.009276 0.005684 +13 0.830790 0.066053 0.009276 0.006139 +12 0.783662 0.065825 0.009575 0.005684 +13 0.640784 0.065825 0.009874 0.005684 +13 0.533513 0.065939 0.009575 0.005912 +13 0.365799 0.065371 0.009276 0.005684 +13 0.251945 0.064461 0.008977 0.005684 +12 0.756583 0.063324 0.009276 0.006139 +12 0.802663 0.063097 0.009276 0.006594 +11 0.671903 0.063324 0.009874 0.007049 +12 0.601885 0.063097 0.009874 0.006594 +11 0.565978 0.063097 0.009874 0.006594 +12 0.464243 0.062869 0.009874 0.006139 +12 0.495362 0.062869 0.009874 0.007049 +12 0.421155 0.062415 0.009874 0.006139 +12 0.388839 0.062415 0.009874 0.006139 +12 0.280670 0.062074 0.010174 0.006367 +12 0.168312 0.061278 0.009276 0.006594 +0 0.092908 0.512165 0.021245 0.031605 +4 0.712597 0.066053 0.009874 0.015234 +2 0.086326 0.226353 0.018851 0.019327 +4 0.521394 0.066053 0.009276 0.017053 +4 0.627618 0.066508 0.009874 0.014325 +3 0.372382 0.416439 0.006882 0.018417 +4 0.201526 0.284106 0.009874 0.017508 +4 0.819420 0.191564 0.009276 0.013415 +4 0.799372 0.366417 0.009874 0.015689 +4 0.771245 0.067417 0.009874 0.014325 +0 0.089019 0.145862 0.023040 0.023874 +4 0.748504 0.323215 0.009874 0.013870 +4 0.679084 0.324125 0.009874 0.016598 +2 0.088420 0.185880 0.018253 0.019327 +2 0.092011 0.904616 0.019449 0.018872 +4 0.702723 0.499886 0.009276 0.015234 +3 0.399013 0.283424 0.007481 0.019782 +4 0.214692 0.562642 0.009874 0.016144 +4 0.401107 0.417576 0.009276 0.016144 +4 0.352633 0.064688 0.009276 0.016144 +3 0.820018 0.067190 0.006882 0.013870 +4 0.436715 0.601751 0.009874 0.016144 +4 0.691352 0.682015 0.009276 0.012960 +4 0.616846 0.500114 0.009874 0.015689 +3 0.408887 0.929172 0.006882 0.020691 +4 0.553710 0.724307 0.009276 0.016598 +4 0.814632 0.630628 0.009276 0.015689 +4 0.304159 0.933492 0.009276 0.016598 +4 0.297876 0.655639 0.009874 0.015689 +4 0.532466 0.499659 0.009874 0.014779 +4 0.665320 0.371874 0.009874 0.016598 +4 0.904698 0.323897 0.008677 0.010687 +4 0.216188 0.795020 0.009276 0.014325 +4 0.300269 0.606753 0.009874 0.016144 +4 0.840365 0.723624 0.009276 0.013415 +4 0.388839 0.795475 0.012268 0.016144 +4 0.761370 0.500796 0.009276 0.013415 +4 0.733244 0.951228 0.010473 0.013870 +2 0.087822 0.455321 0.018253 0.018872 +4 0.347546 0.283424 0.009874 0.016144 +0 0.094704 0.858458 0.023639 0.023874 +4 0.288300 0.282970 0.009874 0.017053 +2 0.093806 0.647908 0.017056 0.017508 +1 0.094704 0.807981 0.022442 0.035698 +2 0.092310 0.946453 0.018851 0.017963 +4 0.733543 0.910528 0.009874 0.013415 +0 0.095601 0.603342 0.023040 0.023874 +2 0.092310 0.691792 0.018851 0.017963 +4 0.446290 0.929627 0.009874 0.016144 +4 0.446290 0.888245 0.009874 0.016144 +4 0.764961 0.742042 0.009276 0.015689 +3 0.401706 0.602433 0.006882 0.016598 +4 0.436116 0.650182 0.009874 0.014779 +3 0.815230 0.498295 0.006882 0.013870 +4 0.770048 0.417121 0.006284 0.011596 +4 0.797576 0.417349 0.008677 0.013870 +4 0.240724 0.065143 0.009276 0.014325 +3 0.409485 0.888699 0.006882 0.017963 +4 0.906792 0.783652 0.009276 0.015234 +4 0.896619 0.801160 0.006882 0.011141 +0 0.802065 0.317758 0.006882 0.008413 +4 0.317026 0.795020 0.009874 0.014325 +4 0.141382 0.418713 0.009276 0.014779 +4 0.434620 0.506025 0.016457 0.021146 +4 0.145272 0.601978 0.009874 0.015689 +4 0.839168 0.742042 0.009276 0.016598 +4 0.144375 0.555366 0.009276 0.015234 +3 0.402304 0.650182 0.008079 0.017508 +4 0.119838 0.645407 0.009276 0.013415 +4 0.553411 0.741360 0.009874 0.016144 +4 0.650658 0.742269 0.009276 0.016144 +4 0.816128 0.675875 0.009874 0.013415 +4 0.429533 0.569691 0.008677 0.013870 +4 0.145123 0.856753 0.008977 0.015462 +4 0.135248 0.847431 0.008378 0.014097 +4 0.127768 0.950432 0.008977 0.016371 +4 0.144225 0.947931 0.009575 0.014097 +4 0.118492 0.942246 0.008378 0.015462 +4 0.136146 0.939291 0.008977 0.016826 +4 0.139737 0.275352 0.008977 0.014097 +4 0.130461 0.267849 0.008378 0.015462 +0 0.132256 0.092997 0.008378 0.010459 +4 0.123279 0.371078 0.008378 0.013643 +4 0.140634 0.367212 0.008378 0.015916 +4 0.140934 0.316280 0.008977 0.014097 +4 0.131957 0.136426 0.008977 0.013643 +4 0.143926 0.752615 0.008977 0.014552 +4 0.135847 0.741928 0.008378 0.013188 +4 0.127169 0.908822 0.008977 0.014097 +4 0.143926 0.905866 0.008977 0.015462 +4 0.118193 0.900409 0.008977 0.015462 +4 0.135847 0.897908 0.009575 0.015007 +4 0.141532 0.056617 0.008977 0.013188 +4 0.121185 0.230787 0.008977 0.015007 +4 0.113106 0.221919 0.008378 0.013643 +4 0.141532 0.511824 0.008977 0.014097 +4 0.132256 0.502956 0.008378 0.015462 +4 0.114602 0.412915 0.008977 0.015462 +0 0.087074 0.368349 0.012567 0.022738 +4 0.122083 0.190996 0.008378 0.013643 +4 0.113405 0.181901 0.008977 0.012733 +4 0.127169 0.808777 0.008977 0.012278 +4 0.119090 0.800364 0.008378 0.011824 +4 0.125075 0.460891 0.008378 0.014097 +4 0.115799 0.452478 0.008977 0.015462 +4 0.138839 0.228968 0.008378 0.013188 +4 0.131059 0.220100 0.008378 0.014552 +4 0.119390 0.745566 0.008977 0.014097 +0 0.126870 0.557071 0.008378 0.010005 +4 0.118193 0.549341 0.007780 0.012733 +4 0.135248 0.546157 0.008378 0.012733 +4 0.118791 0.596862 0.008977 0.015007 +4 0.145123 0.804911 0.008977 0.015462 +4 0.136445 0.797181 0.008378 0.015462 +2 0.098444 0.762165 0.013764 0.018190 +4 0.122382 0.058890 0.008977 0.011369 +3 0.072561 0.418713 0.009276 0.015689 +5 0.095452 0.414166 0.008977 0.015689 +4 0.119539 0.858686 0.009276 0.015689 +4 0.126571 0.859368 0.008977 0.015689 +4 0.379563 0.561505 0.009276 0.015689 +4 0.123130 0.419623 0.009276 0.015689 +4 0.131358 0.409618 0.008977 0.015689 +4 0.083633 0.108117 0.009276 0.015689 +4 0.094853 0.103115 0.008977 0.015689 +3 0.794285 0.271260 0.009276 0.015462 +4 0.801017 0.271260 0.008977 0.015462 +4 0.312537 0.561505 0.009276 0.015689 +4 0.082735 0.063324 0.009276 0.015689 +5 0.096649 0.057412 0.008977 0.015689 +4 0.126122 0.604252 0.009276 0.015689 +4 0.134949 0.594020 0.008977 0.015689 +4 0.089617 0.756139 0.009276 0.015689 +4 0.100239 0.752729 0.008977 0.015689 +4 0.115649 0.506935 0.009276 0.015689 +4 0.123579 0.513756 0.008977 0.015689 +4 0.083034 0.322760 0.009276 0.015689 +4 0.094255 0.317303 0.008977 0.015689 +4 0.436415 0.802524 0.009276 0.015689 +4 0.449132 0.796612 0.008977 0.015689 +5 0.092609 0.564461 0.009276 0.013870 +5 0.099641 0.564461 0.008977 0.013870 +4 0.087822 0.560596 0.009276 0.015689 +4 0.098444 0.555593 0.008977 0.015689 +4 0.770347 0.861187 0.009276 0.015689 +5 0.778875 0.860732 0.008977 0.015689 +3 0.440604 0.727035 0.009276 0.015689 +4 0.446738 0.727945 0.008977 0.015689 +4 0.089617 0.285243 0.009276 0.012960 +5 0.094853 0.285243 0.008977 0.012960 +4 0.083034 0.282060 0.009276 0.015689 +4 0.094255 0.276830 0.008977 0.015689 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_46.jpg b/data_dataset/dvo/debug/debug_46.jpg new file mode 100644 index 0000000..ed810b4 Binary files /dev/null and b/data_dataset/dvo/debug/debug_46.jpg differ diff --git a/data_dataset/dvo/debug/debug_46.txt b/data_dataset/dvo/debug/debug_46.txt new file mode 100644 index 0000000..1fa2101 --- /dev/null +++ b/data_dataset/dvo/debug/debug_46.txt @@ -0,0 +1,923 @@ +8 0.855177 0.940996 0.011370 0.007503 +8 0.750150 0.940086 0.011969 0.006594 +10 0.652304 0.939063 0.012567 0.005002 +8 0.561939 0.938722 0.011370 0.007503 +7 0.500000 0.941451 0.011969 0.012960 +10 0.476062 0.932469 0.007181 0.001819 +10 0.368342 0.931673 0.007181 0.001592 +10 0.412627 0.931787 0.007181 0.002274 +8 0.856673 0.901660 0.011969 0.007049 +8 0.749551 0.900750 0.010772 0.007049 +8 0.654997 0.900068 0.011969 0.006594 +7 0.503291 0.902569 0.012567 0.013415 +8 0.562238 0.899386 0.009575 0.007049 +10 0.880012 0.886085 0.011969 0.002729 +10 0.575404 0.866303 0.005984 0.004093 +10 0.479354 0.865848 0.006583 0.003183 +10 0.391981 0.865393 0.006583 0.003183 +10 0.862059 0.856298 0.019150 0.002274 +7 0.849791 0.869372 0.006583 0.002501 +10 0.852184 0.853229 0.006583 0.001592 +9 0.307600 0.855844 0.013764 0.022283 +10 0.201376 0.819463 0.005984 0.003183 +10 0.674746 0.818781 0.011969 0.002729 +10 0.745362 0.817076 0.005984 0.002046 +10 0.592759 0.816962 0.010772 0.004548 +10 0.280969 0.807412 0.014363 0.001819 +10 0.416218 0.781264 0.007181 0.003183 +8 0.858468 0.775239 0.011969 0.007049 +8 0.651107 0.774557 0.012567 0.006594 +7 0.504189 0.777740 0.011969 0.013870 +8 0.562837 0.773647 0.011969 0.007503 +10 0.227110 0.771714 0.007181 0.002274 +9 0.196589 0.774898 0.005984 0.025466 +10 0.166068 0.766712 0.005984 0.002274 +10 0.586176 0.724648 0.009575 0.003638 +10 0.403052 0.720100 0.007181 0.001819 +10 0.209755 0.719191 0.010772 0.001819 +9 0.659785 0.716121 0.010772 0.023420 +10 0.859066 0.709300 0.009575 0.002046 +9 0.369539 0.709300 0.007181 0.022510 +9 0.220826 0.709300 0.007780 0.022510 +10 0.459306 0.678718 0.007181 0.002729 +10 0.166667 0.673374 0.005984 0.001592 +10 0.398863 0.673261 0.010772 0.004548 +10 0.779473 0.663256 0.005984 0.002729 +9 0.706164 0.666212 0.008977 0.022738 +9 0.356673 0.660755 0.011370 0.023647 +9 0.184321 0.659277 0.005386 0.018872 +10 0.687014 0.640973 0.007780 0.003638 +10 0.707361 0.627103 0.007780 0.003183 +10 0.910533 0.616871 0.010772 0.002729 +9 0.305206 0.624034 0.012567 0.025693 +6 0.245961 0.655184 0.004189 0.077080 +10 0.871634 0.601410 0.005984 0.001819 +10 0.745961 0.600955 0.005984 0.001819 +10 0.666966 0.598681 0.008378 0.002729 +10 0.489826 0.597317 0.010772 0.001819 +9 0.912328 0.595498 0.007181 0.015916 +10 0.184321 0.586630 0.008977 0.003183 +9 0.389288 0.589927 0.008378 0.021146 +9 0.883303 0.592201 0.010174 0.023874 +10 0.693597 0.583220 0.007780 0.004548 +9 0.557451 0.584698 0.009575 0.026148 +10 0.662178 0.577308 0.007181 0.002729 +9 0.544584 0.585834 0.005386 0.022055 +10 0.681029 0.577080 0.007780 0.003183 +10 0.510772 0.576626 0.007181 0.002274 +9 0.483842 0.585493 0.009575 0.021373 +9 0.292041 0.581742 0.007780 0.021146 +10 0.904548 0.554570 0.013166 0.001819 +10 0.896469 0.551955 0.006583 0.002046 +10 0.763914 0.548658 0.020347 0.004548 +10 0.565829 0.546839 0.007181 0.004548 +10 0.546978 0.546839 0.006583 0.004548 +10 0.917714 0.537517 0.007181 0.002274 +9 0.600539 0.533993 0.009575 0.026603 +9 0.463794 0.535130 0.012567 0.025239 +9 0.562238 0.533311 0.011969 0.028877 +10 0.312687 0.516371 0.009575 0.004548 +10 0.871035 0.495452 0.010772 0.001819 +7 0.255835 0.497385 0.011969 0.013415 +10 0.227110 0.492951 0.007181 0.002274 +7 0.399461 0.497613 0.011969 0.013870 +9 0.766008 0.488972 0.013764 0.022965 +9 0.878815 0.483743 0.009575 0.026148 +9 0.796230 0.487381 0.010772 0.025239 +9 0.854578 0.485107 0.011370 0.023420 +10 0.877020 0.456344 0.005984 0.001819 +10 0.874028 0.453729 0.007181 0.002046 +7 0.399461 0.455548 0.011969 0.012506 +7 0.256433 0.455548 0.011969 0.013415 +10 0.226212 0.451569 0.007780 0.003183 +9 0.640036 0.452478 0.008378 0.018190 +6 0.470078 0.448272 0.007181 0.017963 +10 0.883902 0.419736 0.006583 0.003183 +10 0.766607 0.414961 0.006583 0.003638 +9 0.657092 0.414507 0.005386 0.020464 +9 0.680431 0.414734 0.006583 0.020919 +9 0.581089 0.410641 0.008977 0.021828 +10 0.563136 0.401546 0.006583 0.002274 +9 0.462597 0.408367 0.007780 0.027285 +10 0.781568 0.396999 0.006583 0.002274 +9 0.752244 0.404843 0.012567 0.023874 +10 0.395871 0.393702 0.009575 0.001592 +10 0.378516 0.393702 0.005984 0.001592 +10 0.589767 0.376307 0.007181 0.001819 +10 0.550868 0.376762 0.013166 0.004548 +8 0.396170 0.375512 0.012567 0.017963 +9 0.679533 0.371305 0.007181 0.022283 +10 0.227110 0.363120 0.005984 0.002729 +10 0.662777 0.361755 0.008378 0.002729 +10 0.178935 0.326967 0.008977 0.004093 +10 0.169659 0.325830 0.008378 0.001819 +10 0.855476 0.325261 0.008378 0.002956 +10 0.901855 0.323556 0.008977 0.001819 +10 0.670257 0.321396 0.011370 0.002501 +10 0.785757 0.320373 0.010174 0.004548 +10 0.671155 0.319009 0.007181 0.001819 +10 0.588270 0.319009 0.007780 0.001819 +8 0.253142 0.325716 0.012567 0.011141 +8 0.396469 0.324125 0.013166 0.017963 +9 0.228606 0.308890 0.005386 0.009322 +9 0.362358 0.301387 0.007181 0.027058 +10 0.733992 0.277740 0.010772 0.003411 +10 0.561640 0.264893 0.005984 0.003638 +10 0.165769 0.257844 0.008977 0.003183 +7 0.313585 0.261596 0.012567 0.012960 +7 0.254638 0.261824 0.011969 0.013415 +7 0.430580 0.248863 0.004788 0.011141 +10 0.614004 0.245794 0.026930 0.004548 +9 0.680132 0.223965 0.008378 0.020464 +7 0.255536 0.222033 0.012567 0.012960 +10 0.355177 0.217144 0.008378 0.002729 +7 0.313285 0.221578 0.011969 0.012960 +10 0.531119 0.208049 0.014363 0.001819 +10 0.444943 0.208504 0.005984 0.004548 +10 0.608917 0.206230 0.014363 0.001819 +10 0.577199 0.205775 0.008378 0.004548 +10 0.735189 0.167349 0.008378 0.003183 +10 0.703770 0.167349 0.007780 0.003183 +10 0.774087 0.166894 0.005984 0.003183 +9 0.242669 0.167917 0.005984 0.008413 +10 0.734291 0.163483 0.006583 0.002729 +10 0.703471 0.163483 0.005984 0.002729 +9 0.415919 0.172920 0.004189 0.034789 +10 0.893178 0.160300 0.007181 0.004548 +10 0.608318 0.158936 0.008378 0.001819 +10 0.234889 0.159391 0.008378 0.002729 +10 0.277977 0.154047 0.009575 0.001592 +10 0.744764 0.152569 0.008378 0.001819 +10 0.243567 0.153706 0.011370 0.005002 +10 0.275583 0.151887 0.011969 0.002274 +10 0.666966 0.139836 0.005984 0.001819 +10 0.546080 0.140064 0.005984 0.002274 +10 0.850090 0.137108 0.007181 0.001819 +10 0.805805 0.137563 0.010772 0.002729 +10 0.804010 0.135175 0.007181 0.001592 +8 0.253441 0.136994 0.013166 0.018417 +8 0.748654 0.133811 0.012567 0.017508 +10 0.313585 0.118008 0.006583 0.003638 +10 0.671753 0.078899 0.013166 0.001819 +10 0.617295 0.078104 0.007181 0.002501 +10 0.868342 0.073897 0.012567 0.004548 +10 0.850987 0.073897 0.017355 0.004548 +10 0.822262 0.074125 0.025733 0.005002 +8 0.251646 0.079695 0.013166 0.018417 +8 0.746559 0.077876 0.013166 0.018417 +10 0.721424 0.059573 0.007181 0.003183 +10 0.581388 0.054343 0.005984 0.002729 +9 0.187911 0.062074 0.004189 0.040473 +12 0.477858 0.947135 0.008977 0.006594 +12 0.460054 0.946794 0.009874 0.006821 +12 0.443297 0.946680 0.009874 0.006594 +12 0.415171 0.946680 0.009874 0.006594 +12 0.392729 0.946339 0.010473 0.006821 +12 0.375224 0.946339 0.010174 0.006821 +12 0.357271 0.946226 0.010174 0.006594 +12 0.320168 0.945998 0.010174 0.006139 +18 0.924147 0.944975 0.005685 0.005002 +12 0.301915 0.945771 0.009575 0.006594 +12 0.280820 0.945657 0.009276 0.006367 +12 0.261969 0.945316 0.009874 0.006594 +12 0.222771 0.945316 0.009276 0.006594 +12 0.198384 0.945316 0.009575 0.006594 +12 0.180880 0.945316 0.009276 0.006594 +12 0.163674 0.945202 0.009575 0.006367 +12 0.480850 0.907799 0.009575 0.006139 +12 0.461849 0.907572 0.009874 0.006594 +12 0.442549 0.907572 0.009575 0.006594 +12 0.412777 0.907117 0.009874 0.006594 +12 0.392879 0.907117 0.010772 0.006594 +12 0.376421 0.907117 0.010174 0.006594 +12 0.359515 0.907117 0.009874 0.006594 +12 0.325105 0.906435 0.010473 0.006139 +12 0.302364 0.906435 0.010473 0.006139 +12 0.282316 0.906435 0.009874 0.006139 +18 0.925344 0.905298 0.005685 0.004775 +12 0.263764 0.906207 0.009874 0.006594 +12 0.221574 0.906207 0.010473 0.006594 +12 0.200479 0.906207 0.010174 0.006594 +12 0.182077 0.906207 0.010473 0.006594 +12 0.164123 0.906207 0.010473 0.006594 +18 0.135398 0.903706 0.006882 0.004320 +12 0.220826 0.875512 0.008977 0.006139 +12 0.852035 0.871305 0.006284 0.005002 +12 0.845302 0.867099 0.009575 0.004775 +12 0.786655 0.870623 0.005984 0.004093 +12 0.780969 0.866871 0.007780 0.005230 +12 0.742220 0.869941 0.006882 0.005002 +12 0.735338 0.866644 0.008677 0.005684 +12 0.717684 0.869145 0.009276 0.006139 +12 0.164273 0.869372 0.009575 0.006594 +11 0.684171 0.868804 0.010473 0.006367 +12 0.891233 0.868349 0.008677 0.005912 +12 0.899312 0.871305 0.008677 0.005912 +12 0.869390 0.868122 0.008677 0.005912 +12 0.875972 0.871078 0.008677 0.005912 +12 0.629114 0.868463 0.010473 0.006594 +12 0.595901 0.867781 0.007481 0.006139 +12 0.822113 0.867212 0.008677 0.005912 +12 0.828695 0.870396 0.008677 0.005912 +12 0.757481 0.867212 0.008677 0.005912 +12 0.767056 0.869714 0.008677 0.005912 +12 0.540545 0.867553 0.009276 0.006594 +12 0.501197 0.866644 0.009575 0.005684 +12 0.198983 0.866644 0.009575 0.005684 +12 0.181927 0.866644 0.010174 0.005684 +12 0.442699 0.866417 0.009874 0.006139 +12 0.663525 0.865848 0.008677 0.005912 +12 0.646320 0.865393 0.008977 0.005002 +12 0.414871 0.865962 0.009276 0.006139 +12 0.573758 0.865166 0.009874 0.005457 +12 0.356822 0.865734 0.009874 0.006594 +12 0.556403 0.864939 0.008677 0.005912 +12 0.325105 0.865280 0.010473 0.006594 +17 0.245512 0.864370 0.004488 0.004775 +11 0.925344 0.865052 0.005685 0.007049 +12 0.459904 0.863802 0.008977 0.005457 +17 0.471873 0.849363 0.011969 0.002956 +12 0.478755 0.863915 0.008977 0.005684 +12 0.391382 0.863233 0.009575 0.006139 +12 0.376870 0.863233 0.009874 0.006139 +12 0.264961 0.859482 0.011071 0.006821 +12 0.300269 0.857322 0.009874 0.005230 +12 0.283662 0.857322 0.010174 0.006139 +12 0.846649 0.837540 0.009874 0.006594 +12 0.893627 0.837312 0.009276 0.007049 +12 0.872681 0.836858 0.009276 0.006139 +12 0.826002 0.837085 0.009276 0.006594 +12 0.782466 0.837085 0.008378 0.006594 +12 0.761071 0.836858 0.009874 0.007049 +12 0.740126 0.836971 0.009874 0.007276 +12 0.687163 0.836630 0.010473 0.006594 +12 0.662178 0.836062 0.009575 0.006367 +12 0.718432 0.835948 0.009575 0.007049 +12 0.644973 0.835834 0.009874 0.006821 +12 0.628217 0.836176 0.009874 0.007503 +12 0.501346 0.835721 0.009874 0.006594 +12 0.597546 0.835607 0.009575 0.007276 +12 0.576601 0.835493 0.009575 0.007049 +12 0.557600 0.835266 0.009874 0.007503 +12 0.540395 0.835152 0.008977 0.007276 +12 0.443597 0.833220 0.009276 0.006139 +12 0.416517 0.832538 0.009575 0.006594 +12 0.359814 0.832083 0.009276 0.006594 +12 0.325404 0.831401 0.009874 0.006139 +12 0.479354 0.829582 0.008977 0.006139 +12 0.462448 0.829582 0.009276 0.006139 +12 0.393776 0.829013 0.010174 0.005912 +12 0.376870 0.828672 0.009874 0.006139 +12 0.265709 0.825944 0.010174 0.006139 +12 0.223818 0.825489 0.010174 0.006139 +12 0.301466 0.823442 0.009874 0.005684 +12 0.285757 0.823101 0.009575 0.005912 +18 0.928336 0.821851 0.010473 0.006139 +12 0.165320 0.820487 0.010473 0.006139 +12 0.200628 0.817758 0.009276 0.005230 +12 0.184171 0.817531 0.009874 0.005684 +17 0.136296 0.806844 0.008677 0.004320 +18 0.926391 0.780241 0.005386 0.004775 +12 0.444644 0.780127 0.010174 0.005457 +12 0.417265 0.779559 0.009276 0.005230 +12 0.359515 0.779332 0.009874 0.005684 +12 0.327798 0.779332 0.009874 0.005684 +12 0.478755 0.777854 0.010174 0.006367 +12 0.463944 0.777740 0.010473 0.006139 +12 0.393178 0.777285 0.010174 0.006139 +12 0.376272 0.777285 0.009874 0.006139 +12 0.264961 0.774557 0.008677 0.005230 +12 0.226062 0.774443 0.008677 0.005912 +12 0.301466 0.771828 0.009874 0.006139 +12 0.283962 0.771828 0.009575 0.006139 +12 0.166517 0.769100 0.008079 0.005230 +18 0.111460 0.769213 0.008079 0.005457 +18 0.137193 0.769100 0.008079 0.006139 +12 0.201676 0.766826 0.010174 0.006139 +12 0.184470 0.766598 0.010473 0.006594 +12 0.917714 0.727717 0.009575 0.006139 +12 0.889737 0.727831 0.009874 0.006367 +12 0.870287 0.727717 0.010473 0.006139 +12 0.843806 0.727717 0.010174 0.006139 +12 0.804309 0.727490 0.010174 0.006594 +18 0.491771 0.725557 0.009874 0.003638 +12 0.485787 0.708163 0.009874 0.006139 +12 0.759126 0.709186 0.009575 0.005457 +12 0.707361 0.709413 0.008378 0.005912 +12 0.778127 0.709300 0.009276 0.006594 +11 0.741173 0.709300 0.010174 0.006594 +12 0.679982 0.708845 0.009276 0.005684 +12 0.661281 0.708845 0.008977 0.005684 +12 0.643776 0.709072 0.009874 0.006139 +12 0.582885 0.708845 0.008977 0.005684 +12 0.565829 0.709072 0.009575 0.006139 +12 0.547876 0.709072 0.009575 0.006139 +12 0.513166 0.708504 0.010174 0.005912 +12 0.467684 0.708618 0.010174 0.006139 +12 0.608618 0.708504 0.008378 0.006821 +12 0.448683 0.708163 0.009874 0.006139 +12 0.414722 0.708163 0.008977 0.006139 +12 0.395721 0.703161 0.009276 0.007049 +12 0.375972 0.702933 0.009276 0.006594 +12 0.356523 0.702933 0.009874 0.006594 +12 0.302065 0.703161 0.008677 0.007049 +12 0.283662 0.703274 0.008977 0.007276 +12 0.227259 0.703388 0.008677 0.007503 +12 0.183573 0.703388 0.009874 0.007503 +12 0.320018 0.702478 0.008677 0.006594 +12 0.201526 0.702706 0.008677 0.007049 +12 0.165470 0.702706 0.009575 0.007049 +12 0.265410 0.702478 0.009575 0.007503 +12 0.919360 0.679513 0.010473 0.006139 +12 0.891083 0.679513 0.010174 0.006139 +12 0.870138 0.679059 0.010174 0.006139 +12 0.804159 0.679059 0.009874 0.006139 +12 0.845153 0.679059 0.010473 0.007049 +12 0.778576 0.660982 0.008378 0.005457 +12 0.760473 0.660982 0.008677 0.005457 +11 0.741622 0.661096 0.009276 0.005684 +12 0.707211 0.661096 0.008677 0.005684 +12 0.681478 0.661096 0.008677 0.005684 +12 0.662627 0.660869 0.008079 0.006139 +12 0.608318 0.660869 0.008977 0.006139 +12 0.581837 0.660641 0.008677 0.005684 +12 0.563285 0.660641 0.008677 0.005684 +12 0.643327 0.660641 0.009575 0.006594 +12 0.546080 0.660414 0.009575 0.006139 +12 0.512567 0.660300 0.008977 0.005912 +12 0.485637 0.660414 0.009575 0.006139 +12 0.467684 0.660414 0.009575 0.006139 +12 0.447187 0.660414 0.010473 0.006139 +12 0.413824 0.660073 0.009575 0.006367 +12 0.182077 0.654843 0.008079 0.005912 +12 0.394524 0.654729 0.008079 0.006594 +12 0.376122 0.654957 0.008378 0.007049 +12 0.285308 0.654843 0.008677 0.006821 +12 0.264961 0.654729 0.008677 0.006594 +12 0.201376 0.655184 0.008977 0.007503 +12 0.321065 0.654729 0.008977 0.007503 +12 0.303860 0.654502 0.009874 0.007049 +12 0.227858 0.654729 0.008677 0.007503 +12 0.165320 0.654502 0.009276 0.007049 +12 0.357121 0.654275 0.009874 0.007503 +12 0.919659 0.637676 0.009874 0.006139 +12 0.165470 0.635857 0.009575 0.006139 +12 0.906344 0.634720 0.008378 0.004775 +18 0.906344 0.639495 0.008378 0.004775 +12 0.264512 0.635402 0.010174 0.006139 +12 0.228905 0.635516 0.009575 0.006367 +12 0.201376 0.633356 0.009575 0.005684 +12 0.303860 0.633015 0.009874 0.005912 +13 0.285159 0.633129 0.009575 0.006139 +12 0.182376 0.633242 0.009874 0.006367 +12 0.845003 0.632447 0.010174 0.006594 +12 0.804758 0.632447 0.009874 0.006594 +12 0.890634 0.629945 0.009276 0.005230 +12 0.356523 0.630400 0.009874 0.006139 +12 0.319719 0.630400 0.010473 0.006139 +12 0.871484 0.629718 0.009276 0.005684 +12 0.741622 0.629718 0.009276 0.005684 +12 0.707510 0.629263 0.008079 0.005684 +12 0.395422 0.628354 0.008677 0.005684 +12 0.376870 0.628126 0.008677 0.005230 +12 0.777977 0.627217 0.008977 0.006139 +12 0.759874 0.627217 0.009874 0.006139 +12 0.643178 0.626762 0.009874 0.006139 +12 0.607870 0.626421 0.009874 0.006367 +12 0.446589 0.625853 0.010473 0.006139 +12 0.412029 0.625853 0.009575 0.006139 +12 0.681478 0.624375 0.008677 0.005912 +12 0.664423 0.624375 0.008079 0.005912 +12 0.483992 0.623693 0.007481 0.005457 +12 0.546379 0.623693 0.008378 0.006367 +12 0.509575 0.623579 0.007181 0.006139 +12 0.467086 0.623465 0.007780 0.005912 +12 0.584081 0.621078 0.009575 0.006594 +12 0.565230 0.621078 0.008977 0.006594 +12 0.919060 0.592201 0.009874 0.006139 +12 0.165619 0.591519 0.009276 0.005684 +12 0.265260 0.591291 0.010473 0.006139 +12 0.227259 0.591291 0.009874 0.006139 +12 0.201975 0.589018 0.008977 0.005230 +12 0.303710 0.588790 0.009575 0.005684 +12 0.285757 0.588904 0.009575 0.005912 +12 0.183273 0.588790 0.009276 0.005684 +12 0.845452 0.586858 0.008677 0.006367 +12 0.803710 0.586971 0.008977 0.006594 +12 0.357121 0.586289 0.009874 0.006139 +12 0.320916 0.586289 0.010473 0.006139 +12 0.707959 0.584698 0.007780 0.005684 +12 0.889737 0.584243 0.008079 0.005684 +12 0.871035 0.584243 0.008977 0.005684 +12 0.741023 0.584470 0.009276 0.006139 +12 0.377020 0.584015 0.009575 0.006139 +12 0.395871 0.583788 0.009575 0.006594 +12 0.776182 0.581969 0.008977 0.006594 +12 0.758677 0.581742 0.009874 0.006139 +12 0.643776 0.581514 0.009874 0.006594 +12 0.606972 0.581742 0.009276 0.007049 +12 0.447487 0.581514 0.009874 0.006594 +12 0.412777 0.581173 0.009874 0.006821 +12 0.681179 0.579127 0.009276 0.005457 +12 0.663525 0.579354 0.008677 0.005912 +12 0.547277 0.579241 0.008378 0.005684 +12 0.510323 0.579241 0.007481 0.005684 +12 0.485189 0.578786 0.008677 0.005684 +12 0.466936 0.579013 0.009276 0.006139 +12 0.581239 0.576512 0.009276 0.006594 +12 0.564931 0.576512 0.009575 0.006594 +12 0.263914 0.540814 0.008378 0.005230 +12 0.164423 0.540814 0.008677 0.005230 +12 0.227259 0.540587 0.009874 0.005684 +12 0.917864 0.540359 0.007481 0.006139 +12 0.284411 0.537858 0.009276 0.005684 +12 0.199431 0.538085 0.009276 0.006139 +12 0.182077 0.538199 0.009276 0.006367 +12 0.302663 0.537858 0.009874 0.006594 +12 0.844554 0.535357 0.009276 0.006139 +12 0.805057 0.535243 0.009874 0.005912 +12 0.358019 0.535471 0.009276 0.006367 +12 0.320616 0.535357 0.009874 0.006139 +12 0.706314 0.533083 0.009276 0.006139 +12 0.870586 0.532628 0.009874 0.006139 +12 0.739826 0.532174 0.009276 0.006139 +12 0.393028 0.532287 0.008677 0.006367 +12 0.374776 0.531946 0.008079 0.005684 +12 0.891083 0.531719 0.008378 0.006139 +12 0.777977 0.529900 0.009575 0.007049 +12 0.642579 0.529900 0.008677 0.007049 +12 0.445990 0.529900 0.009276 0.007049 +12 0.414273 0.529900 0.009276 0.007049 +12 0.758977 0.529673 0.009276 0.007503 +12 0.608169 0.529673 0.009276 0.007503 +12 0.484291 0.527171 0.008079 0.006139 +12 0.464692 0.527171 0.008977 0.006139 +12 0.680281 0.526944 0.008677 0.006594 +12 0.662328 0.526944 0.009276 0.006594 +12 0.546230 0.526944 0.009874 0.006594 +12 0.510174 0.526830 0.008977 0.006367 +12 0.583184 0.524670 0.009575 0.006594 +12 0.564183 0.524557 0.008677 0.007276 +12 0.445841 0.502842 0.010174 0.006594 +12 0.307151 0.502842 0.009874 0.006594 +18 0.166816 0.498295 0.007481 0.005684 +12 0.485787 0.495111 0.009874 0.004775 +12 0.466786 0.495339 0.008977 0.005230 +12 0.193447 0.495566 0.008079 0.005684 +12 0.368492 0.495225 0.008677 0.005912 +12 0.338719 0.495225 0.008977 0.005912 +12 0.227558 0.495111 0.008677 0.005684 +12 0.064183 0.493292 0.004488 0.003411 +12 0.503142 0.492951 0.009874 0.005912 +12 0.543387 0.492724 0.010174 0.006367 +12 0.602932 0.490564 0.009575 0.005684 +12 0.582585 0.490337 0.009575 0.005230 +12 0.565081 0.490564 0.009276 0.005684 +12 0.642280 0.490109 0.008079 0.005684 +12 0.684171 0.487608 0.010473 0.006139 +12 0.662627 0.487267 0.010473 0.006367 +12 0.701975 0.485107 0.008977 0.005684 +12 0.744913 0.484879 0.009874 0.006139 +12 0.765260 0.482151 0.009874 0.006139 +12 0.783363 0.481810 0.008977 0.006367 +12 0.804309 0.479650 0.009575 0.006594 +12 0.883752 0.479195 0.008677 0.007503 +11 0.842160 0.478513 0.009276 0.006139 +12 0.915320 0.478286 0.009575 0.006594 +12 0.862657 0.478740 0.009575 0.007503 +12 0.445542 0.461005 0.009575 0.006594 +12 0.306703 0.461005 0.010772 0.006594 +12 0.064183 0.461005 0.004488 0.008413 +12 0.165919 0.456230 0.009276 0.006139 +12 0.135996 0.453729 0.008079 0.004775 +12 0.467385 0.453502 0.008977 0.005230 +12 0.368342 0.453502 0.009575 0.005230 +12 0.339168 0.453729 0.009874 0.005684 +12 0.194345 0.453956 0.009874 0.006139 +12 0.487433 0.453502 0.009575 0.006139 +12 0.226661 0.453502 0.008677 0.006139 +12 0.543986 0.450773 0.010174 0.006139 +12 0.503890 0.450773 0.010174 0.006139 +12 0.602932 0.448272 0.009575 0.005684 +12 0.581987 0.448272 0.009575 0.005684 +12 0.563585 0.448272 0.009874 0.005684 +12 0.641083 0.447931 0.008079 0.005912 +12 0.663375 0.445771 0.008977 0.006139 +12 0.682077 0.445202 0.009874 0.006821 +12 0.744315 0.442815 0.009874 0.005684 +12 0.703022 0.443042 0.009874 0.006139 +12 0.782316 0.439518 0.009276 0.006367 +12 0.765260 0.439518 0.009874 0.006367 +12 0.805655 0.437813 0.009276 0.006594 +12 0.862507 0.437358 0.009276 0.006594 +12 0.840664 0.437358 0.009874 0.006594 +12 0.914572 0.436448 0.008677 0.006594 +12 0.885248 0.436676 0.009276 0.007049 +13 0.306254 0.430309 0.009874 0.007049 +12 0.255087 0.429627 0.009276 0.006594 +13 0.399312 0.429400 0.010473 0.007049 +13 0.164123 0.429400 0.009276 0.007049 +12 0.337074 0.422465 0.010473 0.005912 +13 0.225464 0.422578 0.009874 0.006139 +13 0.191652 0.422692 0.010473 0.006367 +13 0.368492 0.422351 0.009874 0.006594 +12 0.915470 0.420305 0.009874 0.006139 +12 0.883154 0.417804 0.009874 0.005684 +12 0.862807 0.418031 0.009874 0.006139 +12 0.842460 0.415757 0.009874 0.006139 +12 0.803710 0.415757 0.010174 0.006139 +12 0.765111 0.413370 0.009575 0.005002 +12 0.783064 0.413483 0.009575 0.006139 +13 0.179234 0.412574 0.010174 0.006139 +12 0.445392 0.412119 0.009276 0.006139 +13 0.323010 0.412119 0.009874 0.006139 +12 0.702274 0.411210 0.009575 0.006139 +12 0.743118 0.410982 0.009874 0.006594 +12 0.682077 0.409050 0.007481 0.005457 +12 0.662777 0.409163 0.009575 0.005684 +12 0.640784 0.406321 0.009874 0.006367 +12 0.603980 0.406435 0.009276 0.006594 +13 0.208558 0.405070 0.009575 0.005684 +13 0.386595 0.404843 0.010174 0.006139 +13 0.352932 0.404843 0.009874 0.006139 +12 0.241921 0.404843 0.010473 0.006139 +12 0.582136 0.404161 0.007481 0.005684 +12 0.563136 0.404161 0.008977 0.005684 +12 0.502394 0.401887 0.009575 0.006594 +12 0.542639 0.401432 0.009874 0.006594 +12 0.801765 0.398136 0.004488 0.003638 +13 0.486086 0.399386 0.009276 0.006139 +12 0.464841 0.399386 0.009874 0.006139 +12 0.914423 0.375966 0.010174 0.006594 +12 0.885099 0.373465 0.008977 0.005230 +12 0.864901 0.373579 0.009276 0.005457 +12 0.841412 0.371305 0.010174 0.006367 +12 0.804758 0.371305 0.009874 0.006367 +12 0.767205 0.369486 0.008977 0.005912 +12 0.784710 0.369145 0.008079 0.005684 +12 0.703621 0.366871 0.009874 0.005684 +12 0.135697 0.365962 0.008079 0.004775 +12 0.135697 0.370737 0.008079 0.004775 +12 0.742519 0.366417 0.009874 0.006594 +12 0.337971 0.365734 0.008079 0.005230 +12 0.337672 0.348454 0.009276 0.006139 +12 0.226062 0.365962 0.008079 0.005684 +12 0.225913 0.348454 0.008977 0.006139 +12 0.194045 0.365848 0.006882 0.005457 +12 0.193597 0.348113 0.008977 0.006367 +12 0.369689 0.365621 0.008677 0.005912 +12 0.369090 0.348226 0.009874 0.006594 +12 0.685368 0.364825 0.008079 0.006139 +12 0.662777 0.364370 0.008977 0.006139 +13 0.273639 0.363461 0.009276 0.006139 +13 0.273040 0.346180 0.009276 0.007958 +13 0.274686 0.412233 0.010174 0.006367 +12 0.165619 0.363347 0.007481 0.005912 +12 0.165619 0.346407 0.008677 0.006594 +12 0.445392 0.363006 0.009276 0.006139 +12 0.445392 0.346635 0.009276 0.007049 +12 0.306852 0.363120 0.008677 0.006367 +12 0.306403 0.345953 0.009575 0.006594 +13 0.414273 0.362779 0.009276 0.006594 +12 0.413525 0.346407 0.009575 0.007503 +13 0.413974 0.412119 0.009874 0.006139 +12 0.603980 0.362324 0.009276 0.006594 +12 0.641532 0.361869 0.010174 0.006594 +12 0.581239 0.359823 0.009276 0.006139 +12 0.563285 0.359709 0.009276 0.005912 +12 0.505536 0.358231 0.009874 0.006594 +13 0.064482 0.362665 0.005087 0.015462 +12 0.543686 0.357435 0.009575 0.005912 +12 0.484740 0.348454 0.009575 0.006139 +12 0.464692 0.348226 0.009575 0.006594 +18 0.204069 0.326739 0.008977 0.002729 +12 0.914423 0.311846 0.009575 0.005684 +12 0.338270 0.309800 0.008079 0.006139 +12 0.194943 0.310141 0.009874 0.006821 +12 0.883303 0.309231 0.008977 0.005912 +12 0.225763 0.309573 0.009276 0.006594 +12 0.862507 0.309118 0.009276 0.006594 +12 0.369390 0.309345 0.009276 0.007049 +11 0.165021 0.308436 0.008677 0.006139 +12 0.272741 0.307526 0.007481 0.006139 +12 0.841861 0.307071 0.009874 0.006139 +12 0.807151 0.307299 0.009874 0.006594 +13 0.412627 0.307185 0.008378 0.006367 +12 0.306703 0.307071 0.008977 0.006139 +12 0.764363 0.305707 0.009276 0.006139 +12 0.782914 0.304798 0.008677 0.006139 +12 0.743268 0.302638 0.008977 0.006367 +12 0.701526 0.303092 0.009276 0.007276 +12 0.662328 0.300819 0.008677 0.006367 +12 0.681478 0.299568 0.008677 0.006594 +12 0.602633 0.298886 0.008977 0.007049 +12 0.641682 0.297976 0.009276 0.007049 +12 0.581837 0.296612 0.009276 0.006139 +12 0.562986 0.296385 0.008677 0.005684 +12 0.543836 0.294338 0.009874 0.007049 +12 0.503740 0.293429 0.009874 0.006139 +18 0.337522 0.292406 0.008378 0.005912 +18 0.193597 0.292519 0.008378 0.006139 +18 0.368791 0.292178 0.009276 0.006367 +18 0.225165 0.292065 0.009276 0.006139 +18 0.484440 0.291610 0.009575 0.006139 +18 0.463794 0.291155 0.009575 0.006139 +12 0.271843 0.290587 0.008079 0.006821 +12 0.412478 0.290359 0.009276 0.007276 +12 0.164123 0.290359 0.009276 0.007276 +12 0.307151 0.289905 0.009276 0.007276 +12 0.444195 0.289336 0.009276 0.007958 +12 0.471125 0.266598 0.009276 0.006139 +12 0.456014 0.266485 0.008977 0.005912 +13 0.433573 0.266598 0.009575 0.006139 +12 0.517205 0.265803 0.009276 0.006367 +12 0.752693 0.264325 0.009874 0.006139 +11 0.806254 0.264097 0.010473 0.006594 +12 0.560742 0.263188 0.010174 0.005684 +12 0.337971 0.262051 0.009874 0.006139 +12 0.867744 0.261141 0.010174 0.006139 +12 0.583483 0.260459 0.010174 0.005684 +13 0.627020 0.260232 0.009874 0.006139 +12 0.195542 0.259777 0.009874 0.005230 +12 0.165619 0.260232 0.008677 0.006139 +12 0.371185 0.259322 0.008079 0.005230 +12 0.355027 0.259550 0.008079 0.005684 +12 0.227259 0.259550 0.008677 0.005684 +12 0.412029 0.259095 0.009575 0.005684 +12 0.899312 0.258299 0.009874 0.005912 +12 0.690156 0.257503 0.009874 0.005230 +12 0.662178 0.257731 0.009575 0.005684 +12 0.722472 0.257276 0.008079 0.005684 +12 0.472322 0.226353 0.009276 0.005684 +12 0.455266 0.226239 0.008079 0.005457 +13 0.432675 0.226353 0.010174 0.005684 +12 0.517056 0.225898 0.010174 0.006594 +12 0.752693 0.224307 0.009874 0.006139 +11 0.802962 0.223738 0.007481 0.005912 +13 0.561191 0.223397 0.009874 0.006139 +12 0.337822 0.221805 0.009575 0.006594 +12 0.868791 0.220896 0.009874 0.005684 +13 0.625972 0.220441 0.010174 0.005684 +13 0.625374 0.207367 0.007181 0.005457 +12 0.165919 0.220214 0.008079 0.005230 +12 0.582735 0.220555 0.009874 0.006367 +12 0.225015 0.219873 0.008977 0.005457 +12 0.194345 0.219986 0.008079 0.005684 +12 0.355177 0.219532 0.007780 0.005684 +12 0.411580 0.218963 0.009874 0.005457 +12 0.372681 0.219191 0.009874 0.005912 +12 0.899312 0.217940 0.009874 0.006139 +12 0.659934 0.217713 0.009874 0.005684 +12 0.687612 0.217258 0.009575 0.005684 +12 0.721873 0.217030 0.009276 0.006139 +18 0.447487 0.208390 0.006284 0.002501 +13 0.164273 0.194975 0.008378 0.007503 +13 0.659635 0.192474 0.009874 0.007049 +13 0.545482 0.191905 0.009575 0.006821 +13 0.609814 0.191564 0.008977 0.007049 +13 0.581388 0.191451 0.009575 0.007276 +12 0.832286 0.189745 0.008677 0.007049 +13 0.897367 0.189291 0.009575 0.007049 +13 0.867445 0.189518 0.009575 0.007503 +13 0.224417 0.186335 0.009575 0.005684 +13 0.194943 0.186562 0.009874 0.006139 +13 0.256134 0.186107 0.009575 0.006139 +13 0.411879 0.186107 0.010473 0.007049 +13 0.314034 0.186221 0.011071 0.007276 +12 0.514961 0.185198 0.009575 0.006139 +13 0.721125 0.183834 0.010174 0.006139 +12 0.688360 0.183834 0.010473 0.006139 +13 0.751346 0.183606 0.009575 0.006594 +13 0.801765 0.182924 0.009874 0.006139 +13 0.182226 0.176330 0.009575 0.006594 +13 0.560742 0.174511 0.010174 0.006594 +13 0.672950 0.173829 0.009575 0.006139 +13 0.625075 0.173943 0.009575 0.006367 +12 0.597098 0.174056 0.008677 0.006594 +12 0.846349 0.172124 0.010473 0.006367 +13 0.913824 0.171783 0.010174 0.006594 +13 0.882855 0.171783 0.009276 0.006594 +13 0.210054 0.168372 0.009575 0.005230 +13 0.279922 0.167690 0.008677 0.004775 +13 0.277977 0.124261 0.007181 0.006139 +13 0.276930 0.106526 0.007481 0.006139 +13 0.240126 0.168372 0.009276 0.006139 +13 0.353980 0.167917 0.010772 0.006139 +13 0.529773 0.167121 0.009276 0.005457 +13 0.455117 0.167235 0.010772 0.006594 +13 0.735338 0.165530 0.008677 0.005002 +12 0.703920 0.165757 0.009276 0.005457 +12 0.817774 0.165075 0.009575 0.004548 +13 0.772741 0.164961 0.010473 0.005684 +13 0.771694 0.121533 0.008378 0.006139 +11 0.615649 0.137790 0.007481 0.004093 +13 0.624327 0.122442 0.008079 0.006139 +13 0.624476 0.104138 0.008378 0.007731 +11 0.549970 0.137904 0.005984 0.005684 +13 0.560144 0.122897 0.008977 0.006139 +13 0.558498 0.104479 0.009276 0.007503 +12 0.836924 0.133470 0.007181 0.005457 +13 0.845751 0.120509 0.006882 0.005912 +18 0.845751 0.102660 0.009276 0.006594 +12 0.194045 0.127444 0.006882 0.005684 +12 0.193597 0.108799 0.008977 0.006139 +12 0.223668 0.127103 0.007481 0.006367 +12 0.223369 0.108799 0.009276 0.006139 +12 0.163674 0.125171 0.009575 0.006139 +12 0.162029 0.106753 0.008677 0.007503 +12 0.688211 0.124602 0.008977 0.005912 +12 0.686864 0.106526 0.008677 0.006139 +12 0.720527 0.124261 0.006583 0.006139 +12 0.720826 0.106071 0.008977 0.006139 +13 0.383154 0.124034 0.009276 0.006594 +13 0.381658 0.105844 0.008677 0.007503 +12 0.485039 0.123579 0.008378 0.006594 +12 0.483992 0.104934 0.009874 0.007503 +12 0.658737 0.122328 0.007481 0.005912 +12 0.658438 0.104252 0.009276 0.007049 +11 0.411131 0.120964 0.008378 0.006821 +11 0.312238 0.120850 0.006284 0.006594 +13 0.911879 0.120168 0.008677 0.006139 +12 0.516158 0.120396 0.008378 0.006594 +12 0.581837 0.120055 0.009276 0.006821 +13 0.899910 0.117781 0.008677 0.005002 +13 0.899910 0.122783 0.008677 0.005002 +12 0.866098 0.117894 0.008079 0.006139 +12 0.802513 0.118122 0.008977 0.006594 +18 0.311939 0.103570 0.008677 0.005684 +18 0.409635 0.103570 0.008977 0.006594 +18 0.770197 0.102660 0.008977 0.006594 +12 0.769749 0.058777 0.008079 0.006139 +18 0.800718 0.100841 0.008977 0.006594 +12 0.801317 0.056730 0.007780 0.007503 +18 0.865051 0.099818 0.008378 0.006367 +12 0.865500 0.056276 0.008079 0.007503 +12 0.834231 0.072078 0.008378 0.005457 +12 0.843956 0.058663 0.008079 0.005912 +12 0.843507 0.040359 0.009575 0.007503 +12 0.062986 0.070373 0.004488 0.004775 +12 0.223968 0.064575 0.009276 0.006821 +12 0.193297 0.064802 0.008977 0.007276 +12 0.687163 0.062869 0.009276 0.006139 +12 0.719928 0.062528 0.007780 0.006821 +12 0.162627 0.062187 0.007481 0.006594 +12 0.276930 0.061278 0.008677 0.005684 +13 0.558348 0.060596 0.007780 0.006139 +12 0.483244 0.060368 0.006583 0.005684 +12 0.382256 0.060709 0.007481 0.006367 +12 0.658139 0.060141 0.008677 0.006139 +13 0.624327 0.059231 0.008079 0.006139 +11 0.311041 0.059118 0.006284 0.006367 +11 0.409934 0.058663 0.007181 0.006367 +12 0.911430 0.058436 0.008378 0.006367 +18 0.912178 0.101864 0.009276 0.006821 +12 0.580042 0.057754 0.008079 0.007731 +18 0.579443 0.102660 0.009276 0.006594 +12 0.514512 0.057526 0.007481 0.007276 +18 0.514662 0.102660 0.008977 0.006594 +18 0.191801 0.046498 0.008977 0.006139 +18 0.222472 0.045703 0.008677 0.006367 +18 0.718881 0.044452 0.008677 0.005684 +18 0.686864 0.044679 0.009874 0.006139 +18 0.162627 0.043088 0.009874 0.006594 +12 0.276332 0.043088 0.009874 0.007503 +12 0.557899 0.042633 0.009276 0.007503 +12 0.769749 0.041951 0.009276 0.007049 +18 0.657241 0.041837 0.009276 0.006821 +18 0.622681 0.041951 0.009575 0.007049 +12 0.483842 0.042178 0.009575 0.007503 +12 0.382256 0.042519 0.009874 0.008186 +12 0.910981 0.040814 0.009276 0.007503 +18 0.578995 0.039677 0.008378 0.006139 +18 0.514512 0.040018 0.009874 0.006821 +18 0.409635 0.039677 0.008977 0.006139 +12 0.310443 0.039905 0.008677 0.006594 +18 0.800269 0.038313 0.009276 0.006139 +18 0.864153 0.037972 0.009575 0.006367 +2 0.085727 0.496930 0.018851 0.019327 +3 0.609964 0.041496 0.006882 0.020691 +4 0.829892 0.040587 0.009874 0.017053 +4 0.469330 0.041951 0.009276 0.017053 +4 0.793387 0.223852 0.014662 0.016144 +4 0.612956 0.220896 0.009276 0.015689 +3 0.887642 0.257958 0.006882 0.019782 +3 0.571065 0.260232 0.006882 0.018872 +2 0.087522 0.221123 0.023639 0.018872 +3 0.897816 0.040132 0.006882 0.019782 +4 0.756882 0.040814 0.009874 0.017508 +1 0.087223 0.322988 0.021843 0.030696 +0 0.086326 0.369372 0.022442 0.032515 +4 0.898414 0.101751 0.009276 0.016598 +3 0.888241 0.217485 0.006882 0.018872 +3 0.899910 0.059459 0.013465 0.023874 +4 0.264662 0.062187 0.009276 0.016598 +4 0.469330 0.059914 0.010473 0.016598 +4 0.111460 0.576285 0.009276 0.012506 +4 0.444794 0.267053 0.009276 0.015234 +4 0.544434 0.042633 0.009874 0.017508 +4 0.499850 0.579013 0.010473 0.015234 +4 0.263764 0.042860 0.009874 0.017053 +3 0.588420 0.867326 0.010473 0.019782 +2 0.084530 0.455093 0.020048 0.019327 +4 0.312238 0.779332 0.009874 0.016598 +2 0.084530 0.260914 0.017654 0.018417 +2 0.083932 0.899841 0.021245 0.019327 +2 0.087223 0.671101 0.019449 0.019327 +2 0.082735 0.938267 0.018851 0.018872 +4 0.907092 0.539905 0.009874 0.016144 +2 0.086026 0.719077 0.018253 0.018872 +1 0.086326 0.412574 0.022442 0.038881 +4 0.231149 0.856639 0.005685 0.011141 +4 0.212896 0.540359 0.009874 0.016144 +1 0.088420 0.546044 0.021843 0.034789 +4 0.216786 0.636539 0.009276 0.013870 +0 0.084829 0.074011 0.023040 0.032060 +4 0.157840 0.498749 0.012268 0.015689 +4 0.901107 0.420759 0.009874 0.016144 +3 0.860114 0.532401 0.008079 0.021146 +4 0.153651 0.456685 0.008677 0.014325 +4 0.791293 0.586744 0.010473 0.016144 +4 0.612358 0.261824 0.009276 0.013870 +4 0.155745 0.769782 0.009276 0.014779 +4 0.900509 0.311846 0.009874 0.015689 +4 0.311939 0.864143 0.009276 0.013415 +1 0.086924 0.587426 0.022442 0.031151 +4 0.211101 0.823897 0.009874 0.018417 +3 0.889437 0.120168 0.006882 0.017053 +4 0.597098 0.530355 0.009874 0.017053 +4 0.368791 0.061505 0.009276 0.017053 +4 0.368193 0.042633 0.010473 0.016598 +4 0.694943 0.629491 0.009276 0.016144 +4 0.694345 0.532856 0.010473 0.016598 +4 0.544734 0.061278 0.010473 0.016598 +4 0.596499 0.626307 0.009874 0.016144 +4 0.756284 0.058777 0.009874 0.015234 +4 0.406194 0.779559 0.008677 0.016144 +4 0.403501 0.865280 0.009276 0.015689 +3 0.859216 0.629718 0.007481 0.019327 +4 0.489976 0.865962 0.009874 0.016144 +4 0.136445 0.263756 0.008378 0.013643 +4 0.128665 0.254434 0.008378 0.013188 +4 0.125374 0.161664 0.007780 0.012278 +4 0.112208 0.363574 0.008977 0.013188 +4 0.135548 0.223738 0.008977 0.013643 +4 0.134051 0.073442 0.009575 0.015916 +4 0.125075 0.064575 0.008378 0.014552 +0 0.127768 0.447931 0.007780 0.010005 +4 0.127169 0.801501 0.007780 0.012278 +4 0.136445 0.621874 0.008378 0.013188 +4 0.136445 0.581173 0.008378 0.011824 +4 0.127469 0.572306 0.008378 0.013188 +4 0.133752 0.941110 0.008977 0.014097 +4 0.612807 0.103456 0.008378 0.015916 +3 0.603531 0.102774 0.006583 0.019100 +0 0.084680 0.130969 0.020946 0.029104 +4 0.116098 0.077080 0.009575 0.013188 +4 0.105027 0.069350 0.008977 0.015007 +0 0.134351 0.130741 0.007780 0.011369 +4 0.110114 0.125512 0.008378 0.015462 +0 0.127469 0.122101 0.009575 0.011369 +4 0.119689 0.725102 0.008378 0.013188 +4 0.118492 0.321282 0.008378 0.014097 +4 0.118492 0.411778 0.008378 0.013188 +4 0.136445 0.543656 0.008378 0.013188 +0 0.128965 0.533879 0.008977 0.011824 +4 0.136445 0.672578 0.008378 0.013643 +4 0.135548 0.408140 0.008977 0.014097 +4 0.119390 0.501592 0.008977 0.014552 +4 0.112208 0.493179 0.008977 0.015916 +4 0.136146 0.853115 0.008977 0.015462 +4 0.111909 0.539109 0.008378 0.014097 +4 0.112059 0.260687 0.009874 0.016598 +4 0.119090 0.264552 0.009575 0.016598 +5 0.610862 0.058095 0.009874 0.016598 +5 0.611161 0.070146 0.009874 0.016598 +4 0.109665 0.167462 0.009874 0.016598 +4 0.117295 0.174284 0.009575 0.016598 +5 0.119539 0.771146 0.009874 0.016598 +4 0.128665 0.766371 0.009575 0.016598 +4 0.129114 0.490564 0.009874 0.016598 +5 0.135847 0.494657 0.009575 0.016598 +4 0.121035 0.621533 0.009874 0.016598 +4 0.128067 0.614484 0.009575 0.016598 +4 0.118642 0.941678 0.009874 0.016598 +4 0.125673 0.931901 0.009575 0.016598 +3 0.110563 0.808663 0.009874 0.016598 +5 0.117893 0.809345 0.009575 0.016598 +4 0.080940 0.813893 0.009874 0.016598 +4 0.091562 0.810482 0.009575 0.016598 +4 0.127319 0.893020 0.009874 0.016598 +3 0.135248 0.894839 0.009575 0.016598 +4 0.606673 0.124488 0.009874 0.016598 +4 0.080940 0.777967 0.009874 0.016598 +4 0.090963 0.771373 0.009575 0.016598 +4 0.082136 0.624261 0.009874 0.016598 +4 0.092160 0.621078 0.009575 0.016598 +4 0.080640 0.858913 0.009874 0.016598 +5 0.093357 0.855503 0.009575 0.016598 +4 0.080640 0.177240 0.009874 0.016598 +3 0.092759 0.173829 0.009575 0.016598 +4 0.110563 0.896203 0.009874 0.016598 +4 0.117893 0.903479 0.009575 0.016598 +4 0.111759 0.670873 0.009874 0.016598 +4 0.119090 0.674739 0.009575 0.016598 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_47.jpg b/data_dataset/dvo/debug/debug_47.jpg new file mode 100644 index 0000000..ca87567 Binary files /dev/null and b/data_dataset/dvo/debug/debug_47.jpg differ diff --git a/data_dataset/dvo/debug/debug_47.txt b/data_dataset/dvo/debug/debug_47.txt new file mode 100644 index 0000000..f6a045d --- /dev/null +++ b/data_dataset/dvo/debug/debug_47.txt @@ -0,0 +1,751 @@ +10 0.177121 0.944810 0.005974 0.002725 +10 0.241637 0.943902 0.005974 0.002725 +8 0.388889 0.941517 0.012545 0.007041 +10 0.176822 0.940268 0.007766 0.002725 +10 0.341099 0.938905 0.006571 0.002271 +9 0.744325 0.947195 0.008961 0.023847 +6 0.207288 0.943788 0.008961 0.018397 +6 0.359319 0.941744 0.009558 0.019305 +6 0.724612 0.941631 0.005376 0.018624 +6 0.770012 0.940382 0.007766 0.019305 +10 0.921446 0.932773 0.005974 0.004542 +10 0.505974 0.929253 0.006571 0.002953 +10 0.496117 0.928799 0.009558 0.002953 +10 0.517622 0.929253 0.011947 0.004769 +10 0.503883 0.902907 0.006571 0.003861 +7 0.373357 0.894504 0.011947 0.013854 +6 0.389188 0.893368 0.008961 0.017942 +6 0.768220 0.891551 0.009558 0.017942 +6 0.723716 0.891438 0.008961 0.018169 +7 0.219534 0.849534 0.011350 0.013400 +6 0.239546 0.848853 0.009558 0.018397 +7 0.878435 0.846582 0.011350 0.014308 +10 0.521505 0.839995 0.013142 0.001590 +6 0.768220 0.846355 0.010753 0.018397 +6 0.724612 0.846582 0.008363 0.018851 +10 0.177718 0.851692 0.005974 0.002271 +9 0.767324 0.805701 0.011350 0.033386 +8 0.709976 0.796730 0.011350 0.008630 +7 0.878435 0.798660 0.011350 0.013854 +6 0.799881 0.798433 0.008363 0.018851 +6 0.745818 0.797979 0.008961 0.017942 +7 0.710424 0.749489 0.011051 0.014081 +7 0.878584 0.748467 0.011649 0.013400 +6 0.746565 0.748921 0.009259 0.018851 +6 0.797640 0.748694 0.006272 0.018397 +9 0.858274 0.748694 0.010454 0.029298 +9 0.725956 0.749148 0.011051 0.029298 +9 0.766876 0.748467 0.010454 0.028844 +9 0.244773 0.752101 0.004480 0.032932 +10 0.768519 0.736543 0.005974 0.002725 +10 0.728196 0.736430 0.006571 0.002953 +10 0.496714 0.735975 0.008363 0.004315 +10 0.491935 0.709176 0.009558 0.002498 +8 0.238650 0.703270 0.010753 0.007949 +7 0.191458 0.705996 0.011947 0.014308 +8 0.875149 0.706677 0.011350 0.009766 +6 0.207587 0.704860 0.009558 0.018397 +6 0.338710 0.703498 0.010155 0.018851 +9 0.857527 0.701681 0.007168 0.028844 +10 0.490442 0.658188 0.016129 0.002271 +8 0.241039 0.658983 0.011947 0.006586 +7 0.192652 0.660799 0.011947 0.013854 +8 0.876045 0.661481 0.013142 0.018397 +6 0.339008 0.660572 0.009558 0.018397 +6 0.209677 0.660572 0.008961 0.017942 +9 0.379928 0.643311 0.004182 0.037474 +9 0.607527 0.641267 0.012545 0.041108 +8 0.225956 0.586532 0.011649 0.007041 +8 0.539576 0.585851 0.011649 0.006586 +10 0.854391 0.585056 0.011649 0.004997 +8 0.712515 0.584829 0.009857 0.008176 +7 0.206541 0.587895 0.012246 0.013400 +10 0.179510 0.583920 0.009558 0.003180 +7 0.519265 0.587667 0.012843 0.013854 +9 0.643817 0.594481 0.009857 0.028390 +6 0.678166 0.586759 0.008065 0.018397 +6 0.826016 0.586078 0.009857 0.017488 +10 0.399044 0.574154 0.005974 0.004088 +10 0.444444 0.548830 0.005974 0.004769 +8 0.540323 0.533841 0.011350 0.007041 +8 0.224910 0.534068 0.011350 0.006586 +8 0.854540 0.533386 0.011350 0.006586 +7 0.205197 0.536339 0.012545 0.012946 +7 0.837216 0.535658 0.011350 0.012946 +7 0.520908 0.535885 0.011947 0.013854 +10 0.489546 0.530888 0.007766 0.002953 +10 0.427718 0.507154 0.013142 0.001817 +8 0.642772 0.488644 0.010753 0.006586 +8 0.539128 0.488644 0.010155 0.006586 +8 0.224910 0.488644 0.011350 0.007495 +7 0.521505 0.490688 0.011947 0.013400 +7 0.204301 0.490234 0.011947 0.013400 +9 0.488949 0.495458 0.008961 0.024302 +10 0.419056 0.485578 0.007766 0.003180 +6 0.711768 0.489553 0.008961 0.018397 +8 0.918757 0.479332 0.007168 0.015671 +9 0.909498 0.484329 0.010155 0.030207 +10 0.731183 0.464910 0.005974 0.001817 +9 0.659498 0.449580 0.008363 0.026119 +9 0.643369 0.452419 0.010753 0.020441 +10 0.645759 0.444243 0.007168 0.002725 +10 0.661589 0.443788 0.010155 0.004542 +9 0.719982 0.436521 0.008662 0.029525 +9 0.649791 0.427322 0.008065 0.021122 +10 0.545102 0.391551 0.005974 0.003634 +8 0.712963 0.384738 0.011947 0.007722 +7 0.690562 0.387350 0.011350 0.013854 +7 0.362903 0.386441 0.011947 0.013400 +9 0.332139 0.394617 0.005376 0.030661 +10 0.239845 0.381558 0.008363 0.002725 +6 0.802270 0.387804 0.008961 0.018851 +6 0.382019 0.385987 0.009558 0.018851 +10 0.291816 0.342721 0.013142 0.001817 +10 0.273895 0.342040 0.010753 0.002725 +10 0.284050 0.339882 0.007168 0.001590 +8 0.712664 0.340336 0.011350 0.007041 +7 0.691756 0.341926 0.011350 0.012946 +7 0.363501 0.340563 0.011947 0.013400 +6 0.803166 0.341699 0.009558 0.018397 +9 0.827061 0.342380 0.009558 0.024302 +6 0.382318 0.339655 0.007766 0.018851 +9 0.418459 0.340563 0.009558 0.023393 +9 0.223118 0.328867 0.009558 0.022258 +10 0.884110 0.287758 0.012545 0.004542 +10 0.589008 0.287531 0.006571 0.004542 +10 0.586918 0.271633 0.005974 0.002725 +10 0.493728 0.271292 0.005974 0.003407 +8 0.701613 0.270838 0.005974 0.007041 +8 0.683692 0.269702 0.010753 0.009312 +9 0.797790 0.277424 0.009558 0.023393 +10 0.879331 0.267772 0.007766 0.002725 +10 0.491637 0.267431 0.006571 0.002953 +8 0.391278 0.267886 0.012545 0.007041 +8 0.230884 0.267431 0.011947 0.007495 +7 0.402330 0.226550 0.012545 0.007041 +9 0.794205 0.234272 0.004182 0.022485 +8 0.702509 0.226323 0.008363 0.007949 +7 0.683692 0.228594 0.011350 0.013400 +7 0.381720 0.228140 0.011947 0.012946 +8 0.232975 0.224052 0.011947 0.007041 +10 0.431601 0.182149 0.007766 0.004997 +9 0.402927 0.178060 0.010155 0.020441 +9 0.276583 0.177947 0.007168 0.020668 +9 0.306452 0.177606 0.008363 0.020441 +10 0.684289 0.177606 0.006571 0.002725 +10 0.610215 0.177379 0.007766 0.002271 +10 0.506571 0.176925 0.005974 0.002271 +10 0.381123 0.134000 0.009558 0.003180 +7 0.828554 0.126391 0.011947 0.012946 +8 0.556452 0.122984 0.011350 0.007495 +7 0.536141 0.125256 0.011350 0.012946 +8 0.260753 0.120940 0.011350 0.008858 +7 0.213560 0.122984 0.012545 0.013854 +6 0.844385 0.123666 0.008961 0.017488 +6 0.228495 0.122530 0.008961 0.018397 +10 0.749104 0.112878 0.007168 0.002725 +10 0.442055 0.111742 0.007168 0.002271 +10 0.800478 0.077674 0.012545 0.004997 +8 0.702509 0.076993 0.008961 0.009085 +8 0.551673 0.075517 0.013142 0.007041 +8 0.398148 0.074608 0.011947 0.006586 +8 0.244325 0.073700 0.011350 0.007041 +6 0.846476 0.077788 0.010155 0.018397 +9 0.881272 0.079151 0.008662 0.023847 +12 0.860364 0.957870 0.008065 0.006586 +11 0.801523 0.957870 0.011051 0.007495 +12 0.602897 0.951170 0.009259 0.004997 +12 0.555108 0.951397 0.009259 0.005905 +12 0.502240 0.951510 0.008662 0.006132 +12 0.649940 0.950829 0.008961 0.005678 +12 0.922342 0.949921 0.004182 0.004315 +13 0.921595 0.942539 0.006272 0.004542 +13 0.921595 0.934931 0.005078 0.006132 +11 0.149791 0.948558 0.005078 0.003407 +11 0.768668 0.945037 0.005078 0.003634 +18 0.239994 0.942880 0.006870 0.003407 +11 0.176075 0.942880 0.008662 0.006132 +11 0.340950 0.941517 0.007467 0.005678 +12 0.632168 0.940382 0.009259 0.004769 +12 0.538680 0.940836 0.008662 0.005678 +12 0.484170 0.940609 0.009558 0.005678 +12 0.585573 0.940609 0.009259 0.006132 +11 0.688919 0.939927 0.008065 0.005678 +12 0.745968 0.939927 0.007467 0.006132 +12 0.241487 0.917443 0.009259 0.006132 +18 0.297640 0.914263 0.009259 0.007495 +12 0.262694 0.913809 0.009857 0.007041 +12 0.220430 0.913127 0.008961 0.006586 +12 0.176673 0.912219 0.009259 0.006586 +12 0.277778 0.911310 0.010155 0.006586 +11 0.341846 0.911083 0.009857 0.006586 +11 0.423238 0.910175 0.008363 0.006586 +12 0.485215 0.909948 0.008662 0.007041 +11 0.690114 0.908812 0.009857 0.006132 +11 0.690711 0.897456 0.008662 0.006132 +12 0.586768 0.909039 0.008662 0.006586 +12 0.537634 0.909266 0.008961 0.007041 +11 0.745818 0.908699 0.009558 0.006359 +11 0.745968 0.897456 0.008065 0.005678 +12 0.311081 0.908131 0.009259 0.006132 +12 0.632019 0.907904 0.008363 0.006132 +11 0.802718 0.907904 0.011649 0.007495 +12 0.860066 0.905633 0.009259 0.007495 +12 0.502091 0.901544 0.008961 0.005678 +18 0.647252 0.900863 0.006571 0.005678 +12 0.556302 0.901090 0.008662 0.006132 +12 0.603793 0.900522 0.008065 0.005905 +11 0.921296 0.891438 0.007467 0.003634 +13 0.923088 0.884056 0.006870 0.006132 +11 0.295848 0.865660 0.009857 0.006586 +11 0.744474 0.864524 0.008662 0.006132 +11 0.745221 0.852714 0.008961 0.006132 +11 0.689367 0.864297 0.009558 0.006132 +11 0.689665 0.852828 0.007766 0.005905 +12 0.859170 0.862707 0.009259 0.006132 +11 0.801225 0.863161 0.011051 0.007041 +12 0.502838 0.857029 0.008065 0.003861 +13 0.440263 0.856575 0.009558 0.005678 +12 0.390980 0.856802 0.008961 0.006132 +12 0.603345 0.855894 0.009558 0.005678 +12 0.555705 0.856121 0.008662 0.006132 +12 0.650239 0.855439 0.008961 0.005678 +12 0.371864 0.854531 0.008961 0.006132 +12 0.484319 0.853736 0.009259 0.006359 +12 0.406511 0.854077 0.008961 0.007041 +12 0.633662 0.853168 0.009259 0.006586 +12 0.586768 0.853168 0.009857 0.006586 +12 0.539576 0.853395 0.009857 0.007041 +11 0.177270 0.852714 0.009259 0.005678 +11 0.340950 0.851919 0.009259 0.005451 +13 0.454152 0.851238 0.009259 0.005905 +12 0.424134 0.851351 0.009558 0.006132 +13 0.920998 0.847377 0.006272 0.004088 +13 0.921147 0.840450 0.011350 0.007949 +12 0.079898 0.843970 0.004480 0.007722 +12 0.079898 0.825346 0.004480 0.005451 +12 0.081093 0.771292 0.004480 0.009539 +17 0.175179 0.820236 0.009857 0.007041 +11 0.175179 0.806836 0.009857 0.007495 +12 0.180257 0.794572 0.011649 0.008403 +13 0.239994 0.819214 0.010454 0.007722 +13 0.239994 0.806496 0.009259 0.006814 +18 0.243130 0.795367 0.010155 0.007268 +11 0.556153 0.812968 0.009558 0.006132 +11 0.554510 0.794345 0.009857 0.006132 +11 0.502240 0.812855 0.009259 0.006359 +11 0.503286 0.794799 0.010155 0.006586 +11 0.485215 0.812741 0.009857 0.006132 +12 0.483124 0.794799 0.009259 0.006586 +12 0.689217 0.812060 0.009259 0.006132 +12 0.688919 0.793891 0.008662 0.006132 +11 0.727151 0.802294 0.008662 0.006132 +11 0.725956 0.794118 0.008662 0.006132 +11 0.768519 0.801499 0.008961 0.005451 +11 0.766726 0.793891 0.007766 0.006586 +12 0.345430 0.803202 0.011051 0.008858 +17 0.341547 0.816829 0.011649 0.007041 +12 0.860962 0.801045 0.007467 0.005451 +13 0.860215 0.793209 0.008363 0.006132 +12 0.391876 0.802748 0.010753 0.008858 +11 0.388590 0.816716 0.011350 0.006814 +13 0.919654 0.799114 0.004182 0.004315 +13 0.922640 0.790938 0.005974 0.005224 +12 0.648895 0.794004 0.009857 0.006359 +12 0.648746 0.812514 0.008363 0.006132 +11 0.602897 0.794004 0.009857 0.006359 +11 0.604689 0.812514 0.009857 0.006132 +17 0.817354 0.792982 0.011051 0.007495 +13 0.176075 0.764819 0.010454 0.007041 +13 0.176075 0.756416 0.009259 0.006586 +12 0.177270 0.748013 0.004480 0.004315 +13 0.239994 0.764365 0.010454 0.007041 +13 0.239994 0.756189 0.010454 0.007041 +13 0.243728 0.746877 0.009558 0.006586 +12 0.689815 0.757325 0.008065 0.005678 +12 0.081392 0.756189 0.003883 0.004769 +12 0.081691 0.744038 0.003883 0.005451 +17 0.389038 0.755848 0.010454 0.005905 +17 0.389038 0.761753 0.010454 0.005905 +13 0.392772 0.746423 0.011350 0.007949 +13 0.340352 0.755848 0.010454 0.005905 +13 0.340352 0.761753 0.010454 0.005905 +13 0.341398 0.747672 0.005376 0.004542 +13 0.500597 0.755508 0.008363 0.006132 +11 0.484170 0.752442 0.007766 0.004997 +11 0.494474 0.735975 0.010454 0.003407 +13 0.555108 0.755280 0.009857 0.006132 +13 0.663232 0.754826 0.009857 0.006132 +12 0.648596 0.760277 0.010454 0.006132 +17 0.658751 0.737792 0.010454 0.005678 +13 0.602300 0.754826 0.009857 0.006132 +12 0.539576 0.752896 0.008662 0.005905 +12 0.634409 0.752555 0.008961 0.006132 +12 0.589307 0.752555 0.008961 0.006132 +12 0.919952 0.750170 0.006571 0.004997 +12 0.922790 0.741881 0.005078 0.004315 +13 0.570042 0.749943 0.009857 0.006359 +13 0.521207 0.749943 0.008363 0.006359 +13 0.616637 0.749603 0.009857 0.006586 +18 0.708632 0.748240 0.007467 0.007041 +11 0.726553 0.738814 0.009259 0.005451 +11 0.726553 0.744265 0.009259 0.005451 +12 0.859170 0.738360 0.009259 0.005451 +12 0.859170 0.743811 0.009259 0.005451 +11 0.767324 0.738474 0.008363 0.005678 +12 0.767324 0.744152 0.008363 0.005678 +17 0.817802 0.738247 0.011350 0.006132 +17 0.817802 0.744379 0.011350 0.006132 +11 0.359319 0.713264 0.009558 0.006132 +18 0.492832 0.710084 0.007168 0.002498 +13 0.920699 0.706904 0.006870 0.005224 +13 0.921894 0.697479 0.008065 0.008176 +18 0.236410 0.704179 0.003883 0.003861 +12 0.894415 0.703725 0.009259 0.006132 +13 0.648297 0.699182 0.009259 0.006586 +12 0.175329 0.698274 0.005974 0.005678 +17 0.691010 0.696457 0.009857 0.006586 +17 0.746565 0.696116 0.009857 0.006359 +12 0.859319 0.695889 0.007168 0.006359 +17 0.800777 0.695889 0.010155 0.006814 +13 0.556452 0.694640 0.008363 0.006586 +13 0.504331 0.694526 0.010454 0.006814 +17 0.390532 0.694754 0.010454 0.007268 +13 0.603495 0.694186 0.008065 0.006586 +13 0.663232 0.693959 0.009259 0.007041 +12 0.540621 0.692142 0.008961 0.006132 +11 0.486410 0.691915 0.009259 0.006132 +12 0.588262 0.691801 0.009857 0.006359 +12 0.633961 0.691460 0.009259 0.006586 +12 0.081392 0.690098 0.004480 0.005678 +13 0.617832 0.688281 0.008065 0.006586 +13 0.522849 0.688281 0.008065 0.006586 +13 0.570639 0.687826 0.009259 0.006586 +18 0.531810 0.674427 0.009259 0.006132 +13 0.922342 0.653418 0.006571 0.009993 +11 0.359170 0.650125 0.009259 0.006132 +13 0.893519 0.639905 0.009857 0.006586 +13 0.647252 0.635703 0.008363 0.006814 +12 0.175478 0.634113 0.008662 0.006359 +12 0.860364 0.632410 0.009259 0.006132 +17 0.691607 0.632637 0.011051 0.007041 +12 0.800777 0.632523 0.009558 0.007268 +17 0.747162 0.632523 0.011051 0.007268 +13 0.602897 0.630706 0.008662 0.006814 +12 0.555705 0.630706 0.008065 0.006814 +13 0.504779 0.630706 0.008961 0.006814 +13 0.662933 0.630139 0.008662 0.007495 +17 0.384558 0.630252 0.011051 0.008176 +18 0.586768 0.628435 0.008662 0.005905 +18 0.539128 0.628549 0.009558 0.006132 +18 0.483722 0.627867 0.008662 0.006132 +18 0.631571 0.627867 0.009259 0.006586 +12 0.615741 0.625823 0.007467 0.007041 +12 0.521057 0.625710 0.008065 0.006814 +12 0.570191 0.625596 0.009558 0.007495 +12 0.637843 0.602089 0.004480 0.004997 +11 0.644713 0.584942 0.008662 0.006132 +12 0.384558 0.590620 0.008662 0.005224 +12 0.435335 0.588349 0.009857 0.006132 +12 0.400239 0.588122 0.008961 0.005678 +12 0.365442 0.588349 0.009857 0.006132 +18 0.712664 0.585510 0.007766 0.004542 +11 0.178763 0.586078 0.008065 0.005678 +12 0.418608 0.585737 0.007467 0.005451 +12 0.335125 0.585623 0.007766 0.006132 +11 0.804062 0.584715 0.008363 0.006132 +11 0.489845 0.585056 0.008363 0.006814 +12 0.449671 0.583012 0.009857 0.006359 +12 0.714158 0.556893 0.007766 0.006359 +13 0.763740 0.554281 0.008961 0.007041 +12 0.733274 0.554281 0.008961 0.007041 +12 0.693847 0.553373 0.008961 0.006586 +11 0.804510 0.551556 0.009259 0.006132 +12 0.749403 0.550761 0.008961 0.006359 +11 0.644713 0.550761 0.009259 0.006359 +13 0.777778 0.548717 0.008363 0.005905 +12 0.383961 0.538837 0.008065 0.006132 +13 0.078853 0.535544 0.004779 0.003634 +13 0.435932 0.535885 0.009259 0.006586 +12 0.401434 0.535885 0.009558 0.006586 +12 0.363351 0.535998 0.009857 0.006814 +11 0.177867 0.533841 0.009259 0.005678 +12 0.419504 0.533613 0.008662 0.005678 +11 0.489546 0.533273 0.008961 0.005905 +12 0.336171 0.533386 0.008065 0.006132 +13 0.449671 0.530774 0.009259 0.006359 +12 0.070042 0.529639 0.003883 0.004997 +11 0.749552 0.505451 0.009259 0.006586 +11 0.891129 0.499659 0.005675 0.004088 +18 0.892025 0.493527 0.007467 0.004997 +12 0.902031 0.495685 0.009558 0.006132 +11 0.909648 0.479787 0.004480 0.004315 +12 0.853793 0.495798 0.008662 0.006359 +12 0.868280 0.493186 0.008961 0.005224 +11 0.836171 0.493186 0.009259 0.005678 +11 0.384857 0.493300 0.009857 0.005905 +11 0.391726 0.478083 0.005078 0.004542 +13 0.435036 0.490688 0.009259 0.006132 +18 0.537336 0.489098 0.005376 0.003407 +13 0.916965 0.490461 0.009558 0.006586 +12 0.882915 0.490461 0.009558 0.006586 +12 0.806452 0.490461 0.009558 0.006586 +12 0.400388 0.490461 0.008662 0.006586 +12 0.364247 0.490461 0.009259 0.006586 +11 0.490293 0.487963 0.008065 0.006132 +12 0.419803 0.487963 0.008065 0.006132 +11 0.177270 0.487736 0.008065 0.006132 +12 0.335872 0.487622 0.008662 0.006359 +13 0.449074 0.485010 0.009259 0.006586 +11 0.812873 0.462866 0.005675 0.004088 +13 0.805556 0.429934 0.011350 0.008176 +12 0.806601 0.466387 0.003883 0.004769 +17 0.802419 0.451965 0.011051 0.006814 +12 0.814516 0.445832 0.011350 0.004542 +12 0.814516 0.450375 0.011350 0.004542 +17 0.814516 0.454917 0.011350 0.004542 +17 0.801523 0.441404 0.010454 0.006586 +12 0.533154 0.460709 0.006571 0.005224 +18 0.545251 0.424824 0.011649 0.007495 +17 0.541219 0.443561 0.010753 0.005905 +17 0.541219 0.449466 0.010753 0.005905 +17 0.541219 0.436066 0.009558 0.006359 +11 0.482228 0.457870 0.006272 0.004997 +11 0.377091 0.456620 0.005675 0.005224 +11 0.384857 0.438905 0.011051 0.005678 +12 0.388740 0.423007 0.011649 0.007949 +17 0.384857 0.433227 0.011051 0.005678 +17 0.384857 0.444583 0.011051 0.005678 +18 0.182049 0.456848 0.011649 0.007949 +12 0.186231 0.446627 0.009259 0.006586 +17 0.175030 0.441517 0.010155 0.006814 +17 0.186231 0.436180 0.010454 0.006586 +17 0.174582 0.433909 0.009857 0.006586 +12 0.181302 0.422893 0.007168 0.005451 +18 0.329450 0.456166 0.010753 0.007949 +11 0.748805 0.453214 0.005974 0.002953 +11 0.712963 0.452759 0.007766 0.005224 +12 0.678166 0.453214 0.008065 0.005678 +12 0.678166 0.447536 0.008065 0.005678 +12 0.678763 0.441176 0.008662 0.005678 +12 0.229839 0.446854 0.005675 0.005224 +17 0.219683 0.442085 0.010454 0.005678 +12 0.232228 0.435953 0.010454 0.007041 +17 0.219683 0.433682 0.010454 0.007041 +12 0.223865 0.422893 0.010454 0.007268 +12 0.643668 0.446741 0.008961 0.005905 +11 0.643668 0.452646 0.008961 0.005905 +12 0.643519 0.433795 0.009857 0.006359 +11 0.104391 0.445946 0.012843 0.008858 +12 0.661141 0.446968 0.009259 0.005451 +11 0.661141 0.452419 0.009259 0.005451 +12 0.661141 0.441517 0.009259 0.005451 +18 0.748955 0.441176 0.010454 0.005224 +12 0.748955 0.446400 0.010454 0.005224 +12 0.731183 0.441404 0.009558 0.005678 +12 0.731183 0.447082 0.009558 0.005678 +12 0.731183 0.452759 0.009558 0.005678 +12 0.740143 0.425278 0.005974 0.002498 +18 0.728047 0.425846 0.008662 0.005905 +11 0.713262 0.440949 0.009558 0.005224 +12 0.713262 0.446173 0.009558 0.005224 +12 0.722372 0.425846 0.008662 0.005905 +12 0.694594 0.441176 0.009259 0.005678 +12 0.694594 0.446854 0.009259 0.005678 +12 0.694594 0.452532 0.009259 0.005678 +17 0.489994 0.433682 0.011051 0.005678 +11 0.489994 0.439360 0.011051 0.005678 +17 0.489994 0.445037 0.011051 0.005678 +12 0.494176 0.423688 0.011051 0.007495 +12 0.334976 0.433227 0.010454 0.005678 +11 0.334976 0.438905 0.010454 0.005678 +17 0.334976 0.444583 0.010454 0.005678 +12 0.338859 0.424597 0.011051 0.007495 +18 0.850508 0.432660 0.009259 0.007268 +12 0.857826 0.463548 0.007168 0.004542 +17 0.859170 0.454236 0.011051 0.006814 +13 0.847222 0.451851 0.011051 0.006586 +17 0.859020 0.446514 0.010753 0.005905 +13 0.847222 0.441631 0.009857 0.006132 +18 0.757766 0.427663 0.006571 0.002725 +12 0.762395 0.441176 0.009857 0.005678 +12 0.762395 0.446854 0.009857 0.005678 +12 0.762395 0.452532 0.009857 0.005678 +11 0.827061 0.397797 0.009558 0.006586 +11 0.420102 0.397116 0.009259 0.006132 +13 0.598118 0.389734 0.006870 0.006359 +11 0.543160 0.389848 0.009259 0.006586 +12 0.551075 0.374972 0.004779 0.004088 +11 0.644713 0.387122 0.009259 0.006586 +12 0.558244 0.387122 0.010753 0.006586 +12 0.521953 0.387122 0.009857 0.006586 +13 0.283602 0.386214 0.009857 0.006586 +12 0.223716 0.386100 0.009558 0.006359 +13 0.613351 0.384624 0.007467 0.005224 +12 0.583333 0.384511 0.009558 0.005905 +11 0.491935 0.384397 0.009558 0.006132 +12 0.240293 0.384056 0.009259 0.005905 +12 0.335872 0.383716 0.009259 0.005678 +12 0.203405 0.383716 0.007766 0.006132 +13 0.302718 0.381217 0.008662 0.006132 +12 0.259259 0.381104 0.009558 0.006359 +11 0.175179 0.381217 0.009259 0.006586 +17 0.854689 0.379855 0.011051 0.007041 +11 0.827957 0.334772 0.008961 0.005905 +11 0.420102 0.333523 0.008065 0.005224 +12 0.540173 0.327390 0.009259 0.006132 +13 0.597521 0.326936 0.009259 0.006132 +12 0.520460 0.323757 0.008065 0.007041 +11 0.644415 0.323643 0.009857 0.007722 +12 0.556153 0.323529 0.008363 0.007495 +12 0.224164 0.322848 0.008065 0.006132 +13 0.284797 0.323302 0.009857 0.007495 +13 0.613799 0.321031 0.009558 0.006132 +12 0.582437 0.321258 0.010155 0.006586 +11 0.487605 0.320804 0.008065 0.006132 +12 0.205197 0.320577 0.008961 0.006132 +11 0.336320 0.319896 0.007766 0.006132 +12 0.240890 0.319896 0.009259 0.006586 +13 0.303315 0.317397 0.009259 0.006586 +12 0.258662 0.317284 0.008961 0.006814 +11 0.175777 0.317511 0.009259 0.007268 +11 0.854092 0.316829 0.011051 0.008176 +12 0.556302 0.274926 0.009259 0.005678 +12 0.846177 0.274813 0.009558 0.005905 +12 0.862754 0.272655 0.009259 0.006132 +12 0.826613 0.272655 0.008662 0.006132 +13 0.895609 0.272428 0.009259 0.006586 +18 0.699671 0.271065 0.008065 0.004315 +13 0.600060 0.272201 0.009558 0.006586 +12 0.570938 0.272201 0.009857 0.006586 +12 0.534946 0.272201 0.010155 0.006586 +11 0.798686 0.270384 0.008363 0.005224 +12 0.879779 0.270384 0.008662 0.005678 +11 0.644415 0.269930 0.008662 0.005678 +12 0.586768 0.269702 0.009259 0.006132 +18 0.166517 0.269135 0.013441 0.004997 +18 0.166517 0.274131 0.013441 0.004997 +12 0.492533 0.269475 0.008961 0.006132 +12 0.147700 0.269816 0.008065 0.008176 +13 0.614247 0.267431 0.009259 0.006132 +13 0.909946 0.267318 0.009259 0.006359 +11 0.340054 0.243130 0.009857 0.007041 +12 0.847073 0.232228 0.008363 0.005224 +12 0.554958 0.231320 0.009558 0.004769 +12 0.862157 0.229503 0.008662 0.006132 +12 0.827808 0.229503 0.009259 0.006132 +13 0.600508 0.229275 0.009857 0.006132 +13 0.895012 0.229275 0.009857 0.006586 +12 0.570639 0.229048 0.009857 0.006586 +12 0.535394 0.228821 0.008662 0.006132 +18 0.699074 0.227231 0.005078 0.003861 +12 0.880376 0.227004 0.008065 0.005678 +11 0.798238 0.227231 0.009259 0.006132 +11 0.645012 0.226891 0.008065 0.005905 +12 0.584976 0.226323 0.008662 0.005678 +12 0.493130 0.225869 0.008961 0.006132 +18 0.164427 0.225528 0.008662 0.005905 +18 0.169504 0.225528 0.008662 0.005905 +13 0.911141 0.224279 0.009857 0.006586 +13 0.614994 0.223825 0.010753 0.006132 +12 0.212515 0.184193 0.008065 0.004997 +12 0.211768 0.178060 0.007766 0.005451 +13 0.599462 0.182489 0.008961 0.006132 +17 0.608722 0.179537 0.008961 0.004769 +17 0.798088 0.181240 0.010753 0.004997 +17 0.798088 0.186237 0.010753 0.004997 +12 0.802718 0.170338 0.011649 0.008630 +12 0.446087 0.181808 0.008065 0.006132 +12 0.743877 0.183511 0.008662 0.005905 +13 0.753435 0.180786 0.008662 0.005905 +12 0.701613 0.180445 0.008961 0.005678 +12 0.701613 0.186123 0.008961 0.005678 +18 0.455645 0.179537 0.006870 0.003861 +17 0.847670 0.180218 0.010753 0.005678 +17 0.847670 0.185896 0.010753 0.005678 +12 0.851254 0.170111 0.011350 0.007722 +12 0.715800 0.179877 0.009259 0.005451 +12 0.715800 0.185328 0.009259 0.005451 +12 0.685036 0.179991 0.009259 0.005678 +12 0.685036 0.185669 0.009259 0.005678 +12 0.671894 0.179991 0.009259 0.005678 +12 0.671894 0.185669 0.009259 0.005678 +12 0.656959 0.179764 0.009259 0.005224 +12 0.656959 0.184988 0.009259 0.005224 +12 0.643220 0.179991 0.009259 0.005678 +12 0.643220 0.185669 0.009259 0.005678 +12 0.730287 0.179764 0.008961 0.005678 +12 0.730287 0.185442 0.008961 0.005678 +11 0.556601 0.179650 0.010454 0.005451 +11 0.556601 0.185101 0.010454 0.005451 +13 0.564815 0.164433 0.006571 0.005451 +13 0.584080 0.179537 0.009259 0.005678 +13 0.584080 0.185215 0.009259 0.005678 +12 0.581243 0.164660 0.005974 0.004997 +13 0.571535 0.179423 0.009259 0.005451 +12 0.571535 0.184874 0.009259 0.005451 +12 0.523148 0.179423 0.009259 0.005451 +12 0.523148 0.184874 0.009259 0.005451 +12 0.532258 0.164660 0.009558 0.004997 +12 0.536440 0.179423 0.009558 0.005451 +12 0.536440 0.184874 0.009558 0.005451 +12 0.507168 0.179423 0.008363 0.005451 +12 0.507168 0.184874 0.008363 0.005451 +12 0.493130 0.179310 0.010155 0.005678 +12 0.493130 0.184988 0.010155 0.005678 +12 0.433244 0.179196 0.008662 0.005451 +12 0.433244 0.184647 0.008662 0.005451 +12 0.417115 0.179196 0.008662 0.005451 +12 0.417115 0.184647 0.008662 0.005451 +12 0.402180 0.179196 0.008662 0.005451 +12 0.402180 0.184647 0.008662 0.005451 +12 0.340203 0.178969 0.007766 0.004997 +12 0.340203 0.183965 0.007766 0.004997 +12 0.383363 0.178855 0.009259 0.005678 +12 0.383363 0.184533 0.009259 0.005678 +12 0.368429 0.178855 0.009259 0.005678 +12 0.368429 0.184533 0.009259 0.005678 +12 0.353943 0.178742 0.008961 0.005451 +12 0.353943 0.184193 0.008961 0.005451 +12 0.307497 0.178628 0.009259 0.005224 +12 0.307497 0.183852 0.009259 0.005224 +12 0.293160 0.178515 0.009259 0.004997 +12 0.293160 0.183511 0.009259 0.004997 +12 0.277927 0.178288 0.008662 0.005905 +12 0.277927 0.184193 0.008662 0.005905 +11 0.262097 0.178174 0.009259 0.005678 +11 0.262097 0.183852 0.009259 0.005678 +12 0.268967 0.163298 0.005675 0.004997 +12 0.244474 0.178174 0.009857 0.005678 +12 0.244474 0.183852 0.009857 0.005678 +12 0.228943 0.178060 0.009857 0.005451 +12 0.228943 0.183511 0.009857 0.005451 +12 0.191906 0.178060 0.009259 0.005451 +12 0.191906 0.183511 0.009259 0.005451 +17 0.164725 0.176811 0.008065 0.008403 +11 0.192503 0.142062 0.009857 0.007041 +12 0.701464 0.136384 0.009857 0.006586 +11 0.882467 0.136384 0.009857 0.007041 +13 0.747461 0.134567 0.008662 0.005224 +12 0.716697 0.134454 0.009259 0.005451 +12 0.683244 0.134340 0.009259 0.005224 +12 0.402778 0.134794 0.009857 0.006586 +12 0.418757 0.133318 0.009558 0.004997 +13 0.446834 0.132750 0.009558 0.006132 +12 0.381720 0.132183 0.009558 0.004997 +11 0.796446 0.131615 0.009857 0.006586 +12 0.731930 0.131615 0.009857 0.006586 +11 0.643070 0.131161 0.008961 0.006132 +17 0.490442 0.130252 0.009558 0.006586 +12 0.431750 0.130025 0.009259 0.007041 +11 0.340203 0.129684 0.008961 0.006359 +13 0.764785 0.128889 0.008662 0.005678 +13 0.461918 0.127640 0.008662 0.005905 +18 0.260155 0.121508 0.007766 0.004997 +18 0.167413 0.121508 0.013441 0.004997 +18 0.167413 0.126505 0.013441 0.004997 +18 0.704898 0.077334 0.005376 0.003407 +18 0.167115 0.079945 0.011051 0.004542 +18 0.167115 0.075403 0.011051 0.004542 +12 0.882467 0.072110 0.005675 0.005678 +12 0.150836 0.070179 0.007766 0.004997 +18 0.150836 0.075176 0.007766 0.004997 +0 0.102001 0.800250 0.022401 0.024302 +2 0.101254 0.894731 0.020311 0.018851 +2 0.100060 0.587213 0.019116 0.018851 +0 0.102151 0.750057 0.023895 0.023847 +3 0.162634 0.316262 0.008065 0.019305 +1 0.099910 0.385533 0.022401 0.037929 +3 0.508214 0.323984 0.007467 0.019305 +3 0.510305 0.387690 0.006870 0.014536 +4 0.125149 0.583806 0.010753 0.016580 +5 0.096027 0.438678 0.014038 0.024302 +4 0.273148 0.322167 0.009259 0.016580 +4 0.329600 0.816829 0.009259 0.016125 +3 0.478047 0.439360 0.006272 0.012491 +0 0.100209 0.120486 0.022401 0.033841 +2 0.097521 0.269702 0.017622 0.018851 +2 0.100209 0.488644 0.018817 0.019759 +1 0.102300 0.660572 0.021207 0.040200 +0 0.100060 0.071883 0.022103 0.032024 +0 0.100508 0.174313 0.022999 0.024302 +2 0.097820 0.225869 0.018817 0.019305 +3 0.330197 0.851806 0.008065 0.019759 +4 0.479540 0.383716 0.007467 0.011129 +3 0.361260 0.852260 0.006870 0.017034 +1 0.102599 0.705542 0.021804 0.040200 +3 0.163829 0.380990 0.006870 0.017942 +3 0.572133 0.384397 0.007467 0.020213 +2 0.099910 0.534522 0.022999 0.018851 +3 0.476852 0.321712 0.006870 0.018851 +3 0.165024 0.435726 0.007467 0.018397 +4 0.148895 0.173177 0.009857 0.015671 +4 0.271057 0.386100 0.009857 0.017261 +2 0.099014 0.848626 0.017622 0.020213 +4 0.150687 0.700318 0.009259 0.013400 +5 0.513740 0.748013 0.008363 0.017942 +2 0.101105 0.943561 0.015233 0.018397 +1 0.908453 0.931524 0.007467 0.022939 +4 0.130526 0.337497 0.008961 0.015898 +4 0.122760 0.329775 0.008961 0.015898 +4 0.138889 0.262321 0.008961 0.014536 +4 0.149343 0.895753 0.008961 0.014990 +4 0.141278 0.885987 0.008363 0.013627 +4 0.150239 0.119010 0.008363 0.012264 +4 0.149343 0.849648 0.007766 0.013627 +4 0.150090 0.749035 0.008065 0.015898 +4 0.150239 0.799228 0.008363 0.013627 +4 0.908303 0.945946 0.005376 0.012264 +4 0.132318 0.539632 0.008363 0.013173 +4 0.123955 0.529866 0.008363 0.013627 +4 0.132915 0.658642 0.008961 0.015898 +4 0.124851 0.649784 0.008363 0.013627 +4 0.150538 0.942539 0.008363 0.011356 +4 0.141278 0.937315 0.008961 0.015444 +4 0.130227 0.229843 0.008961 0.015898 +4 0.122461 0.222121 0.008961 0.015898 +4 0.133214 0.074495 0.009558 0.014990 +4 0.150239 0.489666 0.009558 0.013173 +4 0.147551 0.436975 0.007766 0.010447 +4 0.124253 0.484215 0.008961 0.013173 +4 0.149642 0.536225 0.008363 0.015444 +4 0.140681 0.527822 0.008363 0.015898 +4 0.125448 0.695662 0.009558 0.015444 +4 0.133513 0.592096 0.008961 0.013627 +4 0.148895 0.588690 0.008662 0.013173 +4 0.139486 0.163071 0.008363 0.013173 +4 0.149343 0.655008 0.008363 0.014990 +4 0.141278 0.647740 0.008961 0.015898 +4 0.139038 0.327163 0.008065 0.017034 +4 0.148447 0.333750 0.007766 0.017034 +4 0.121714 0.268567 0.008065 0.017034 +4 0.130526 0.271519 0.007766 0.017034 +4 0.125597 0.891778 0.008065 0.017034 +4 0.133811 0.898365 0.007766 0.017034 +4 0.124403 0.112764 0.008065 0.017034 +4 0.133214 0.119350 0.007766 0.017034 +4 0.123805 0.844765 0.008065 0.017034 +4 0.132168 0.851578 0.008065 0.017034 +4 0.140382 0.842721 0.007766 0.017034 +4 0.125597 0.743016 0.008065 0.017034 +3 0.133363 0.748467 0.008065 0.017034 +4 0.141278 0.740972 0.007766 0.017034 +5 0.909050 0.889280 0.008065 0.017034 +4 0.125000 0.792074 0.008065 0.017034 +4 0.133363 0.800250 0.008065 0.017034 +4 0.141577 0.791392 0.007766 0.017034 +4 0.139636 0.220191 0.008065 0.017034 +4 0.149343 0.226096 0.007766 0.017034 +5 0.130974 0.435499 0.008065 0.017034 +4 0.139188 0.429366 0.007766 0.017034 +4 0.133065 0.702589 0.008065 0.017034 +4 0.141876 0.693732 0.007766 0.017034 +4 0.122013 0.375539 0.008065 0.017034 +4 0.130078 0.383261 0.008065 0.017034 +4 0.138441 0.373268 0.008065 0.017034 +4 0.146655 0.380990 0.007766 0.017034 +4 0.092742 0.341017 0.008065 0.017034 +4 0.099612 0.337156 0.008065 0.017034 +5 0.106631 0.336929 0.007766 0.017034 +4 0.123208 0.940609 0.008065 0.017034 +4 0.134110 0.947422 0.007766 0.017034 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_48.jpg b/data_dataset/dvo/debug/debug_48.jpg new file mode 100644 index 0000000..fef97a6 Binary files /dev/null and b/data_dataset/dvo/debug/debug_48.jpg differ diff --git a/data_dataset/dvo/debug/debug_48.txt b/data_dataset/dvo/debug/debug_48.txt new file mode 100644 index 0000000..0470582 --- /dev/null +++ b/data_dataset/dvo/debug/debug_48.txt @@ -0,0 +1,1012 @@ +8 0.220197 0.933667 0.006573 0.018174 +8 0.779803 0.944003 0.010756 0.022944 +9 0.695548 0.940936 0.011951 0.018628 +7 0.352853 0.936279 0.012549 0.012949 +7 0.196893 0.936052 0.012549 0.013403 +7 0.500149 0.929691 0.008366 0.018401 +9 0.463101 0.944684 0.011951 0.035666 +6 0.798327 0.937869 0.007171 0.019764 +9 0.747535 0.937756 0.009561 0.022263 +6 0.292202 0.935143 0.009561 0.017946 +9 0.714969 0.931622 0.013744 0.036347 +10 0.425157 0.903453 0.011951 0.004543 +8 0.221094 0.889596 0.010158 0.018174 +8 0.779205 0.899250 0.010158 0.021581 +9 0.693756 0.897092 0.008963 0.018174 +9 0.658500 0.897774 0.008963 0.021354 +9 0.623245 0.897774 0.008963 0.021354 +9 0.502540 0.885507 0.008963 0.017719 +6 0.796833 0.895388 0.004780 0.018401 +7 0.353451 0.892208 0.011951 0.012040 +7 0.198685 0.891981 0.011951 0.013403 +6 0.290409 0.891299 0.008963 0.017492 +9 0.537048 0.896979 0.013445 0.032940 +7 0.511204 0.884939 0.013146 0.018855 +9 0.712877 0.887324 0.011353 0.036801 +10 0.713176 0.846661 0.005976 0.002272 +7 0.354347 0.845184 0.012549 0.015220 +6 0.796833 0.846547 0.009561 0.018855 +7 0.196295 0.843594 0.011951 0.012949 +10 0.651927 0.835756 0.006573 0.002272 +6 0.291903 0.837915 0.009561 0.017946 +9 0.747535 0.839164 0.010158 0.042708 +9 0.170601 0.834734 0.010756 0.029759 +10 0.853899 0.816220 0.006573 0.002272 +10 0.641470 0.812131 0.005976 0.003180 +10 0.205856 0.807360 0.005976 0.001817 +7 0.354347 0.798160 0.012549 0.012949 +6 0.796833 0.799977 0.005976 0.018401 +10 0.621751 0.791686 0.005976 0.001817 +6 0.292800 0.796343 0.008963 0.018401 +9 0.463998 0.797478 0.011951 0.027488 +10 0.371079 0.789982 0.007768 0.005225 +9 0.778309 0.792708 0.010756 0.031122 +10 0.410816 0.761018 0.009561 0.002272 +7 0.354347 0.752953 0.012549 0.013403 +6 0.794742 0.754543 0.008963 0.018401 +9 0.710487 0.757269 0.008963 0.025670 +6 0.290708 0.752045 0.008366 0.017946 +9 0.463998 0.753408 0.011951 0.023853 +10 0.430236 0.759655 0.005976 0.001817 +10 0.423962 0.743526 0.005976 0.002726 +9 0.196295 0.726829 0.010756 0.026579 +9 0.211533 0.735688 0.010158 0.035211 +10 0.406035 0.724443 0.007171 0.002726 +9 0.229160 0.735234 0.009561 0.036120 +7 0.875560 0.697524 0.011055 0.018855 +7 0.920376 0.699568 0.012250 0.014312 +7 0.765163 0.698887 0.012549 0.013403 +7 0.813415 0.698660 0.012250 0.013857 +7 0.701374 0.698887 0.012847 0.013403 +7 0.650881 0.698433 0.013445 0.013403 +10 0.393039 0.693548 0.008067 0.002726 +10 0.595160 0.686506 0.007171 0.002272 +10 0.537795 0.671059 0.015536 0.004998 +10 0.394383 0.658110 0.005976 0.003635 +7 0.874216 0.660950 0.011951 0.013857 +7 0.919630 0.660950 0.011951 0.014312 +10 0.899612 0.656633 0.007768 0.003408 +7 0.813564 0.660495 0.012549 0.012949 +7 0.766955 0.660041 0.012549 0.012949 +7 0.650732 0.659814 0.011951 0.012494 +7 0.698237 0.659587 0.012549 0.012949 +10 0.393188 0.654248 0.008366 0.003180 +10 0.375261 0.654021 0.005976 0.002726 +10 0.673140 0.650386 0.006573 0.003180 +9 0.462803 0.658678 0.004183 0.023398 +10 0.468479 0.618355 0.007171 0.002272 +7 0.875710 0.620059 0.012549 0.012949 +7 0.813863 0.619605 0.011951 0.012949 +7 0.919331 0.619605 0.012549 0.014312 +7 0.763669 0.619378 0.013146 0.013403 +7 0.699134 0.619150 0.011951 0.012949 +7 0.651628 0.619150 0.012549 0.013857 +9 0.739767 0.613925 0.005976 0.023398 +9 0.853600 0.615743 0.011353 0.031577 +10 0.785778 0.601545 0.005976 0.002726 +10 0.638183 0.586324 0.005976 0.002272 +10 0.556618 0.583144 0.010158 0.004543 +10 0.899910 0.579736 0.007171 0.001817 +10 0.593666 0.569060 0.006573 0.002726 +9 0.410218 0.578033 0.011353 0.023853 +10 0.763968 0.565879 0.006573 0.004998 +10 0.570959 0.564289 0.007768 0.003180 +9 0.550344 0.572694 0.008366 0.022263 +10 0.374963 0.563721 0.007768 0.002953 +9 0.698536 0.568492 0.010756 0.033394 +10 0.175680 0.534757 0.013146 0.001817 +10 0.542575 0.534075 0.013146 0.002726 +10 0.359128 0.533962 0.011951 0.002499 +10 0.859725 0.533848 0.017628 0.002726 +10 0.541082 0.532031 0.008963 0.002272 +10 0.751419 0.531690 0.008963 0.002045 +10 0.659098 0.533167 0.019122 0.004998 +10 0.358231 0.531236 0.008963 0.002499 +9 0.645952 0.519309 0.004780 0.027715 +9 0.692262 0.518741 0.011353 0.032031 +9 0.807589 0.515902 0.004183 0.032712 +9 0.849866 0.515902 0.008067 0.034530 +7 0.194503 0.474898 0.011951 0.017038 +8 0.784882 0.474330 0.013146 0.028169 +10 0.769644 0.471831 0.006573 0.002272 +9 0.754108 0.478646 0.008963 0.018174 +7 0.350463 0.476715 0.011951 0.013403 +7 0.235435 0.476715 0.012549 0.013403 +6 0.293696 0.476034 0.009561 0.018401 +10 0.679713 0.467060 0.007171 0.002726 +7 0.235733 0.436960 0.011951 0.012949 +7 0.194801 0.435370 0.012549 0.017946 +7 0.350164 0.436733 0.012549 0.013403 +8 0.785778 0.432985 0.013744 0.027260 +9 0.769047 0.438210 0.010158 0.019082 +6 0.293098 0.436052 0.009561 0.018401 +10 0.679713 0.425943 0.007171 0.002272 +10 0.806991 0.422990 0.005976 0.003635 +10 0.739468 0.415720 0.005976 0.004543 +10 0.609800 0.413676 0.007171 0.001817 +10 0.596056 0.413676 0.017927 0.001817 +10 0.604422 0.410950 0.008366 0.001817 +10 0.591575 0.411177 0.007768 0.002272 +10 0.897221 0.406974 0.009561 0.002045 +10 0.489393 0.397092 0.008963 0.003180 +10 0.880789 0.395275 0.006573 0.002726 +10 0.907977 0.395048 0.005976 0.002726 +7 0.236331 0.397206 0.011951 0.013403 +7 0.196295 0.397206 0.011951 0.013403 +7 0.406035 0.396524 0.011951 0.013403 +7 0.833284 0.395616 0.011951 0.012949 +7 0.785778 0.395388 0.012549 0.013403 +6 0.292501 0.396297 0.009561 0.017946 +6 0.351359 0.394707 0.010158 0.017492 +10 0.538691 0.360291 0.005976 0.002272 +10 0.529728 0.361427 0.007171 0.004543 +7 0.191814 0.347910 0.011353 0.012949 +7 0.235733 0.347683 0.011951 0.013403 +7 0.406035 0.346774 0.011951 0.012949 +9 0.585599 0.350182 0.004183 0.021581 +10 0.656409 0.341663 0.005976 0.002726 +7 0.786077 0.345638 0.011951 0.012949 +7 0.832985 0.345184 0.012549 0.012949 +6 0.351658 0.347001 0.008366 0.018401 +6 0.291903 0.346774 0.009561 0.017946 +10 0.768449 0.336211 0.006573 0.002726 +10 0.741858 0.306679 0.005976 0.002726 +10 0.539886 0.307133 0.022707 0.004089 +7 0.191216 0.308610 0.011353 0.013403 +7 0.234240 0.308155 0.011353 0.013403 +7 0.404093 0.307701 0.012250 0.012949 +7 0.783537 0.305884 0.012250 0.013403 +7 0.831341 0.305202 0.012250 0.012949 +6 0.350911 0.307701 0.009860 0.017946 +6 0.291306 0.307020 0.009561 0.017492 +10 0.370481 0.262040 0.011951 0.002953 +10 0.598148 0.259882 0.005976 0.004089 +7 0.194801 0.257497 0.011951 0.012949 +6 0.175978 0.255225 0.008963 0.017492 +8 0.887063 0.252499 0.011353 0.011131 +8 0.431431 0.253748 0.009561 0.018628 +10 0.788169 0.246252 0.008366 0.001817 +8 0.451449 0.253748 0.010158 0.018628 +10 0.415297 0.262494 0.006573 0.001590 +10 0.701823 0.246025 0.010158 0.004089 +10 0.629519 0.244094 0.006573 0.002045 +10 0.904093 0.245457 0.008366 0.005225 +9 0.828802 0.250227 0.013146 0.031122 +10 0.357335 0.220354 0.007171 0.001817 +10 0.365701 0.218878 0.007171 0.004771 +10 0.551539 0.217628 0.005976 0.003180 +9 0.597251 0.210359 0.007768 0.017719 +7 0.194801 0.215016 0.010756 0.013403 +6 0.176277 0.214789 0.009561 0.018401 +7 0.884374 0.208882 0.011951 0.010223 +10 0.450254 0.204225 0.006573 0.002726 +10 0.340006 0.179010 0.010756 0.002726 +10 0.416791 0.177647 0.011353 0.004998 +10 0.517180 0.171172 0.018524 0.002045 +10 0.642665 0.171286 0.012549 0.004543 +10 0.806095 0.163562 0.008366 0.001817 +7 0.242904 0.168446 0.011353 0.012949 +8 0.186137 0.165266 0.012549 0.006588 +7 0.883777 0.164130 0.011951 0.014312 +7 0.920227 0.163448 0.011951 0.017038 +9 0.595459 0.163448 0.013744 0.024307 +9 0.632805 0.161517 0.005976 0.020900 +9 0.651031 0.160154 0.008963 0.022717 +9 0.720347 0.154816 0.010158 0.025670 +9 0.811473 0.155498 0.007171 0.022490 +9 0.708993 0.154248 0.007768 0.024534 +10 0.515088 0.128578 0.007171 0.004089 +10 0.713475 0.126079 0.007171 0.004089 +9 0.296086 0.122217 0.008963 0.020445 +8 0.548551 0.119264 0.008366 0.018628 +10 0.509411 0.112449 0.008963 0.002726 +9 0.593666 0.118810 0.010158 0.018628 +7 0.880789 0.114380 0.010756 0.013857 +7 0.919032 0.113812 0.011951 0.014993 +9 0.899910 0.119264 0.009561 0.025897 +9 0.709889 0.115289 0.008366 0.022944 +10 0.422916 0.105634 0.006274 0.002726 +9 0.798626 0.106883 0.007768 0.008860 +10 0.517777 0.084848 0.008366 0.002045 +10 0.700030 0.082235 0.014341 0.002726 +10 0.687481 0.081781 0.008366 0.003635 +10 0.282940 0.080418 0.009561 0.001817 +10 0.284434 0.077806 0.013744 0.002045 +7 0.917239 0.072126 0.008963 0.014312 +9 0.449059 0.076102 0.008366 0.021354 +9 0.429638 0.076102 0.008963 0.021354 +9 0.594264 0.076670 0.010756 0.024307 +10 0.698237 0.063153 0.007171 0.004543 +9 0.170302 0.064857 0.004183 0.032940 +10 0.252166 0.078601 0.009561 0.002272 +8 0.074096 0.037824 0.006573 0.012949 +12 0.829250 0.956043 0.009262 0.006588 +11 0.897072 0.956383 0.012250 0.007724 +11 0.854646 0.955588 0.008664 0.006588 +12 0.537347 0.954225 0.008664 0.006134 +12 0.559307 0.953885 0.008963 0.006361 +12 0.519122 0.953090 0.008067 0.005679 +11 0.528234 0.931054 0.005976 0.003408 +12 0.599492 0.951954 0.008664 0.007042 +13 0.937257 0.948205 0.004780 0.006815 +13 0.937108 0.939800 0.003884 0.005452 +13 0.937855 0.928782 0.004183 0.008860 +12 0.937705 0.911517 0.003884 0.003862 +12 0.937705 0.899591 0.004482 0.004543 +13 0.936958 0.891527 0.005378 0.005225 +12 0.937257 0.874943 0.004780 0.017038 +12 0.937705 0.855407 0.004482 0.009768 +12 0.937705 0.839050 0.004482 0.010677 +12 0.937108 0.814857 0.004482 0.006361 +13 0.935763 0.783507 0.003585 0.006815 +12 0.936212 0.773171 0.003884 0.005679 +11 0.329698 0.941731 0.009262 0.006134 +11 0.269047 0.941504 0.009860 0.006588 +12 0.236480 0.941504 0.010457 0.006588 +12 0.221094 0.938551 0.009561 0.005225 +11 0.780550 0.936733 0.008664 0.005225 +12 0.695100 0.936279 0.007469 0.005225 +12 0.658500 0.935597 0.009561 0.004771 +12 0.624141 0.935484 0.010158 0.004543 +12 0.640723 0.935597 0.009860 0.005679 +12 0.501942 0.934916 0.009561 0.004316 +13 0.462056 0.934689 0.005079 0.004771 +12 0.442038 0.934121 0.006872 0.005452 +12 0.425306 0.933894 0.006872 0.004998 +13 0.748880 0.931054 0.007469 0.004771 +12 0.171646 0.930713 0.008664 0.006815 +12 0.731401 0.926738 0.007768 0.006134 +13 0.713923 0.918673 0.008067 0.006361 +12 0.408425 0.915834 0.009561 0.006588 +12 0.372423 0.915834 0.008664 0.006588 +11 0.853899 0.912199 0.008366 0.007042 +11 0.853451 0.901295 0.008067 0.006134 +11 0.828653 0.911972 0.009262 0.006588 +11 0.828951 0.901068 0.006872 0.005679 +13 0.896773 0.912085 0.011652 0.007269 +13 0.896176 0.900500 0.011055 0.008632 +12 0.599791 0.909814 0.009262 0.006361 +12 0.560950 0.909700 0.009262 0.006134 +13 0.537347 0.909473 0.008664 0.006588 +12 0.519869 0.908791 0.009561 0.007042 +11 0.327457 0.897660 0.008963 0.006134 +11 0.269047 0.897433 0.009262 0.006588 +12 0.237078 0.897433 0.009860 0.006588 +12 0.221542 0.894593 0.008664 0.005452 +11 0.780699 0.892890 0.008366 0.005679 +12 0.695399 0.891981 0.006274 0.004771 +12 0.659396 0.891981 0.006573 0.004771 +12 0.641171 0.891754 0.007768 0.006134 +12 0.624739 0.891640 0.007171 0.005906 +13 0.502988 0.890731 0.008664 0.004089 +13 0.509113 0.879714 0.004183 0.004316 +13 0.463101 0.890504 0.007171 0.005452 +12 0.442934 0.890391 0.008067 0.005679 +12 0.423364 0.890164 0.007768 0.005225 +12 0.748431 0.887097 0.007768 0.004998 +12 0.170750 0.887665 0.008664 0.006134 +12 0.731102 0.882099 0.008963 0.005906 +12 0.713027 0.873694 0.008067 0.006361 +12 0.371079 0.871763 0.008366 0.006588 +12 0.405438 0.871081 0.008366 0.006134 +12 0.828802 0.862108 0.008963 0.006361 +11 0.854347 0.861654 0.008664 0.006815 +12 0.640723 0.859609 0.009262 0.006361 +12 0.640424 0.853135 0.008664 0.005225 +12 0.599343 0.859269 0.008963 0.006134 +12 0.521213 0.858587 0.009262 0.005225 +12 0.530475 0.840981 0.008067 0.003180 +12 0.562145 0.858928 0.009860 0.006361 +12 0.538691 0.858814 0.009561 0.007042 +18 0.826710 0.855293 0.005976 0.004543 +12 0.895877 0.854384 0.011652 0.004543 +12 0.895877 0.858928 0.011652 0.004543 +12 0.895877 0.863471 0.011652 0.004543 +12 0.624888 0.854384 0.009860 0.005906 +12 0.624888 0.860291 0.009860 0.005906 +12 0.659546 0.853589 0.009860 0.005225 +13 0.657753 0.848364 0.005079 0.005679 +12 0.711981 0.849273 0.008963 0.005679 +18 0.712130 0.840981 0.008664 0.006361 +12 0.695847 0.848251 0.007768 0.005452 +12 0.695847 0.853703 0.007768 0.005452 +12 0.729459 0.841890 0.007469 0.005452 +12 0.730206 0.835984 0.007768 0.005452 +12 0.500896 0.839732 0.008067 0.007042 +12 0.463549 0.839505 0.009860 0.006588 +12 0.441888 0.839505 0.009561 0.006588 +12 0.426053 0.839278 0.009561 0.006134 +11 0.780550 0.836552 0.006872 0.005679 +11 0.328503 0.836324 0.006274 0.005225 +12 0.327906 0.818378 0.008664 0.006588 +12 0.327756 0.798501 0.007171 0.005906 +12 0.328204 0.782372 0.009262 0.006361 +12 0.221243 0.835984 0.006872 0.005452 +12 0.221542 0.820309 0.009860 0.006815 +11 0.268001 0.833598 0.007171 0.006134 +12 0.268151 0.820650 0.009860 0.007497 +12 0.238124 0.833371 0.008366 0.006588 +12 0.237825 0.819968 0.009561 0.007042 +12 0.748880 0.829396 0.006872 0.003180 +12 0.748282 0.835756 0.006274 0.007269 +12 0.171049 0.824852 0.009262 0.005906 +12 0.171049 0.830759 0.009262 0.005906 +11 0.780550 0.823149 0.009262 0.007042 +12 0.372423 0.821445 0.008067 0.006815 +12 0.407230 0.821218 0.008366 0.007269 +17 0.897221 0.820082 0.010756 0.007724 +11 0.854646 0.819400 0.009262 0.006815 +11 0.829250 0.819514 0.008664 0.007042 +11 0.601135 0.810313 0.009561 0.006361 +12 0.608455 0.791004 0.004482 0.004089 +12 0.641769 0.810086 0.010158 0.006361 +12 0.622647 0.809973 0.010158 0.006588 +12 0.562295 0.809973 0.010158 0.006588 +12 0.539438 0.809746 0.009860 0.006134 +13 0.519271 0.809746 0.009561 0.006134 +12 0.441739 0.809064 0.009262 0.006588 +12 0.423812 0.808837 0.010457 0.006134 +12 0.695249 0.805429 0.008963 0.006134 +12 0.658500 0.805429 0.008963 0.006134 +12 0.795488 0.803498 0.004482 0.003635 +12 0.713176 0.799750 0.008963 0.006588 +11 0.267852 0.797592 0.006872 0.005906 +12 0.268001 0.780327 0.009561 0.006815 +12 0.237227 0.797706 0.007768 0.006134 +12 0.236779 0.780214 0.009262 0.006588 +12 0.730206 0.792708 0.006573 0.004316 +18 0.500149 0.792254 0.006573 0.003408 +12 0.407230 0.791345 0.008366 0.004316 +12 0.370630 0.791118 0.005677 0.004316 +13 0.463998 0.791118 0.008366 0.006134 +12 0.140872 0.789414 0.005079 0.004998 +12 0.748431 0.787710 0.009561 0.006134 +12 0.221243 0.782372 0.009262 0.006361 +13 0.199283 0.782258 0.009561 0.006134 +12 0.171347 0.782258 0.007469 0.006134 +11 0.779653 0.781577 0.009860 0.005679 +11 0.779653 0.787256 0.009860 0.005679 +11 0.853301 0.780100 0.008963 0.007269 +11 0.852256 0.766015 0.009262 0.006361 +11 0.827308 0.779305 0.008963 0.006588 +11 0.826262 0.765675 0.009860 0.006588 +17 0.896624 0.779759 0.010756 0.007951 +17 0.896176 0.766015 0.012250 0.008178 +18 0.696146 0.768287 0.008963 0.006361 +12 0.693457 0.754543 0.008963 0.007042 +12 0.601434 0.765448 0.009561 0.006588 +12 0.560950 0.764766 0.009860 0.006134 +12 0.538243 0.764425 0.009860 0.006361 +12 0.519420 0.764312 0.009262 0.006134 +12 0.638333 0.759995 0.009262 0.006134 +12 0.623394 0.759995 0.009262 0.006588 +12 0.631461 0.742731 0.006274 0.003408 +12 0.657006 0.754203 0.009561 0.006361 +12 0.710636 0.748183 0.005677 0.004316 +13 0.935166 0.750341 0.005378 0.009087 +11 0.328204 0.747728 0.008067 0.006134 +12 0.328204 0.728646 0.009262 0.006134 +12 0.502540 0.746025 0.007768 0.003635 +12 0.442635 0.746365 0.007469 0.004771 +12 0.464147 0.745797 0.007469 0.005452 +12 0.422916 0.745684 0.008664 0.005225 +13 0.729609 0.741027 0.005378 0.003635 +12 0.746639 0.736711 0.008963 0.006815 +11 0.780550 0.728760 0.009262 0.006361 +12 0.405288 0.727169 0.008664 0.006361 +12 0.370929 0.727169 0.008664 0.006361 +12 0.219151 0.723080 0.008664 0.006815 +12 0.197341 0.723308 0.009262 0.007269 +12 0.169854 0.723080 0.009262 0.007724 +18 0.236480 0.721831 0.008664 0.006134 +11 0.363310 0.709337 0.009561 0.002499 +12 0.373618 0.695934 0.008664 0.005679 +12 0.738124 0.704566 0.009262 0.006134 +12 0.786824 0.701386 0.008664 0.004316 +12 0.854347 0.699568 0.009262 0.006134 +12 0.900956 0.697070 0.008664 0.006134 +12 0.573648 0.696161 0.008366 0.005225 +12 0.553331 0.696388 0.007768 0.005679 +12 0.393337 0.695934 0.007469 0.005679 +13 0.532865 0.693776 0.009262 0.006815 +12 0.499552 0.693662 0.008366 0.006588 +12 0.322079 0.693321 0.009561 0.006361 +12 0.356140 0.693321 0.008963 0.006815 +12 0.673439 0.691163 0.008366 0.005225 +11 0.290409 0.690822 0.007171 0.004998 +11 0.468031 0.691050 0.008664 0.005906 +12 0.593815 0.689119 0.008664 0.006588 +12 0.632208 0.688778 0.009561 0.006361 +12 0.443980 0.688551 0.009561 0.006361 +12 0.410965 0.688437 0.008664 0.006134 +12 0.264864 0.688210 0.008664 0.006134 +18 0.266955 0.721831 0.008664 0.006134 +12 0.229011 0.688210 0.008664 0.006134 +13 0.169854 0.685484 0.009860 0.006134 +12 0.737227 0.665607 0.009262 0.006361 +12 0.785181 0.663108 0.009561 0.005906 +12 0.852555 0.660950 0.008664 0.006134 +12 0.900209 0.658451 0.007768 0.005225 +12 0.572602 0.657883 0.007469 0.004998 +12 0.552286 0.657769 0.008664 0.005679 +12 0.392889 0.656520 0.008366 0.005906 +12 0.373917 0.656406 0.008067 0.005679 +12 0.531969 0.654589 0.008664 0.006588 +12 0.499701 0.654475 0.008664 0.006361 +12 0.356289 0.653907 0.009860 0.006588 +12 0.322079 0.653680 0.008963 0.006134 +12 0.672543 0.652204 0.007171 0.004998 +11 0.290559 0.651636 0.007469 0.005679 +11 0.466238 0.651636 0.007469 0.006134 +12 0.593218 0.649705 0.009262 0.005906 +13 0.630415 0.649705 0.008963 0.006361 +12 0.443382 0.648910 0.009561 0.006134 +12 0.265611 0.648682 0.009561 0.006134 +12 0.228115 0.648682 0.008067 0.006134 +12 0.411114 0.648682 0.009561 0.006588 +13 0.169854 0.645502 0.009860 0.006134 +12 0.570959 0.627669 0.006573 0.003635 +12 0.571108 0.608701 0.010457 0.006588 +12 0.551091 0.627101 0.007469 0.004316 +12 0.550792 0.608587 0.008067 0.006361 +12 0.373618 0.626193 0.006872 0.005225 +12 0.373469 0.608019 0.007171 0.006134 +11 0.092023 0.625852 0.004780 0.004998 +12 0.391694 0.625965 0.006573 0.005679 +12 0.391993 0.608019 0.008963 0.006134 +12 0.498805 0.624148 0.006872 0.005679 +12 0.499253 0.605861 0.008963 0.006361 +12 0.531820 0.624035 0.006573 0.006361 +12 0.532417 0.605861 0.009561 0.006361 +12 0.355990 0.623467 0.008067 0.005679 +12 0.355094 0.605520 0.009860 0.006134 +12 0.322528 0.623353 0.008067 0.006361 +12 0.322528 0.605747 0.009262 0.006588 +11 0.099791 0.623353 0.006573 0.009087 +11 0.467434 0.621308 0.008664 0.005452 +12 0.466687 0.603135 0.009561 0.006361 +12 0.264864 0.620741 0.008664 0.005679 +11 0.290708 0.620513 0.007768 0.006134 +12 0.290260 0.602567 0.009262 0.006588 +13 0.170750 0.620400 0.011055 0.006815 +12 0.442635 0.618469 0.009262 0.006134 +12 0.441440 0.600068 0.008664 0.006588 +12 0.409621 0.618355 0.007171 0.005906 +12 0.408874 0.599159 0.008664 0.006588 +12 0.593068 0.613812 0.007768 0.005906 +12 0.592919 0.600068 0.008664 0.006588 +12 0.631461 0.613698 0.008067 0.006134 +13 0.630863 0.600182 0.009262 0.006815 +12 0.853451 0.612108 0.006274 0.004771 +12 0.853152 0.604612 0.008067 0.006134 +12 0.673439 0.611427 0.007768 0.004771 +12 0.673290 0.603476 0.009262 0.005679 +13 0.738721 0.606429 0.009860 0.005225 +13 0.738721 0.611654 0.009860 0.005225 +12 0.785480 0.603476 0.007768 0.005679 +12 0.785480 0.609155 0.007768 0.005679 +13 0.214670 0.601999 0.009860 0.007269 +12 0.899910 0.598364 0.008366 0.005906 +12 0.899910 0.604271 0.008366 0.005906 +18 0.362115 0.584053 0.007171 0.003180 +11 0.805199 0.583371 0.005378 0.002726 +11 0.812817 0.564289 0.008067 0.006361 +12 0.455483 0.571558 0.005079 0.003180 +12 0.198387 0.572808 0.009561 0.006134 +12 0.169555 0.572921 0.009262 0.006361 +12 0.592919 0.571445 0.008664 0.005679 +12 0.630565 0.571445 0.008664 0.006134 +12 0.442635 0.570763 0.009262 0.005225 +12 0.410816 0.570423 0.008963 0.005452 +12 0.264715 0.570650 0.008366 0.006361 +11 0.214371 0.570536 0.009262 0.006134 +12 0.672991 0.568832 0.008664 0.006361 +12 0.531969 0.568492 0.008664 0.006134 +12 0.498207 0.568378 0.009262 0.005906 +11 0.468031 0.568492 0.009860 0.006134 +12 0.651180 0.568492 0.010457 0.006588 +12 0.785928 0.567129 0.007469 0.004771 +12 0.355393 0.568037 0.010457 0.006588 +11 0.291156 0.567810 0.009860 0.006134 +12 0.736032 0.566788 0.006274 0.004998 +12 0.699134 0.566447 0.008963 0.004316 +12 0.321333 0.567697 0.009262 0.006815 +12 0.764864 0.566901 0.008366 0.006134 +12 0.571557 0.566333 0.008366 0.005452 +12 0.551389 0.565993 0.006872 0.005679 +12 0.392142 0.565652 0.008664 0.005906 +12 0.375859 0.565538 0.007171 0.006134 +12 0.850911 0.564289 0.008963 0.006361 +12 0.873768 0.561904 0.009860 0.006134 +12 0.898267 0.561677 0.008664 0.006134 +12 0.918136 0.556906 0.008366 0.006588 +13 0.198237 0.514880 0.009262 0.006588 +12 0.170750 0.514539 0.009262 0.005906 +12 0.592023 0.513289 0.009262 0.006588 +12 0.409770 0.512267 0.009262 0.006361 +12 0.629967 0.512267 0.009860 0.006815 +12 0.440843 0.511813 0.008067 0.006361 +12 0.265312 0.511699 0.008963 0.006588 +11 0.213475 0.511472 0.009262 0.006134 +12 0.499851 0.509995 0.008963 0.006361 +12 0.673140 0.509882 0.008963 0.006588 +12 0.651180 0.509995 0.009262 0.006815 +12 0.354497 0.509882 0.009860 0.006588 +12 0.321333 0.509655 0.009262 0.006134 +12 0.531820 0.509882 0.008963 0.007042 +11 0.467135 0.509768 0.009262 0.006815 +11 0.290260 0.508519 0.009262 0.006588 +12 0.786525 0.507951 0.008664 0.006361 +12 0.764267 0.507610 0.009561 0.006588 +12 0.734837 0.507497 0.009262 0.006361 +12 0.700030 0.507383 0.008366 0.006134 +12 0.571108 0.507383 0.009262 0.006588 +12 0.551987 0.507269 0.009262 0.006361 +12 0.391993 0.507156 0.008963 0.006134 +12 0.375112 0.507383 0.008664 0.006588 +12 0.851808 0.504430 0.008366 0.006588 +12 0.811324 0.504657 0.009262 0.007042 +18 0.872124 0.502385 0.009561 0.006134 +18 0.897221 0.501931 0.009561 0.006588 +12 0.917687 0.499659 0.008664 0.006588 +11 0.328951 0.481940 0.009561 0.006134 +11 0.268748 0.479441 0.008664 0.005679 +12 0.217956 0.476942 0.009860 0.006134 +12 0.754855 0.474443 0.008067 0.004771 +12 0.175530 0.474557 0.007469 0.005452 +12 0.769495 0.474443 0.007469 0.005679 +12 0.706005 0.471831 0.007768 0.005906 +12 0.738273 0.471717 0.008963 0.006588 +12 0.680311 0.469332 0.008366 0.005906 +12 0.504631 0.466720 0.008366 0.006134 +13 0.808635 0.466493 0.008067 0.006134 +12 0.659994 0.466606 0.008963 0.006361 +13 0.634449 0.466493 0.009262 0.006134 +12 0.378100 0.466379 0.008664 0.006361 +12 0.923812 0.465811 0.007768 0.006134 +12 0.529878 0.463994 0.009860 0.006134 +12 0.407081 0.463539 0.009262 0.005225 +12 0.836719 0.463426 0.009262 0.005452 +11 0.329101 0.441731 0.009262 0.006588 +11 0.268898 0.439687 0.008963 0.006134 +12 0.219151 0.436960 0.009860 0.007042 +12 0.176277 0.434916 0.007768 0.005679 +12 0.770242 0.433099 0.008366 0.005225 +12 0.753959 0.433099 0.008664 0.005679 +12 0.739319 0.430600 0.009262 0.006134 +12 0.706603 0.430486 0.008366 0.006815 +11 0.680012 0.428328 0.007768 0.006134 +12 0.379146 0.426397 0.008963 0.006361 +12 0.632208 0.425943 0.007768 0.005906 +13 0.503585 0.425716 0.008664 0.006815 +12 0.806842 0.425148 0.006872 0.006134 +12 0.659396 0.425488 0.010158 0.006815 +12 0.923065 0.424466 0.008664 0.006134 +13 0.531073 0.423671 0.009860 0.006361 +12 0.407828 0.423785 0.010158 0.006588 +11 0.835674 0.422422 0.009561 0.006134 +12 0.768001 0.403680 0.008067 0.005906 +12 0.766507 0.385393 0.008664 0.006588 +12 0.753511 0.403794 0.007768 0.006134 +12 0.752316 0.385393 0.008963 0.006588 +17 0.096654 0.402885 0.004482 0.004771 +12 0.706155 0.401068 0.008664 0.006134 +12 0.705258 0.383348 0.009262 0.006134 +12 0.737526 0.400954 0.008067 0.006815 +12 0.736929 0.383348 0.009262 0.006134 +13 0.425306 0.399478 0.007469 0.005225 +18 0.617568 0.399250 0.009561 0.005679 +13 0.587840 0.399478 0.008664 0.006134 +13 0.555572 0.399137 0.008664 0.005452 +13 0.528384 0.399364 0.008067 0.005906 +13 0.487451 0.399250 0.008664 0.005679 +13 0.457873 0.399364 0.008067 0.005906 +11 0.656857 0.398910 0.009262 0.005452 +11 0.680161 0.398796 0.008067 0.006134 +12 0.679265 0.380622 0.009860 0.006134 +12 0.850463 0.398001 0.007469 0.005452 +13 0.907529 0.397660 0.007469 0.005225 +13 0.880341 0.397660 0.008067 0.005679 +12 0.176128 0.392208 0.008664 0.006588 +12 0.175232 0.377896 0.009262 0.006134 +12 0.217658 0.389936 0.006872 0.005679 +12 0.217359 0.373126 0.008664 0.006588 +11 0.163878 0.394934 0.008067 0.005225 +12 0.163878 0.389709 0.008067 0.005225 +13 0.570810 0.381531 0.010457 0.006588 +13 0.542725 0.381418 0.009262 0.006361 +12 0.632805 0.381190 0.008366 0.006361 +13 0.603675 0.381190 0.009860 0.006815 +13 0.502390 0.381077 0.008664 0.006588 +13 0.474305 0.381077 0.008664 0.006588 +13 0.441739 0.381077 0.009262 0.006588 +13 0.923962 0.379941 0.008067 0.006134 +13 0.893188 0.379600 0.008664 0.006361 +13 0.865850 0.379373 0.008963 0.006361 +11 0.268151 0.372672 0.008664 0.005679 +11 0.328204 0.371649 0.009262 0.006361 +12 0.440992 0.349727 0.008963 0.005679 +12 0.864804 0.348705 0.010457 0.005906 +11 0.327308 0.347342 0.006274 0.005906 +11 0.327607 0.332008 0.009262 0.006134 +12 0.217658 0.347456 0.008067 0.006134 +12 0.217209 0.332235 0.008963 0.006588 +12 0.174634 0.347569 0.006872 0.006361 +12 0.174783 0.334848 0.009561 0.006361 +11 0.458620 0.347001 0.010158 0.006588 +13 0.569615 0.346774 0.009262 0.007042 +12 0.527637 0.346547 0.010158 0.006588 +11 0.881237 0.345411 0.008664 0.006588 +11 0.268151 0.345070 0.006274 0.005906 +11 0.268599 0.332576 0.008963 0.006361 +12 0.656558 0.344048 0.008664 0.005679 +11 0.589035 0.344048 0.007469 0.006134 +12 0.706304 0.341095 0.010158 0.006134 +11 0.681207 0.341209 0.010158 0.006361 +12 0.735584 0.340868 0.009561 0.006588 +12 0.768599 0.338710 0.008067 0.005906 +12 0.751867 0.338823 0.008067 0.006134 +18 0.561249 0.302703 0.006274 0.003408 +12 0.440245 0.293162 0.009262 0.006134 +12 0.174783 0.291118 0.009561 0.006134 +12 0.863012 0.290663 0.008664 0.006134 +12 0.218703 0.290663 0.009561 0.006134 +12 0.571108 0.289527 0.009262 0.006134 +11 0.457574 0.289755 0.009262 0.006588 +12 0.527786 0.289527 0.008664 0.007042 +11 0.268748 0.288051 0.009262 0.006361 +11 0.587093 0.286801 0.010158 0.006134 +12 0.656558 0.286347 0.008067 0.005679 +11 0.879146 0.287029 0.009860 0.007951 +11 0.326262 0.284871 0.009561 0.006361 +12 0.734389 0.283621 0.008963 0.006588 +12 0.703615 0.283621 0.008366 0.006588 +11 0.677024 0.283621 0.008963 0.006588 +12 0.766806 0.281122 0.009860 0.006134 +12 0.751569 0.280895 0.009262 0.006588 +12 0.154019 0.266015 0.005677 0.004543 +12 0.156259 0.250682 0.005976 0.005225 +18 0.463699 0.263517 0.005378 0.004089 +12 0.864804 0.264198 0.009860 0.006815 +12 0.746639 0.262381 0.008963 0.005906 +12 0.838811 0.261586 0.009262 0.005225 +12 0.476696 0.261699 0.009262 0.005906 +12 0.567822 0.261018 0.009860 0.006361 +12 0.534957 0.261131 0.009860 0.006588 +12 0.731849 0.260223 0.009262 0.006134 +12 0.713325 0.262721 0.009262 0.005679 +12 0.727069 0.245570 0.011055 0.002272 +12 0.689125 0.260223 0.009860 0.006134 +12 0.657305 0.260450 0.009561 0.006588 +12 0.623693 0.260677 0.010457 0.007042 +12 0.819988 0.259314 0.008664 0.006134 +12 0.776964 0.259541 0.009860 0.006588 +17 0.785778 0.244889 0.008963 0.002726 +12 0.520914 0.258632 0.008067 0.005225 +18 0.520914 0.263857 0.008067 0.005225 +12 0.509113 0.258860 0.009561 0.005679 +12 0.552883 0.258405 0.009860 0.005679 +12 0.597998 0.258065 0.009262 0.005452 +12 0.640574 0.257951 0.009561 0.006134 +12 0.432477 0.249773 0.008067 0.004316 +12 0.451897 0.248978 0.008067 0.005906 +12 0.904392 0.248523 0.008366 0.005906 +12 0.799522 0.244662 0.010158 0.002272 +12 0.803555 0.261926 0.009262 0.005906 +11 0.810875 0.244889 0.005976 0.002726 +12 0.349119 0.244775 0.009860 0.006134 +12 0.213475 0.245002 0.009860 0.006588 +12 0.366746 0.244662 0.009262 0.006361 +12 0.415596 0.244094 0.010158 0.006134 +12 0.382880 0.241595 0.009262 0.006588 +12 0.332686 0.237279 0.009262 0.006588 +17 0.247236 0.237619 0.010457 0.007269 +12 0.862713 0.221149 0.009262 0.006134 +12 0.713774 0.219900 0.008963 0.005452 +12 0.800269 0.218878 0.008664 0.005225 +18 0.796833 0.201045 0.008366 0.002272 +12 0.746489 0.219559 0.008664 0.006588 +12 0.835973 0.218651 0.009561 0.005679 +12 0.476098 0.218651 0.009262 0.006134 +12 0.566776 0.218310 0.010158 0.006361 +12 0.534957 0.218423 0.009860 0.006588 +12 0.622050 0.217969 0.009561 0.006588 +12 0.731849 0.217515 0.009262 0.006134 +12 0.688527 0.217515 0.009860 0.006134 +12 0.657903 0.217742 0.009561 0.006588 +12 0.776815 0.216720 0.009561 0.006361 +12 0.551240 0.215925 0.008963 0.005225 +12 0.510308 0.215697 0.008366 0.004771 +12 0.817897 0.216379 0.009262 0.006588 +12 0.597699 0.215584 0.008664 0.005452 +12 0.641022 0.215357 0.008664 0.005452 +13 0.153421 0.207746 0.011652 0.004771 +18 0.153421 0.212517 0.011652 0.004771 +12 0.432029 0.206383 0.008366 0.005225 +12 0.451897 0.206156 0.008664 0.005679 +12 0.903048 0.205475 0.009860 0.006134 +12 0.212130 0.202522 0.008963 0.006134 +12 0.349417 0.201954 0.009262 0.005906 +12 0.364954 0.201840 0.009262 0.006588 +11 0.413056 0.201386 0.009860 0.006134 +12 0.381237 0.198887 0.009561 0.006588 +12 0.330296 0.195025 0.009262 0.006588 +17 0.245444 0.194343 0.010457 0.007042 +11 0.087392 0.177647 0.005079 0.004089 +11 0.095160 0.175034 0.006274 0.009314 +12 0.262773 0.163448 0.008067 0.006134 +12 0.262175 0.145729 0.009262 0.007042 +12 0.348222 0.162994 0.006872 0.006134 +12 0.347924 0.144707 0.009860 0.007724 +12 0.297729 0.163108 0.007469 0.006361 +12 0.297580 0.145388 0.009561 0.007269 +12 0.280699 0.163221 0.008067 0.006588 +12 0.279504 0.145275 0.009262 0.007951 +12 0.365103 0.162881 0.007171 0.006361 +12 0.364356 0.144366 0.009262 0.007497 +12 0.331043 0.162994 0.008366 0.007042 +12 0.330146 0.145388 0.009561 0.007269 +12 0.413953 0.162540 0.009262 0.006588 +12 0.412758 0.144025 0.009262 0.007724 +13 0.381088 0.162540 0.008067 0.006588 +12 0.380639 0.144480 0.008963 0.006815 +12 0.450105 0.162085 0.008067 0.006588 +12 0.449806 0.144366 0.009262 0.007497 +12 0.430834 0.162085 0.008366 0.006588 +12 0.430087 0.144480 0.009262 0.006815 +12 0.155512 0.161858 0.006274 0.006588 +11 0.507171 0.156974 0.009262 0.006361 +13 0.902002 0.156179 0.006573 0.005679 +13 0.902002 0.146411 0.008963 0.007042 +12 0.550045 0.156633 0.009561 0.006588 +12 0.595160 0.156179 0.008963 0.006588 +12 0.638930 0.155952 0.009860 0.006588 +12 0.533612 0.154362 0.008963 0.005679 +13 0.476696 0.154248 0.010457 0.006361 +12 0.620108 0.153453 0.008067 0.005679 +12 0.566926 0.153794 0.008664 0.006361 +12 0.657454 0.153226 0.008664 0.006588 +12 0.727816 0.150273 0.008963 0.006134 +12 0.688676 0.149818 0.008366 0.006134 +12 0.776964 0.149478 0.008664 0.006361 +12 0.816403 0.149137 0.009860 0.006588 +12 0.862713 0.148682 0.009262 0.006588 +12 0.710636 0.147433 0.008664 0.006815 +12 0.743800 0.147092 0.009262 0.007042 +12 0.834180 0.146524 0.008366 0.006815 +12 0.799074 0.146751 0.008664 0.007269 +12 0.152674 0.128464 0.004780 0.003408 +12 0.149985 0.121763 0.004183 0.003635 +12 0.155064 0.118015 0.004780 0.003408 +12 0.155811 0.112108 0.005677 0.004316 +12 0.430385 0.128237 0.009860 0.006134 +12 0.450105 0.127669 0.009860 0.006815 +12 0.349268 0.123921 0.010158 0.006134 +12 0.365103 0.123353 0.009561 0.006361 +12 0.412907 0.123012 0.009561 0.006588 +12 0.382731 0.120627 0.008963 0.005452 +12 0.332088 0.118696 0.010457 0.006588 +12 0.279803 0.118810 0.009860 0.006815 +12 0.263370 0.118810 0.009262 0.006815 +12 0.296833 0.116424 0.008067 0.005679 +12 0.508515 0.114948 0.008366 0.005906 +12 0.550194 0.114380 0.006872 0.005679 +12 0.594413 0.114493 0.009262 0.006361 +12 0.637735 0.114039 0.008067 0.005906 +12 0.475650 0.112562 0.009561 0.006588 +12 0.243651 0.111881 0.008067 0.005679 +12 0.177323 0.111881 0.009262 0.005679 +12 0.566776 0.111881 0.008963 0.006134 +12 0.533015 0.112108 0.009561 0.006588 +12 0.901404 0.110972 0.007768 0.004771 +12 0.901105 0.103476 0.008963 0.006588 +12 0.618614 0.111654 0.008664 0.006588 +12 0.655662 0.111313 0.008664 0.006361 +12 0.727368 0.110859 0.009860 0.006361 +12 0.688527 0.111086 0.009860 0.006815 +12 0.776666 0.110291 0.010457 0.006134 +12 0.814909 0.109836 0.009262 0.006134 +12 0.863012 0.109155 0.009860 0.006588 +12 0.711383 0.108701 0.007768 0.005679 +12 0.745444 0.108019 0.008366 0.005679 +12 0.798476 0.107224 0.008664 0.005452 +12 0.834180 0.106883 0.008366 0.006588 +18 0.623095 0.085529 0.004482 0.003862 +13 0.154317 0.072808 0.005677 0.004316 +12 0.450702 0.069968 0.006872 0.005906 +12 0.430834 0.070082 0.007171 0.006134 +12 0.508664 0.069627 0.008067 0.006134 +12 0.549148 0.069060 0.007768 0.005452 +12 0.594264 0.068946 0.005976 0.005679 +12 0.637586 0.068605 0.007768 0.006361 +12 0.565432 0.067015 0.008067 0.006361 +12 0.475052 0.067129 0.009561 0.006588 +12 0.530624 0.066674 0.008366 0.006588 +12 0.616821 0.066106 0.009262 0.006361 +12 0.654168 0.065425 0.009262 0.006361 +12 0.347475 0.065538 0.008963 0.006588 +12 0.412907 0.065084 0.009561 0.006134 +12 0.363460 0.065198 0.009262 0.006361 +12 0.744099 0.064970 0.009262 0.006361 +12 0.710487 0.065084 0.009561 0.006588 +12 0.795638 0.063607 0.009561 0.006361 +12 0.833433 0.063267 0.008664 0.006588 +12 0.727368 0.062358 0.009262 0.005679 +12 0.685241 0.062812 0.009860 0.006588 +12 0.379295 0.061904 0.008664 0.006134 +12 0.774275 0.061677 0.009860 0.006134 +13 0.862414 0.060313 0.009262 0.006134 +12 0.816253 0.060768 0.010158 0.007042 +12 0.279504 0.060995 0.008664 0.007497 +12 0.330146 0.060427 0.008963 0.007269 +12 0.261876 0.060768 0.009262 0.007951 +12 0.297431 0.058269 0.008664 0.006588 +12 0.901703 0.056906 0.008963 0.006134 +11 0.175530 0.054066 0.010457 0.007269 +12 0.241560 0.053271 0.009262 0.006588 +11 0.073947 0.040209 0.003884 0.005452 +0 0.088886 0.396751 0.023006 0.023398 +3 0.278757 0.508292 0.007171 0.018855 +0 0.093068 0.842912 0.024201 0.024307 +1 0.085300 0.117787 0.022408 0.035211 +4 0.110397 0.210132 0.009262 0.015902 +4 0.133403 0.075988 0.009262 0.014766 +4 0.202719 0.291118 0.009860 0.016129 +3 0.678070 0.259768 0.006872 0.019764 +4 0.788318 0.262721 0.009860 0.016583 +2 0.086794 0.214562 0.017030 0.017946 +3 0.164177 0.376306 0.007469 0.017492 +4 0.797281 0.466493 0.009262 0.016129 +4 0.788019 0.219559 0.009262 0.016583 +3 0.622797 0.466833 0.006872 0.020445 +3 0.667762 0.284303 0.007768 0.017946 +2 0.087392 0.475806 0.018823 0.018855 +1 0.088587 0.347683 0.022408 0.038846 +1 0.085300 0.080532 0.023006 0.039755 +4 0.491634 0.426511 0.009860 0.016583 +4 0.164476 0.473080 0.009262 0.012949 +3 0.206304 0.437642 0.006872 0.020218 +4 0.659546 0.602794 0.009262 0.015220 +4 0.307141 0.509428 0.008963 0.016583 +4 0.486256 0.509428 0.009262 0.017038 +1 0.065581 0.176624 0.003287 0.009314 +2 0.085599 0.256815 0.018225 0.017946 +4 0.428593 0.349727 0.009262 0.015675 +4 0.558560 0.346093 0.007469 0.013857 +4 0.521811 0.219332 0.009860 0.015675 +4 0.850314 0.290663 0.009561 0.016129 +1 0.928145 0.750909 0.004482 0.009314 +4 0.185987 0.514880 0.009860 0.016583 +4 0.910517 0.424693 0.009860 0.016583 +4 0.610547 0.261131 0.009262 0.015675 +3 0.669405 0.342231 0.006872 0.021127 +4 0.609352 0.217969 0.009262 0.015675 +4 0.464446 0.261586 0.009860 0.016583 +4 0.911114 0.466265 0.009860 0.016129 +4 0.367643 0.426170 0.009262 0.015902 +3 0.216761 0.649137 0.006872 0.018855 +4 0.492829 0.466720 0.009860 0.016129 +4 0.796385 0.425375 0.009860 0.016583 +4 0.366149 0.465925 0.007469 0.015448 +4 0.886914 0.658564 0.009860 0.016356 +3 0.217658 0.687983 0.007469 0.020218 +1 0.089782 0.532712 0.021811 0.029532 +2 0.089483 0.934916 0.021213 0.019309 +2 0.089184 0.890845 0.018823 0.019309 +4 0.164476 0.434916 0.009262 0.015675 +3 0.279803 0.568037 0.006274 0.021127 +3 0.842097 0.661177 0.007469 0.020218 +3 0.842247 0.700023 0.007768 0.019764 +3 0.206902 0.477851 0.006872 0.018855 +4 0.750075 0.507610 0.008664 0.017492 +4 0.555572 0.289300 0.009262 0.015675 +2 0.088437 0.696615 0.019122 0.018855 +2 0.090081 0.657201 0.018823 0.018628 +4 0.886764 0.697183 0.010756 0.016356 +3 0.455034 0.507156 0.007171 0.017038 +4 0.484165 0.568264 0.009860 0.016583 +4 0.185689 0.723194 0.009860 0.015220 +3 0.677472 0.216606 0.006872 0.018855 +4 0.308784 0.567810 0.009262 0.015220 +4 0.186286 0.573262 0.009262 0.016129 +3 0.621900 0.427874 0.007469 0.017492 +4 0.694801 0.283621 0.012847 0.015675 +4 0.463549 0.219332 0.009262 0.014766 +4 0.425157 0.292708 0.010158 0.015220 +4 0.702271 0.220468 0.009860 0.016583 +4 0.114580 0.835756 0.009860 0.016811 +4 0.185091 0.781577 0.009860 0.015675 +4 0.851658 0.348592 0.009262 0.016583 +4 0.888408 0.056792 0.009860 0.016811 +4 0.138781 0.395161 0.010457 0.016129 +4 0.140574 0.615289 0.009860 0.015675 +4 0.113086 0.472285 0.010457 0.016811 +4 0.724978 0.665266 0.009860 0.016583 +4 0.701076 0.263630 0.008664 0.013857 +4 0.203316 0.347229 0.009262 0.015675 +4 0.692710 0.341095 0.009262 0.016129 +4 0.750971 0.566220 0.009262 0.016583 +4 0.124589 0.749432 0.008963 0.016356 +4 0.141321 0.746706 0.008963 0.015448 +4 0.115327 0.741822 0.009561 0.015675 +4 0.132955 0.738528 0.010158 0.016356 +4 0.123394 0.661517 0.008366 0.014993 +4 0.114132 0.653226 0.008963 0.015675 +4 0.138333 0.342799 0.008963 0.013630 +4 0.129071 0.333712 0.008366 0.012721 +4 0.136540 0.258519 0.008366 0.013176 +4 0.126681 0.159927 0.008963 0.013176 +4 0.108754 0.161404 0.008963 0.016129 +4 0.136241 0.168560 0.008963 0.013176 +4 0.141022 0.936393 0.008963 0.015902 +4 0.132059 0.927760 0.008963 0.015902 +4 0.123842 0.896184 0.008664 0.014539 +4 0.113833 0.887210 0.008963 0.015675 +4 0.118614 0.218083 0.008366 0.014993 +4 0.136241 0.215811 0.008963 0.015902 +4 0.127577 0.207633 0.009561 0.014993 +4 0.135345 0.116311 0.008366 0.013176 +4 0.126681 0.106997 0.008963 0.015448 +4 0.142516 0.840754 0.008963 0.015448 +4 0.111742 0.389823 0.008366 0.014993 +4 0.139827 0.436847 0.009561 0.015448 +4 0.130266 0.429350 0.009561 0.015902 +4 0.111443 0.252499 0.008366 0.015675 +4 0.137885 0.303726 0.008664 0.015448 +0 0.129519 0.294184 0.008664 0.012721 +4 0.140723 0.567015 0.008366 0.015902 +4 0.131162 0.559518 0.008366 0.014539 +4 0.120406 0.346433 0.008963 0.012721 +4 0.112788 0.298841 0.008664 0.012040 +4 0.123693 0.938437 0.008963 0.015448 +4 0.115028 0.929918 0.008366 0.013857 +4 0.141619 0.527942 0.008963 0.015902 +4 0.132656 0.519991 0.008963 0.015448 +4 0.141619 0.792140 0.008366 0.015448 +0 0.132357 0.784189 0.008963 0.010450 +4 0.122199 0.530554 0.008366 0.015675 +4 0.113535 0.523512 0.008963 0.015220 +4 0.122199 0.479328 0.008963 0.014993 +4 0.139528 0.476374 0.008963 0.014539 +4 0.130565 0.469332 0.010158 0.014993 +4 0.141022 0.892095 0.009561 0.015448 +4 0.131760 0.883916 0.008963 0.015448 +4 0.108157 0.069627 0.008366 0.013403 +4 0.124888 0.067697 0.008366 0.014993 +4 0.117717 0.117560 0.008963 0.015675 +4 0.109650 0.110291 0.009561 0.014766 +4 0.124888 0.795320 0.008366 0.016356 +4 0.115626 0.788051 0.008963 0.014539 +4 0.114132 0.609950 0.008963 0.015448 +4 0.130863 0.605861 0.008963 0.013630 +4 0.115178 0.692299 0.009860 0.015675 +4 0.121601 0.440027 0.008963 0.015448 +4 0.112638 0.432190 0.008963 0.015220 +4 0.081715 0.309405 0.009262 0.016356 +4 0.091724 0.303953 0.008963 0.016356 +3 0.081117 0.437074 0.009262 0.016356 +5 0.091724 0.435030 0.008963 0.016356 +5 0.084703 0.614266 0.009262 0.016356 +4 0.132208 0.650841 0.009262 0.016356 +4 0.140424 0.657656 0.008963 0.016356 +3 0.092471 0.758178 0.009262 0.013403 +5 0.098297 0.758178 0.008963 0.013403 +4 0.085898 0.751477 0.009262 0.016356 +4 0.097102 0.747842 0.008963 0.016356 +4 0.124141 0.842572 0.009262 0.016356 +4 0.132955 0.833485 0.008963 0.016356 +4 0.120556 0.396411 0.009262 0.016356 +4 0.129370 0.387778 0.008963 0.016356 +5 0.119659 0.259200 0.009262 0.016356 +4 0.126681 0.250568 0.008963 0.016356 +4 0.720795 0.705134 0.009262 0.016356 +4 0.725725 0.705134 0.008963 0.016356 +4 0.084105 0.572921 0.009262 0.016356 +4 0.095608 0.569287 0.008963 0.016356 +4 0.086197 0.798728 0.009262 0.016356 +5 0.099492 0.794184 0.008963 0.016356 +4 0.123245 0.700136 0.009262 0.016356 +4 0.131909 0.689914 0.009262 0.016356 +4 0.140723 0.697183 0.008963 0.016356 +5 0.929190 0.780781 0.004183 0.016356 +3 0.929190 0.830759 0.004183 0.016356 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_5.jpg b/data_dataset/dvo/debug/debug_5.jpg new file mode 100644 index 0000000..40553f9 Binary files /dev/null and b/data_dataset/dvo/debug/debug_5.jpg differ diff --git a/data_dataset/dvo/debug/debug_5.txt b/data_dataset/dvo/debug/debug_5.txt new file mode 100644 index 0000000..a3fc94d --- /dev/null +++ b/data_dataset/dvo/debug/debug_5.txt @@ -0,0 +1,554 @@ +8 0.316403 0.934007 0.011353 0.007497 +7 0.711085 0.933099 0.010756 0.007497 +7 0.885569 0.933780 0.011951 0.010677 +6 0.602330 0.934916 0.009561 0.017946 +6 0.797431 0.934462 0.010158 0.018401 +6 0.481625 0.934689 0.010756 0.019309 +6 0.348969 0.934689 0.007171 0.018855 +6 0.542575 0.931736 0.010756 0.021581 +10 0.305946 0.844843 0.011353 0.004998 +9 0.286226 0.836324 0.010158 0.019309 +10 0.887362 0.788278 0.006573 0.003635 +10 0.857783 0.788505 0.005976 0.004089 +8 0.542874 0.787710 0.008366 0.013403 +9 0.573648 0.784643 0.008963 0.019537 +10 0.543771 0.783280 0.007768 0.002272 +10 0.230356 0.777715 0.008366 0.001590 +10 0.766358 0.772376 0.005976 0.001817 +7 0.772632 0.772944 0.010158 0.011586 +10 0.464296 0.768969 0.006573 0.003635 +9 0.605617 0.779873 0.008366 0.029986 +10 0.315208 0.737165 0.005976 0.003180 +10 0.375859 0.736597 0.006573 0.002499 +10 0.460412 0.727624 0.008366 0.002726 +10 0.192112 0.723308 0.007171 0.002726 +10 0.585599 0.721263 0.007768 0.002726 +8 0.779803 0.732735 0.012549 0.031122 +7 0.503735 0.721377 0.007768 0.015220 +10 0.447565 0.721490 0.007768 0.004998 +10 0.385270 0.725352 0.007469 0.004089 +9 0.201673 0.730236 0.008366 0.030668 +7 0.755303 0.722058 0.012549 0.019764 +10 0.609949 0.693776 0.016433 0.004998 +10 0.624141 0.692526 0.010158 0.002953 +8 0.288019 0.683439 0.011951 0.007042 +8 0.256349 0.682303 0.011951 0.008405 +9 0.895429 0.671172 0.010158 0.041572 +7 0.351957 0.608701 0.011951 0.011131 +7 0.576337 0.609382 0.012549 0.013857 +6 0.289812 0.608701 0.009561 0.019309 +6 0.608605 0.607792 0.010158 0.018855 +6 0.809680 0.607565 0.009561 0.017946 +6 0.748730 0.607338 0.009561 0.018401 +6 0.229758 0.607792 0.010158 0.019309 +8 0.810875 0.508746 0.011951 0.006588 +8 0.778906 0.507610 0.011353 0.007951 +8 0.273827 0.506701 0.012847 0.007042 +10 0.427696 0.499546 0.006274 0.002726 +10 0.443083 0.477283 0.008366 0.004543 +10 0.579026 0.461381 0.007768 0.002726 +10 0.750224 0.460700 0.005976 0.001817 +9 0.317897 0.461268 0.007768 0.024761 +10 0.810577 0.456383 0.008366 0.003180 +10 0.778608 0.456611 0.007768 0.003635 +9 0.870033 0.458996 0.006573 0.030214 +10 0.288915 0.455475 0.007171 0.004089 +10 0.426053 0.455702 0.008963 0.004998 +10 0.352256 0.455475 0.005976 0.004998 +10 0.167613 0.455475 0.007171 0.004998 +9 0.257245 0.458428 0.009561 0.022263 +9 0.229758 0.455816 0.009561 0.027488 +8 0.719151 0.455134 0.010756 0.013857 +10 0.574544 0.445479 0.005976 0.001817 +7 0.558112 0.447865 0.013744 0.008860 +10 0.467583 0.442753 0.007171 0.001817 +10 0.458620 0.440482 0.008366 0.004543 +10 0.768151 0.437983 0.010756 0.001817 +10 0.442785 0.439346 0.006573 0.004998 +10 0.302062 0.437642 0.005976 0.001590 +10 0.381536 0.407542 0.005976 0.003180 +10 0.258440 0.403680 0.005976 0.003180 +10 0.314013 0.390277 0.005976 0.001817 +10 0.635494 0.390391 0.008366 0.002499 +7 0.190917 0.390391 0.008366 0.009768 +10 0.588288 0.387778 0.007171 0.002726 +7 0.899910 0.396070 0.012549 0.028396 +7 0.769943 0.388119 0.007171 0.002499 +10 0.760980 0.383916 0.005976 0.002726 +9 0.704213 0.393117 0.009561 0.028851 +8 0.547655 0.344502 0.013146 0.006588 +7 0.516881 0.345866 0.011353 0.012949 +10 0.760382 0.276920 0.011353 0.004998 +8 0.521064 0.275443 0.011951 0.006588 +7 0.296086 0.277942 0.011353 0.012949 +6 0.337317 0.276352 0.010158 0.018855 +10 0.760980 0.232394 0.011353 0.004998 +8 0.520765 0.230463 0.011353 0.006588 +7 0.296385 0.233189 0.011951 0.013403 +6 0.337317 0.231145 0.010158 0.018401 +7 0.761876 0.181622 0.011951 0.007497 +8 0.521362 0.178442 0.012549 0.007042 +8 0.296982 0.178442 0.011951 0.007497 +6 0.338213 0.180486 0.009561 0.017946 +10 0.765760 0.141299 0.006573 0.002726 +10 0.823125 0.141072 0.006573 0.003180 +10 0.724828 0.131077 0.005976 0.003180 +10 0.723932 0.126761 0.010158 0.003635 +10 0.521960 0.126306 0.011353 0.004998 +6 0.666268 0.130282 0.009561 0.018401 +8 0.257245 0.123921 0.012549 0.006588 +9 0.757096 0.131531 0.005976 0.022263 +9 0.858082 0.127101 0.008366 0.027488 +10 0.565432 0.088596 0.008067 0.003180 +10 0.297729 0.085416 0.005677 0.002726 +9 0.910218 0.077465 0.009262 0.019082 +10 0.596056 0.078828 0.007171 0.003635 +8 0.780699 0.078033 0.011951 0.006588 +6 0.723932 0.079169 0.009561 0.017946 +10 0.339110 0.071331 0.005976 0.002726 +8 0.636092 0.076329 0.013146 0.029532 +7 0.381237 0.077578 0.011353 0.031577 +10 0.300866 0.063835 0.007171 0.004089 +11 0.287870 0.952067 0.009262 0.006815 +17 0.168957 0.951045 0.008067 0.004771 +11 0.542127 0.938551 0.008664 0.004771 +12 0.857484 0.938323 0.008366 0.005679 +12 0.680460 0.935825 0.009262 0.006134 +12 0.421422 0.933780 0.008067 0.006134 +12 0.140275 0.932985 0.008067 0.005906 +17 0.140275 0.938891 0.008067 0.005906 +11 0.119062 0.932076 0.006274 0.009087 +11 0.740813 0.928442 0.008067 0.005906 +11 0.856887 0.905611 0.008963 0.006588 +17 0.543322 0.905611 0.010457 0.007042 +11 0.680460 0.902431 0.008664 0.006588 +11 0.348670 0.901295 0.009561 0.006134 +17 0.170451 0.900045 0.008067 0.006361 +11 0.420825 0.900159 0.011055 0.007042 +17 0.741111 0.895843 0.009262 0.007042 +18 0.127726 0.889936 0.005079 0.004316 +17 0.119361 0.880622 0.007469 0.008405 +11 0.799821 0.849159 0.009561 0.006361 +13 0.286824 0.847001 0.007768 0.003862 +13 0.286973 0.831327 0.006872 0.006134 +11 0.858829 0.841095 0.009262 0.005679 +17 0.543322 0.841209 0.010457 0.006361 +11 0.681058 0.838710 0.009860 0.006361 +11 0.482671 0.836211 0.009860 0.006361 +11 0.741858 0.831213 0.009561 0.005906 +12 0.316702 0.828487 0.009561 0.006815 +12 0.257245 0.828487 0.008963 0.006815 +13 0.376606 0.828146 0.009262 0.006588 +12 0.349119 0.825875 0.009262 0.006134 +11 0.168808 0.826215 0.008963 0.006815 +11 0.421123 0.825420 0.009860 0.006588 +13 0.389901 0.822467 0.008963 0.006134 +12 0.226471 0.797024 0.008366 0.005679 +12 0.256200 0.796683 0.008664 0.005906 +12 0.196146 0.796797 0.009262 0.006134 +12 0.316702 0.796456 0.008963 0.006361 +12 0.288169 0.796570 0.009262 0.006588 +12 0.376606 0.796115 0.009262 0.006134 +12 0.348372 0.796002 0.008963 0.006361 +18 0.772632 0.793844 0.010158 0.005679 +12 0.771885 0.785552 0.008664 0.005452 +18 0.743502 0.793276 0.010457 0.006361 +18 0.742904 0.785893 0.010457 0.006134 +11 0.713923 0.793276 0.009860 0.006361 +12 0.713325 0.785438 0.008664 0.006134 +12 0.604272 0.791118 0.009262 0.006134 +12 0.603376 0.778169 0.008664 0.006588 +12 0.830445 0.791118 0.008664 0.006588 +12 0.830146 0.784984 0.008664 0.005225 +12 0.640125 0.788164 0.010457 0.007042 +12 0.639229 0.777715 0.009860 0.006134 +12 0.168957 0.786120 0.009860 0.005679 +12 0.168957 0.791799 0.009860 0.005679 +12 0.168957 0.797478 0.009860 0.005679 +12 0.573200 0.785666 0.010457 0.005225 +12 0.573200 0.790891 0.010457 0.005225 +12 0.544517 0.785666 0.010457 0.005225 +12 0.544517 0.790891 0.010457 0.005225 +12 0.512100 0.785666 0.009561 0.005225 +12 0.512100 0.790891 0.009561 0.005225 +12 0.483866 0.785552 0.009262 0.004998 +12 0.483866 0.790550 0.009262 0.004998 +12 0.888706 0.785438 0.009262 0.005225 +12 0.888706 0.790663 0.009262 0.005225 +12 0.858829 0.785438 0.009262 0.005225 +12 0.858829 0.790663 0.009262 0.005225 +12 0.801165 0.785438 0.009860 0.005225 +12 0.801165 0.790663 0.009860 0.005225 +12 0.450403 0.785552 0.009262 0.005452 +12 0.450403 0.791004 0.009262 0.005452 +12 0.682402 0.785211 0.008963 0.005225 +12 0.681655 0.779873 0.007469 0.004998 +12 0.421273 0.785325 0.008963 0.005452 +12 0.421273 0.790777 0.008963 0.005452 +13 0.843890 0.744548 0.009262 0.006134 +13 0.784733 0.744434 0.009262 0.005906 +13 0.725575 0.744548 0.009262 0.006134 +18 0.723484 0.725806 0.006274 0.004089 +13 0.210188 0.742049 0.008664 0.005679 +13 0.587242 0.742276 0.009860 0.006588 +13 0.525695 0.742163 0.009860 0.006361 +13 0.712728 0.741595 0.009860 0.005679 +13 0.332387 0.741822 0.009262 0.006134 +17 0.271586 0.741822 0.009561 0.006134 +13 0.271138 0.723080 0.005677 0.004089 +12 0.902749 0.741708 0.009860 0.006361 +13 0.465940 0.741595 0.009860 0.006134 +13 0.390947 0.741595 0.009262 0.006134 +13 0.830445 0.741368 0.009860 0.006134 +13 0.770989 0.741368 0.009262 0.006134 +13 0.572453 0.739550 0.009561 0.005679 +13 0.755901 0.739437 0.010158 0.005906 +13 0.698387 0.739323 0.009860 0.005679 +13 0.256200 0.739323 0.008664 0.005679 +13 0.196146 0.739550 0.009262 0.006134 +13 0.511652 0.739323 0.009262 0.006134 +13 0.449656 0.739096 0.009561 0.005679 +13 0.376606 0.739096 0.009262 0.005679 +13 0.315506 0.739323 0.008963 0.006134 +13 0.887362 0.738869 0.008963 0.005679 +13 0.814610 0.739096 0.009262 0.006134 +13 0.653421 0.739096 0.009561 0.006134 +13 0.302360 0.736824 0.008963 0.006134 +13 0.243053 0.736824 0.009860 0.006134 +13 0.181954 0.737051 0.009561 0.006588 +13 0.558560 0.736711 0.009262 0.006361 +13 0.497610 0.736711 0.009860 0.006361 +13 0.434867 0.736597 0.009860 0.006134 +13 0.872124 0.736483 0.009561 0.006361 +13 0.362414 0.736483 0.008366 0.006815 +13 0.638482 0.736143 0.009561 0.006588 +13 0.626232 0.734098 0.008963 0.006134 +13 0.682850 0.731599 0.009860 0.005679 +13 0.168061 0.731826 0.009262 0.006134 +13 0.603227 0.731713 0.009561 0.006361 +13 0.542426 0.731599 0.009860 0.006134 +13 0.227069 0.731599 0.008963 0.006134 +13 0.800568 0.731259 0.009860 0.005906 +13 0.742307 0.731372 0.009262 0.006134 +13 0.287870 0.731486 0.009860 0.006361 +13 0.482671 0.731259 0.009860 0.006361 +13 0.859128 0.731031 0.009860 0.006361 +13 0.348820 0.731145 0.009860 0.006588 +13 0.420227 0.731031 0.010457 0.006815 +18 0.625336 0.693662 0.010756 0.002499 +18 0.640872 0.693435 0.008366 0.002953 +13 0.638632 0.677306 0.008067 0.006134 +13 0.638632 0.659132 0.009262 0.006134 +11 0.168509 0.690595 0.007171 0.006361 +12 0.168509 0.672649 0.009561 0.005906 +12 0.800717 0.679464 0.008963 0.005906 +12 0.800866 0.661404 0.008664 0.007042 +13 0.887511 0.679350 0.009860 0.006588 +13 0.886764 0.661404 0.009561 0.007042 +12 0.543322 0.677533 0.009860 0.006134 +12 0.541829 0.658451 0.009262 0.006134 +12 0.830595 0.676624 0.008366 0.005679 +12 0.829399 0.658451 0.007768 0.005679 +12 0.771736 0.676851 0.008963 0.006134 +12 0.771736 0.658451 0.008963 0.005679 +12 0.572304 0.674807 0.009262 0.006134 +12 0.571108 0.656179 0.009262 0.007042 +12 0.512100 0.674807 0.008366 0.006134 +12 0.511503 0.656406 0.009561 0.007497 +11 0.681356 0.674693 0.009860 0.006361 +12 0.681058 0.656179 0.009262 0.007497 +12 0.858829 0.674125 0.008664 0.006134 +12 0.858530 0.656179 0.010457 0.007497 +13 0.903346 0.674012 0.009262 0.006361 +13 0.902151 0.655157 0.009262 0.006815 +12 0.603376 0.671854 0.009262 0.006588 +11 0.420376 0.671627 0.006573 0.007042 +12 0.653720 0.671399 0.008963 0.007042 +18 0.652674 0.653907 0.008664 0.006588 +18 0.603376 0.654362 0.009262 0.006134 +18 0.420376 0.653680 0.008963 0.005679 +12 0.547804 0.625057 0.009262 0.006588 +17 0.427547 0.625170 0.010756 0.007724 +12 0.378697 0.614834 0.009262 0.006134 +17 0.900209 0.614380 0.010158 0.005679 +11 0.168061 0.607338 0.008664 0.006134 +17 0.688527 0.606883 0.009860 0.006134 +17 0.427398 0.579396 0.011055 0.007042 +11 0.610248 0.578601 0.009860 0.006361 +12 0.378697 0.567924 0.009262 0.005906 +12 0.899910 0.567356 0.009561 0.006588 +12 0.352405 0.560541 0.009262 0.006134 +12 0.872423 0.559746 0.008366 0.005452 +17 0.688975 0.559859 0.010158 0.006588 +17 0.169256 0.560200 0.011055 0.007269 +18 0.547206 0.519309 0.005677 0.003180 +13 0.547206 0.503067 0.008664 0.006134 +12 0.577980 0.500341 0.009262 0.006134 +13 0.638034 0.500341 0.009860 0.006588 +12 0.516283 0.500114 0.009561 0.006588 +11 0.688527 0.497842 0.010457 0.006134 +12 0.610547 0.497842 0.009860 0.006588 +11 0.426203 0.497615 0.009262 0.006134 +13 0.652823 0.495457 0.008366 0.005906 +12 0.609650 0.463994 0.009262 0.006134 +17 0.624440 0.446729 0.019122 0.002499 +18 0.607410 0.446615 0.008366 0.002272 +18 0.577233 0.463880 0.008366 0.005906 +12 0.548252 0.463994 0.009561 0.006134 +12 0.516134 0.463766 0.008664 0.005679 +12 0.638632 0.463766 0.009860 0.006134 +12 0.487750 0.463539 0.009262 0.006134 +12 0.456528 0.463085 0.008963 0.007042 +11 0.319390 0.459223 0.007171 0.005679 +12 0.319540 0.453090 0.009860 0.005679 +12 0.257992 0.458655 0.007469 0.004543 +18 0.258889 0.452181 0.009262 0.004771 +12 0.902151 0.455588 0.008664 0.005679 +12 0.902151 0.461268 0.008664 0.005679 +12 0.895279 0.453203 0.009262 0.006361 +12 0.383926 0.455020 0.008963 0.005452 +12 0.383926 0.460473 0.008963 0.005452 +12 0.376606 0.452862 0.009262 0.005679 +12 0.690021 0.453317 0.009860 0.005225 +12 0.690021 0.458542 0.009860 0.005225 +12 0.872274 0.452976 0.008664 0.005452 +11 0.872274 0.458428 0.008664 0.005452 +12 0.841201 0.453203 0.008664 0.005906 +11 0.841201 0.459109 0.008664 0.005906 +12 0.811324 0.452976 0.008664 0.005452 +12 0.811324 0.458428 0.008664 0.005452 +12 0.780251 0.452862 0.008664 0.005225 +12 0.780251 0.458087 0.008664 0.005225 +12 0.750822 0.452976 0.009561 0.005452 +12 0.750822 0.458428 0.009561 0.005452 +12 0.718703 0.452976 0.009262 0.005452 +12 0.718703 0.458428 0.009262 0.005452 +12 0.290857 0.458428 0.008664 0.005452 +12 0.290857 0.452976 0.008664 0.005452 +12 0.230654 0.458087 0.008963 0.005225 +11 0.230654 0.452862 0.008963 0.005225 +11 0.426800 0.464221 0.009262 0.005679 +12 0.426800 0.452862 0.009262 0.005679 +12 0.426800 0.458542 0.009262 0.005679 +18 0.352405 0.452976 0.009860 0.005906 +11 0.352405 0.458882 0.009860 0.005906 +18 0.198835 0.452522 0.009860 0.005452 +12 0.198835 0.457974 0.009860 0.005452 +12 0.168659 0.452522 0.009262 0.005452 +12 0.168659 0.457974 0.009262 0.005452 +13 0.914700 0.418105 0.009860 0.007042 +13 0.395429 0.417537 0.008664 0.007724 +13 0.853003 0.409019 0.008963 0.005679 +13 0.793098 0.408791 0.009262 0.006134 +13 0.732596 0.408791 0.008963 0.006134 +13 0.653421 0.408791 0.009561 0.006134 +13 0.592471 0.408791 0.009561 0.006588 +13 0.531073 0.408678 0.009860 0.006361 +13 0.471318 0.408564 0.009860 0.006134 +13 0.334329 0.408564 0.009561 0.006588 +13 0.272782 0.407769 0.009561 0.004998 +13 0.211533 0.408564 0.010158 0.006588 +13 0.578279 0.406293 0.008664 0.005225 +13 0.516582 0.406293 0.009561 0.005225 +13 0.899910 0.406520 0.008963 0.006134 +13 0.840006 0.406520 0.008664 0.006134 +12 0.779056 0.406293 0.008664 0.005679 +13 0.717060 0.406406 0.008963 0.005906 +13 0.457723 0.406065 0.008963 0.005679 +12 0.319988 0.405725 0.009561 0.004998 +13 0.639229 0.406293 0.009860 0.006588 +18 0.258590 0.405838 0.009860 0.005679 +13 0.197640 0.405838 0.008664 0.005679 +13 0.380789 0.405498 0.009860 0.005452 +13 0.625486 0.403794 0.009860 0.005679 +13 0.884523 0.403794 0.009262 0.006134 +13 0.825665 0.403680 0.009860 0.005906 +13 0.765312 0.403794 0.009860 0.006134 +13 0.703765 0.403794 0.009860 0.006134 +13 0.502988 0.403567 0.009860 0.006134 +13 0.304601 0.403453 0.009860 0.006361 +13 0.244249 0.403339 0.009860 0.006134 +13 0.184344 0.403339 0.009561 0.006134 +13 0.563490 0.403453 0.009561 0.006815 +13 0.442635 0.403339 0.009860 0.006588 +13 0.366597 0.403339 0.009561 0.006588 +13 0.750971 0.398682 0.009860 0.005906 +13 0.870481 0.398569 0.009860 0.006588 +13 0.809830 0.398342 0.009262 0.006134 +13 0.689423 0.398342 0.009860 0.006134 +13 0.291455 0.398342 0.009860 0.006134 +13 0.610547 0.398114 0.009860 0.006134 +13 0.548999 0.398114 0.009860 0.006134 +13 0.488647 0.398114 0.009860 0.006134 +12 0.427547 0.398455 0.009561 0.006815 +13 0.352704 0.398114 0.009262 0.006588 +13 0.231102 0.398114 0.009860 0.006588 +13 0.170451 0.397887 0.009262 0.006134 +12 0.809830 0.357110 0.008067 0.006361 +12 0.810128 0.339050 0.008664 0.005679 +12 0.292501 0.356202 0.008963 0.006361 +12 0.292351 0.338142 0.008664 0.006588 +12 0.840155 0.354839 0.006573 0.005452 +12 0.839707 0.336779 0.009262 0.005679 +11 0.779056 0.354952 0.007469 0.005679 +12 0.779504 0.336552 0.010158 0.006134 +13 0.900359 0.354839 0.008664 0.005906 +13 0.899462 0.336779 0.009262 0.006134 +18 0.320735 0.353589 0.006274 0.005679 +12 0.259785 0.353589 0.006274 0.005679 +12 0.260084 0.335189 0.009262 0.006134 +12 0.380789 0.353816 0.008067 0.006588 +13 0.381386 0.335416 0.009860 0.006134 +12 0.871377 0.352113 0.009262 0.006361 +12 0.870929 0.334166 0.008963 0.005906 +11 0.689722 0.351772 0.009262 0.005679 +12 0.689722 0.334053 0.009262 0.005679 +11 0.427995 0.351090 0.009262 0.006588 +12 0.427248 0.333144 0.009561 0.006134 +12 0.353152 0.350863 0.008963 0.006588 +12 0.352405 0.332917 0.009860 0.006134 +12 0.171049 0.350750 0.008067 0.006361 +12 0.170601 0.332349 0.009561 0.005906 +13 0.915297 0.349727 0.008664 0.005679 +13 0.914700 0.331327 0.008664 0.006134 +13 0.397072 0.348251 0.008366 0.006361 +13 0.396773 0.329964 0.008963 0.006134 +12 0.320735 0.335643 0.009860 0.006134 +12 0.267404 0.292026 0.008963 0.006134 +17 0.147296 0.291572 0.008963 0.006134 +18 0.911413 0.280895 0.006274 0.003408 +18 0.910816 0.286801 0.006274 0.003862 +12 0.268151 0.238414 0.009262 0.006134 +17 0.148342 0.238755 0.009860 0.006815 +18 0.912608 0.235802 0.007469 0.004089 +12 0.903794 0.234325 0.005378 0.003862 +18 0.912011 0.241368 0.007469 0.004316 +18 0.911712 0.188551 0.006872 0.004089 +18 0.912011 0.182531 0.007469 0.004771 +12 0.919779 0.170491 0.006274 0.003408 +18 0.148491 0.185825 0.010158 0.005452 +17 0.148491 0.191277 0.010158 0.005452 +17 0.148790 0.177419 0.009561 0.005906 +18 0.268748 0.178669 0.009262 0.005679 +12 0.269047 0.186279 0.008664 0.005452 +12 0.269047 0.191731 0.008664 0.005452 +13 0.822079 0.139596 0.009262 0.005679 +13 0.764864 0.139482 0.009561 0.005452 +13 0.866149 0.136983 0.008963 0.005906 +13 0.808933 0.136983 0.009262 0.005906 +13 0.751718 0.137097 0.008963 0.006134 +13 0.795339 0.134371 0.008366 0.005225 +13 0.851061 0.134371 0.009860 0.006134 +12 0.738124 0.134371 0.008664 0.006134 +13 0.838064 0.131645 0.009561 0.006134 +13 0.782044 0.131645 0.009262 0.006134 +13 0.926053 0.130395 0.006872 0.004089 +13 0.723782 0.129373 0.008664 0.005225 +12 0.880042 0.121990 0.005079 0.003635 +13 0.879444 0.139482 0.008067 0.005452 +17 0.906633 0.122672 0.007469 0.007724 +13 0.579773 0.092799 0.008664 0.006134 +12 0.458321 0.090981 0.008963 0.005225 +13 0.381386 0.089505 0.009860 0.005906 +13 0.318345 0.089278 0.008664 0.005906 +12 0.708097 0.087801 0.008963 0.005679 +13 0.637138 0.087574 0.009262 0.006134 +13 0.565432 0.087006 0.009262 0.005452 +13 0.507469 0.086552 0.009262 0.005452 +17 0.518823 0.072240 0.011055 0.004998 +12 0.520466 0.092117 0.007768 0.005679 +13 0.436510 0.085302 0.009561 0.005679 +12 0.693457 0.085302 0.009561 0.006134 +13 0.623095 0.084961 0.009860 0.006361 +13 0.367792 0.083939 0.009561 0.005679 +13 0.296684 0.083712 0.009561 0.005679 +13 0.252316 0.083258 0.009262 0.005679 +13 0.680161 0.082690 0.008067 0.005452 +13 0.609800 0.082690 0.009561 0.005906 +13 0.551539 0.081895 0.008963 0.005225 +13 0.494473 0.081213 0.008963 0.005679 +12 0.423065 0.079850 0.008963 0.005679 +13 0.666119 0.079850 0.009860 0.006134 +13 0.537795 0.078941 0.008963 0.005679 +13 0.354497 0.078601 0.009262 0.005906 +13 0.283388 0.078260 0.008067 0.005679 +13 0.238572 0.077806 0.008067 0.004771 +13 0.196445 0.077692 0.007469 0.005452 +13 0.596056 0.077124 0.009561 0.005679 +13 0.410069 0.076897 0.009262 0.006134 +13 0.480878 0.076102 0.008664 0.005452 +18 0.910965 0.074852 0.007171 0.003862 +13 0.268748 0.075307 0.008664 0.006134 +13 0.224978 0.074852 0.008366 0.006134 +13 0.182103 0.074852 0.008664 0.006134 +13 0.340454 0.073603 0.007469 0.004543 +18 0.158201 0.072808 0.005677 0.002953 +18 0.924858 0.072808 0.006872 0.005225 +13 0.212578 0.069855 0.009860 0.006134 +13 0.168957 0.069400 0.008664 0.006134 +18 0.902749 0.067469 0.006274 0.004543 +13 0.148790 0.064630 0.008963 0.005679 +12 0.122647 0.061677 0.006872 0.005225 +1 0.096952 0.681508 0.021811 0.033621 +0 0.097251 0.782599 0.023006 0.024080 +4 0.097849 0.340754 0.021811 0.033621 +0 0.098745 0.179918 0.023006 0.023626 +1 0.098148 0.074284 0.022408 0.041345 +2 0.096355 0.276692 0.018225 0.019991 +0 0.095459 0.449341 0.024201 0.024534 +2 0.095459 0.935030 0.018823 0.019082 +2 0.096355 0.231259 0.018225 0.020900 +2 0.097401 0.509541 0.023304 0.021354 +4 0.448163 0.092799 0.010158 0.013403 +4 0.121751 0.226374 0.009262 0.014766 +5 0.469525 0.073035 0.007469 0.014766 +4 0.117568 0.440368 0.009860 0.014766 +4 0.626083 0.788505 0.009860 0.015902 +2 0.095459 0.884371 0.018225 0.020445 +4 0.904840 0.176056 0.008664 0.014539 +2 0.096355 0.609041 0.017030 0.019537 +4 0.308336 0.089846 0.008963 0.015220 +2 0.096952 0.837574 0.015238 0.018628 +2 0.094562 0.562017 0.018225 0.020900 +4 0.097849 0.728532 0.021811 0.032258 +4 0.121751 0.273398 0.009262 0.015220 +4 0.122050 0.116197 0.008664 0.011586 +4 0.614431 0.734325 0.009262 0.017038 +4 0.138333 0.176965 0.008366 0.014539 +4 0.126382 0.566561 0.009561 0.014085 +4 0.141918 0.609496 0.008366 0.015448 +4 0.119510 0.604498 0.008963 0.015448 +4 0.119062 0.504316 0.008664 0.014993 +4 0.120406 0.674239 0.008366 0.015902 +4 0.127278 0.396184 0.008366 0.014085 +4 0.119510 0.387324 0.008366 0.015448 +4 0.126083 0.449796 0.008366 0.013176 +4 0.141022 0.447297 0.008366 0.016356 +4 0.140424 0.884371 0.008366 0.014539 +4 0.142217 0.391186 0.008366 0.014085 +4 0.134748 0.383235 0.007768 0.013630 +4 0.133403 0.555657 0.009262 0.014993 +4 0.140424 0.562472 0.008963 0.014993 +4 0.132507 0.601090 0.009262 0.014993 +4 0.127428 0.612222 0.009262 0.014993 +4 0.134299 0.502499 0.009262 0.014993 +4 0.141022 0.510223 0.008963 0.014993 +4 0.128025 0.681963 0.009262 0.014993 +4 0.140424 0.679918 0.008963 0.014993 +4 0.120556 0.834621 0.009262 0.014993 +4 0.128174 0.840981 0.008963 0.014993 +4 0.133702 0.832349 0.009262 0.014993 +4 0.140723 0.837801 0.008963 0.014993 +4 0.090977 0.126306 0.009262 0.014993 +4 0.099791 0.121536 0.008963 0.014993 +4 0.119659 0.721717 0.009262 0.014993 +5 0.130415 0.721036 0.009262 0.014993 +4 0.141321 0.726034 0.008963 0.014993 +4 0.089782 0.398228 0.009262 0.014993 +5 0.102480 0.393458 0.008963 0.014993 +4 0.120257 0.334848 0.009262 0.014993 +4 0.131610 0.339846 0.009262 0.014993 +4 0.143113 0.339618 0.008963 0.014993 +5 0.126531 0.781917 0.009262 0.014993 +4 0.134001 0.773285 0.009262 0.014993 +4 0.141321 0.780554 0.008963 0.014993 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_6.jpg b/data_dataset/dvo/debug/debug_6.jpg new file mode 100644 index 0000000..c1b91b3 Binary files /dev/null and b/data_dataset/dvo/debug/debug_6.jpg differ diff --git a/data_dataset/dvo/debug/debug_6.txt b/data_dataset/dvo/debug/debug_6.txt new file mode 100644 index 0000000..faf9c51 --- /dev/null +++ b/data_dataset/dvo/debug/debug_6.txt @@ -0,0 +1,882 @@ +9 0.416816 0.945543 0.009575 0.025693 +9 0.360862 0.943724 0.008977 0.022965 +7 0.292041 0.938495 0.008977 0.012506 +7 0.238480 0.938495 0.011969 0.013415 +6 0.254339 0.936448 0.006583 0.017508 +9 0.740275 0.901432 0.004189 0.022965 +9 0.552962 0.900750 0.007780 0.026148 +9 0.360263 0.902115 0.007780 0.022510 +7 0.292340 0.897794 0.009575 0.012960 +7 0.237582 0.897794 0.012567 0.013870 +6 0.256433 0.895975 0.009575 0.017508 +10 0.681329 0.875853 0.010772 0.003183 +10 0.902753 0.868008 0.007181 0.002046 +9 0.893776 0.861528 0.009575 0.015916 +9 0.807600 0.865734 0.009575 0.024329 +9 0.675943 0.863574 0.009575 0.021828 +7 0.486834 0.858913 0.011969 0.013415 +7 0.418013 0.858458 0.009575 0.012506 +9 0.708857 0.857208 0.009575 0.025466 +9 0.912029 0.858686 0.008977 0.022055 +9 0.239378 0.857322 0.010174 0.026603 +9 0.310892 0.854025 0.009575 0.020919 +9 0.256433 0.859141 0.009575 0.025693 +9 0.174446 0.849136 0.009575 0.014779 +9 0.293836 0.855957 0.010174 0.029332 +9 0.362657 0.855503 0.011370 0.028422 +10 0.330042 0.839927 0.005984 0.003183 +10 0.842310 0.829241 0.007181 0.004548 +10 0.174746 0.819691 0.006583 0.004548 +9 0.894075 0.822988 0.007780 0.018872 +7 0.743268 0.817417 0.007780 0.029104 +10 0.315081 0.811733 0.005984 0.004093 +10 0.786655 0.802183 0.011969 0.004093 +10 0.480401 0.800136 0.008079 0.001819 +10 0.593058 0.800023 0.007780 0.002046 +9 0.676541 0.813893 0.009575 0.033424 +10 0.475165 0.797976 0.007780 0.002046 +9 0.493417 0.808549 0.008378 0.022283 +10 0.561341 0.795930 0.006583 0.002501 +10 0.556852 0.772624 0.005984 0.003183 +10 0.468282 0.771942 0.005984 0.003638 +10 0.899162 0.769895 0.007181 0.003183 +8 0.857271 0.776035 0.009575 0.017735 +8 0.838121 0.776035 0.008378 0.017735 +8 0.259425 0.720214 0.011969 0.007049 +10 0.641233 0.717826 0.005984 0.001819 +7 0.241472 0.722260 0.011969 0.012960 +6 0.362059 0.719532 0.010174 0.017508 +10 0.407840 0.692815 0.005984 0.002729 +8 0.257630 0.680196 0.010772 0.007049 +8 0.594255 0.684629 0.011370 0.017735 +7 0.238480 0.681787 0.011969 0.013870 +6 0.363256 0.681787 0.008977 0.017508 +9 0.742669 0.672010 0.004189 0.023420 +10 0.319569 0.644156 0.007780 0.004548 +10 0.293836 0.639836 0.007780 0.005002 +7 0.714841 0.628354 0.011969 0.013415 +7 0.520946 0.628126 0.011969 0.012960 +8 0.486535 0.625171 0.012567 0.007958 +7 0.418013 0.627672 0.011969 0.012960 +7 0.392280 0.627444 0.011969 0.012506 +6 0.676840 0.627217 0.010174 0.019327 +6 0.640036 0.625625 0.009575 0.017053 +10 0.896170 0.602774 0.010772 0.003638 +10 0.204069 0.598909 0.011370 0.004093 +8 0.860862 0.585948 0.007181 0.018190 +7 0.714841 0.587881 0.011969 0.013415 +7 0.520946 0.587426 0.011969 0.013415 +7 0.486834 0.587426 0.011969 0.013415 +7 0.416816 0.587426 0.011969 0.013415 +7 0.391083 0.587199 0.011969 0.012960 +6 0.640036 0.585607 0.009575 0.017053 +6 0.679234 0.585834 0.008977 0.017508 +8 0.438959 0.552638 0.010772 0.023874 +7 0.831239 0.547181 0.011370 0.012960 +7 0.893178 0.546726 0.011969 0.013870 +9 0.565829 0.548317 0.007181 0.031605 +9 0.518552 0.542974 0.005984 0.020009 +9 0.366547 0.548545 0.010772 0.032970 +6 0.860263 0.544679 0.009575 0.017053 +9 0.731897 0.543429 0.010174 0.020919 +8 0.783363 0.537858 0.005386 0.014325 +9 0.777080 0.544679 0.004788 0.027967 +9 0.599641 0.549909 0.008977 0.037517 +9 0.279174 0.543429 0.010772 0.025466 +9 0.235189 0.543315 0.010174 0.030696 +9 0.184022 0.550819 0.010772 0.032970 +9 0.659485 0.546953 0.011370 0.027967 +9 0.261520 0.544793 0.010174 0.023647 +7 0.877618 0.503183 0.007181 0.018190 +10 0.184321 0.505684 0.007780 0.003183 +10 0.531119 0.497271 0.007181 0.001819 +10 0.534111 0.494543 0.010772 0.001819 +9 0.391682 0.465780 0.009575 0.022965 +9 0.304010 0.460664 0.010174 0.021828 +9 0.405446 0.418145 0.005984 0.017281 +10 0.295931 0.420191 0.005984 0.003183 +10 0.681927 0.418372 0.011969 0.005002 +7 0.625673 0.419850 0.011969 0.012960 +6 0.640634 0.417804 0.009575 0.017963 +6 0.781269 0.417121 0.011969 0.017508 +10 0.441951 0.390859 0.005984 0.001819 +8 0.681029 0.378467 0.011370 0.006594 +7 0.625673 0.380286 0.011969 0.012960 +6 0.780371 0.378013 0.010174 0.018417 +6 0.640634 0.378013 0.009575 0.017508 +10 0.604728 0.370850 0.007181 0.002729 +10 0.522741 0.370850 0.005984 0.002729 +10 0.340215 0.335834 0.010772 0.004548 +9 0.804907 0.324693 0.008977 0.022283 +7 0.235488 0.325489 0.011969 0.012506 +6 0.593357 0.322988 0.009575 0.016598 +10 0.545781 0.316053 0.008977 0.002274 +10 0.437163 0.310823 0.005984 0.001819 +9 0.438360 0.293770 0.007181 0.017735 +10 0.806104 0.289222 0.006583 0.005002 +10 0.304608 0.275807 0.006583 0.002729 +10 0.766607 0.250341 0.008977 0.004548 +10 0.653202 0.242156 0.007181 0.003638 +7 0.618492 0.245680 0.010772 0.015689 +10 0.669958 0.239200 0.009575 0.005002 +10 0.821963 0.235562 0.007181 0.005002 +9 0.846200 0.242724 0.013764 0.022510 +7 0.314482 0.233402 0.011969 0.015689 +10 0.329443 0.226694 0.008378 0.004548 +10 0.670856 0.208959 0.006583 0.002729 +10 0.562837 0.191678 0.005984 0.001819 +10 0.872831 0.171442 0.016756 0.005002 +10 0.887792 0.166667 0.011969 0.004548 +9 0.722920 0.160755 0.005386 0.018190 +8 0.564333 0.157344 0.007780 0.017735 +9 0.306703 0.163938 0.009575 0.022283 +10 0.368941 0.154843 0.005984 0.002729 +10 0.810592 0.155070 0.005984 0.005002 +10 0.644225 0.146317 0.005984 0.001592 +10 0.653202 0.146203 0.007181 0.001819 +9 0.554458 0.155412 0.008378 0.021601 +10 0.203172 0.125057 0.007181 0.002274 +10 0.201975 0.120737 0.005984 0.002729 +7 0.620287 0.118804 0.011969 0.012960 +10 0.856673 0.113688 0.011969 0.005002 +6 0.654099 0.116530 0.010174 0.017508 +10 0.418013 0.106412 0.011969 0.003183 +9 0.404548 0.114939 0.012567 0.023420 +10 0.253441 0.106639 0.009575 0.004548 +10 0.341412 0.095043 0.005984 0.002274 +10 0.458109 0.088449 0.007181 0.004548 +9 0.804907 0.078672 0.007780 0.020464 +8 0.471275 0.076285 0.013166 0.017963 +12 0.743417 0.953729 0.009276 0.006139 +11 0.875075 0.951228 0.009276 0.006594 +11 0.790993 0.951228 0.011071 0.007503 +11 0.313435 0.943838 0.008677 0.006367 +12 0.448085 0.941223 0.008677 0.004775 +13 0.503291 0.939177 0.008378 0.006139 +12 0.418163 0.938722 0.006284 0.005230 +12 0.467983 0.938950 0.008378 0.006594 +11 0.173998 0.937131 0.009276 0.005684 +17 0.556104 0.937017 0.010473 0.006367 +12 0.485039 0.936789 0.007780 0.005912 +11 0.362507 0.936335 0.007481 0.005002 +12 0.520048 0.933947 0.007181 0.006594 +17 0.640335 0.934402 0.009575 0.008413 +13 0.076152 0.927922 0.004488 0.004093 +12 0.312089 0.903479 0.007181 0.006594 +12 0.448085 0.900864 0.007481 0.004093 +12 0.503591 0.898704 0.008977 0.006139 +12 0.468731 0.898818 0.009276 0.006367 +12 0.418312 0.898363 0.007780 0.005457 +12 0.361460 0.896317 0.004788 0.004093 +11 0.173698 0.896999 0.009276 0.005457 +12 0.554159 0.896317 0.006583 0.005002 +12 0.487283 0.896430 0.009276 0.006139 +11 0.743716 0.895066 0.008079 0.006139 +13 0.075105 0.894725 0.007181 0.006367 +13 0.075105 0.901091 0.007181 0.006367 +13 0.073758 0.866644 0.004488 0.010232 +13 0.520497 0.893815 0.008677 0.006367 +13 0.678187 0.889609 0.009276 0.006139 +12 0.878067 0.887563 0.009276 0.006594 +17 0.593806 0.884948 0.011670 0.008640 +12 0.792190 0.881878 0.011071 0.008868 +11 0.639587 0.862096 0.008677 0.004775 +11 0.647217 0.848113 0.007780 0.005002 +12 0.835877 0.860618 0.008677 0.006367 +13 0.694195 0.859823 0.008378 0.006594 +12 0.658139 0.859823 0.009874 0.006594 +12 0.609515 0.859595 0.008977 0.006139 +12 0.808049 0.858458 0.006882 0.004775 +12 0.504039 0.858913 0.008079 0.005684 +13 0.894973 0.858231 0.008977 0.005230 +12 0.857870 0.857776 0.007181 0.006139 +12 0.677439 0.857435 0.008378 0.005457 +12 0.554907 0.856980 0.009276 0.005457 +12 0.877169 0.855730 0.009276 0.006594 +13 0.912926 0.853911 0.005984 0.003865 +13 0.710353 0.854934 0.005984 0.005912 +11 0.744764 0.854820 0.008977 0.006594 +12 0.148564 0.852319 0.004488 0.004320 +13 0.258378 0.851523 0.009276 0.005457 +12 0.311191 0.848226 0.007780 0.005230 +12 0.311191 0.853456 0.007780 0.005230 +12 0.239677 0.848226 0.008378 0.005230 +12 0.239677 0.853456 0.008378 0.005230 +13 0.277678 0.848568 0.008977 0.006821 +11 0.175643 0.846521 0.009575 0.005457 +11 0.175643 0.851978 0.009575 0.005457 +13 0.363854 0.845839 0.008977 0.005002 +13 0.363854 0.850841 0.008977 0.005002 +12 0.295332 0.845725 0.009575 0.005684 +12 0.295332 0.851410 0.009575 0.005684 +13 0.328845 0.842542 0.008977 0.006139 +13 0.328845 0.848681 0.008977 0.006139 +18 0.760772 0.828558 0.008079 0.002274 +11 0.276032 0.820941 0.008079 0.005230 +11 0.241921 0.821396 0.009276 0.006139 +11 0.201077 0.821510 0.010174 0.006367 +12 0.362956 0.821169 0.008977 0.006594 +12 0.776481 0.820146 0.007780 0.005912 +12 0.768253 0.817417 0.008677 0.004548 +12 0.779623 0.800932 0.011071 0.003411 +12 0.695242 0.819236 0.008677 0.006367 +12 0.505536 0.818668 0.008677 0.005230 +12 0.505536 0.812642 0.007481 0.003183 +13 0.100539 0.817303 0.005386 0.004320 +12 0.895721 0.817531 0.008079 0.005684 +12 0.858169 0.817190 0.007780 0.005457 +11 0.837672 0.817417 0.007481 0.005912 +12 0.809396 0.817190 0.008977 0.005912 +12 0.793836 0.817076 0.008378 0.005684 +12 0.741323 0.817190 0.008677 0.005912 +12 0.749102 0.819691 0.008677 0.005912 +12 0.610862 0.816394 0.009874 0.005230 +12 0.595302 0.816508 0.009874 0.005457 +12 0.468432 0.816394 0.009874 0.005230 +12 0.173998 0.816621 0.008677 0.005684 +13 0.173998 0.822306 0.008677 0.005684 +12 0.486535 0.816280 0.010174 0.005912 +12 0.419958 0.815825 0.008677 0.005002 +12 0.448683 0.816053 0.009874 0.005912 +12 0.402304 0.815598 0.009276 0.005457 +12 0.381957 0.815598 0.010473 0.005457 +12 0.658139 0.814575 0.008677 0.005230 +12 0.658139 0.819804 0.008677 0.005230 +12 0.639587 0.814120 0.008677 0.005230 +12 0.639587 0.819350 0.008677 0.005230 +17 0.650209 0.798658 0.011969 0.003411 +12 0.107870 0.814575 0.008079 0.008868 +12 0.575703 0.811392 0.008977 0.005230 +12 0.575703 0.816621 0.008977 0.005230 +12 0.555506 0.811278 0.009276 0.005002 +12 0.555506 0.816280 0.009276 0.005002 +12 0.313734 0.810027 0.009276 0.006139 +12 0.678336 0.801955 0.008378 0.005457 +12 0.877469 0.799568 0.009276 0.006139 +13 0.074806 0.796612 0.004189 0.004775 +12 0.770197 0.777171 0.008977 0.005002 +12 0.769150 0.771601 0.008079 0.004775 +12 0.659934 0.774329 0.008079 0.005684 +12 0.696439 0.774102 0.008677 0.006139 +12 0.640036 0.774102 0.007780 0.006139 +12 0.839318 0.772624 0.005984 0.004093 +12 0.898863 0.772397 0.008378 0.005457 +12 0.858318 0.772397 0.007481 0.005457 +12 0.612208 0.771601 0.009575 0.004775 +13 0.609814 0.754548 0.009575 0.003411 +12 0.747008 0.771714 0.009276 0.005457 +12 0.747008 0.777171 0.009276 0.005457 +12 0.810144 0.771373 0.009874 0.005230 +12 0.810144 0.776603 0.009874 0.005230 +12 0.793686 0.771373 0.009276 0.005230 +12 0.793686 0.776603 0.009276 0.005230 +12 0.576152 0.771146 0.008677 0.004775 +12 0.593656 0.771146 0.008977 0.005684 +12 0.505835 0.770919 0.009276 0.005230 +12 0.176092 0.771146 0.009276 0.005684 +11 0.364153 0.770350 0.008378 0.004548 +12 0.371484 0.753524 0.006284 0.003183 +12 0.554907 0.770805 0.009276 0.005912 +12 0.488181 0.770691 0.009874 0.005684 +13 0.467385 0.770464 0.008977 0.005230 +12 0.448833 0.770578 0.008977 0.005457 +11 0.239378 0.770691 0.008977 0.005684 +11 0.201376 0.770691 0.008977 0.005684 +12 0.420557 0.769782 0.008677 0.004775 +12 0.400509 0.769782 0.009276 0.004775 +12 0.412328 0.753524 0.010174 0.003183 +13 0.381807 0.769554 0.008977 0.004320 +12 0.312238 0.769782 0.008677 0.004775 +11 0.275284 0.770123 0.008977 0.005457 +12 0.680580 0.757049 0.008079 0.005684 +12 0.876571 0.753638 0.008677 0.006139 +11 0.401706 0.738859 0.009276 0.006594 +12 0.408887 0.710550 0.006284 0.004093 +11 0.594853 0.737722 0.008977 0.006139 +12 0.603381 0.710778 0.007481 0.005002 +18 0.093507 0.736698 0.005685 0.004093 +11 0.794434 0.736357 0.009575 0.006139 +17 0.804758 0.711346 0.012268 0.004775 +11 0.556104 0.727717 0.009276 0.006139 +11 0.177289 0.727717 0.009276 0.006139 +12 0.696290 0.725330 0.009575 0.005912 +12 0.505236 0.724989 0.009276 0.005230 +13 0.896469 0.723283 0.009575 0.006367 +11 0.746110 0.723283 0.009874 0.006367 +11 0.450030 0.722374 0.008977 0.006367 +13 0.430730 0.722033 0.009874 0.006594 +11 0.640485 0.720555 0.008079 0.005457 +13 0.621484 0.720441 0.008378 0.005230 +13 0.820168 0.718849 0.007181 0.004775 +11 0.839318 0.718508 0.008378 0.005912 +11 0.422501 0.691905 0.005984 0.004548 +12 0.429982 0.664848 0.008378 0.006821 +18 0.809844 0.690314 0.005087 0.004093 +12 0.400359 0.682242 0.009575 0.006139 +12 0.594405 0.679854 0.008079 0.005002 +12 0.795183 0.677922 0.008677 0.006594 +11 0.557151 0.670191 0.010174 0.005684 +11 0.176990 0.669964 0.009874 0.006139 +12 0.505536 0.668599 0.009276 0.006139 +12 0.697038 0.668031 0.009874 0.005912 +12 0.897367 0.665075 0.008378 0.006367 +11 0.746709 0.665302 0.008677 0.006821 +11 0.450329 0.664279 0.008977 0.007503 +11 0.640784 0.662233 0.007481 0.006139 +13 0.622980 0.662119 0.007780 0.005912 +11 0.842160 0.660869 0.009276 0.007049 +13 0.822412 0.660186 0.009276 0.006594 +12 0.732795 0.634038 0.009575 0.006139 +12 0.546828 0.633242 0.008677 0.006367 +12 0.465141 0.633242 0.009276 0.006367 +12 0.438211 0.633242 0.009276 0.006367 +12 0.367295 0.633129 0.008677 0.006139 +12 0.182974 0.633242 0.009874 0.006367 +18 0.325703 0.632788 0.009276 0.006367 +12 0.860413 0.630969 0.008677 0.005457 +13 0.910383 0.628922 0.008079 0.005912 +12 0.877768 0.629036 0.009874 0.006139 +12 0.828995 0.628922 0.008677 0.005912 +12 0.893776 0.626307 0.008977 0.005230 +12 0.780072 0.626307 0.009575 0.006139 +11 0.601436 0.625625 0.010174 0.005684 +18 0.162029 0.630286 0.012268 0.005002 +18 0.162029 0.625284 0.012268 0.005002 +18 0.149611 0.625398 0.007780 0.005230 +13 0.922950 0.624261 0.006882 0.006594 +12 0.307750 0.615734 0.009276 0.005912 +12 0.280221 0.615848 0.009276 0.006139 +12 0.235338 0.615734 0.009276 0.005912 +12 0.217385 0.615848 0.009874 0.006139 +12 0.200928 0.615848 0.009276 0.006139 +12 0.263315 0.615393 0.009575 0.006139 +12 0.733543 0.593565 0.009874 0.006139 +11 0.545482 0.593224 0.009575 0.006367 +12 0.466338 0.593111 0.009276 0.006139 +11 0.438809 0.593224 0.009276 0.006367 +12 0.446140 0.577990 0.004788 0.003183 +11 0.366996 0.593111 0.009276 0.006139 +12 0.182974 0.593111 0.009874 0.006139 +12 0.327199 0.592883 0.009874 0.006594 +12 0.860862 0.590723 0.008977 0.005002 +13 0.910981 0.588449 0.009276 0.005912 +13 0.877319 0.588563 0.008977 0.006139 +12 0.830042 0.588336 0.008378 0.006594 +11 0.158887 0.587653 0.004788 0.005230 +12 0.600090 0.585834 0.008677 0.005684 +12 0.892430 0.585607 0.008079 0.005684 +11 0.780521 0.585834 0.008079 0.006139 +12 0.923549 0.583447 0.008677 0.005912 +12 0.262867 0.575603 0.009276 0.005684 +12 0.235787 0.575603 0.009575 0.005684 +12 0.217983 0.575830 0.009276 0.006139 +11 0.200928 0.575830 0.009874 0.006139 +12 0.309844 0.575375 0.009276 0.006139 +12 0.280072 0.575375 0.009575 0.006139 +12 0.077947 0.557526 0.005685 0.010459 +12 0.483992 0.553320 0.007481 0.005684 +18 0.162029 0.548772 0.009874 0.008413 +12 0.911430 0.547408 0.008378 0.006594 +11 0.439557 0.545362 0.009575 0.005230 +17 0.439557 0.550591 0.009575 0.005230 +11 0.505386 0.543543 0.003591 0.007049 +12 0.496559 0.541951 0.003890 0.003865 +11 0.390335 0.542633 0.009276 0.005230 +17 0.390335 0.547863 0.009276 0.005230 +12 0.367594 0.541041 0.009276 0.004775 +12 0.367594 0.545816 0.009276 0.004775 +12 0.326601 0.540928 0.009276 0.004548 +12 0.326601 0.545475 0.009276 0.004548 +12 0.680281 0.540132 0.007481 0.005230 +11 0.184321 0.538313 0.008378 0.004775 +11 0.184321 0.543088 0.008378 0.004775 +12 0.660233 0.537631 0.008079 0.005230 +12 0.660233 0.542860 0.008079 0.005230 +12 0.262268 0.537631 0.009276 0.005230 +12 0.262268 0.542860 0.009276 0.005230 +13 0.732496 0.537290 0.008977 0.005457 +13 0.732496 0.542747 0.008977 0.005457 +12 0.698833 0.537631 0.009874 0.006139 +12 0.521694 0.537744 0.008677 0.006367 +12 0.308648 0.537290 0.008677 0.005457 +12 0.308648 0.542747 0.008677 0.005457 +13 0.568671 0.538313 0.008079 0.008413 +13 0.601436 0.535357 0.010174 0.005230 +13 0.601436 0.540587 0.010174 0.005230 +11 0.781418 0.534675 0.009276 0.004775 +11 0.781418 0.539450 0.009276 0.004775 +12 0.546828 0.535130 0.009276 0.005684 +13 0.280521 0.534789 0.009276 0.005002 +13 0.280521 0.539791 0.009276 0.005002 +12 0.236834 0.534789 0.008677 0.005002 +12 0.236834 0.539791 0.008677 0.005002 +12 0.716338 0.534561 0.009575 0.005457 +12 0.716338 0.540018 0.009575 0.005457 +13 0.750598 0.531833 0.009276 0.006367 +13 0.750598 0.538199 0.009276 0.006367 +11 0.663076 0.514211 0.008977 0.005684 +11 0.626122 0.514325 0.009276 0.005912 +12 0.602484 0.514211 0.009276 0.005684 +12 0.780820 0.513870 0.009874 0.005912 +11 0.697935 0.513756 0.008079 0.005684 +12 0.546828 0.511710 0.008677 0.006139 +12 0.520048 0.511482 0.008977 0.006594 +12 0.485787 0.509209 0.008677 0.005684 +12 0.894524 0.508527 0.008677 0.005230 +12 0.878366 0.508299 0.008677 0.005684 +12 0.860862 0.508640 0.009575 0.006367 +12 0.830790 0.508072 0.009276 0.005230 +12 0.815829 0.508186 0.008079 0.005457 +12 0.799970 0.508299 0.008677 0.005684 +17 0.112657 0.507276 0.005685 0.007276 +11 0.440604 0.506480 0.009276 0.006594 +12 0.912478 0.506025 0.009874 0.006594 +12 0.078546 0.504206 0.004488 0.003865 +11 0.391831 0.504093 0.009874 0.005457 +11 0.184321 0.504093 0.008977 0.005457 +12 0.733992 0.503524 0.009575 0.006139 +12 0.369240 0.501023 0.009575 0.006594 +12 0.328097 0.501251 0.009276 0.007049 +11 0.135996 0.499432 0.005685 0.003411 +12 0.142280 0.491473 0.007481 0.008413 +12 0.309246 0.498749 0.007481 0.005684 +12 0.263315 0.498749 0.007780 0.005684 +12 0.280820 0.496362 0.009276 0.006367 +12 0.236385 0.496362 0.008977 0.006367 +18 0.104728 0.469304 0.005386 0.003183 +12 0.548624 0.466235 0.009874 0.006139 +12 0.520796 0.466235 0.009276 0.006139 +12 0.600987 0.463506 0.009276 0.005230 +11 0.486086 0.463506 0.009276 0.005230 +12 0.815230 0.463051 0.009276 0.005230 +12 0.799072 0.463279 0.009276 0.005684 +12 0.734740 0.463279 0.009874 0.005684 +11 0.698833 0.463279 0.009874 0.005684 +11 0.661430 0.463165 0.009276 0.005457 +11 0.625524 0.463165 0.009276 0.005457 +12 0.782017 0.462824 0.008677 0.005230 +12 0.911430 0.463051 0.009575 0.006139 +12 0.894973 0.462824 0.008977 0.005684 +12 0.879414 0.462597 0.009575 0.005230 +12 0.862657 0.462824 0.009575 0.005684 +12 0.831089 0.462824 0.008677 0.005684 +11 0.441801 0.461232 0.008677 0.006139 +18 0.168462 0.459641 0.004189 0.003865 +18 0.164273 0.462369 0.011969 0.008413 +11 0.393178 0.458731 0.008378 0.004775 +12 0.185069 0.458731 0.008079 0.005684 +12 0.368342 0.456571 0.007780 0.005912 +12 0.328845 0.456457 0.010772 0.006594 +12 0.312238 0.454184 0.008677 0.005684 +12 0.264662 0.454184 0.010473 0.006594 +12 0.282466 0.451455 0.009575 0.006594 +12 0.237433 0.451228 0.009874 0.006139 +12 0.816128 0.437131 0.009276 0.007049 +13 0.562388 0.433265 0.009874 0.005684 +13 0.484590 0.433379 0.008677 0.005912 +12 0.601586 0.430537 0.009276 0.005684 +13 0.521694 0.430991 0.009874 0.006594 +13 0.440904 0.430764 0.008677 0.006139 +13 0.548324 0.430537 0.010473 0.006594 +13 0.391532 0.428604 0.008079 0.005457 +13 0.500299 0.428490 0.008378 0.005684 +13 0.534710 0.428263 0.009575 0.005684 +12 0.468133 0.428490 0.009276 0.006139 +13 0.327349 0.426216 0.009575 0.006139 +13 0.454369 0.425875 0.009276 0.006367 +12 0.418163 0.425989 0.009874 0.006594 +13 0.404548 0.423488 0.008977 0.005230 +12 0.402902 0.407572 0.006284 0.002501 +13 0.281119 0.423715 0.008677 0.005684 +12 0.235637 0.423488 0.008677 0.005230 +12 0.369390 0.423033 0.008079 0.005230 +11 0.911730 0.421442 0.009575 0.005684 +12 0.264213 0.421214 0.009575 0.006139 +13 0.341562 0.420873 0.009874 0.006367 +12 0.311939 0.420987 0.009276 0.006594 +12 0.184171 0.420873 0.009874 0.006367 +17 0.160533 0.420759 0.005685 0.006139 +11 0.861759 0.419281 0.008977 0.005912 +13 0.842460 0.419054 0.009874 0.006367 +13 0.248504 0.418713 0.009276 0.005684 +13 0.295332 0.418486 0.008378 0.005684 +18 0.817624 0.394725 0.006882 0.004548 +12 0.816128 0.379377 0.009874 0.006139 +18 0.824506 0.394725 0.006882 0.004548 +18 0.429084 0.389268 0.010174 0.002274 +18 0.161281 0.381651 0.004788 0.004320 +12 0.184770 0.381196 0.008677 0.006139 +12 0.184171 0.364143 0.009874 0.007503 +13 0.562986 0.380514 0.009874 0.006594 +18 0.169509 0.379036 0.004488 0.004093 +13 0.548474 0.378354 0.007780 0.005912 +13 0.486685 0.376194 0.009276 0.006139 +12 0.534859 0.375739 0.009276 0.006139 +13 0.440305 0.373693 0.006284 0.005684 +12 0.602334 0.373124 0.007780 0.005457 +13 0.522292 0.373238 0.007481 0.005684 +12 0.079743 0.372101 0.004488 0.004320 +13 0.500299 0.371191 0.008378 0.006139 +13 0.392430 0.371191 0.008677 0.006139 +12 0.468881 0.370964 0.010174 0.006594 +13 0.453770 0.368463 0.009276 0.006139 +12 0.419659 0.368463 0.008079 0.006139 +13 0.329892 0.368463 0.009276 0.006139 +13 0.280820 0.366644 0.009276 0.006139 +12 0.235488 0.366644 0.009575 0.006139 +13 0.406344 0.366189 0.008378 0.006139 +12 0.369988 0.365734 0.009276 0.006139 +12 0.913525 0.364370 0.008977 0.006139 +13 0.343956 0.363915 0.009874 0.007049 +12 0.312687 0.363915 0.008378 0.007049 +12 0.265111 0.363461 0.008977 0.007049 +11 0.863405 0.361642 0.009874 0.007049 +13 0.296529 0.361187 0.009575 0.006139 +13 0.843058 0.361301 0.009874 0.007276 +13 0.249102 0.360277 0.009276 0.006139 +11 0.740275 0.338222 0.008977 0.005684 +17 0.823459 0.337767 0.010174 0.006594 +12 0.451676 0.334015 0.008677 0.005457 +12 0.396320 0.331173 0.009276 0.006139 +13 0.328695 0.328558 0.007481 0.005457 +12 0.470227 0.326171 0.009874 0.006139 +11 0.512418 0.325830 0.009276 0.006367 +12 0.418761 0.323556 0.009874 0.005457 +18 0.153052 0.328217 0.008677 0.005230 +12 0.153052 0.322988 0.008677 0.005230 +18 0.926691 0.322306 0.013166 0.004775 +18 0.926691 0.327080 0.013166 0.004775 +12 0.353232 0.321055 0.009276 0.005912 +12 0.258378 0.321055 0.009874 0.005912 +11 0.180580 0.320714 0.009874 0.006139 +11 0.702723 0.320259 0.009874 0.006139 +11 0.544883 0.318327 0.008977 0.005002 +12 0.304309 0.318668 0.007780 0.005684 +12 0.286505 0.318554 0.008079 0.005457 +11 0.652304 0.317985 0.006583 0.005230 +13 0.804309 0.317985 0.010772 0.006139 +11 0.804309 0.324125 0.010772 0.006139 +11 0.511071 0.302524 0.008977 0.006139 +12 0.255236 0.298658 0.009575 0.005684 +11 0.180880 0.298431 0.009276 0.006139 +17 0.702723 0.297522 0.010473 0.006139 +11 0.862358 0.296385 0.008977 0.005684 +11 0.822412 0.296612 0.009276 0.006139 +12 0.287403 0.295703 0.009276 0.006139 +11 0.545631 0.295248 0.009874 0.006139 +11 0.655147 0.294793 0.009874 0.006139 +11 0.595302 0.294793 0.008677 0.006139 +12 0.452573 0.293429 0.008677 0.005230 +12 0.081089 0.292406 0.004189 0.005457 +12 0.081239 0.283424 0.003890 0.006139 +12 0.081239 0.274557 0.003890 0.008413 +12 0.396619 0.290473 0.009874 0.006594 +12 0.332136 0.288313 0.008977 0.005912 +12 0.469330 0.285357 0.009276 0.006367 +18 0.924746 0.285016 0.008079 0.007503 +12 0.420856 0.282856 0.008079 0.005002 +18 0.805655 0.281378 0.005685 0.003865 +12 0.808348 0.276148 0.005087 0.004320 +12 0.352633 0.280468 0.008677 0.006594 +12 0.305955 0.278195 0.009276 0.005684 +12 0.801017 0.276148 0.004788 0.004320 +11 0.512268 0.261937 0.008977 0.006821 +18 0.167864 0.258754 0.007181 0.004548 +12 0.256284 0.258640 0.009276 0.005684 +11 0.181628 0.258640 0.009575 0.005684 +12 0.287403 0.255798 0.009276 0.006367 +12 0.595153 0.255230 0.010174 0.006139 +11 0.546379 0.255343 0.008977 0.006367 +12 0.452424 0.253070 0.008378 0.005457 +18 0.768103 0.251137 0.007780 0.004320 +12 0.397068 0.250910 0.009575 0.006594 +12 0.331388 0.248067 0.008677 0.005457 +12 0.470227 0.245225 0.009874 0.006139 +11 0.923549 0.244998 0.005685 0.007503 +12 0.421604 0.242724 0.009575 0.005684 +12 0.805805 0.242383 0.010174 0.005912 +18 0.805805 0.248295 0.010174 0.005912 +13 0.805955 0.236130 0.011071 0.006139 +13 0.762268 0.241587 0.009276 0.006139 +12 0.353531 0.240678 0.009276 0.006139 +12 0.653800 0.239768 0.008977 0.005230 +12 0.653800 0.244998 0.008977 0.005230 +12 0.305805 0.238176 0.008977 0.005684 +13 0.883154 0.236471 0.005087 0.005002 +12 0.778576 0.236698 0.008378 0.005457 +12 0.670257 0.242156 0.008977 0.005457 +12 0.670257 0.236698 0.008977 0.005457 +12 0.846649 0.235903 0.007481 0.005684 +12 0.822412 0.233515 0.009276 0.005457 +12 0.822412 0.238972 0.009276 0.005457 +17 0.703321 0.239313 0.010473 0.005684 +17 0.703321 0.233629 0.010473 0.005684 +12 0.863704 0.233402 0.008677 0.006139 +13 0.906194 0.230446 0.009276 0.005684 +12 0.742220 0.209300 0.009276 0.006139 +12 0.703770 0.209300 0.008977 0.006139 +12 0.761969 0.208845 0.009276 0.006139 +12 0.721574 0.208959 0.009874 0.006367 +17 0.823459 0.208390 0.010174 0.007049 +12 0.546828 0.207481 0.008677 0.005230 +12 0.597098 0.207140 0.008677 0.005002 +12 0.670407 0.207140 0.009276 0.005457 +12 0.653351 0.207253 0.008677 0.005684 +12 0.620736 0.207253 0.009276 0.005684 +12 0.563734 0.207026 0.008378 0.005230 +12 0.530371 0.204980 0.009276 0.006594 +12 0.513615 0.204752 0.009276 0.007049 +18 0.503142 0.202819 0.006284 0.004093 +12 0.331089 0.203388 0.009276 0.005230 +12 0.305206 0.203161 0.008378 0.004775 +12 0.289647 0.203047 0.008977 0.005457 +12 0.258677 0.200773 0.009276 0.006367 +12 0.235937 0.200773 0.009276 0.006367 +12 0.204369 0.200773 0.009575 0.006367 +12 0.181029 0.200887 0.009575 0.006594 +11 0.453471 0.200432 0.009874 0.006594 +13 0.421454 0.198158 0.009276 0.005684 +12 0.398414 0.198158 0.009874 0.005684 +18 0.927139 0.200659 0.012867 0.004775 +18 0.927139 0.195884 0.012867 0.004775 +13 0.354129 0.195657 0.009874 0.006139 +13 0.435368 0.195430 0.009575 0.006594 +13 0.368193 0.193383 0.009276 0.006139 +18 0.805655 0.195089 0.012867 0.005002 +18 0.805655 0.200091 0.012867 0.005002 +18 0.805655 0.190086 0.012867 0.005002 +18 0.241472 0.172351 0.008378 0.003183 +18 0.869988 0.171101 0.010473 0.002501 +12 0.864901 0.155070 0.008079 0.005457 +13 0.763315 0.163370 0.009575 0.006139 +12 0.548175 0.162688 0.008977 0.005684 +12 0.620586 0.162119 0.009575 0.005457 +12 0.596200 0.162233 0.009276 0.005684 +12 0.564482 0.162005 0.009276 0.005230 +12 0.672801 0.161210 0.009276 0.004548 +12 0.654548 0.161778 0.009276 0.005684 +12 0.723220 0.161323 0.009575 0.005684 +12 0.705715 0.161323 0.009276 0.005684 +12 0.741622 0.161096 0.009276 0.006139 +12 0.824207 0.160414 0.008079 0.006594 +12 0.531119 0.160186 0.009575 0.006139 +12 0.513016 0.160186 0.009276 0.006139 +11 0.454069 0.160186 0.008677 0.006139 +13 0.776631 0.158367 0.009874 0.006139 +13 0.422651 0.158140 0.009276 0.005684 +12 0.399312 0.158140 0.008079 0.005684 +12 0.259126 0.158140 0.008378 0.005684 +12 0.845452 0.157799 0.009874 0.005912 +12 0.289497 0.157913 0.009874 0.006139 +13 0.884351 0.157572 0.009874 0.006367 +12 0.308498 0.157572 0.008378 0.006367 +13 0.437612 0.155639 0.009874 0.006139 +12 0.235637 0.155639 0.009874 0.006139 +12 0.203172 0.155639 0.009575 0.006139 +12 0.181478 0.155639 0.009276 0.006139 +13 0.354428 0.155412 0.009276 0.006594 +12 0.333184 0.155412 0.009874 0.006594 +18 0.321215 0.158254 0.007481 0.004548 +18 0.321215 0.153706 0.007481 0.004548 +13 0.367594 0.153138 0.008079 0.005684 +13 0.904698 0.152456 0.008677 0.006139 +18 0.805955 0.155525 0.012268 0.005002 +13 0.805955 0.150523 0.012268 0.005002 +17 0.453770 0.127444 0.010473 0.006139 +11 0.807301 0.125625 0.004189 0.003865 +18 0.805955 0.117099 0.012268 0.006367 +12 0.421454 0.125171 0.009276 0.006139 +11 0.546978 0.124716 0.008977 0.006139 +17 0.596649 0.124261 0.010174 0.006139 +12 0.260473 0.123238 0.009276 0.005912 +12 0.203920 0.123124 0.008677 0.005684 +12 0.399013 0.122556 0.008677 0.005457 +12 0.353830 0.122556 0.008079 0.005457 +12 0.237133 0.120623 0.009276 0.006139 +12 0.182077 0.120850 0.009276 0.006594 +11 0.288001 0.120282 0.009276 0.006367 +13 0.219031 0.118122 0.008977 0.005684 +12 0.927738 0.116985 0.012867 0.008868 +13 0.805955 0.110732 0.012268 0.006367 +18 0.412777 0.106867 0.005087 0.003183 +13 0.806104 0.086176 0.005386 0.003183 +13 0.805506 0.070487 0.011370 0.005912 +13 0.740874 0.085834 0.005984 0.003865 +12 0.741323 0.068099 0.009874 0.006594 +18 0.479653 0.084584 0.005984 0.003183 +11 0.822262 0.085380 0.007181 0.005684 +12 0.823010 0.067417 0.009276 0.006139 +11 0.862507 0.080264 0.006882 0.005912 +12 0.862956 0.061960 0.009575 0.006139 +13 0.434470 0.079468 0.006583 0.005684 +13 0.434022 0.061733 0.008079 0.006594 +12 0.595751 0.078899 0.007181 0.006367 +12 0.595302 0.061278 0.008677 0.007503 +12 0.721574 0.078331 0.007481 0.006139 +12 0.721125 0.060709 0.008977 0.007276 +12 0.564034 0.076967 0.007181 0.005230 +12 0.564333 0.058777 0.008378 0.006139 +12 0.620437 0.076853 0.007481 0.005912 +12 0.620586 0.058095 0.010174 0.005684 +13 0.368492 0.076853 0.007481 0.005912 +13 0.368791 0.058777 0.009276 0.006139 +12 0.671305 0.075716 0.007481 0.005457 +12 0.671155 0.058777 0.008378 0.006139 +18 0.926840 0.080036 0.012268 0.005002 +18 0.926840 0.075034 0.012268 0.005002 +12 0.257630 0.074920 0.007181 0.005684 +13 0.258528 0.056617 0.008977 0.007276 +12 0.306254 0.074693 0.007481 0.006139 +12 0.306553 0.056844 0.009276 0.007731 +11 0.512717 0.074466 0.008677 0.006594 +12 0.512418 0.056730 0.009276 0.007503 +12 0.489378 0.074238 0.007481 0.006139 +12 0.488779 0.056730 0.008677 0.007503 +12 0.655147 0.073784 0.007481 0.006139 +12 0.654997 0.056048 0.008977 0.007049 +12 0.703321 0.073556 0.008079 0.006594 +12 0.703621 0.056048 0.009874 0.007049 +12 0.289198 0.072419 0.006882 0.004775 +12 0.288450 0.054457 0.008378 0.006594 +12 0.080491 0.071737 0.003591 0.004320 +12 0.452573 0.072192 0.006882 0.005684 +12 0.452573 0.053888 0.009276 0.006367 +11 0.180580 0.072192 0.008677 0.005684 +12 0.179982 0.054343 0.008677 0.006367 +13 0.686266 0.071169 0.006284 0.005457 +13 0.686565 0.053433 0.008079 0.006367 +12 0.397217 0.069463 0.005685 0.005684 +12 0.398414 0.051501 0.009874 0.007049 +13 0.273190 0.069918 0.008977 0.006594 +13 0.273639 0.052069 0.009276 0.007276 +12 0.332585 0.066508 0.008677 0.006139 +18 0.332286 0.049454 0.009276 0.005684 +3 0.387941 0.122442 0.008079 0.017963 +1 0.104877 0.121078 0.021245 0.038881 +5 0.127618 0.897340 0.017654 0.021601 +4 0.153351 0.198613 0.009276 0.015689 +3 0.895123 0.228172 0.006284 0.015689 +2 0.100090 0.626307 0.018851 0.018872 +3 0.341861 0.198158 0.006882 0.015689 +4 0.751496 0.164961 0.008677 0.015689 +0 0.100389 0.460095 0.014662 0.022965 +2 0.103980 0.243861 0.017056 0.017963 +2 0.101586 0.283879 0.019449 0.018872 +4 0.440604 0.252729 0.009276 0.015689 +4 0.850239 0.062869 0.008677 0.015234 +2 0.098893 0.586971 0.020048 0.019327 +4 0.193447 0.122442 0.008079 0.014325 +3 0.643477 0.292974 0.008079 0.017963 +4 0.431927 0.430991 0.012268 0.016598 +3 0.510922 0.372783 0.007481 0.017508 +3 0.427439 0.504434 0.006882 0.017053 +5 0.226661 0.529218 0.006284 0.008413 +3 0.410383 0.197704 0.007481 0.018417 +4 0.224566 0.422351 0.009276 0.012960 +4 0.439707 0.333674 0.009874 0.016598 +3 0.359814 0.365052 0.006882 0.019327 +3 0.640186 0.205434 0.007481 0.017508 +5 0.505536 0.542406 0.006284 0.008413 +4 0.542938 0.937131 0.010473 0.016598 +4 0.430730 0.373465 0.009874 0.016144 +4 0.440006 0.292747 0.009276 0.015689 +3 0.343956 0.156094 0.006284 0.018872 +4 0.543238 0.896430 0.009874 0.015234 +1 0.100688 0.681560 0.022442 0.037517 +4 0.223369 0.365962 0.009276 0.015689 +3 0.226960 0.451455 0.006882 0.019327 +3 0.641682 0.317076 0.008079 0.020691 +1 0.102783 0.547635 0.021843 0.038881 +4 0.384051 0.197704 0.012268 0.016598 +3 0.410981 0.158367 0.007481 0.017963 +4 0.155147 0.158140 0.009276 0.016598 +4 0.562388 0.556048 0.014662 0.019327 +1 0.107271 0.082424 0.022442 0.033424 +4 0.850539 0.079923 0.010473 0.015689 +3 0.511819 0.430991 0.006882 0.018417 +4 0.125823 0.622215 0.009276 0.013415 +4 0.149611 0.676671 0.008378 0.014552 +0 0.141532 0.668486 0.008977 0.012733 +4 0.129862 0.110277 0.008378 0.014097 +4 0.132855 0.720555 0.009575 0.015007 +4 0.124177 0.712824 0.008977 0.015916 +4 0.149013 0.765575 0.008378 0.015916 +4 0.150808 0.459527 0.008378 0.012278 +4 0.149910 0.587995 0.008977 0.012733 +4 0.125972 0.582538 0.008977 0.014552 +4 0.153202 0.245566 0.009575 0.014552 +0 0.101735 0.159845 0.013166 0.022283 +4 0.135847 0.378354 0.008378 0.014552 +4 0.126571 0.536835 0.008977 0.013188 +4 0.135847 0.418827 0.008378 0.013643 +0 0.150209 0.542747 0.008378 0.011369 +4 0.142430 0.532970 0.008378 0.012733 +4 0.127469 0.492724 0.008378 0.013188 +4 0.128965 0.280809 0.008977 0.013188 +4 0.144524 0.407231 0.007780 0.015007 +4 0.137343 0.077535 0.008977 0.015007 +4 0.128665 0.070032 0.009575 0.014552 +5 0.104129 0.865621 0.010772 0.014097 +4 0.127469 0.452933 0.008378 0.015462 +4 0.154399 0.075034 0.008378 0.014552 +4 0.146020 0.067076 0.008378 0.012278 +4 0.123728 0.673033 0.008079 0.016371 +4 0.147068 0.109141 0.008079 0.016371 +4 0.155296 0.114143 0.007780 0.016371 +4 0.141083 0.709868 0.008079 0.016371 +4 0.149312 0.717599 0.007780 0.016371 +5 0.081538 0.506594 0.008079 0.016371 +4 0.095452 0.497499 0.007780 0.016371 +4 0.122531 0.852206 0.008079 0.016371 +5 0.131358 0.855844 0.007780 0.016371 +4 0.098893 0.197817 0.008079 0.016371 +4 0.114602 0.201000 0.007780 0.016371 +4 0.099491 0.323329 0.008079 0.016371 +3 0.106822 0.323101 0.007780 0.016371 +4 0.123130 0.760346 0.008079 0.016371 +4 0.131807 0.768076 0.008079 0.016371 +4 0.140335 0.758072 0.007780 0.016371 +4 0.122531 0.800819 0.008079 0.016371 +4 0.131209 0.807185 0.008079 0.016371 +4 0.139737 0.799454 0.007780 0.016371 +4 0.133303 0.589814 0.008079 0.016371 +4 0.142130 0.580719 0.007780 0.016371 +4 0.127917 0.321965 0.008079 0.016371 +4 0.136744 0.327422 0.007780 0.016371 +4 0.129114 0.242383 0.008079 0.016371 +4 0.137193 0.246930 0.008079 0.016371 +4 0.145123 0.238745 0.007780 0.016371 +4 0.093058 0.805821 0.007780 0.016371 +4 0.137493 0.159618 0.008079 0.016371 +4 0.146320 0.150978 0.007780 0.016371 +4 0.097696 0.422010 0.008079 0.016371 +4 0.104578 0.417462 0.008079 0.016371 +3 0.111610 0.417462 0.007780 0.016371 +4 0.628516 0.251023 0.008079 0.016371 +4 0.638839 0.252387 0.007780 0.016371 +4 0.136894 0.286494 0.008079 0.016371 +4 0.144973 0.277399 0.008079 0.016371 +4 0.152902 0.284675 0.007780 0.016371 +3 0.429234 0.548431 0.008079 0.016371 +5 0.136894 0.197362 0.008079 0.016371 +4 0.145123 0.191451 0.007780 0.016371 +4 0.103830 0.937244 0.007780 0.015916 +4 0.092011 0.859936 0.008079 0.016371 +4 0.098294 0.857208 0.008079 0.016371 +5 0.104428 0.859936 0.007780 0.016371 +4 0.133004 0.631196 0.008079 0.016371 +4 0.141382 0.621874 0.008079 0.016371 +5 0.097098 0.387904 0.008079 0.016371 +4 0.104279 0.378354 0.008079 0.016371 +3 0.111610 0.377444 0.007780 0.016371 +4 0.122531 0.934970 0.008079 0.016371 +4 0.131957 0.941337 0.007780 0.016371 +4 0.139288 0.931787 0.008079 0.016371 +4 0.148115 0.939518 0.007780 0.016371 +4 0.094105 0.723056 0.008079 0.016371 +4 0.100688 0.718963 0.008079 0.016371 +4 0.107421 0.717599 0.007780 0.016371 +4 0.099491 0.896771 0.008079 0.015007 +4 0.103830 0.896771 0.007780 0.015007 +4 0.382555 0.157117 0.008079 0.016371 +4 0.388091 0.157117 0.007780 0.016371 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_7.jpg b/data_dataset/dvo/debug/debug_7.jpg new file mode 100644 index 0000000..e4fd3c5 Binary files /dev/null and b/data_dataset/dvo/debug/debug_7.jpg differ diff --git a/data_dataset/dvo/debug/debug_7.txt b/data_dataset/dvo/debug/debug_7.txt new file mode 100644 index 0000000..5150cea --- /dev/null +++ b/data_dataset/dvo/debug/debug_7.txt @@ -0,0 +1,753 @@ +8 0.421273 0.940595 0.011951 0.006588 +8 0.261428 0.940595 0.011353 0.007042 +10 0.586794 0.938437 0.005976 0.002726 +6 0.832686 0.941731 0.008963 0.016583 +6 0.788766 0.941958 0.009561 0.017946 +6 0.219600 0.941958 0.010158 0.017946 +6 0.392292 0.941277 0.008963 0.017038 +10 0.579474 0.891413 0.009860 0.002272 +10 0.567523 0.891413 0.012250 0.002272 +6 0.419480 0.897887 0.009561 0.017492 +6 0.789662 0.898114 0.008963 0.018401 +6 0.832088 0.896979 0.008963 0.017038 +7 0.239319 0.859723 0.011951 0.014312 +6 0.833284 0.858587 0.009561 0.016583 +6 0.260831 0.858360 0.009561 0.017946 +6 0.789364 0.857905 0.008963 0.017946 +7 0.432327 0.848819 0.009561 0.014766 +7 0.772931 0.810881 0.011951 0.019309 +6 0.872423 0.811790 0.008963 0.018401 +6 0.810875 0.811109 0.008963 0.017946 +9 0.706304 0.812472 0.008963 0.037937 +9 0.755004 0.811563 0.004780 0.037937 +10 0.642068 0.778055 0.005976 0.004089 +10 0.688975 0.774194 0.006573 0.002726 +7 0.774126 0.775216 0.011951 0.016129 +6 0.872722 0.772263 0.009561 0.017492 +9 0.786376 0.774534 0.004183 0.029305 +6 0.812668 0.772490 0.008963 0.017946 +10 0.539886 0.763517 0.007171 0.001817 +10 0.650433 0.761018 0.005976 0.002726 +8 0.260532 0.732962 0.011353 0.007042 +7 0.202868 0.735234 0.011951 0.013403 +6 0.370182 0.733757 0.009561 0.017265 +9 0.716761 0.731031 0.007171 0.021354 +6 0.221691 0.732735 0.007768 0.017492 +9 0.182552 0.730918 0.010756 0.032031 +9 0.668061 0.725579 0.004183 0.021354 +8 0.258889 0.693662 0.013445 0.006588 +6 0.220197 0.695706 0.009561 0.015220 +7 0.204512 0.693435 0.009860 0.009768 +6 0.369435 0.694230 0.009860 0.014539 +10 0.559456 0.689005 0.013445 0.003635 +10 0.427846 0.643571 0.008366 0.001817 +8 0.234240 0.630963 0.010756 0.007497 +10 0.872423 0.630736 0.011951 0.005225 +10 0.698536 0.630395 0.011951 0.004998 +8 0.520167 0.630282 0.011353 0.006588 +7 0.216014 0.632553 0.012549 0.013403 +7 0.502540 0.630282 0.011951 0.010223 +10 0.625934 0.627101 0.007768 0.002953 +6 0.828802 0.629827 0.008366 0.017038 +6 0.658799 0.629600 0.008963 0.017492 +10 0.384225 0.621763 0.009561 0.001817 +10 0.751718 0.583371 0.008366 0.001817 +8 0.234240 0.585302 0.010756 0.007042 +10 0.872423 0.584507 0.011951 0.004998 +8 0.520167 0.584393 0.010158 0.006588 +7 0.214520 0.586892 0.011951 0.012949 +7 0.502540 0.586211 0.010756 0.012949 +9 0.477741 0.587119 0.010158 0.023853 +9 0.746938 0.593935 0.010756 0.030668 +10 0.766358 0.581781 0.012549 0.004998 +7 0.391993 0.582122 0.007171 0.016583 +8 0.625037 0.544525 0.010756 0.007269 +8 0.227368 0.543049 0.012549 0.007042 +8 0.527935 0.543049 0.012549 0.006588 +8 0.376457 0.543389 0.011951 0.007269 +6 0.697341 0.545093 0.009561 0.017492 +9 0.900508 0.541458 0.009561 0.023398 +10 0.480430 0.495911 0.006573 0.003635 +10 0.191216 0.493185 0.006573 0.004089 +10 0.255751 0.480691 0.014939 0.004543 +10 0.625635 0.476715 0.007768 0.003862 +9 0.269196 0.469219 0.010756 0.024761 +9 0.243203 0.469219 0.010158 0.023853 +9 0.805199 0.465129 0.007171 0.027488 +10 0.729907 0.456611 0.005976 0.002726 +10 0.670152 0.454339 0.005976 0.001817 +10 0.255751 0.441390 0.013744 0.004998 +8 0.699731 0.426056 0.012549 0.006588 +7 0.677622 0.427647 0.012549 0.013403 +9 0.323573 0.430145 0.009561 0.027488 +10 0.595160 0.422762 0.006573 0.002726 +10 0.520466 0.422762 0.007768 0.002726 +6 0.802510 0.425148 0.008963 0.017492 +6 0.370182 0.425716 0.009561 0.019082 +10 0.561697 0.387551 0.010158 0.002272 +8 0.699134 0.386302 0.012549 0.007042 +8 0.676427 0.386302 0.011353 0.009768 +6 0.803406 0.386302 0.009561 0.018855 +6 0.370182 0.385961 0.009561 0.018628 +9 0.404243 0.387438 0.008366 0.023398 +9 0.250373 0.375625 0.008963 0.026579 +10 0.762175 0.329850 0.007171 0.002726 +9 0.183149 0.332917 0.009561 0.023853 +8 0.846430 0.329055 0.011951 0.023398 +10 0.611144 0.311336 0.008067 0.004771 +9 0.151927 0.294071 0.006274 0.017946 +10 0.760681 0.290550 0.009561 0.003180 +9 0.182552 0.294298 0.008963 0.023853 +9 0.214222 0.281122 0.004183 0.030214 +10 0.837765 0.245797 0.005976 0.004543 +10 0.266806 0.241935 0.007768 0.003180 +10 0.184643 0.240572 0.005976 0.003180 +10 0.153570 0.240800 0.005976 0.004543 +6 0.796534 0.245002 0.009561 0.017946 +9 0.605916 0.251590 0.008366 0.032485 +9 0.496863 0.243980 0.008963 0.019082 +10 0.302958 0.236711 0.007171 0.002726 +10 0.182850 0.236256 0.007171 0.002726 +9 0.339707 0.242390 0.010158 0.020900 +10 0.270690 0.224443 0.005976 0.002726 +9 0.314909 0.215697 0.008366 0.022944 +9 0.371676 0.214448 0.008366 0.018174 +9 0.437108 0.212176 0.011353 0.022717 +10 0.506424 0.219446 0.008366 0.001817 +9 0.411712 0.209450 0.011951 0.028169 +9 0.300866 0.209337 0.008963 0.027488 +10 0.462205 0.178782 0.013744 0.003635 +9 0.710487 0.179010 0.009561 0.009087 +9 0.199582 0.172649 0.011951 0.020445 +9 0.518673 0.168333 0.009561 0.020445 +9 0.494771 0.167878 0.009561 0.020445 +10 0.390798 0.162881 0.005976 0.002726 +9 0.372871 0.176170 0.011951 0.030668 +9 0.702420 0.164357 0.007768 0.021127 +9 0.717060 0.162313 0.009561 0.025216 +9 0.474455 0.164016 0.009561 0.035893 +9 0.758889 0.171627 0.009561 0.036574 +10 0.718853 0.154248 0.007171 0.002272 +9 0.296086 0.163335 0.011353 0.038164 +9 0.455333 0.162313 0.009561 0.039300 +10 0.219898 0.139482 0.008366 0.002726 +10 0.524051 0.127896 0.007171 0.003635 +9 0.325366 0.124602 0.011353 0.024307 +9 0.182552 0.123012 0.008963 0.022035 +6 0.838363 0.117333 0.009561 0.017946 +9 0.568121 0.124602 0.009860 0.032940 +9 0.267105 0.118923 0.008963 0.022944 +10 0.153272 0.075875 0.005976 0.004543 +6 0.834180 0.078260 0.008963 0.017946 +6 0.796833 0.078033 0.008366 0.017492 +9 0.757395 0.080304 0.008366 0.022944 +9 0.878399 0.079736 0.008963 0.024080 +18 0.870780 0.959337 0.008664 0.005906 +18 0.876755 0.959337 0.008664 0.005906 +11 0.749178 0.958996 0.009262 0.005225 +11 0.811622 0.958882 0.009860 0.005906 +12 0.704960 0.951045 0.009262 0.005679 +12 0.654317 0.951045 0.009561 0.005679 +12 0.605169 0.950818 0.009262 0.005679 +12 0.548999 0.951045 0.009262 0.006134 +17 0.931581 0.949909 0.004780 0.005679 +12 0.587093 0.940595 0.008963 0.005225 +12 0.528682 0.940595 0.009262 0.005225 +12 0.690170 0.940368 0.005976 0.005225 +12 0.638333 0.940595 0.009860 0.005679 +11 0.184344 0.940141 0.008366 0.005679 +11 0.372572 0.940027 0.008963 0.005906 +13 0.261578 0.919923 0.009262 0.006134 +12 0.240962 0.916856 0.008664 0.006361 +13 0.315058 0.916970 0.009860 0.007497 +13 0.280400 0.916515 0.009860 0.006588 +11 0.750523 0.914698 0.009561 0.005679 +11 0.750373 0.904362 0.009262 0.005906 +11 0.811921 0.914357 0.009262 0.005906 +11 0.811324 0.904362 0.009262 0.005906 +12 0.586794 0.914244 0.009561 0.006134 +12 0.530176 0.914471 0.008664 0.006588 +11 0.461159 0.914244 0.009262 0.006134 +12 0.687631 0.914130 0.009262 0.006361 +11 0.184494 0.914016 0.009262 0.006134 +12 0.638632 0.913335 0.009262 0.005679 +11 0.372274 0.914357 0.011951 0.007724 +12 0.298028 0.913789 0.009262 0.006588 +13 0.329698 0.912426 0.009262 0.006588 +12 0.705707 0.906974 0.009561 0.005679 +12 0.654317 0.906747 0.009561 0.005225 +12 0.605169 0.906747 0.009262 0.005679 +12 0.549895 0.906520 0.009860 0.006134 +11 0.811921 0.874943 0.009860 0.006134 +11 0.811921 0.864834 0.008664 0.005906 +11 0.750822 0.874943 0.009561 0.006134 +11 0.750373 0.864493 0.009860 0.006134 +11 0.296086 0.874943 0.009561 0.006134 +18 0.871079 0.874602 0.008664 0.005906 +18 0.876755 0.874602 0.008664 0.005906 +18 0.871377 0.915039 0.008664 0.005906 +18 0.877652 0.915039 0.008664 0.005906 +12 0.706454 0.866538 0.009262 0.004771 +12 0.550792 0.866538 0.009860 0.005225 +12 0.656259 0.866311 0.009262 0.005225 +12 0.605916 0.866311 0.009561 0.005679 +12 0.460860 0.866311 0.009262 0.005679 +12 0.529878 0.864039 0.008664 0.005679 +12 0.689125 0.864153 0.010457 0.006361 +12 0.638482 0.864039 0.009561 0.006134 +18 0.870481 0.863698 0.008664 0.005906 +18 0.876457 0.865516 0.008664 0.005906 +12 0.585748 0.864039 0.009262 0.006588 +13 0.476696 0.864039 0.009860 0.006588 +12 0.439797 0.863925 0.010158 0.006361 +11 0.185390 0.862108 0.009262 0.004998 +13 0.492680 0.861427 0.009561 0.005906 +12 0.420675 0.861540 0.010158 0.006134 +12 0.932925 0.860745 0.003884 0.004998 +17 0.372871 0.861654 0.010756 0.007269 +18 0.153869 0.861881 0.008366 0.005452 +18 0.153869 0.856429 0.008366 0.005452 +12 0.240813 0.833144 0.008963 0.007042 +12 0.222737 0.833144 0.009860 0.007042 +17 0.233642 0.814289 0.010756 0.002953 +12 0.204213 0.833144 0.009860 0.007042 +12 0.262773 0.832917 0.011055 0.007497 +12 0.269047 0.816447 0.006872 0.005452 +17 0.372871 0.829396 0.010756 0.007269 +18 0.376606 0.814289 0.011652 0.007951 +17 0.421273 0.828828 0.011353 0.007042 +18 0.424261 0.814743 0.011353 0.007951 +12 0.183448 0.827692 0.008963 0.006134 +12 0.183448 0.833826 0.008963 0.006134 +12 0.751120 0.826670 0.010158 0.005906 +12 0.750672 0.808155 0.009262 0.006134 +17 0.605468 0.826329 0.010457 0.005679 +11 0.605169 0.808383 0.009860 0.006134 +12 0.704213 0.826443 0.009561 0.006361 +12 0.704960 0.808155 0.008664 0.006134 +17 0.656558 0.826329 0.009860 0.006134 +11 0.655961 0.807928 0.009860 0.006588 +11 0.549746 0.825875 0.009561 0.006588 +11 0.548700 0.808042 0.009262 0.006361 +12 0.528832 0.825875 0.010158 0.006588 +17 0.893785 0.817469 0.009860 0.006134 +17 0.893487 0.809064 0.010457 0.006588 +11 0.835076 0.816674 0.008366 0.005906 +11 0.834777 0.808610 0.010158 0.006134 +11 0.791306 0.816333 0.006872 0.006134 +11 0.791604 0.808496 0.009860 0.005906 +17 0.183298 0.788619 0.011055 0.007042 +17 0.183298 0.779305 0.009860 0.007497 +12 0.188079 0.767038 0.012250 0.008405 +17 0.261279 0.788164 0.010457 0.007042 +11 0.260980 0.779078 0.009860 0.007042 +18 0.265462 0.767606 0.011652 0.007724 +12 0.102779 0.783394 0.004780 0.003408 +13 0.706005 0.784303 0.009561 0.006588 +12 0.751867 0.782144 0.009262 0.005906 +12 0.111294 0.779532 0.005677 0.004771 +13 0.721691 0.779532 0.009860 0.006134 +13 0.605169 0.779418 0.009860 0.006361 +13 0.658052 0.779078 0.009262 0.006134 +13 0.548402 0.779078 0.009860 0.006588 +17 0.420974 0.778510 0.010756 0.006361 +17 0.420974 0.784871 0.010756 0.006361 +18 0.425007 0.766356 0.011652 0.008405 +11 0.373618 0.778623 0.010457 0.006588 +17 0.373618 0.785211 0.010457 0.006588 +17 0.376158 0.767946 0.010756 0.007042 +12 0.689872 0.776579 0.009561 0.005679 +12 0.640424 0.776579 0.009860 0.005679 +11 0.589334 0.776124 0.009262 0.005225 +11 0.596504 0.761699 0.006872 0.004543 +12 0.529878 0.776352 0.008664 0.005679 +13 0.622348 0.774307 0.009561 0.006134 +13 0.672841 0.774080 0.008963 0.006134 +13 0.570959 0.773966 0.009561 0.006361 +11 0.835973 0.764198 0.010158 0.005452 +11 0.835973 0.769650 0.010158 0.005452 +11 0.790409 0.764085 0.008664 0.005225 +11 0.790409 0.769309 0.008664 0.005225 +17 0.893785 0.763744 0.009860 0.005906 +17 0.893785 0.769650 0.009860 0.005906 +11 0.396325 0.742731 0.009262 0.005679 +13 0.218703 0.737960 0.004183 0.003862 +18 0.872274 0.733985 0.008664 0.005906 +18 0.871676 0.722399 0.008664 0.005906 +18 0.877353 0.722399 0.008664 0.005906 +18 0.878249 0.736483 0.008664 0.005906 +13 0.706155 0.729782 0.009860 0.005679 +12 0.183298 0.727851 0.008664 0.004998 +17 0.812668 0.727851 0.011353 0.007269 +17 0.753212 0.727169 0.010756 0.006815 +13 0.722886 0.725011 0.008664 0.006134 +13 0.657604 0.725011 0.008366 0.006134 +13 0.606812 0.724898 0.008366 0.006361 +13 0.551240 0.724784 0.008963 0.006134 +17 0.422169 0.724330 0.010756 0.007042 +12 0.690917 0.722512 0.009262 0.005679 +12 0.589633 0.722285 0.009860 0.005679 +12 0.531073 0.722512 0.009860 0.006134 +12 0.641918 0.722058 0.009262 0.005679 +13 0.621601 0.720354 0.009262 0.005906 +13 0.672244 0.719673 0.008963 0.006361 +13 0.569913 0.719559 0.009860 0.006588 +18 0.659845 0.689573 0.005079 0.002953 +12 0.659994 0.667197 0.008963 0.006815 +12 0.152226 0.688096 0.008067 0.004998 +18 0.152226 0.693094 0.008067 0.004998 +12 0.394981 0.684916 0.009561 0.006361 +13 0.707947 0.672990 0.009262 0.007497 +18 0.871377 0.669923 0.008664 0.005906 +18 0.877353 0.669923 0.008664 0.005906 +17 0.814909 0.670491 0.010457 0.007042 +17 0.753511 0.670604 0.010158 0.007269 +17 0.183896 0.670036 0.010457 0.006134 +13 0.722289 0.667765 0.009262 0.007042 +13 0.606364 0.667310 0.008067 0.006588 +13 0.550493 0.667310 0.008664 0.007497 +17 0.425605 0.666515 0.009860 0.006815 +12 0.642366 0.665947 0.008963 0.006134 +12 0.589483 0.665720 0.008963 0.006134 +12 0.690021 0.665493 0.008067 0.006134 +18 0.528981 0.665152 0.008664 0.005906 +12 0.675232 0.663335 0.007171 0.006361 +18 0.574395 0.662653 0.009860 0.007269 +12 0.372124 0.634825 0.009262 0.005225 +12 0.353003 0.632894 0.009262 0.006361 +12 0.424709 0.632326 0.009262 0.005679 +18 0.233493 0.630850 0.008067 0.003180 +12 0.388856 0.632213 0.010457 0.006361 +11 0.184942 0.630509 0.009561 0.006134 +11 0.478787 0.629827 0.008664 0.005225 +11 0.803555 0.629941 0.008067 0.005906 +11 0.325217 0.630055 0.009860 0.006134 +12 0.406185 0.629827 0.008664 0.006134 +11 0.625486 0.629487 0.008067 0.005906 +12 0.439797 0.627101 0.010158 0.006134 +12 0.697192 0.606429 0.009262 0.006134 +12 0.757843 0.604839 0.009860 0.007497 +12 0.678518 0.603021 0.008963 0.006588 +12 0.719898 0.603249 0.009262 0.007951 +11 0.804751 0.601318 0.009262 0.005906 +11 0.624739 0.600977 0.009561 0.006588 +11 0.739916 0.600750 0.009860 0.006588 +11 0.747535 0.582349 0.005976 0.003408 +13 0.771885 0.599614 0.009262 0.006134 +12 0.370929 0.589505 0.009262 0.006361 +18 0.232596 0.585756 0.003884 0.003862 +12 0.389752 0.586665 0.009860 0.006134 +13 0.354497 0.586665 0.009860 0.006588 +13 0.424858 0.586324 0.009561 0.006361 +18 0.518076 0.584734 0.004780 0.004089 +11 0.325814 0.584393 0.008664 0.005679 +12 0.408276 0.584166 0.009860 0.005679 +11 0.183298 0.584393 0.008067 0.006588 +11 0.479086 0.583939 0.009262 0.006134 +13 0.442336 0.581440 0.010457 0.006588 +11 0.740514 0.560768 0.008664 0.005679 +13 0.921870 0.551908 0.009262 0.005679 +18 0.909023 0.548841 0.007469 0.004998 +18 0.909770 0.553385 0.004780 0.003180 +12 0.894084 0.549296 0.008664 0.005906 +11 0.900956 0.533962 0.004482 0.003408 +17 0.804302 0.546456 0.010756 0.007042 +18 0.153869 0.539073 0.004183 0.003635 +18 0.870630 0.519991 0.013146 0.004543 +17 0.870630 0.524534 0.013146 0.004543 +18 0.875261 0.507724 0.011652 0.008178 +18 0.791007 0.518741 0.004482 0.003408 +12 0.756498 0.520104 0.009561 0.006134 +12 0.660442 0.519877 0.008664 0.005679 +12 0.668808 0.502840 0.006872 0.002499 +12 0.643412 0.519991 0.009262 0.005906 +17 0.655214 0.503294 0.013146 0.003408 +12 0.738422 0.519877 0.009262 0.006588 +12 0.716761 0.519877 0.008963 0.006588 +12 0.699283 0.519877 0.008664 0.006588 +12 0.678369 0.519877 0.008664 0.006588 +11 0.626681 0.519991 0.009262 0.006815 +17 0.638034 0.503294 0.014640 0.003862 +17 0.521811 0.517038 0.011055 0.006815 +12 0.276367 0.514880 0.008963 0.005679 +12 0.252614 0.514880 0.009262 0.005679 +12 0.107111 0.512040 0.013445 0.004543 +12 0.107111 0.516583 0.013445 0.004543 +17 0.371527 0.512154 0.010457 0.006134 +13 0.375859 0.499886 0.011951 0.007951 +11 0.326113 0.512381 0.010457 0.007042 +12 0.329997 0.498410 0.010457 0.007269 +11 0.478488 0.512040 0.010457 0.006815 +17 0.185689 0.509882 0.010457 0.006588 +12 0.191963 0.494775 0.004482 0.004543 +18 0.808336 0.506247 0.010457 0.008405 +12 0.803854 0.523739 0.011055 0.007042 +18 0.525993 0.505111 0.012250 0.008405 +18 0.482372 0.498069 0.011652 0.007951 +12 0.512250 0.486711 0.005677 0.004316 +12 0.521661 0.472058 0.008963 0.006815 +12 0.521362 0.463766 0.010756 0.006588 +11 0.470122 0.480463 0.008664 0.006815 +12 0.477592 0.461722 0.010457 0.006134 +13 0.477592 0.467856 0.010457 0.006134 +11 0.364057 0.480009 0.008067 0.005906 +12 0.371676 0.460927 0.011353 0.006361 +12 0.371676 0.467288 0.011353 0.006361 +12 0.317150 0.480009 0.006274 0.005906 +12 0.325217 0.460927 0.010457 0.005906 +13 0.325217 0.466833 0.010457 0.005906 +12 0.757096 0.475011 0.009561 0.005906 +13 0.755303 0.469673 0.005378 0.004316 +12 0.625187 0.475011 0.010457 0.005906 +12 0.624290 0.462063 0.008664 0.006361 +12 0.175978 0.475466 0.007171 0.006815 +12 0.185091 0.456270 0.011055 0.006588 +17 0.185091 0.462858 0.011055 0.006588 +12 0.739020 0.474557 0.008067 0.006815 +13 0.103227 0.475011 0.008664 0.005906 +11 0.108605 0.475011 0.008664 0.005906 +11 0.700030 0.470241 0.009561 0.004543 +11 0.700030 0.474784 0.009561 0.004543 +12 0.706454 0.454225 0.005677 0.004316 +12 0.803257 0.469900 0.010457 0.005679 +13 0.803257 0.475579 0.010457 0.005679 +12 0.808037 0.457860 0.011652 0.007951 +12 0.716761 0.469673 0.007171 0.005225 +12 0.717956 0.475579 0.009561 0.005225 +12 0.678518 0.469559 0.009561 0.004998 +12 0.678518 0.474557 0.009561 0.004998 +12 0.644308 0.469673 0.009262 0.005225 +12 0.644308 0.474898 0.009262 0.005225 +12 0.660741 0.469219 0.008664 0.005225 +12 0.660741 0.474443 0.008664 0.005225 +18 0.265910 0.464448 0.005378 0.003862 +18 0.240066 0.464107 0.005079 0.004089 +12 0.250075 0.461608 0.007768 0.005452 +12 0.276815 0.461722 0.008664 0.006588 +18 0.876158 0.458655 0.011652 0.008632 +12 0.872274 0.470014 0.009860 0.005452 +17 0.872274 0.475466 0.009860 0.005452 +11 0.830146 0.438323 0.009860 0.006134 +11 0.407081 0.437528 0.009262 0.006815 +12 0.557215 0.430259 0.008366 0.005906 +13 0.576636 0.427647 0.009561 0.006134 +11 0.624888 0.427533 0.008067 0.006361 +12 0.540036 0.427419 0.009860 0.006588 +13 0.292501 0.427419 0.008963 0.007042 +11 0.324918 0.425716 0.008664 0.005452 +13 0.592620 0.425261 0.008664 0.005906 +12 0.251718 0.425261 0.009262 0.006361 +12 0.521362 0.424920 0.009561 0.006134 +13 0.280251 0.424466 0.008366 0.005679 +17 0.478787 0.424466 0.010457 0.007042 +17 0.186585 0.422990 0.010457 0.007269 +17 0.873469 0.420491 0.009860 0.005906 +11 0.283537 0.383689 0.005976 0.004089 +12 0.291604 0.370400 0.008366 0.006588 +11 0.831043 0.380509 0.008067 0.005906 +11 0.405587 0.380395 0.008664 0.006134 +12 0.557066 0.373467 0.008067 0.005906 +12 0.538841 0.370741 0.008664 0.006815 +11 0.625187 0.371081 0.008067 0.007951 +13 0.574694 0.370173 0.008664 0.007497 +12 0.520914 0.368355 0.009860 0.006588 +13 0.591276 0.367901 0.008963 0.006588 +11 0.324470 0.367674 0.008963 0.006588 +12 0.252017 0.367674 0.009860 0.006588 +17 0.477293 0.367787 0.012250 0.007269 +17 0.186286 0.365629 0.009860 0.006134 +17 0.872124 0.362449 0.010756 0.007951 +18 0.494174 0.345866 0.008366 0.005225 +12 0.497162 0.320309 0.008366 0.006815 +12 0.570959 0.346320 0.007768 0.007951 +11 0.649686 0.339505 0.010457 0.007497 +11 0.837018 0.337347 0.008664 0.005906 +12 0.844637 0.322353 0.005976 0.004998 +12 0.857335 0.334734 0.009860 0.006134 +12 0.815955 0.334734 0.008963 0.006134 +13 0.897968 0.334280 0.009860 0.006588 +12 0.762175 0.332235 0.009561 0.005679 +12 0.883926 0.332122 0.009262 0.005906 +13 0.915895 0.329055 0.008664 0.006134 +11 0.184195 0.326102 0.007469 0.006134 +12 0.522408 0.324512 0.009262 0.006134 +11 0.303705 0.323603 0.009262 0.005679 +12 0.220645 0.323716 0.011652 0.007724 +12 0.375112 0.321104 0.009860 0.005679 +17 0.569913 0.321331 0.011055 0.007042 +17 0.412160 0.320877 0.011055 0.007042 +12 0.588587 0.300432 0.008366 0.006134 +12 0.838363 0.297478 0.009561 0.005225 +11 0.846131 0.281804 0.007171 0.003862 +12 0.857634 0.294980 0.009860 0.006588 +12 0.815357 0.294980 0.008963 0.006588 +13 0.897072 0.294639 0.008664 0.006361 +12 0.881834 0.292708 0.008067 0.005225 +12 0.607410 0.292935 0.008963 0.005679 +12 0.760831 0.292481 0.008664 0.005225 +12 0.151628 0.292026 0.005677 0.005679 +13 0.915596 0.289527 0.008664 0.006134 +12 0.626382 0.287824 0.008067 0.004089 +11 0.183896 0.287029 0.007469 0.006134 +11 0.689722 0.285211 0.008664 0.006134 +12 0.522259 0.284757 0.009561 0.006588 +11 0.648491 0.282372 0.009262 0.005906 +12 0.569465 0.282258 0.009561 0.006134 +12 0.374514 0.282031 0.009262 0.006588 +17 0.411861 0.281804 0.011055 0.007042 +11 0.301464 0.279873 0.008366 0.006361 +13 0.495369 0.279532 0.008366 0.006134 +17 0.218853 0.273853 0.009860 0.007042 +17 0.491037 0.264539 0.005677 0.005225 +12 0.498207 0.239437 0.006872 0.005906 +17 0.598596 0.263403 0.009262 0.005679 +11 0.607858 0.239891 0.007469 0.005906 +11 0.760831 0.247728 0.009860 0.006588 +17 0.648491 0.248069 0.009860 0.007269 +18 0.835973 0.245684 0.007171 0.004316 +13 0.265760 0.243980 0.009262 0.005452 +13 0.326561 0.241595 0.009561 0.006134 +12 0.286077 0.241368 0.009262 0.006588 +13 0.236480 0.241368 0.006872 0.006588 +12 0.304452 0.238982 0.009561 0.005452 +11 0.182850 0.238755 0.007768 0.005906 +11 0.152674 0.237960 0.005378 0.005225 +12 0.522259 0.237051 0.007768 0.006588 +11 0.457275 0.237051 0.008664 0.006588 +13 0.340753 0.236711 0.007469 0.006361 +12 0.373917 0.236256 0.010457 0.007724 +11 0.570959 0.234666 0.009561 0.006361 +11 0.491933 0.224784 0.007469 0.006134 +13 0.500747 0.219332 0.011353 0.002953 +12 0.495518 0.202862 0.008664 0.005452 +12 0.495518 0.208314 0.008664 0.005452 +12 0.760233 0.216720 0.007469 0.004543 +12 0.767404 0.193662 0.003884 0.003862 +13 0.315357 0.215925 0.005677 0.003862 +12 0.201673 0.215243 0.007768 0.005225 +12 0.184494 0.215129 0.009262 0.005906 +11 0.687780 0.213880 0.008366 0.006134 +12 0.108903 0.212063 0.005079 0.003862 +12 0.325814 0.212744 0.008067 0.006588 +12 0.285928 0.212517 0.006573 0.006134 +12 0.265462 0.212631 0.006872 0.006361 +12 0.238273 0.212744 0.008067 0.006588 +12 0.218703 0.212858 0.008366 0.006815 +12 0.799373 0.211268 0.009262 0.005452 +12 0.780550 0.210813 0.008664 0.004543 +12 0.779504 0.193435 0.009561 0.003408 +17 0.569913 0.211154 0.010457 0.006588 +12 0.391843 0.210586 0.009262 0.005452 +12 0.373768 0.210473 0.007768 0.006134 +18 0.838811 0.210473 0.010457 0.006588 +12 0.842994 0.196615 0.011652 0.008860 +12 0.474305 0.205702 0.009262 0.005225 +12 0.474305 0.210927 0.009262 0.005225 +12 0.437705 0.205134 0.008963 0.005452 +12 0.437705 0.210586 0.008963 0.005452 +12 0.521064 0.202862 0.008963 0.005452 +12 0.521064 0.208314 0.008963 0.005452 +12 0.302659 0.200250 0.006573 0.004771 +12 0.412160 0.199909 0.008067 0.004998 +12 0.412160 0.204907 0.008067 0.004998 +12 0.456678 0.199796 0.008664 0.005679 +12 0.456678 0.205475 0.008664 0.005679 +18 0.812519 0.193094 0.005677 0.002726 +12 0.815656 0.210813 0.009561 0.005452 +18 0.792351 0.193094 0.009561 0.002726 +11 0.830893 0.177533 0.010158 0.007042 +17 0.838064 0.156861 0.011353 0.004771 +12 0.838064 0.161631 0.011353 0.004771 +12 0.110099 0.172194 0.003884 0.004089 +12 0.265462 0.167651 0.008664 0.006361 +12 0.236929 0.167765 0.009561 0.006588 +12 0.182701 0.167765 0.008067 0.006588 +12 0.284583 0.167537 0.009860 0.007042 +12 0.219749 0.167424 0.009262 0.006815 +12 0.202121 0.167537 0.009860 0.007042 +12 0.390947 0.165039 0.009262 0.005225 +12 0.390947 0.170264 0.009262 0.005225 +12 0.373469 0.164925 0.008366 0.004998 +12 0.373469 0.169923 0.008366 0.004998 +13 0.519570 0.162653 0.008366 0.005906 +13 0.519570 0.168560 0.008366 0.005906 +12 0.495967 0.162426 0.008366 0.005452 +12 0.495967 0.167878 0.008366 0.005452 +12 0.326113 0.162199 0.008067 0.005452 +12 0.326113 0.167651 0.008067 0.005452 +12 0.437257 0.160722 0.008067 0.004771 +12 0.437257 0.165493 0.008067 0.004771 +12 0.687481 0.160722 0.008963 0.005225 +12 0.687481 0.165947 0.008963 0.005225 +12 0.411861 0.160154 0.006872 0.004543 +12 0.411563 0.147547 0.008067 0.006588 +12 0.475799 0.159814 0.008664 0.004771 +12 0.475799 0.164584 0.008664 0.004771 +12 0.457574 0.159927 0.008067 0.004998 +12 0.456080 0.147547 0.007469 0.006588 +12 0.779056 0.158337 0.009262 0.004998 +12 0.779056 0.163335 0.009262 0.004998 +13 0.703466 0.158224 0.007469 0.005679 +13 0.703466 0.163903 0.007469 0.005679 +12 0.661936 0.158110 0.009262 0.005452 +12 0.661936 0.163562 0.009262 0.005452 +12 0.647595 0.158224 0.006872 0.005679 +12 0.647595 0.163903 0.006872 0.005679 +12 0.814162 0.157656 0.008366 0.005452 +12 0.814162 0.163108 0.008366 0.005452 +12 0.798177 0.157656 0.008067 0.005452 +12 0.798177 0.163108 0.008067 0.005452 +12 0.760233 0.157769 0.007469 0.005679 +12 0.760233 0.163448 0.007469 0.005679 +17 0.570511 0.156520 0.010457 0.004543 +17 0.570511 0.161063 0.010457 0.004543 +17 0.570511 0.165607 0.010457 0.004543 +13 0.718554 0.156520 0.009561 0.004998 +13 0.718554 0.161517 0.009561 0.004998 +13 0.073947 0.154134 0.004482 0.003408 +12 0.303406 0.149818 0.008067 0.007951 +18 0.241261 0.131418 0.006872 0.004316 +17 0.760233 0.130850 0.008664 0.006361 +11 0.881536 0.129941 0.009860 0.006815 +12 0.217956 0.129487 0.009262 0.006361 +11 0.604870 0.125965 0.008664 0.006134 +11 0.796684 0.122104 0.005079 0.004771 +17 0.648192 0.120400 0.010457 0.007269 +13 0.521512 0.117560 0.008067 0.005679 +12 0.325964 0.117106 0.008963 0.006134 +11 0.183448 0.116424 0.007768 0.005679 +12 0.373469 0.114153 0.008366 0.006134 +13 0.497759 0.112903 0.007171 0.004543 +13 0.569764 0.112676 0.007768 0.005906 +13 0.536749 0.112449 0.007469 0.005452 +11 0.267852 0.111654 0.008067 0.005225 +11 0.250523 0.111654 0.007469 0.006134 +12 0.151628 0.110859 0.005079 0.004998 +13 0.473558 0.109723 0.007171 0.006361 +18 0.408425 0.095979 0.007171 0.005225 +11 0.412608 0.106883 0.008963 0.006134 +12 0.220197 0.087574 0.009561 0.005679 +13 0.217807 0.073149 0.007171 0.004543 +18 0.497909 0.079282 0.006872 0.002726 +11 0.759486 0.073376 0.006573 0.005906 +11 0.879892 0.072581 0.007171 0.006134 +13 0.154019 0.072013 0.006274 0.004998 +11 0.606663 0.068264 0.008067 0.006134 +18 0.601882 0.095979 0.009262 0.006134 +17 0.646400 0.062358 0.009860 0.007497 +13 0.518524 0.060768 0.007469 0.006588 +12 0.325814 0.059632 0.009262 0.006588 +13 0.184494 0.059291 0.008664 0.006815 +11 0.373319 0.056906 0.008664 0.007951 +13 0.566776 0.055657 0.008366 0.006361 +12 0.495817 0.055770 0.008664 0.006588 +13 0.534359 0.054861 0.009262 0.006588 +12 0.267105 0.054634 0.008366 0.006588 +13 0.248282 0.053385 0.010158 0.006815 +12 0.471915 0.052363 0.008664 0.007042 +12 0.409471 0.049409 0.008067 0.006588 +12 0.928443 0.039187 0.005079 0.004316 +0 0.102629 0.813607 0.023006 0.023853 +4 0.397520 0.321331 0.009262 0.016129 +2 0.102032 0.332690 0.025396 0.019764 +4 0.290559 0.323603 0.010457 0.016583 +4 0.509262 0.463766 0.009262 0.014766 +0 0.099492 0.691958 0.022109 0.032712 +4 0.400209 0.281804 0.009262 0.016129 +3 0.465940 0.423785 0.008664 0.020218 +4 0.277711 0.370400 0.009860 0.014766 +0 0.100538 0.242049 0.023006 0.031122 +2 0.104721 0.896524 0.012250 0.016129 +2 0.099044 0.632099 0.018823 0.018855 +2 0.101434 0.941504 0.020018 0.019764 +2 0.099044 0.586665 0.020018 0.018855 +0 0.099641 0.423330 0.021811 0.032940 +3 0.466238 0.368582 0.006872 0.017946 +3 0.172841 0.363812 0.008067 0.017946 +3 0.465043 0.464448 0.006872 0.015220 +1 0.100239 0.387665 0.021811 0.039755 +2 0.101434 0.857678 0.018225 0.018401 +2 0.716612 0.543730 0.017030 0.015220 +3 0.359875 0.863017 0.008067 0.014539 +4 0.155214 0.811109 0.008664 0.016583 +4 0.155214 0.772263 0.009860 0.016129 +4 0.153421 0.205020 0.009262 0.015675 +4 0.152823 0.632781 0.009262 0.016129 +3 0.792202 0.545775 0.006872 0.015675 +4 0.155064 0.899818 0.008366 0.013630 +4 0.145055 0.890504 0.009262 0.013176 +4 0.133254 0.077124 0.009561 0.014766 +4 0.124589 0.069855 0.008963 0.015675 +4 0.142814 0.066333 0.009561 0.015902 +4 0.124589 0.160495 0.009561 0.014312 +4 0.124141 0.108928 0.009262 0.014766 +4 0.152973 0.943208 0.008963 0.015902 +4 0.144010 0.933667 0.008963 0.013176 +4 0.152973 0.423217 0.008366 0.016356 +4 0.143412 0.414584 0.009561 0.015448 +4 0.142217 0.233757 0.008963 0.015448 +4 0.127577 0.936960 0.007171 0.011586 +4 0.153869 0.731259 0.007768 0.014539 +4 0.144308 0.722399 0.008963 0.015902 +4 0.134449 0.546115 0.007768 0.013176 +4 0.125784 0.536688 0.008366 0.014312 +4 0.155064 0.541345 0.008366 0.015448 +4 0.145205 0.534075 0.008963 0.014539 +4 0.133104 0.297365 0.008664 0.015448 +4 0.124589 0.289300 0.008366 0.013857 +4 0.134150 0.425261 0.008963 0.015902 +4 0.125486 0.417537 0.008366 0.015902 +4 0.141619 0.286234 0.008963 0.015902 +4 0.133552 0.636529 0.008366 0.013176 +4 0.125486 0.627328 0.007768 0.013857 +4 0.142814 0.624489 0.008963 0.016356 +4 0.154915 0.504771 0.008664 0.015902 +4 0.145055 0.496365 0.009262 0.016356 +1 0.094413 0.774421 0.007171 0.023171 +4 0.152973 0.333485 0.009561 0.015902 +4 0.141918 0.325534 0.010158 0.015448 +4 0.134748 0.774648 0.008963 0.015902 +4 0.126382 0.766697 0.008963 0.015448 +4 0.144308 0.764425 0.008963 0.016356 +4 0.134748 0.732849 0.008963 0.015902 +4 0.125784 0.726147 0.008963 0.014312 +4 0.133552 0.336211 0.008963 0.014993 +4 0.125486 0.328373 0.008366 0.015675 +4 0.125486 0.806565 0.008366 0.016129 +4 0.132656 0.244207 0.008963 0.016356 +4 0.123693 0.237733 0.008963 0.015220 +4 0.153869 0.382326 0.008963 0.016356 +0 0.143113 0.373467 0.008963 0.013176 +4 0.125187 0.199682 0.008366 0.016356 +4 0.135345 0.589278 0.008366 0.015902 +4 0.126083 0.582008 0.008963 0.015902 +4 0.125486 0.458996 0.009561 0.014312 +4 0.135196 0.507951 0.008664 0.013176 +4 0.126531 0.498751 0.009262 0.013857 +0 0.152375 0.588369 0.012549 0.014993 +4 0.145802 0.578828 0.008963 0.016811 +4 0.134150 0.385052 0.008963 0.015448 +4 0.132507 0.166629 0.008664 0.016129 +4 0.142516 0.156861 0.008366 0.016129 +4 0.132805 0.115516 0.008664 0.016129 +4 0.144308 0.106429 0.008366 0.016129 +4 0.093666 0.080532 0.008664 0.016129 +4 0.106364 0.067129 0.008366 0.016129 +4 0.093965 0.120286 0.008664 0.016129 +4 0.100538 0.116197 0.008664 0.016129 +3 0.107260 0.116197 0.008366 0.016129 +4 0.424410 0.210132 0.008664 0.015448 +3 0.430983 0.210132 0.008664 0.015448 +4 0.134001 0.812699 0.008664 0.016129 +4 0.144607 0.803385 0.008366 0.016129 +4 0.093666 0.210018 0.008664 0.016129 +5 0.098297 0.203885 0.008366 0.016129 +4 0.133104 0.207065 0.008664 0.016129 +4 0.143711 0.198660 0.008366 0.016129 +4 0.093666 0.737279 0.008664 0.016129 +4 0.106364 0.732281 0.008366 0.016129 +4 0.093367 0.548501 0.008664 0.016129 +4 0.100239 0.543503 0.008664 0.016129 +5 0.107260 0.543957 0.008366 0.016129 +3 0.558709 0.771354 0.008366 0.016129 +4 0.106065 0.291686 0.008366 0.015902 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_8.jpg b/data_dataset/dvo/debug/debug_8.jpg new file mode 100644 index 0000000..91df0f1 Binary files /dev/null and b/data_dataset/dvo/debug/debug_8.jpg differ diff --git a/data_dataset/dvo/debug/debug_8.txt b/data_dataset/dvo/debug/debug_8.txt new file mode 100644 index 0000000..0b41353 --- /dev/null +++ b/data_dataset/dvo/debug/debug_8.txt @@ -0,0 +1,685 @@ +9 0.874178 0.944217 0.008368 0.019314 +8 0.141662 0.930811 0.007770 0.016587 +6 0.708308 0.938764 0.010161 0.019768 +6 0.658099 0.937401 0.007770 0.017042 +6 0.544232 0.936946 0.009564 0.018859 +6 0.456366 0.935810 0.009564 0.017950 +6 0.348775 0.935810 0.009564 0.017950 +6 0.707412 0.898319 0.009564 0.018859 +6 0.905559 0.898546 0.008966 0.017950 +10 0.877615 0.890934 0.006874 0.002272 +10 0.844740 0.891275 0.008069 0.003408 +6 0.659594 0.897410 0.009564 0.017042 +9 0.797519 0.894456 0.010460 0.025676 +9 0.587717 0.898773 0.009265 0.023404 +6 0.169755 0.895478 0.008966 0.017723 +6 0.200538 0.895137 0.009564 0.017496 +10 0.140616 0.888662 0.006874 0.003636 +9 0.739390 0.854919 0.005977 0.020223 +9 0.315900 0.855601 0.004184 0.028403 +9 0.636282 0.853442 0.008966 0.032265 +6 0.905559 0.851738 0.009564 0.017950 +6 0.707711 0.851965 0.009564 0.018859 +6 0.658697 0.851965 0.009564 0.018859 +6 0.391512 0.850829 0.007173 0.018859 +6 0.502391 0.850489 0.010161 0.019087 +6 0.170353 0.850489 0.009564 0.019541 +6 0.280036 0.849239 0.008966 0.017496 +10 0.281231 0.807998 0.008966 0.002727 +6 0.708308 0.811747 0.008368 0.019314 +6 0.659594 0.811293 0.008966 0.017496 +6 0.171249 0.810043 0.008966 0.017723 +6 0.199342 0.810157 0.008966 0.017496 +10 0.591452 0.789139 0.007770 0.002727 +6 0.709205 0.771984 0.007770 0.017950 +6 0.904363 0.771984 0.009564 0.019314 +6 0.501195 0.771416 0.010161 0.018178 +6 0.660191 0.771302 0.010161 0.018405 +6 0.168559 0.770279 0.009564 0.018178 +6 0.391512 0.770620 0.009564 0.019314 +6 0.279139 0.769711 0.009564 0.017496 +10 0.594740 0.745512 0.005977 0.001818 +10 0.238195 0.742331 0.007770 0.002272 +10 0.351166 0.741763 0.008966 0.002045 +10 0.432756 0.742104 0.010759 0.003636 +10 0.863419 0.731425 0.006575 0.003181 +10 0.544531 0.731197 0.008368 0.003181 +9 0.343096 0.733924 0.004782 0.018632 +9 0.802451 0.729493 0.006575 0.017496 +9 0.817394 0.729721 0.008966 0.017042 +10 0.546922 0.727335 0.007173 0.002727 +10 0.279737 0.726880 0.008368 0.003181 +9 0.597131 0.735174 0.010759 0.030675 +6 0.660191 0.731766 0.008966 0.019314 +9 0.361327 0.731425 0.010161 0.023631 +10 0.332935 0.721881 0.007173 0.002272 +10 0.473102 0.721654 0.008966 0.003636 +10 0.773162 0.741195 0.007173 0.001818 +10 0.234907 0.687571 0.013150 0.004544 +9 0.797968 0.686889 0.008368 0.025449 +10 0.820084 0.684731 0.005977 0.002954 +6 0.658697 0.688139 0.009564 0.017496 +10 0.784818 0.679845 0.007173 0.003181 +9 0.566049 0.672120 0.008368 0.033174 +9 0.441124 0.670302 0.007173 0.034083 +10 0.228332 0.661668 0.005977 0.002727 +8 0.296025 0.628834 0.013449 0.007498 +8 0.195607 0.628834 0.012253 0.006589 +10 0.394053 0.628266 0.012253 0.004999 +6 0.722504 0.630425 0.009265 0.019314 +6 0.624477 0.630425 0.010460 0.018405 +6 0.787059 0.630879 0.010460 0.019314 +6 0.515690 0.629743 0.009265 0.017042 +9 0.761058 0.624290 0.011058 0.007953 +10 0.687388 0.596455 0.006575 0.004544 +8 0.490137 0.584185 0.011357 0.007271 +6 0.211895 0.586798 0.009564 0.017042 +6 0.287209 0.587026 0.009564 0.018405 +6 0.394202 0.586571 0.009564 0.018405 +6 0.191572 0.585890 0.008368 0.017042 +6 0.570532 0.585435 0.009564 0.017496 +6 0.417513 0.585208 0.009564 0.017496 +9 0.365810 0.564076 0.004184 0.021586 +6 0.569038 0.538628 0.008966 0.017496 +6 0.876569 0.539764 0.009564 0.018405 +6 0.263598 0.539536 0.010161 0.018859 +6 0.664077 0.538855 0.010161 0.017950 +6 0.414525 0.538173 0.009564 0.017950 +6 0.210998 0.539082 0.010161 0.018859 +6 0.758219 0.538855 0.009564 0.018859 +6 0.169755 0.538514 0.010161 0.018178 +6 0.369097 0.538173 0.009564 0.017950 +6 0.315302 0.537946 0.009564 0.017496 +6 0.314704 0.501136 0.009564 0.018405 +6 0.261805 0.501136 0.008966 0.018405 +6 0.453078 0.500454 0.008966 0.018859 +6 0.569038 0.500000 0.010161 0.017496 +6 0.167364 0.500568 0.010161 0.018632 +6 0.898984 0.499773 0.010161 0.020223 +6 0.416318 0.500227 0.009564 0.018405 +6 0.366707 0.499773 0.009564 0.017496 +6 0.210400 0.500227 0.010161 0.018405 +6 0.455170 0.457737 0.009564 0.017950 +6 0.262104 0.457737 0.010759 0.017950 +6 0.211895 0.457282 0.009564 0.017950 +6 0.569337 0.457282 0.009564 0.018405 +6 0.417215 0.457055 0.010161 0.018405 +6 0.367902 0.456601 0.008368 0.017496 +6 0.316198 0.457282 0.010161 0.018859 +6 0.757322 0.456601 0.008966 0.017042 +6 0.663180 0.456828 0.009564 0.017496 +6 0.167065 0.457169 0.009564 0.018178 +6 0.876868 0.456146 0.008966 0.017496 +10 0.824567 0.436151 0.008368 0.002954 +9 0.721458 0.425017 0.004184 0.022040 +8 0.572325 0.418428 0.004782 0.008862 +10 0.624925 0.415587 0.008368 0.002727 +9 0.211297 0.422745 0.009564 0.018859 +10 0.786910 0.414678 0.005977 0.002727 +9 0.844889 0.421268 0.005977 0.026812 +10 0.318589 0.391047 0.011357 0.004999 +10 0.497161 0.382072 0.011058 0.002499 +10 0.833981 0.379346 0.005678 0.003863 +10 0.272265 0.326744 0.006575 0.002727 +8 0.466228 0.313679 0.011955 0.007044 +8 0.805439 0.313679 0.012552 0.007498 +8 0.706814 0.313451 0.012552 0.007044 +8 0.627914 0.313451 0.007770 0.007044 +8 0.548117 0.313679 0.013150 0.007498 +8 0.895397 0.313224 0.013150 0.007044 +8 0.366408 0.313451 0.013150 0.007498 +6 0.296473 0.315496 0.009564 0.018859 +6 0.571429 0.273915 0.009564 0.017950 +6 0.467723 0.273915 0.010161 0.018405 +6 0.296175 0.274142 0.010161 0.018859 +6 0.728033 0.273233 0.009564 0.018405 +6 0.549313 0.273688 0.010759 0.018405 +6 0.391512 0.272779 0.009564 0.017950 +6 0.362224 0.273006 0.009564 0.017496 +6 0.790795 0.272324 0.009564 0.017496 +6 0.630305 0.273233 0.008966 0.018405 +6 0.489241 0.272552 0.008966 0.017496 +6 0.821877 0.272779 0.009564 0.018405 +6 0.892110 0.272324 0.010161 0.017950 +8 0.799163 0.225517 0.011955 0.007498 +6 0.392409 0.228698 0.008966 0.018859 +6 0.297071 0.228016 0.009564 0.019314 +6 0.869695 0.227335 0.009564 0.018859 +6 0.443216 0.227562 0.010161 0.018405 +6 0.331142 0.226653 0.009564 0.017496 +6 0.729229 0.226199 0.008368 0.017042 +9 0.272564 0.192456 0.008368 0.023177 +6 0.330843 0.189389 0.010161 0.017496 +6 0.296473 0.190070 0.009564 0.018859 +6 0.689480 0.188934 0.008966 0.017950 +6 0.442020 0.189162 0.008966 0.017042 +6 0.392708 0.190298 0.009564 0.019314 +6 0.656904 0.188707 0.009564 0.017496 +6 0.606396 0.188934 0.007770 0.017042 +6 0.570831 0.189389 0.009564 0.017950 +6 0.528093 0.189389 0.010161 0.017950 +6 0.489241 0.189048 0.008966 0.017723 +6 0.759115 0.188934 0.009564 0.017950 +6 0.728033 0.188707 0.009564 0.017496 +6 0.868799 0.188253 0.010161 0.017950 +6 0.819785 0.187798 0.007770 0.017496 +6 0.331142 0.147807 0.009564 0.017950 +6 0.296772 0.147807 0.008966 0.017950 +6 0.603108 0.148489 0.009564 0.018859 +6 0.526300 0.148489 0.005380 0.018859 +6 0.393007 0.148262 0.008966 0.018859 +6 0.820980 0.147694 0.008966 0.018178 +6 0.571130 0.147807 0.010161 0.018405 +6 0.490436 0.147580 0.010161 0.018405 +6 0.444411 0.148035 0.010161 0.019314 +8 0.271369 0.149625 0.013150 0.022495 +6 0.759713 0.147126 0.009564 0.018859 +6 0.729528 0.147126 0.005380 0.018859 +6 0.690078 0.147353 0.005380 0.018405 +6 0.657800 0.146898 0.005380 0.017496 +6 0.870293 0.146444 0.009564 0.017950 +10 0.401225 0.122927 0.007472 0.003181 +10 0.761955 0.114292 0.005678 0.004544 +9 0.489988 0.110657 0.010460 0.023631 +8 0.235505 0.102363 0.006575 0.015224 +9 0.568290 0.110316 0.009265 0.023404 +10 0.806037 0.098160 0.007173 0.003181 +7 0.333234 0.103499 0.007173 0.019314 +11 0.589211 0.949671 0.009863 0.006589 +11 0.636730 0.942172 0.008069 0.005226 +11 0.875523 0.938309 0.006276 0.004317 +12 0.845338 0.938650 0.006874 0.005453 +12 0.742230 0.937855 0.011058 0.007498 +12 0.171698 0.935015 0.011656 0.007271 +11 0.427824 0.933197 0.007472 0.005908 +11 0.391363 0.933083 0.008667 0.006589 +13 0.501943 0.930811 0.008667 0.005681 +12 0.123431 0.929448 0.006575 0.004317 +11 0.319337 0.927971 0.009265 0.006362 +12 0.279438 0.927630 0.008966 0.006589 +12 0.891363 0.898205 0.008069 0.005908 +12 0.876868 0.893661 0.008966 0.005908 +12 0.845188 0.893547 0.007770 0.005681 +11 0.589659 0.891729 0.007770 0.006135 +12 0.861327 0.890820 0.007770 0.005681 +12 0.820831 0.890479 0.007472 0.005453 +12 0.919456 0.887866 0.004483 0.003408 +12 0.805140 0.887980 0.008966 0.005908 +13 0.785714 0.885821 0.008966 0.006135 +11 0.547669 0.884458 0.008069 0.006135 +11 0.637627 0.883549 0.008667 0.006135 +12 0.502092 0.883436 0.008966 0.006362 +12 0.389719 0.883095 0.008368 0.006589 +17 0.429319 0.883095 0.011656 0.007498 +17 0.320831 0.883322 0.011058 0.007953 +12 0.280335 0.882640 0.008368 0.006589 +12 0.771369 0.882640 0.009564 0.007044 +12 0.743724 0.882640 0.009265 0.007044 +11 0.231321 0.882186 0.010161 0.006589 +12 0.528093 0.881504 0.009564 0.007498 +12 0.411387 0.880141 0.009265 0.007044 +12 0.305738 0.880141 0.009564 0.007044 +12 0.757472 0.879459 0.009265 0.006135 +13 0.811715 0.867303 0.005380 0.003636 +13 0.818739 0.859464 0.008069 0.006135 +12 0.891811 0.867871 0.008368 0.006135 +12 0.877167 0.862190 0.007770 0.004772 +12 0.846832 0.862190 0.009265 0.005226 +13 0.862971 0.859918 0.009265 0.006589 +17 0.200389 0.859350 0.011058 0.007271 +12 0.804692 0.857078 0.008667 0.005453 +18 0.107442 0.860032 0.006874 0.004544 +18 0.107442 0.855487 0.006874 0.004544 +11 0.390915 0.855147 0.004782 0.004317 +12 0.784967 0.853783 0.008069 0.006589 +12 0.742678 0.851397 0.008368 0.005453 +13 0.770622 0.851057 0.007472 0.005226 +11 0.589809 0.850602 0.009265 0.004772 +18 0.589809 0.860827 0.008069 0.005226 +11 0.547669 0.850375 0.007472 0.004317 +11 0.546324 0.861054 0.009564 0.005681 +18 0.131052 0.850375 0.007472 0.004317 +12 0.758069 0.849012 0.008667 0.006135 +11 0.637926 0.848103 0.008667 0.005226 +11 0.637926 0.853329 0.008667 0.005226 +17 0.320831 0.846171 0.010460 0.006362 +17 0.320831 0.852534 0.010460 0.006362 +17 0.429468 0.845830 0.010759 0.006589 +17 0.429468 0.852420 0.010759 0.006589 +11 0.847878 0.833901 0.006575 0.002727 +11 0.846832 0.827426 0.008069 0.004772 +11 0.843545 0.792434 0.005081 0.004772 +11 0.876121 0.833788 0.008069 0.005226 +11 0.875523 0.827198 0.008069 0.005681 +12 0.742678 0.826971 0.011357 0.006589 +12 0.742678 0.833561 0.011357 0.006589 +11 0.298864 0.820495 0.004782 0.003181 +12 0.304393 0.807430 0.008667 0.006135 +13 0.519127 0.820950 0.006575 0.005453 +12 0.590406 0.818564 0.009265 0.006135 +18 0.590406 0.791979 0.008069 0.006589 +18 0.400926 0.810838 0.006874 0.004772 +13 0.402122 0.804703 0.008069 0.005226 +17 0.637029 0.811293 0.010460 0.006135 +11 0.548117 0.810498 0.007770 0.005453 +12 0.390466 0.810384 0.008667 0.005681 +12 0.279886 0.810157 0.009863 0.005226 +18 0.503288 0.810384 0.010759 0.006589 +13 0.230574 0.809930 0.010460 0.005681 +17 0.430813 0.810043 0.010460 0.006817 +17 0.319486 0.809475 0.010759 0.006589 +12 0.529139 0.808453 0.008667 0.005908 +12 0.413778 0.807317 0.009863 0.006817 +12 0.290646 0.806976 0.008667 0.008862 +18 0.292887 0.821291 0.005380 0.002954 +17 0.743126 0.791979 0.011058 0.007498 +11 0.743873 0.778346 0.010161 0.007498 +11 0.875822 0.791752 0.009863 0.007498 +11 0.875523 0.778800 0.009265 0.006135 +12 0.546772 0.788116 0.009265 0.006135 +11 0.547370 0.777778 0.008069 0.005453 +13 0.075164 0.785276 0.004483 0.004544 +12 0.638225 0.783345 0.010460 0.005681 +11 0.638225 0.789025 0.010460 0.005681 +11 0.200837 0.782209 0.011955 0.005681 +11 0.200837 0.787889 0.011955 0.005681 +17 0.845637 0.778800 0.010460 0.006135 +11 0.590855 0.778346 0.008966 0.005681 +11 0.429767 0.773233 0.011955 0.004999 +17 0.429767 0.778232 0.011955 0.004999 +17 0.429767 0.783231 0.011955 0.004999 +17 0.320233 0.778232 0.011656 0.004999 +11 0.320233 0.773233 0.011656 0.004999 +17 0.320233 0.783231 0.011656 0.004999 +13 0.680813 0.749943 0.005977 0.014769 +12 0.680066 0.710634 0.004483 0.003408 +12 0.679617 0.686889 0.004782 0.003181 +12 0.683652 0.681663 0.009265 0.004999 +12 0.685146 0.811179 0.008667 0.004544 +13 0.685894 0.851965 0.007173 0.004772 +12 0.686342 0.831856 0.005081 0.013179 +12 0.687238 0.816633 0.003885 0.004090 +11 0.919456 0.743354 0.009863 0.006135 +12 0.075613 0.737105 0.003586 0.004090 +13 0.074866 0.730175 0.005081 0.007498 +12 0.893007 0.737900 0.009564 0.006135 +11 0.708607 0.737673 0.010161 0.006135 +12 0.878063 0.732902 0.009564 0.006135 +12 0.845637 0.732561 0.009265 0.006362 +12 0.590108 0.732220 0.008667 0.006135 +12 0.579199 0.730516 0.005977 0.004999 +12 0.862373 0.730061 0.009265 0.004544 +13 0.819187 0.729948 0.006575 0.005226 +11 0.638524 0.729948 0.009863 0.006135 +12 0.545876 0.729493 0.008667 0.005226 +12 0.503885 0.729607 0.009564 0.005908 +11 0.392259 0.729266 0.008667 0.005226 +12 0.457711 0.729039 0.008069 0.005681 +12 0.429020 0.728812 0.008069 0.005226 +12 0.348027 0.729266 0.009863 0.006135 +12 0.318589 0.729152 0.008966 0.005908 +11 0.280185 0.729152 0.008069 0.005908 +13 0.804991 0.727676 0.008069 0.006135 +12 0.567394 0.727335 0.008667 0.005908 +12 0.249253 0.726653 0.007770 0.006362 +12 0.784071 0.725403 0.008069 0.005226 +12 0.473102 0.724381 0.007770 0.004999 +12 0.605051 0.724835 0.009863 0.006362 +12 0.443664 0.724267 0.008069 0.005226 +12 0.333234 0.724381 0.008966 0.005453 +13 0.362971 0.723926 0.008667 0.005453 +12 0.239390 0.723813 0.007173 0.005226 +12 0.239390 0.729039 0.007173 0.005226 +13 0.228183 0.723926 0.007472 0.005453 +12 0.742678 0.722677 0.008966 0.006135 +13 0.771070 0.722336 0.008966 0.006362 +12 0.214883 0.721995 0.008966 0.006135 +12 0.905409 0.720291 0.004483 0.003636 +12 0.905708 0.743354 0.009863 0.006135 +12 0.758368 0.719723 0.008069 0.005681 +12 0.200389 0.719382 0.008667 0.006362 +12 0.170203 0.719382 0.009265 0.006362 +12 0.186641 0.716542 0.008667 0.006135 +11 0.919456 0.699727 0.009863 0.006135 +12 0.904214 0.699841 0.009265 0.006362 +11 0.709504 0.694615 0.007770 0.006362 +12 0.890765 0.694388 0.009863 0.006362 +12 0.876270 0.689730 0.009564 0.006135 +12 0.846832 0.689389 0.010460 0.006362 +12 0.862074 0.687230 0.009863 0.005681 +12 0.819187 0.686889 0.008368 0.005453 +12 0.804393 0.684049 0.009265 0.006135 +12 0.784967 0.681777 0.008667 0.005226 +12 0.741482 0.679505 0.009564 0.006135 +13 0.772116 0.679277 0.010460 0.006589 +12 0.758368 0.676551 0.009265 0.006589 +12 0.590705 0.671325 0.008667 0.007044 +11 0.637776 0.669166 0.008368 0.006362 +11 0.501793 0.669052 0.008966 0.006589 +12 0.457860 0.668939 0.010161 0.006362 +12 0.545427 0.668712 0.007770 0.006362 +12 0.426629 0.667916 0.008069 0.006135 +11 0.390167 0.668144 0.009265 0.006589 +12 0.346832 0.667916 0.007472 0.006135 +12 0.315750 0.668144 0.008667 0.006589 +11 0.278093 0.667916 0.008667 0.006135 +12 0.249402 0.665871 0.008667 0.006589 +12 0.568141 0.665644 0.008368 0.006589 +12 0.605947 0.664622 0.008069 0.006362 +12 0.227286 0.663599 0.006276 0.005681 +12 0.473252 0.663258 0.009265 0.005908 +12 0.443216 0.662236 0.008368 0.005681 +12 0.362074 0.662577 0.009265 0.006362 +12 0.331590 0.662690 0.009265 0.006589 +13 0.213090 0.660645 0.008368 0.007044 +12 0.198894 0.658487 0.008069 0.006362 +12 0.168410 0.657805 0.008069 0.006362 +18 0.183652 0.655533 0.008667 0.006362 +11 0.832785 0.642695 0.008667 0.006135 +17 0.877466 0.634969 0.010759 0.006589 +12 0.455021 0.629516 0.008667 0.005681 +17 0.666467 0.627130 0.010759 0.006817 +11 0.761207 0.624744 0.008368 0.005681 +12 0.570831 0.621904 0.010759 0.007271 +11 0.369546 0.608612 0.009265 0.006589 +11 0.169008 0.601341 0.009863 0.006135 +13 0.665571 0.597591 0.009564 0.004999 +17 0.667962 0.572711 0.011357 0.007044 +11 0.264644 0.598160 0.009863 0.006589 +11 0.834579 0.575551 0.009265 0.006362 +17 0.880305 0.573165 0.011058 0.007498 +17 0.759863 0.572711 0.010460 0.007044 +12 0.592349 0.572824 0.011357 0.007271 +18 0.315302 0.561350 0.008368 0.005681 +11 0.316348 0.598387 0.009265 0.006135 +18 0.370891 0.559646 0.010759 0.007726 +18 0.266438 0.559532 0.011058 0.007498 +17 0.169307 0.559191 0.009265 0.008180 +17 0.456067 0.554079 0.010161 0.006589 +11 0.284369 0.550898 0.009863 0.006589 +12 0.293634 0.547830 0.005678 0.004544 +17 0.901524 0.548625 0.010460 0.006589 +11 0.395248 0.548171 0.009265 0.005681 +11 0.395248 0.553851 0.009265 0.005681 +17 0.787657 0.548284 0.011058 0.006362 +11 0.190227 0.546126 0.009265 0.006135 +17 0.591452 0.546239 0.010759 0.006817 +17 0.098476 0.549193 0.008667 0.005908 +18 0.103855 0.549193 0.008667 0.005908 +17 0.691871 0.545671 0.010759 0.007498 +11 0.394949 0.518405 0.009863 0.007044 +11 0.286163 0.515678 0.008667 0.006135 +11 0.190974 0.512838 0.009564 0.005908 +11 0.190974 0.518746 0.009564 0.005908 +12 0.486701 0.511815 0.011656 0.005681 +12 0.486701 0.517496 0.011656 0.005681 +11 0.833682 0.502272 0.008667 0.006135 +11 0.877914 0.499773 0.007472 0.006135 +17 0.761357 0.499773 0.009863 0.006589 +17 0.667663 0.499886 0.010161 0.006817 +12 0.591751 0.500000 0.011357 0.007044 +11 0.189480 0.475915 0.007770 0.005681 +11 0.189779 0.469780 0.009564 0.006135 +11 0.394351 0.474097 0.009863 0.006589 +11 0.286312 0.472165 0.008966 0.006362 +17 0.788852 0.472165 0.011058 0.006817 +11 0.900926 0.468871 0.011656 0.006135 +17 0.900926 0.475006 0.011656 0.006135 +11 0.590705 0.468643 0.011656 0.006135 +11 0.590705 0.474778 0.011656 0.006135 +17 0.485804 0.468643 0.011058 0.006589 +17 0.485804 0.475233 0.011058 0.006589 +17 0.690227 0.468416 0.011058 0.006589 +17 0.690227 0.475006 0.011058 0.006589 +11 0.694411 0.432402 0.009863 0.004544 +11 0.705768 0.412974 0.008667 0.005681 +12 0.690526 0.417860 0.009265 0.005453 +11 0.594889 0.432856 0.012851 0.005453 +12 0.605798 0.413088 0.008368 0.005908 +13 0.589958 0.417860 0.007173 0.005453 +18 0.398834 0.428880 0.010460 0.006135 +12 0.920203 0.424563 0.009564 0.006589 +12 0.832487 0.419564 0.008667 0.006135 +11 0.664226 0.417973 0.008069 0.005681 +11 0.624776 0.417973 0.008069 0.005681 +11 0.569038 0.418314 0.007770 0.006362 +12 0.212642 0.418087 0.008667 0.006362 +11 0.758368 0.417746 0.008667 0.006135 +11 0.725493 0.417746 0.008069 0.006135 +17 0.169008 0.418087 0.011058 0.006817 +12 0.785565 0.417178 0.007472 0.005453 +13 0.370442 0.417519 0.011058 0.007044 +17 0.878811 0.417064 0.011656 0.007044 +12 0.538852 0.415587 0.008368 0.005908 +12 0.316647 0.415474 0.009863 0.006589 +17 0.264495 0.415701 0.010759 0.007044 +12 0.808129 0.414792 0.008966 0.006589 +12 0.515690 0.412974 0.008667 0.005681 +12 0.330843 0.412974 0.007770 0.006135 +12 0.229378 0.412747 0.008667 0.005681 +13 0.796324 0.412065 0.008069 0.004772 +12 0.847579 0.412293 0.007770 0.005681 +11 0.250448 0.412520 0.005380 0.006135 +13 0.500448 0.410475 0.009265 0.006589 +12 0.486402 0.407862 0.009863 0.005908 +12 0.455021 0.407975 0.009265 0.006135 +11 0.416467 0.407407 0.009863 0.006817 +12 0.470562 0.404567 0.010460 0.005681 +18 0.804692 0.391843 0.006874 0.005226 +12 0.809922 0.358214 0.008368 0.007044 +12 0.211447 0.379800 0.008667 0.006135 +11 0.594441 0.379232 0.009564 0.005453 +12 0.591751 0.361395 0.009564 0.006135 +18 0.474298 0.377869 0.005977 0.003181 +17 0.370741 0.379573 0.011656 0.006589 +12 0.693814 0.379118 0.008667 0.006135 +12 0.689181 0.361509 0.009564 0.006362 +17 0.169008 0.379573 0.010460 0.007044 +12 0.314555 0.377073 0.009265 0.006135 +17 0.264495 0.377301 0.010759 0.006589 +12 0.228930 0.374801 0.010161 0.006135 +12 0.332487 0.374460 0.008069 0.005908 +11 0.251793 0.373892 0.008069 0.005226 +12 0.071578 0.372075 0.005081 0.004772 +11 0.417065 0.368893 0.009265 0.006135 +11 0.919904 0.368212 0.009564 0.005681 +12 0.833084 0.362986 0.009265 0.006589 +11 0.625971 0.362304 0.009863 0.006135 +11 0.722654 0.361850 0.008368 0.006135 +11 0.570383 0.361850 0.009863 0.006135 +13 0.759414 0.360827 0.008368 0.005908 +11 0.665421 0.361054 0.009863 0.006362 +12 0.786163 0.360600 0.008667 0.006362 +13 0.878213 0.360941 0.011058 0.007498 +12 0.541094 0.359805 0.008667 0.007498 +12 0.706366 0.356623 0.009265 0.006589 +12 0.516587 0.356623 0.008667 0.006589 +12 0.605947 0.356169 0.009265 0.006589 +12 0.848326 0.354806 0.008667 0.006135 +13 0.499851 0.354579 0.008667 0.006589 +13 0.484310 0.351965 0.008667 0.006817 +18 0.453228 0.351284 0.008667 0.006362 +18 0.469964 0.348898 0.008667 0.006135 +18 0.236252 0.310270 0.007472 0.004317 +12 0.273610 0.310043 0.009265 0.004772 +12 0.273610 0.314815 0.009265 0.004772 +11 0.693814 0.294819 0.009265 0.006589 +13 0.191423 0.291865 0.005081 0.006589 +12 0.192319 0.252556 0.005678 0.007044 +11 0.332337 0.290957 0.009564 0.006589 +11 0.763150 0.289820 0.009265 0.006589 +11 0.527944 0.288571 0.009863 0.005908 +12 0.605200 0.285958 0.010161 0.006135 +11 0.658099 0.285617 0.009564 0.006362 +13 0.443664 0.283117 0.008667 0.005908 +12 0.872086 0.282777 0.008368 0.006589 +12 0.708159 0.277664 0.004483 0.004544 +12 0.275403 0.268234 0.004483 0.004772 +11 0.657651 0.249148 0.009863 0.007044 +17 0.606097 0.247103 0.010759 0.007498 +17 0.528542 0.247103 0.011058 0.007498 +17 0.470861 0.246876 0.010460 0.007498 +17 0.893156 0.246421 0.011058 0.007498 +17 0.691871 0.246421 0.011357 0.007953 +11 0.362522 0.237332 0.009564 0.006589 +13 0.274059 0.233470 0.005380 0.007953 +12 0.275105 0.224040 0.005081 0.008180 +13 0.209504 0.199955 0.004184 0.004090 +12 0.635834 0.199727 0.008667 0.005908 +11 0.627764 0.202454 0.008667 0.005908 +11 0.708757 0.198818 0.009265 0.005453 +11 0.708757 0.204272 0.009265 0.005453 +11 0.364316 0.198705 0.008966 0.005681 +12 0.790944 0.198250 0.009863 0.006135 +11 0.548715 0.197001 0.008966 0.005453 +11 0.470562 0.196887 0.009863 0.006589 +12 0.225792 0.199500 0.008667 0.005908 +12 0.220114 0.199500 0.008667 0.005908 +11 0.893007 0.195524 0.009564 0.005681 +11 0.817543 0.193252 0.005081 0.004317 +13 0.273013 0.184163 0.012851 0.005681 +18 0.273013 0.189843 0.012851 0.005681 +12 0.468171 0.166099 0.008069 0.004999 +17 0.469366 0.159168 0.006874 0.003863 +12 0.364614 0.166439 0.008966 0.005681 +12 0.366109 0.159509 0.004184 0.004544 +11 0.892409 0.164622 0.008368 0.004772 +11 0.892259 0.158714 0.009265 0.005681 +11 0.792588 0.164508 0.008368 0.006362 +11 0.792887 0.157805 0.006575 0.004317 +11 0.709952 0.163486 0.010460 0.007498 +11 0.632247 0.162804 0.009265 0.006135 +11 0.549761 0.160191 0.010460 0.005453 +11 0.549761 0.165644 0.010460 0.005453 +13 0.274208 0.157578 0.004483 0.004772 +13 0.275403 0.147239 0.005081 0.005453 +12 0.255380 0.140423 0.008667 0.004544 +12 0.193515 0.140991 0.005678 0.015224 +17 0.934250 0.125199 0.004782 0.003636 +12 0.367005 0.117814 0.011955 0.002954 +13 0.379109 0.101909 0.008069 0.006589 +13 0.363270 0.099182 0.008667 0.006589 +11 0.918261 0.118155 0.005678 0.004090 +12 0.925732 0.103158 0.005678 0.004999 +11 0.794830 0.116678 0.011058 0.002954 +13 0.805589 0.100545 0.008069 0.006135 +12 0.790795 0.097705 0.009564 0.005908 +12 0.299014 0.117132 0.008667 0.006135 +12 0.729378 0.115996 0.009863 0.007044 +13 0.273162 0.109975 0.011955 0.005453 +17 0.528691 0.108725 0.009564 0.005226 +17 0.447549 0.108725 0.011058 0.006589 +17 0.691273 0.108384 0.011357 0.006362 +13 0.873132 0.107362 0.011058 0.006589 +12 0.414824 0.106680 0.008966 0.006135 +12 0.843545 0.105431 0.009265 0.006817 +17 0.607143 0.105771 0.011058 0.007498 +12 0.659145 0.103954 0.007472 0.004772 +11 0.591602 0.104067 0.007472 0.005453 +11 0.591602 0.109521 0.007472 0.005453 +12 0.570233 0.103499 0.006575 0.005226 +11 0.491482 0.103499 0.008667 0.005226 +13 0.391512 0.103954 0.007770 0.006135 +12 0.818739 0.102590 0.006276 0.005681 +12 0.331739 0.099296 0.010161 0.005908 +12 0.760460 0.097819 0.009265 0.006135 +13 0.346234 0.095887 0.008667 0.006362 +12 0.774656 0.094865 0.008966 0.006589 +13 0.502241 0.034538 0.005678 0.004544 +1 0.096085 0.458873 0.021817 0.038400 +3 0.794830 0.682913 0.006874 0.018405 +4 0.255678 0.097137 0.009863 0.014315 +4 0.830395 0.105431 0.009265 0.015905 +4 0.822624 0.503636 0.009265 0.013406 +2 0.097430 0.631334 0.023909 0.018859 +2 0.217125 0.314360 0.012253 0.016133 +4 0.253885 0.310043 0.009265 0.012952 +2 0.093395 0.587480 0.020024 0.020223 +0 0.095188 0.417746 0.022415 0.033401 +1 0.096683 0.384572 0.021817 0.032493 +4 0.528542 0.360259 0.009863 0.012952 +4 0.578153 0.792434 0.009863 0.013860 +4 0.556934 0.726767 0.008069 0.013406 +4 0.621787 0.162804 0.009863 0.017042 +4 0.237448 0.665644 0.008667 0.016133 +4 0.526748 0.416383 0.009265 0.015224 +1 0.099671 0.731766 0.021219 0.038855 +4 0.275702 0.471825 0.009265 0.015678 +3 0.793933 0.727676 0.007472 0.019768 +4 0.517782 0.809021 0.009863 0.013406 +4 0.643007 0.248921 0.010460 0.016587 +4 0.821727 0.575097 0.009863 0.016360 +1 0.099970 0.814701 0.021817 0.033856 +4 0.799163 0.358214 0.010161 0.016133 +3 0.731620 0.883322 0.007770 0.014769 +4 0.515840 0.881731 0.010161 0.015224 +3 0.731769 0.826971 0.007472 0.019314 +4 0.820233 0.419905 0.009265 0.015905 +4 0.400777 0.878778 0.009564 0.012497 +1 0.098177 0.687003 0.021817 0.034765 +1 0.096384 0.500000 0.022415 0.035219 +2 0.097878 0.935356 0.018231 0.017950 +3 0.732068 0.850602 0.008069 0.019314 +1 0.272714 0.276869 0.008667 0.015678 +4 0.775105 0.471825 0.009863 0.016133 +2 0.097878 0.895819 0.018231 0.017950 +4 0.579348 0.672461 0.009863 0.013860 +4 0.301106 0.561804 0.009863 0.016587 +1 0.099074 0.771984 0.022415 0.039309 +4 0.821877 0.363327 0.010161 0.016360 +2 0.214136 0.274369 0.021817 0.019768 +4 0.128512 0.458759 0.008368 0.013179 +4 0.119845 0.449671 0.007770 0.014088 +4 0.138374 0.446489 0.008966 0.014997 +4 0.129408 0.687571 0.008368 0.014542 +0 0.121040 0.678482 0.008368 0.013633 +4 0.139271 0.676664 0.008966 0.013633 +4 0.138075 0.579414 0.008368 0.013633 +4 0.129259 0.635310 0.009265 0.016360 +4 0.119994 0.628266 0.008667 0.014997 +4 0.139420 0.626903 0.009265 0.013179 +4 0.130006 0.730061 0.008368 0.013179 +4 0.121638 0.722336 0.009564 0.014997 +4 0.139868 0.719382 0.008966 0.013633 +4 0.254035 0.268575 0.008966 0.013179 +4 0.122236 0.843445 0.008368 0.015451 +4 0.138673 0.408089 0.008368 0.015451 +4 0.128063 0.380141 0.009863 0.015905 +4 0.119695 0.371961 0.009863 0.014997 +4 0.137926 0.370143 0.010460 0.014997 +4 0.129408 0.501477 0.008966 0.014997 +4 0.120143 0.492843 0.008368 0.015905 +4 0.138075 0.489661 0.008368 0.015905 +4 0.245666 0.147694 0.008966 0.015905 +4 0.237298 0.140877 0.008966 0.014088 +1 0.210102 0.189048 0.004782 0.020450 +4 0.122385 0.892070 0.009265 0.015451 +4 0.121040 0.533288 0.008966 0.015905 +1 0.679020 0.906385 0.004782 0.009543 +5 0.131949 0.851965 0.009265 0.015678 +4 0.139868 0.841513 0.008966 0.015678 +4 0.120592 0.583617 0.009265 0.015678 +4 0.128213 0.589752 0.008966 0.015678 +4 0.236850 0.272552 0.009265 0.015678 +4 0.244471 0.277778 0.008966 0.015678 +4 0.212044 0.231425 0.009265 0.015678 +4 0.225941 0.228925 0.008966 0.015678 +4 0.120592 0.410702 0.009265 0.015678 +4 0.128213 0.417064 0.008966 0.015678 +5 0.488494 0.044422 0.009265 0.015678 +3 0.501195 0.038514 0.008966 0.015678 +4 0.211447 0.112588 0.009265 0.015678 +4 0.217274 0.109634 0.008966 0.015678 +3 0.192170 0.222790 0.005380 0.015678 +3 0.192170 0.244376 0.005380 0.015678 +3 0.194112 0.228698 0.009265 0.015678 +4 0.236551 0.183708 0.009265 0.015678 +4 0.246115 0.191888 0.009265 0.015678 +4 0.255828 0.181436 0.008966 0.015678 +4 0.210849 0.151670 0.009265 0.015678 +3 0.224148 0.147807 0.008966 0.015678 +4 0.237149 0.221881 0.009265 0.015678 +4 0.245816 0.229152 0.009265 0.015678 +4 0.254632 0.218928 0.008966 0.015678 +4 0.129558 0.538400 0.009265 0.015678 +4 0.137179 0.532265 0.008966 0.015678 \ No newline at end of file diff --git a/data_dataset/dvo/debug/debug_9.jpg b/data_dataset/dvo/debug/debug_9.jpg new file mode 100644 index 0000000..a7750f4 Binary files /dev/null and b/data_dataset/dvo/debug/debug_9.jpg differ diff --git a/data_dataset/dvo/debug/debug_9.txt b/data_dataset/dvo/debug/debug_9.txt new file mode 100644 index 0000000..454f9e1 --- /dev/null +++ b/data_dataset/dvo/debug/debug_9.txt @@ -0,0 +1,716 @@ +10 0.573609 0.944748 0.005984 0.002729 +10 0.868342 0.935880 0.011370 0.005002 +10 0.777977 0.935880 0.011370 0.005002 +6 0.674446 0.938495 0.010174 0.017963 +6 0.385398 0.938267 0.010174 0.017508 +6 0.288450 0.938495 0.008977 0.017963 +6 0.707660 0.937585 0.009575 0.018872 +6 0.593656 0.937131 0.010174 0.018872 +6 0.486535 0.937358 0.010174 0.018417 +10 0.778276 0.893588 0.011969 0.005002 +6 0.675943 0.896430 0.009575 0.017508 +6 0.842908 0.895975 0.009575 0.018417 +6 0.708259 0.895748 0.009575 0.017963 +6 0.896469 0.895521 0.010174 0.017508 +6 0.385697 0.895521 0.009575 0.017508 +6 0.288749 0.895293 0.009575 0.017963 +6 0.595153 0.894156 0.010772 0.017508 +6 0.487133 0.894611 0.010174 0.018417 +9 0.288151 0.854707 0.007181 0.021828 +8 0.778875 0.850955 0.011969 0.006594 +9 0.644225 0.862324 0.009575 0.030241 +8 0.565530 0.851637 0.011370 0.008868 +6 0.843806 0.853001 0.010174 0.017053 +6 0.675643 0.853001 0.010174 0.017963 +6 0.708857 0.852547 0.009575 0.017963 +6 0.594255 0.851864 0.010174 0.018417 +8 0.292639 0.854366 0.010174 0.022510 +9 0.384800 0.850045 0.007780 0.031151 +10 0.386296 0.837426 0.005984 0.002729 +9 0.338420 0.851410 0.009575 0.038427 +9 0.437163 0.848681 0.008378 0.043884 +8 0.871634 0.805935 0.011969 0.006594 +10 0.780670 0.805821 0.011969 0.005002 +8 0.566128 0.806162 0.011370 0.007049 +9 0.405147 0.804684 0.004189 0.019554 +6 0.708857 0.807754 0.009575 0.017508 +6 0.676840 0.807981 0.010174 0.017963 +6 0.287852 0.807754 0.010174 0.017508 +6 0.595153 0.807981 0.009575 0.017053 +10 0.213345 0.800136 0.008378 0.002729 +6 0.288450 0.763870 0.010174 0.017963 +10 0.209755 0.698499 0.011969 0.005002 +8 0.657690 0.697704 0.012567 0.006594 +7 0.433573 0.697931 0.011969 0.007958 +6 0.782166 0.699750 0.010174 0.017963 +6 0.333932 0.699523 0.010174 0.019327 +6 0.565530 0.698613 0.010174 0.018417 +8 0.400359 0.668372 0.013764 0.009777 +10 0.163974 0.667462 0.006583 0.002046 +10 0.389288 0.656889 0.005984 0.002729 +7 0.703770 0.657458 0.011370 0.013415 +7 0.480850 0.657458 0.011969 0.013415 +7 0.251346 0.657458 0.011370 0.013415 +6 0.781867 0.655866 0.009575 0.018417 +9 0.549372 0.649500 0.006583 0.029332 +8 0.657092 0.611073 0.011370 0.007958 +8 0.209455 0.611073 0.011370 0.007049 +7 0.433872 0.610618 0.011370 0.007049 +6 0.565829 0.612210 0.009575 0.018417 +6 0.333633 0.611755 0.009575 0.017508 +7 0.704668 0.571055 0.011969 0.014325 +7 0.481149 0.570828 0.012567 0.012960 +7 0.251945 0.570828 0.012567 0.013870 +10 0.567026 0.561164 0.007181 0.002274 +9 0.915021 0.569350 0.007780 0.021828 +9 0.396170 0.567190 0.008977 0.025693 +8 0.358767 0.565371 0.009575 0.023874 +6 0.624177 0.525807 0.010174 0.018417 +6 0.566427 0.526035 0.009575 0.018872 +10 0.388390 0.517508 0.006583 0.002274 +10 0.333932 0.517508 0.007780 0.002274 +8 0.648115 0.462824 0.012567 0.007049 +8 0.763315 0.462369 0.013166 0.007049 +9 0.415919 0.471237 0.008977 0.024784 +10 0.308498 0.461119 0.005984 0.002274 +6 0.557750 0.465553 0.010174 0.017963 +6 0.223220 0.464643 0.010174 0.017963 +6 0.447337 0.463961 0.009575 0.018417 +6 0.524536 0.464188 0.009575 0.018872 +6 0.338420 0.463961 0.009575 0.018417 +10 0.406044 0.441905 0.009575 0.002046 +8 0.649013 0.423943 0.011969 0.006594 +10 0.309695 0.422237 0.005984 0.001819 +8 0.763315 0.423261 0.011969 0.007049 +6 0.557750 0.425080 0.010174 0.018872 +6 0.523639 0.425080 0.010174 0.018872 +7 0.762717 0.383697 0.011969 0.007958 +8 0.647217 0.383015 0.011969 0.006594 +6 0.557750 0.384607 0.010174 0.017963 +6 0.895871 0.383925 0.010174 0.019327 +6 0.523938 0.384607 0.009575 0.018872 +10 0.225913 0.355844 0.005984 0.002729 +8 0.763914 0.342769 0.011969 0.007049 +7 0.244764 0.345725 0.011370 0.012051 +6 0.674446 0.344588 0.010174 0.017963 +6 0.641532 0.344816 0.010174 0.018417 +6 0.523639 0.344588 0.010174 0.017963 +10 0.620586 0.334015 0.006583 0.002729 +9 0.581089 0.339131 0.007780 0.023420 +9 0.892280 0.315371 0.004189 0.016371 +9 0.801317 0.306730 0.005386 0.025011 +6 0.558049 0.304798 0.009575 0.018417 +6 0.607121 0.304343 0.010772 0.018417 +10 0.462298 0.294907 0.008378 0.003638 +10 0.686715 0.293088 0.007181 0.004548 +9 0.645123 0.257958 0.004189 0.022055 +10 0.676840 0.248977 0.007780 0.002729 +6 0.704668 0.251819 0.009575 0.018872 +6 0.903651 0.251819 0.010174 0.017053 +6 0.804010 0.251819 0.009575 0.017963 +6 0.314482 0.252046 0.009575 0.018417 +6 0.505984 0.251819 0.009575 0.018872 +10 0.692998 0.231241 0.007780 0.004548 +10 0.918612 0.217144 0.006583 0.002729 +10 0.296230 0.217144 0.006583 0.002729 +10 0.258827 0.215780 0.005984 0.003638 +10 0.751346 0.207367 0.005984 0.002274 +7 0.521245 0.208845 0.012567 0.008413 +6 0.314782 0.210437 0.010174 0.018872 +9 0.409635 0.206799 0.009575 0.018872 +9 0.558947 0.204297 0.013764 0.032060 +10 0.558648 0.170305 0.005984 0.003638 +10 0.216338 0.163483 0.005984 0.002729 +7 0.521245 0.164734 0.012567 0.012960 +10 0.190604 0.161437 0.005984 0.004093 +10 0.189408 0.158026 0.007181 0.002729 +9 0.161580 0.164393 0.008977 0.017735 +10 0.552663 0.154388 0.005984 0.002729 +6 0.314183 0.161778 0.010174 0.018872 +9 0.356074 0.162688 0.011370 0.022510 +10 0.463794 0.150864 0.010174 0.002046 +10 0.684321 0.148477 0.007181 0.002729 +10 0.873429 0.146658 0.005984 0.002729 +10 0.921903 0.114825 0.007181 0.004548 +8 0.723220 0.115166 0.010772 0.009322 +7 0.822861 0.116075 0.011370 0.012960 +6 0.506284 0.115848 0.010174 0.017963 +6 0.313884 0.114939 0.009575 0.018872 +10 0.693896 0.088449 0.009575 0.002729 +10 0.598444 0.082083 0.008977 0.004548 +10 0.388091 0.081173 0.008378 0.002729 +9 0.125972 0.072533 0.008378 0.018190 +10 0.093058 0.073897 0.005984 0.003638 +10 0.662777 0.067303 0.009575 0.003183 +10 0.621185 0.067076 0.007780 0.003638 +10 0.863854 0.066166 0.007181 0.002729 +10 0.292938 0.057981 0.007181 0.001819 +11 0.212148 0.950773 0.009575 0.005684 +17 0.322412 0.947135 0.003890 0.003865 +13 0.322711 0.770009 0.004488 0.009322 +13 0.322561 0.756480 0.005984 0.005457 +11 0.266457 0.942360 0.009276 0.006139 +12 0.542190 0.939177 0.010772 0.007049 +11 0.645272 0.936903 0.009276 0.006139 +17 0.439557 0.936335 0.010174 0.006821 +17 0.340664 0.934629 0.010473 0.007049 +17 0.170706 0.932583 0.010473 0.006594 +17 0.541741 0.913483 0.010473 0.006594 +11 0.542340 0.897112 0.010473 0.006594 +17 0.440006 0.911892 0.010473 0.007049 +18 0.440455 0.893702 0.010772 0.007049 +17 0.339916 0.910073 0.010174 0.006139 +17 0.340365 0.892110 0.009874 0.006594 +12 0.266756 0.899841 0.007481 0.005684 +12 0.266756 0.881878 0.009874 0.006139 +11 0.870886 0.894839 0.009276 0.005684 +11 0.645422 0.894611 0.010174 0.006139 +12 0.212747 0.889836 0.008378 0.005684 +12 0.213196 0.879377 0.009276 0.006594 +12 0.171903 0.889382 0.010473 0.006594 +12 0.171454 0.879150 0.010772 0.007958 +11 0.212597 0.863006 0.008079 0.005684 +11 0.213345 0.855389 0.009575 0.005912 +17 0.170856 0.862779 0.008378 0.005230 +17 0.171604 0.854707 0.009874 0.006821 +12 0.401257 0.860050 0.005984 0.003411 +12 0.409934 0.840837 0.008378 0.005912 +12 0.409934 0.846749 0.008378 0.005912 +11 0.267205 0.852547 0.009575 0.005684 +18 0.267205 0.865507 0.009575 0.006139 +18 0.871783 0.856753 0.008677 0.005002 +12 0.871783 0.851751 0.008677 0.005002 +12 0.645272 0.851978 0.008079 0.005457 +12 0.645272 0.857435 0.008079 0.005457 +12 0.386445 0.844816 0.006284 0.004775 +12 0.385996 0.838904 0.007780 0.005684 +11 0.340066 0.836517 0.009276 0.005457 +11 0.340066 0.841974 0.009276 0.005457 +11 0.542938 0.835721 0.008079 0.004775 +12 0.369390 0.836176 0.008677 0.005684 +12 0.369390 0.841860 0.008677 0.005684 +13 0.509276 0.835834 0.009575 0.005912 +13 0.509276 0.841746 0.009575 0.005912 +12 0.487732 0.834357 0.008378 0.005684 +12 0.487732 0.840041 0.008378 0.005684 +11 0.439408 0.831401 0.009276 0.006139 +11 0.439408 0.837540 0.009276 0.006139 +11 0.469928 0.830946 0.008079 0.006139 +12 0.469928 0.837085 0.008079 0.006139 +11 0.646469 0.815030 0.009276 0.006139 +11 0.267205 0.807526 0.008378 0.005684 +11 0.500748 0.805025 0.006284 0.003411 +12 0.508677 0.794566 0.008977 0.006139 +18 0.240126 0.804798 0.008079 0.005684 +12 0.213046 0.802524 0.009575 0.005684 +12 0.196439 0.800250 0.009276 0.006594 +13 0.410383 0.799568 0.009874 0.006139 +11 0.170706 0.797522 0.009276 0.006594 +12 0.386744 0.796839 0.009276 0.006139 +12 0.369390 0.794566 0.008079 0.006139 +11 0.339767 0.794338 0.008677 0.006594 +12 0.487882 0.791837 0.009276 0.007049 +12 0.471724 0.789563 0.009276 0.006139 +11 0.441053 0.788654 0.008977 0.006139 +12 0.541891 0.785925 0.007780 0.006139 +18 0.542938 0.829127 0.009276 0.006139 +12 0.871185 0.774898 0.009874 0.005912 +12 0.884650 0.772055 0.009276 0.005684 +12 0.858468 0.772283 0.009575 0.006139 +12 0.898115 0.769782 0.009874 0.005684 +12 0.844853 0.769668 0.009874 0.006367 +12 0.911580 0.766826 0.009276 0.006139 +12 0.820018 0.766826 0.009276 0.006139 +12 0.807002 0.764552 0.009575 0.006139 +12 0.792938 0.761824 0.008977 0.006139 +11 0.402753 0.760573 0.005386 0.004548 +12 0.410084 0.749545 0.009276 0.006139 +12 0.781119 0.759550 0.009276 0.006139 +13 0.766756 0.756821 0.009276 0.006139 +12 0.752693 0.754661 0.009874 0.006367 +13 0.151855 0.752729 0.006284 0.004320 +12 0.725613 0.751819 0.009575 0.006139 +12 0.709904 0.749545 0.009276 0.006139 +13 0.692849 0.747158 0.009874 0.006821 +12 0.387343 0.746135 0.009276 0.007503 +12 0.676990 0.744770 0.008079 0.006594 +13 0.508827 0.743747 0.009276 0.006367 +12 0.369539 0.743861 0.009575 0.006594 +11 0.340066 0.743861 0.009276 0.006594 +11 0.267804 0.743975 0.008977 0.006821 +12 0.488181 0.742042 0.009874 0.007503 +13 0.240126 0.741587 0.009276 0.007503 +12 0.661580 0.741132 0.008378 0.007503 +12 0.647068 0.739541 0.009276 0.006139 +12 0.470527 0.738859 0.009276 0.005684 +12 0.211251 0.739313 0.008977 0.006594 +11 0.439707 0.738631 0.008677 0.006139 +12 0.614452 0.737267 0.009874 0.007049 +12 0.196290 0.737608 0.009575 0.007731 +18 0.170108 0.734993 0.009276 0.006139 +18 0.594704 0.734197 0.009874 0.006367 +12 0.577349 0.731241 0.009874 0.007731 +12 0.537253 0.731128 0.009874 0.008413 +17 0.840664 0.702933 0.009874 0.006594 +12 0.522142 0.701342 0.010174 0.007049 +17 0.288001 0.698727 0.010473 0.006367 +13 0.737133 0.696339 0.011071 0.007049 +17 0.841263 0.678149 0.009874 0.007049 +17 0.841263 0.660186 0.009874 0.006594 +17 0.736685 0.671101 0.010174 0.006594 +17 0.736535 0.652683 0.009874 0.007049 +11 0.407840 0.667235 0.007181 0.003411 +12 0.416367 0.652683 0.009874 0.006139 +11 0.348594 0.663370 0.005984 0.003865 +12 0.357570 0.652683 0.010174 0.006139 +18 0.639138 0.658709 0.004788 0.003638 +11 0.584829 0.657913 0.006882 0.003865 +12 0.593507 0.645066 0.009874 0.006367 +12 0.455566 0.655070 0.007481 0.005457 +12 0.387642 0.655070 0.008079 0.005457 +12 0.163226 0.653138 0.009874 0.006139 +12 0.227259 0.652910 0.009874 0.006594 +12 0.285607 0.650637 0.009276 0.005684 +13 0.187612 0.650864 0.008378 0.006139 +11 0.431329 0.650182 0.008677 0.005684 +12 0.333782 0.650182 0.009874 0.005684 +12 0.689258 0.648136 0.009874 0.006139 +12 0.624028 0.648136 0.009874 0.006139 +11 0.203022 0.648136 0.008677 0.006139 +12 0.318522 0.647453 0.009276 0.006594 +12 0.648414 0.645180 0.009575 0.006594 +11 0.667415 0.643247 0.009276 0.006367 +12 0.565978 0.643361 0.009874 0.006594 +12 0.551765 0.639950 0.007780 0.007049 +11 0.521993 0.640064 0.009276 0.007276 +13 0.916068 0.624375 0.007481 0.005912 +13 0.916517 0.611755 0.009575 0.005230 +17 0.288001 0.622328 0.009276 0.006367 +17 0.288300 0.608799 0.011071 0.007503 +17 0.523489 0.619486 0.009874 0.007049 +17 0.523339 0.606526 0.010174 0.006594 +12 0.807002 0.616758 0.009575 0.005230 +12 0.807002 0.621987 0.009575 0.005230 +12 0.806104 0.604820 0.005386 0.003638 +12 0.783662 0.614029 0.009575 0.005230 +12 0.783662 0.619259 0.009575 0.005230 +12 0.767205 0.611869 0.009575 0.005457 +18 0.767205 0.617326 0.009575 0.005457 +13 0.735937 0.616985 0.009874 0.005230 +13 0.735937 0.611755 0.009874 0.005230 +12 0.894823 0.609254 0.009276 0.005684 +11 0.894524 0.621987 0.008677 0.005684 +11 0.840066 0.606980 0.009874 0.005684 +13 0.841263 0.619259 0.009874 0.006594 +11 0.871783 0.606753 0.009874 0.006139 +12 0.871783 0.619486 0.009874 0.006139 +13 0.504788 0.584357 0.005984 0.004093 +13 0.504339 0.573101 0.006284 0.004320 +11 0.585278 0.578104 0.006583 0.005230 +12 0.593656 0.566053 0.009575 0.005684 +11 0.640784 0.576626 0.005685 0.004093 +12 0.648564 0.565825 0.009874 0.006139 +11 0.909485 0.575489 0.006284 0.003638 +12 0.916367 0.563324 0.008079 0.005684 +12 0.455865 0.576285 0.009874 0.006139 +12 0.389288 0.576285 0.010174 0.006139 +18 0.722023 0.574238 0.005984 0.004775 +13 0.416816 0.573784 0.009575 0.005684 +13 0.357271 0.573897 0.010174 0.005912 +12 0.163076 0.573784 0.009575 0.005684 +11 0.227259 0.573670 0.009874 0.006367 +18 0.797277 0.571396 0.005685 0.003638 +12 0.333782 0.571282 0.009874 0.006139 +11 0.432376 0.570828 0.009575 0.006139 +12 0.286954 0.570828 0.010174 0.006139 +12 0.623579 0.568781 0.008977 0.005684 +12 0.689707 0.568327 0.009575 0.005684 +12 0.318223 0.568327 0.009874 0.005684 +11 0.204069 0.568554 0.009575 0.006139 +12 0.826451 0.563324 0.005386 0.004775 +11 0.666218 0.563552 0.008079 0.006139 +12 0.566727 0.563552 0.007780 0.006139 +18 0.186715 0.560368 0.004788 0.003411 +13 0.187313 0.571282 0.009575 0.006139 +13 0.552813 0.561278 0.009874 0.006139 +12 0.894674 0.560937 0.009575 0.006367 +12 0.806254 0.560823 0.009874 0.006139 +11 0.522591 0.561050 0.010473 0.006594 +12 0.872980 0.558322 0.009874 0.005684 +11 0.840814 0.558322 0.009575 0.005684 +12 0.783662 0.558322 0.009575 0.005684 +12 0.766457 0.557867 0.007481 0.006594 +11 0.736385 0.556503 0.009575 0.006594 +18 0.666517 0.539450 0.009874 0.007958 +17 0.667714 0.512278 0.011071 0.007276 +17 0.287702 0.537858 0.010473 0.006594 +11 0.288001 0.518304 0.009874 0.004775 +17 0.288001 0.523079 0.009874 0.004775 +17 0.288001 0.527854 0.009874 0.004775 +17 0.523190 0.530127 0.009276 0.006594 +17 0.523190 0.512165 0.010473 0.007049 +11 0.798773 0.522738 0.006284 0.003638 +12 0.806553 0.512619 0.008677 0.006139 +11 0.909485 0.522397 0.006284 0.003865 +12 0.916966 0.507617 0.009276 0.006139 +11 0.162926 0.520123 0.009276 0.005684 +11 0.388540 0.519895 0.008079 0.006139 +12 0.333932 0.519895 0.008977 0.006139 +17 0.204668 0.520123 0.010174 0.006594 +17 0.433124 0.519782 0.009874 0.006821 +12 0.784411 0.510005 0.009874 0.007276 +12 0.765859 0.508072 0.008677 0.006139 +11 0.735338 0.508072 0.008677 0.006139 +12 0.897068 0.505002 0.009575 0.007276 +11 0.840664 0.503070 0.009874 0.006139 +12 0.872382 0.502387 0.008677 0.006594 +17 0.847696 0.473511 0.009575 0.006139 +11 0.417115 0.463734 0.007780 0.005684 +11 0.387941 0.463734 0.008079 0.005684 +11 0.308049 0.463506 0.008079 0.005230 +11 0.275883 0.463506 0.007780 0.005230 +11 0.191352 0.463506 0.008677 0.005230 +11 0.494764 0.463734 0.009874 0.006594 +12 0.162926 0.463279 0.009276 0.005684 +13 0.829294 0.434629 0.005087 0.003865 +11 0.448384 0.434629 0.009276 0.005684 +11 0.339767 0.434629 0.009874 0.005684 +18 0.907690 0.431446 0.005087 0.003865 +11 0.224417 0.432128 0.008977 0.006139 +17 0.093208 0.429400 0.005087 0.003411 +11 0.494165 0.429627 0.008677 0.005684 +12 0.433722 0.429400 0.009874 0.006139 +12 0.387642 0.429400 0.009874 0.006139 +12 0.322711 0.429513 0.008079 0.006367 +12 0.276930 0.429172 0.008677 0.005684 +12 0.402454 0.426671 0.008977 0.006139 +12 0.293238 0.426671 0.009575 0.006139 +12 0.162926 0.426671 0.010473 0.006139 +12 0.207660 0.426444 0.010174 0.006594 +17 0.100838 0.427126 0.007780 0.007958 +12 0.417265 0.424852 0.008079 0.005230 +12 0.308648 0.424625 0.008677 0.004775 +12 0.177289 0.424397 0.009276 0.006139 +12 0.191652 0.421896 0.009276 0.005684 +12 0.916667 0.419168 0.009276 0.005684 +12 0.895422 0.416212 0.008079 0.006139 +12 0.846499 0.416439 0.008977 0.006594 +12 0.877917 0.413711 0.008977 0.005684 +11 0.494016 0.400182 0.009575 0.005912 +17 0.388540 0.399841 0.010473 0.007049 +17 0.277379 0.399613 0.010772 0.006594 +17 0.165470 0.398704 0.005386 0.004775 +17 0.847397 0.391769 0.008977 0.006367 +17 0.846798 0.381878 0.009575 0.006594 +11 0.102035 0.392565 0.004788 0.007958 +11 0.908887 0.356867 0.006284 0.003865 +12 0.916667 0.346066 0.008677 0.005912 +13 0.829593 0.356526 0.005685 0.004093 +12 0.626272 0.357094 0.009575 0.006139 +11 0.494315 0.357094 0.010174 0.006139 +17 0.388241 0.356639 0.009874 0.007049 +17 0.277528 0.356639 0.009874 0.007049 +12 0.225165 0.353911 0.009276 0.006139 +17 0.163525 0.353683 0.010473 0.006594 +12 0.608468 0.351864 0.009874 0.006594 +12 0.574656 0.346749 0.009276 0.006367 +12 0.846649 0.343906 0.009874 0.005230 +12 0.895721 0.343679 0.009874 0.005684 +12 0.557899 0.341633 0.009276 0.006139 +12 0.878965 0.341064 0.009874 0.005912 +12 0.692101 0.316621 0.009575 0.006139 +12 0.461550 0.316735 0.009276 0.006367 +12 0.352334 0.316621 0.008677 0.006139 +13 0.540245 0.316394 0.009874 0.006594 +12 0.244614 0.316166 0.008677 0.006139 +12 0.675344 0.311619 0.009575 0.006139 +12 0.448833 0.311619 0.009575 0.006139 +12 0.721275 0.311164 0.009276 0.006139 +12 0.525135 0.311392 0.009575 0.006594 +12 0.339467 0.311164 0.009276 0.006139 +12 0.224566 0.308663 0.008079 0.005684 +17 0.847546 0.308436 0.010473 0.006139 +11 0.848444 0.297749 0.011071 0.006594 +18 0.847546 0.316394 0.010473 0.006594 +12 0.657391 0.306389 0.009575 0.005684 +12 0.772142 0.306162 0.009276 0.006139 +12 0.509575 0.306162 0.009575 0.006139 +12 0.433423 0.306276 0.009276 0.006367 +12 0.387642 0.306276 0.008677 0.006367 +12 0.275733 0.306162 0.008677 0.006139 +12 0.739078 0.305935 0.008977 0.006594 +12 0.322113 0.305935 0.009276 0.006594 +12 0.402603 0.303774 0.008677 0.005912 +12 0.291592 0.303433 0.008079 0.006139 +12 0.206613 0.303206 0.008079 0.005684 +12 0.162029 0.303206 0.008677 0.005684 +12 0.641981 0.301160 0.009874 0.006139 +12 0.494464 0.301160 0.009276 0.006139 +12 0.756583 0.300932 0.010473 0.006594 +12 0.417564 0.300932 0.009874 0.006594 +12 0.307750 0.300819 0.009276 0.006367 +12 0.177289 0.300591 0.009276 0.005912 +12 0.806852 0.298431 0.009276 0.006139 +12 0.897068 0.298090 0.009575 0.006367 +12 0.190754 0.297863 0.008677 0.005912 +12 0.790096 0.296157 0.009276 0.006139 +17 0.556104 0.259322 0.010473 0.007049 +11 0.358468 0.258413 0.010174 0.007049 +11 0.779025 0.251364 0.009874 0.005684 +11 0.751496 0.251364 0.009874 0.005684 +11 0.677289 0.251364 0.008677 0.005684 +11 0.649461 0.251364 0.008079 0.005684 +11 0.879264 0.251023 0.009276 0.005912 +11 0.849791 0.251137 0.009575 0.006139 +11 0.478905 0.251137 0.009276 0.006139 +11 0.452424 0.251137 0.008977 0.006139 +11 0.282914 0.250682 0.008677 0.006139 +11 0.256433 0.250796 0.008378 0.006367 +17 0.163375 0.249886 0.010174 0.006367 +11 0.207510 0.223511 0.006284 0.003638 +13 0.215889 0.208618 0.008677 0.005684 +12 0.722472 0.220441 0.009276 0.005684 +12 0.821215 0.219986 0.009276 0.005684 +12 0.918312 0.219532 0.007780 0.005684 +12 0.297726 0.219532 0.009575 0.005684 +12 0.805206 0.214984 0.009575 0.005684 +12 0.705117 0.214984 0.009276 0.005684 +12 0.506134 0.214984 0.008677 0.005684 +12 0.905446 0.214529 0.009575 0.005684 +13 0.282914 0.214302 0.009874 0.006139 +12 0.257181 0.214075 0.008677 0.005684 +12 0.270347 0.211687 0.009874 0.006367 +12 0.229653 0.211346 0.009874 0.006594 +18 0.100389 0.213961 0.008677 0.005912 +17 0.095003 0.213961 0.008677 0.005912 +12 0.848743 0.209754 0.009276 0.005230 +12 0.791891 0.209982 0.008079 0.005684 +12 0.750598 0.209982 0.008079 0.005684 +12 0.690156 0.209982 0.008079 0.005684 +12 0.649461 0.209982 0.008079 0.005684 +12 0.491771 0.209868 0.008677 0.005457 +12 0.451975 0.209868 0.008079 0.005457 +12 0.892430 0.209413 0.009276 0.006367 +12 0.765260 0.207367 0.008677 0.005912 +12 0.863704 0.206912 0.009276 0.005912 +12 0.663824 0.207253 0.009276 0.006594 +12 0.622232 0.207140 0.009874 0.006367 +12 0.465141 0.207026 0.008079 0.006139 +12 0.423998 0.207026 0.008977 0.006139 +12 0.203022 0.206344 0.008079 0.005684 +12 0.676840 0.204866 0.008378 0.005457 +12 0.878665 0.204525 0.008677 0.005684 +12 0.778127 0.204525 0.008079 0.005684 +12 0.609665 0.204638 0.009874 0.005912 +12 0.479204 0.204525 0.008677 0.005684 +12 0.410832 0.204525 0.007780 0.005684 +12 0.189557 0.203843 0.007481 0.005230 +12 0.162328 0.203615 0.008079 0.005684 +13 0.595751 0.201796 0.009575 0.006594 +13 0.398564 0.201796 0.009575 0.006594 +12 0.177588 0.201114 0.009874 0.006139 +12 0.582136 0.199295 0.009276 0.006139 +12 0.553112 0.199295 0.009276 0.006139 +12 0.385248 0.199295 0.009874 0.006139 +12 0.357121 0.199068 0.009874 0.006594 +12 0.568372 0.196339 0.008677 0.006594 +12 0.372083 0.196112 0.008677 0.007049 +12 0.721873 0.178035 0.009276 0.006367 +12 0.918761 0.177581 0.009276 0.006367 +12 0.821215 0.177467 0.009276 0.007049 +17 0.416367 0.176216 0.004488 0.004548 +17 0.425494 0.164052 0.009575 0.006594 +12 0.298025 0.176899 0.009575 0.005912 +12 0.804458 0.172578 0.009276 0.005457 +17 0.813884 0.148363 0.007181 0.002501 +12 0.704967 0.172465 0.008977 0.005230 +12 0.505835 0.172010 0.009276 0.005230 +12 0.904847 0.172010 0.010174 0.006139 +11 0.093507 0.170873 0.004488 0.003865 +12 0.282615 0.171328 0.009276 0.005684 +12 0.257032 0.171328 0.009575 0.005684 +12 0.270646 0.168827 0.008677 0.006139 +12 0.649611 0.167349 0.008378 0.005002 +12 0.228905 0.168258 0.008977 0.006821 +12 0.891233 0.167121 0.009276 0.005457 +12 0.849342 0.167235 0.009276 0.005684 +12 0.791891 0.167235 0.009276 0.005684 +12 0.751197 0.167462 0.009276 0.006139 +12 0.690006 0.167462 0.008977 0.006139 +12 0.492669 0.167008 0.009276 0.006139 +12 0.452274 0.166553 0.008677 0.006139 +12 0.215889 0.166098 0.008677 0.006139 +12 0.765859 0.164848 0.009874 0.006367 +12 0.663674 0.164734 0.010174 0.006139 +12 0.621933 0.164279 0.009276 0.006139 +12 0.466637 0.164279 0.009874 0.006139 +12 0.864004 0.164052 0.009874 0.006594 +12 0.779623 0.162233 0.009874 0.005684 +12 0.678187 0.162233 0.009276 0.005684 +13 0.203621 0.162801 0.009276 0.006821 +12 0.878965 0.161551 0.009874 0.006139 +13 0.609665 0.161778 0.009874 0.006594 +12 0.479803 0.161551 0.008677 0.006139 +12 0.412178 0.161096 0.007481 0.006139 +12 0.189408 0.160073 0.008378 0.005912 +12 0.163226 0.160073 0.007481 0.005912 +12 0.595452 0.159050 0.009575 0.006594 +12 0.398115 0.158595 0.009276 0.006594 +12 0.177588 0.157685 0.008677 0.006594 +11 0.553561 0.156776 0.007780 0.005684 +12 0.580940 0.156321 0.008677 0.005684 +13 0.384500 0.156321 0.007780 0.005684 +12 0.356373 0.156094 0.008378 0.005230 +12 0.568671 0.154047 0.009276 0.006594 +13 0.371484 0.153593 0.008677 0.006594 +17 0.163674 0.134379 0.010174 0.007276 +17 0.162627 0.121078 0.009874 0.007049 +11 0.479803 0.130514 0.008677 0.005912 +11 0.479803 0.136426 0.008677 0.005912 +11 0.453471 0.129945 0.009874 0.005230 +11 0.453471 0.135175 0.009874 0.005230 +17 0.555955 0.130400 0.010174 0.006594 +17 0.557899 0.118577 0.005087 0.003865 +17 0.358019 0.129945 0.010473 0.005684 +17 0.358618 0.119031 0.009276 0.006594 +11 0.282615 0.129604 0.009276 0.005912 +11 0.282615 0.135516 0.009276 0.005912 +11 0.256583 0.129377 0.008677 0.006367 +11 0.256583 0.135744 0.008677 0.006367 +17 0.751795 0.123124 0.010473 0.006594 +11 0.704668 0.122897 0.009575 0.006139 +17 0.650658 0.122669 0.010473 0.006594 +12 0.905147 0.121987 0.009575 0.006139 +12 0.804608 0.122101 0.008378 0.006367 +17 0.850239 0.121191 0.009874 0.006367 +18 0.135697 0.098568 0.007481 0.004775 +17 0.722771 0.087085 0.009874 0.006367 +12 0.520197 0.086971 0.009276 0.006139 +11 0.917864 0.086517 0.009874 0.006139 +11 0.821963 0.086630 0.009575 0.006367 +12 0.327199 0.085721 0.009874 0.006367 +12 0.314333 0.085493 0.010473 0.006821 +12 0.299072 0.080377 0.009874 0.006594 +12 0.704817 0.076967 0.008677 0.006139 +12 0.805057 0.076285 0.009276 0.006594 +12 0.506433 0.076398 0.009276 0.006821 +12 0.905296 0.075830 0.009874 0.006594 +12 0.282765 0.075034 0.008378 0.005912 +12 0.256284 0.075261 0.009276 0.006367 +12 0.269449 0.072306 0.008079 0.005002 +12 0.228606 0.071965 0.008977 0.006139 +12 0.750299 0.071510 0.009874 0.006139 +12 0.691053 0.071737 0.009874 0.006594 +12 0.649761 0.071737 0.009874 0.006594 +13 0.492819 0.071623 0.009575 0.006367 +12 0.451526 0.071623 0.008977 0.006367 +12 0.891532 0.070941 0.008677 0.005912 +12 0.849641 0.071055 0.009874 0.006139 +12 0.792340 0.071282 0.009575 0.006594 +13 0.662926 0.069463 0.008677 0.005684 +13 0.621634 0.069236 0.007481 0.006139 +12 0.465141 0.069009 0.008079 0.005684 +13 0.216188 0.069350 0.008677 0.006367 +12 0.863405 0.068440 0.007481 0.005457 +12 0.764811 0.068781 0.008378 0.006139 +13 0.424297 0.068554 0.007181 0.005684 +13 0.202274 0.066735 0.007181 0.005684 +12 0.678187 0.066735 0.009276 0.006594 +12 0.609515 0.066735 0.008977 0.006594 +13 0.779025 0.066166 0.009874 0.006367 +12 0.479054 0.066280 0.009575 0.006594 +13 0.879264 0.065598 0.009276 0.006139 +12 0.412777 0.065825 0.008677 0.006594 +12 0.190604 0.064461 0.009575 0.006594 +12 0.162328 0.064234 0.009276 0.006139 +12 0.068073 0.063211 0.005087 0.004093 +12 0.595601 0.064120 0.009276 0.006821 +12 0.399312 0.063324 0.009276 0.006139 +12 0.177588 0.061278 0.008677 0.005684 +13 0.385248 0.061164 0.008677 0.006367 +11 0.554010 0.060823 0.008677 0.006594 +11 0.356822 0.060709 0.008079 0.006367 +13 0.568821 0.058549 0.008977 0.007503 +11 0.571065 0.079809 0.008677 0.005457 +13 0.581089 0.061505 0.008378 0.006139 +13 0.372681 0.058322 0.008677 0.007049 +0 0.095601 0.614484 0.023040 0.023420 +1 0.092011 0.111755 0.023040 0.042974 +2 0.092908 0.657003 0.018851 0.019327 +2 0.093507 0.701342 0.018851 0.019782 +1 0.094105 0.345498 0.022442 0.040246 +1 0.094704 0.806617 0.022442 0.033879 +2 0.092908 0.465325 0.018851 0.020691 +1 0.095003 0.852547 0.023040 0.033879 +1 0.092908 0.301842 0.022442 0.033879 +4 0.159934 0.854138 0.009276 0.014325 +1 0.705715 0.618577 0.016457 0.027058 +4 0.885847 0.504206 0.009276 0.016598 +2 0.092908 0.251364 0.020048 0.020236 +4 0.883453 0.609709 0.009276 0.015689 +2 0.804159 0.423943 0.014662 0.016144 +1 0.094405 0.527399 0.023040 0.040246 +0 0.095003 0.566962 0.023040 0.031151 +1 0.095003 0.764779 0.021843 0.040246 +4 0.160533 0.877785 0.009276 0.014325 +4 0.120736 0.845725 0.008677 0.012960 +4 0.232645 0.804798 0.013465 0.016598 +4 0.230251 0.741360 0.011071 0.016144 +2 0.093357 0.939745 0.017953 0.019554 +4 0.120886 0.605503 0.008378 0.013188 +4 0.137642 0.602547 0.008378 0.012733 +4 0.128665 0.899272 0.008378 0.014097 +4 0.120287 0.891996 0.008378 0.013188 +4 0.137343 0.887449 0.008977 0.013188 +4 0.128366 0.807412 0.008977 0.015007 +4 0.121484 0.799227 0.008378 0.014097 +0 0.137044 0.795134 0.008378 0.013188 +0 0.127169 0.301728 0.008977 0.013188 +4 0.119090 0.296726 0.008378 0.014097 +4 0.135548 0.291951 0.008977 0.014552 +4 0.127169 0.256025 0.008977 0.013643 +4 0.118193 0.247158 0.008977 0.015916 +4 0.135548 0.243975 0.008977 0.015916 +4 0.128965 0.660982 0.008977 0.012278 +4 0.120886 0.653024 0.008378 0.014552 +4 0.137642 0.650068 0.008378 0.015916 +4 0.128067 0.343111 0.008378 0.015007 +4 0.119988 0.335607 0.007780 0.015462 +4 0.135548 0.331514 0.008977 0.014552 +1 0.085577 0.161437 0.007181 0.022738 +4 0.121185 0.934970 0.007780 0.012733 +4 0.119988 0.377899 0.008977 0.015462 +1 0.084680 0.420191 0.005386 0.022738 +4 0.128665 0.568668 0.008378 0.015916 +4 0.120886 0.560709 0.008378 0.015462 +4 0.136445 0.556389 0.009575 0.015007 +4 0.128665 0.704411 0.008378 0.015462 +4 0.120886 0.696226 0.008378 0.016371 +4 0.137044 0.693497 0.008378 0.016371 +4 0.119689 0.517281 0.008378 0.015916 +1 0.087074 0.385402 0.008977 0.022283 +4 0.127169 0.468849 0.008977 0.015462 +4 0.119689 0.459982 0.008378 0.014097 +4 0.135847 0.457708 0.008378 0.015916 +5 0.086924 0.201683 0.009276 0.015916 +4 0.128516 0.385857 0.009276 0.015916 +4 0.136146 0.375398 0.008977 0.015916 +4 0.127917 0.524102 0.009276 0.015916 +4 0.135548 0.513643 0.008977 0.015916 +4 0.121035 0.755571 0.009276 0.015916 +4 0.129114 0.762392 0.009276 0.015916 +4 0.137343 0.751251 0.008977 0.015916 +5 0.119838 0.429513 0.009276 0.015916 +4 0.127319 0.420418 0.009276 0.015916 +4 0.134949 0.428604 0.008977 0.015916 +5 0.099641 0.894497 0.008977 0.015916 +4 0.118642 0.216689 0.009276 0.015916 +4 0.127020 0.204866 0.009276 0.015916 +4 0.135548 0.211232 0.008977 0.015916 +4 0.119240 0.154388 0.009276 0.015916 +4 0.127319 0.162574 0.009276 0.015916 +4 0.135548 0.151432 0.008977 0.015916 +3 0.120437 0.108004 0.009276 0.015916 +4 0.127768 0.112096 0.008977 0.015916 +4 0.086326 0.074807 0.009276 0.015916 +5 0.099042 0.070259 0.008977 0.015916 \ No newline at end of file diff --git a/data_dataset/dvo/dvo.pdf b/data_dataset/dvo/dvo.pdf new file mode 100644 index 0000000..f60f0f4 Binary files /dev/null and b/data_dataset/dvo/dvo.pdf differ diff --git a/data_dataset/mosz/debug/debug_1.jpg b/data_dataset/mosz/debug/debug_1.jpg new file mode 100644 index 0000000..4d4b8b1 Binary files /dev/null and b/data_dataset/mosz/debug/debug_1.jpg differ diff --git a/data_dataset/mosz/debug/debug_1.txt b/data_dataset/mosz/debug/debug_1.txt new file mode 100644 index 0000000..0ac7f8e --- /dev/null +++ b/data_dataset/mosz/debug/debug_1.txt @@ -0,0 +1,333 @@ +7 0.176102 0.864510 0.013131 0.016738 +7 0.528451 0.863040 0.013423 0.015607 +7 0.648381 0.863266 0.012839 0.015607 +10 0.818208 0.858855 0.012839 0.006333 +7 0.348993 0.790658 0.012839 0.014703 +7 0.175810 0.790771 0.012547 0.015834 +8 0.519842 0.793146 0.015465 0.021488 +10 0.829880 0.708211 0.014006 0.005881 +7 0.769186 0.709907 0.012839 0.015607 +6 0.795156 0.708550 0.011088 0.023298 +10 0.394222 0.628365 0.013423 0.006333 +7 0.440327 0.630061 0.012256 0.015607 +6 0.367960 0.629382 0.011088 0.023750 +10 0.437409 0.570459 0.009921 0.004976 +7 0.175664 0.557001 0.012839 0.015607 +10 0.833674 0.473762 0.013423 0.006107 +7 0.543332 0.475345 0.012839 0.015607 +7 0.782900 0.475684 0.013423 0.015834 +6 0.805953 0.474440 0.010505 0.023750 +9 0.592063 0.460077 0.014590 0.031667 +7 0.228042 0.247342 0.013715 0.016512 +13 0.333090 0.876612 0.010213 0.007012 +13 0.364021 0.876612 0.010213 0.007464 +13 0.478115 0.876159 0.010797 0.007464 +13 0.421068 0.873332 0.009921 0.006786 +13 0.389991 0.873219 0.009629 0.007012 +12 0.261015 0.870618 0.010797 0.007691 +13 0.447476 0.869939 0.010213 0.007238 +11 0.212868 0.867677 0.010213 0.006786 +12 0.296907 0.867338 0.010213 0.007012 +12 0.613219 0.853992 0.009629 0.007012 +12 0.612635 0.843587 0.010797 0.007012 +11 0.565071 0.853879 0.010213 0.007238 +11 0.564780 0.843927 0.010797 0.007238 +12 0.732857 0.847093 0.010797 0.006786 +12 0.732857 0.853879 0.010797 0.006786 +11 0.684418 0.846980 0.010797 0.007012 +11 0.684418 0.853992 0.010797 0.007012 +13 0.848264 0.802873 0.011088 0.007464 +13 0.827546 0.796313 0.010505 0.007464 +13 0.762037 0.792920 0.010213 0.007464 +11 0.476656 0.790093 0.010797 0.007238 +13 0.807704 0.789867 0.010505 0.007238 +13 0.695798 0.789867 0.010213 0.007238 +11 0.444850 0.787152 0.010213 0.007238 +13 0.423840 0.787152 0.010213 0.007238 +13 0.781733 0.786813 0.011088 0.007012 +13 0.715932 0.786700 0.010797 0.007238 +11 0.304640 0.784099 0.011088 0.007012 +13 0.735775 0.783420 0.010797 0.007464 +13 0.669536 0.783420 0.010213 0.007464 +13 0.251970 0.781158 0.010797 0.007012 +12 0.556901 0.780706 0.010213 0.006560 +11 0.272687 0.781158 0.010213 0.007464 +13 0.623869 0.780480 0.010505 0.006560 +13 0.644004 0.777087 0.010505 0.007464 +12 0.577035 0.770866 0.010797 0.006786 +13 0.604173 0.770640 0.010213 0.006786 +13 0.404289 0.770753 0.010797 0.007464 +11 0.372483 0.768039 0.010213 0.007464 +13 0.231544 0.765325 0.010797 0.007012 +11 0.200029 0.762158 0.010797 0.007464 +12 0.612781 0.735241 0.010505 0.007464 +12 0.236650 0.732866 0.009921 0.007238 +12 0.236504 0.720086 0.009629 0.007012 +11 0.504669 0.729247 0.010213 0.007238 +12 0.448060 0.726193 0.010213 0.007464 +11 0.541144 0.725854 0.010797 0.007691 +13 0.695506 0.722913 0.010213 0.007238 +12 0.583163 0.722687 0.010797 0.007238 +12 0.737526 0.719634 0.010213 0.006560 +13 0.672162 0.719407 0.010213 0.007012 +18 0.178582 0.717485 0.014006 0.006786 +18 0.178144 0.732866 0.014298 0.007691 +12 0.642982 0.716354 0.010797 0.007238 +13 0.372337 0.713753 0.010505 0.006560 +12 0.419025 0.710360 0.010505 0.007464 +12 0.342136 0.710360 0.010797 0.007464 +13 0.395535 0.707306 0.010797 0.007238 +12 0.312081 0.707193 0.010797 0.007012 +11 0.272396 0.704139 0.010797 0.007238 +17 0.234316 0.659692 0.011672 0.007464 +17 0.234024 0.643406 0.011672 0.007464 +12 0.764371 0.652454 0.010797 0.007917 +11 0.729647 0.652115 0.010797 0.007691 +12 0.303181 0.649287 0.009921 0.007917 +11 0.269478 0.646573 0.010213 0.007012 +11 0.340093 0.646347 0.010213 0.007012 +11 0.340093 0.653359 0.010213 0.007012 +12 0.848264 0.646234 0.011088 0.007238 +12 0.704698 0.645895 0.011088 0.007012 +12 0.704698 0.652907 0.011088 0.007012 +12 0.514736 0.646234 0.010505 0.007691 +12 0.514882 0.630174 0.009046 0.007238 +12 0.582725 0.646234 0.011088 0.008143 +12 0.582871 0.630287 0.009629 0.007012 +18 0.178728 0.643633 0.013715 0.007464 +18 0.178144 0.659466 0.014298 0.007464 +18 0.656697 0.649627 0.014298 0.006786 +18 0.656697 0.642841 0.014298 0.006786 +13 0.565217 0.643067 0.010505 0.007238 +13 0.565071 0.626894 0.010213 0.007464 +12 0.490079 0.643067 0.010797 0.007238 +12 0.489495 0.626894 0.009629 0.007464 +13 0.787132 0.643067 0.010797 0.007691 +11 0.461045 0.640240 0.009921 0.007012 +11 0.460899 0.623954 0.009629 0.007012 +12 0.825649 0.639448 0.010797 0.006786 +11 0.825357 0.652680 0.010797 0.007917 +12 0.605924 0.639674 0.010213 0.007238 +13 0.809600 0.636508 0.010213 0.007238 +13 0.543186 0.636394 0.010797 0.007464 +18 0.551940 0.633680 0.010797 0.007464 +12 0.598774 0.572269 0.010505 0.007238 +11 0.598629 0.556435 0.010797 0.007238 +11 0.598191 0.540375 0.009921 0.006786 +12 0.560111 0.562656 0.010797 0.007464 +13 0.750073 0.562316 0.010213 0.007691 +12 0.536913 0.559263 0.010505 0.006560 +13 0.768165 0.559150 0.010213 0.006786 +13 0.816020 0.559036 0.010213 0.007012 +13 0.834111 0.556096 0.010213 0.007012 +12 0.484972 0.556322 0.009921 0.007464 +13 0.798366 0.555983 0.010505 0.007238 +13 0.634958 0.556096 0.010505 0.007464 +13 0.634520 0.540036 0.010213 0.007012 +12 0.514444 0.556209 0.010505 0.007691 +12 0.456522 0.553382 0.010213 0.007012 +12 0.433470 0.549989 0.010797 0.007012 +13 0.852203 0.549649 0.010213 0.007691 +13 0.671287 0.549423 0.010213 0.007238 +12 0.381967 0.547048 0.009921 0.007012 +13 0.713598 0.546709 0.009629 0.006786 +12 0.410563 0.546935 0.010505 0.007238 +13 0.688941 0.546596 0.009921 0.007012 +12 0.342428 0.543429 0.010797 0.007464 +13 0.653195 0.543316 0.010213 0.007691 +13 0.731398 0.542977 0.010213 0.007464 +12 0.319667 0.540602 0.010797 0.007238 +12 0.296615 0.537435 0.010213 0.007691 +12 0.268019 0.537322 0.010213 0.007917 +12 0.244966 0.534608 0.010213 0.007917 +12 0.222206 0.531102 0.010213 0.007238 +12 0.199154 0.528161 0.010797 0.007238 +12 0.760870 0.469351 0.010797 0.007238 +11 0.503793 0.469125 0.010213 0.007238 +11 0.471987 0.466184 0.009629 0.007238 +12 0.400642 0.466184 0.010505 0.007238 +12 0.376568 0.466184 0.010213 0.007238 +12 0.701050 0.465845 0.010213 0.007012 +13 0.453458 0.466071 0.010505 0.007464 +11 0.334549 0.466071 0.010213 0.007464 +12 0.725124 0.462452 0.011088 0.007464 +12 0.425007 0.459625 0.010213 0.007238 +12 0.640356 0.456345 0.010797 0.007012 +12 0.273563 0.456345 0.010213 0.007464 +12 0.176539 0.453517 0.009921 0.007238 +12 0.616282 0.453517 0.010505 0.007691 +12 0.249052 0.453291 0.010213 0.007238 +13 0.664575 0.453404 0.010213 0.007917 +13 0.296907 0.453178 0.010213 0.007464 +13 0.315582 0.449898 0.010213 0.006786 +12 0.224978 0.450011 0.010505 0.007012 +13 0.682375 0.450011 0.010797 0.007464 +12 0.591625 0.450011 0.010213 0.007464 +12 0.567698 0.447071 0.011380 0.007012 +12 0.200613 0.446505 0.010213 0.007691 +12 0.354392 0.411219 0.010213 0.007238 +12 0.287423 0.408279 0.009921 0.007238 +11 0.314707 0.408052 0.010213 0.007238 +13 0.588853 0.407826 0.009921 0.007238 +11 0.176393 0.405112 0.010213 0.007238 +13 0.629268 0.404660 0.010213 0.006786 +13 0.605778 0.404546 0.009921 0.006560 +12 0.259265 0.404660 0.010213 0.006786 +12 0.204114 0.401832 0.010797 0.007012 +12 0.231835 0.401832 0.010213 0.007464 +13 0.646776 0.401606 0.010213 0.007464 +13 0.692588 0.398439 0.009629 0.007012 +13 0.669244 0.398326 0.010213 0.007238 +12 0.560694 0.395273 0.010797 0.007464 +13 0.487744 0.395159 0.010797 0.007238 +13 0.713598 0.394933 0.010797 0.007238 +13 0.730668 0.391653 0.011088 0.007012 +13 0.532098 0.391880 0.010797 0.007464 +13 0.748322 0.388939 0.010797 0.007464 +13 0.470674 0.388826 0.011088 0.007238 +12 0.505252 0.388713 0.010213 0.007464 +13 0.795302 0.385772 0.010213 0.007012 +13 0.771666 0.385546 0.009629 0.007012 +13 0.818646 0.382719 0.010213 0.007238 +12 0.448643 0.382380 0.010213 0.007464 +13 0.835279 0.379891 0.010797 0.007464 +12 0.427050 0.379439 0.010213 0.007012 +13 0.852787 0.376385 0.010797 0.007691 +12 0.405165 0.376159 0.010797 0.007238 +12 0.383280 0.373219 0.010213 0.007691 +12 0.283776 0.337706 0.010213 0.007238 +12 0.283776 0.315200 0.009629 0.007464 +17 0.213452 0.337480 0.009629 0.006786 +11 0.213452 0.314748 0.010213 0.007464 +12 0.189233 0.337706 0.010213 0.007238 +12 0.188941 0.315200 0.010213 0.007464 +13 0.614094 0.333861 0.010213 0.007238 +12 0.725270 0.330581 0.010797 0.007012 +13 0.637438 0.330581 0.010213 0.007012 +12 0.845783 0.327980 0.011380 0.007691 +12 0.696090 0.327754 0.010797 0.007691 +12 0.520718 0.327641 0.011380 0.007464 +12 0.668952 0.327528 0.010213 0.007691 +12 0.822439 0.324700 0.010213 0.007012 +12 0.794135 0.324700 0.010797 0.007012 +12 0.474613 0.324474 0.010213 0.007012 +13 0.591334 0.324135 0.010213 0.007238 +12 0.771228 0.321420 0.010505 0.007238 +13 0.573534 0.321081 0.010797 0.007464 +11 0.543916 0.320968 0.011088 0.007691 +12 0.451415 0.321081 0.010505 0.007917 +12 0.747884 0.318141 0.010505 0.007012 +12 0.417275 0.318141 0.011088 0.007464 +11 0.382842 0.315087 0.010505 0.007238 +12 0.497374 0.314635 0.010797 0.007238 +12 0.359644 0.311807 0.010797 0.007464 +12 0.336884 0.308641 0.010797 0.007464 +12 0.313248 0.305474 0.010213 0.007012 +12 0.807266 0.263176 0.010213 0.007012 +11 0.807558 0.240783 0.010213 0.007464 +12 0.779691 0.263063 0.011088 0.007238 +12 0.779837 0.240783 0.010797 0.007012 +17 0.740735 0.263063 0.010213 0.007238 +11 0.741027 0.240896 0.010213 0.007238 +17 0.658156 0.262950 0.010797 0.007012 +11 0.658448 0.240783 0.010213 0.007012 +11 0.713014 0.262950 0.010797 0.007464 +12 0.713306 0.240670 0.010797 0.007238 +12 0.630435 0.253676 0.010213 0.007012 +12 0.630727 0.240556 0.010213 0.007012 +11 0.567260 0.253563 0.011088 0.007238 +12 0.567698 0.237616 0.010213 0.007012 +12 0.417858 0.247455 0.011088 0.007238 +12 0.418004 0.231283 0.010797 0.007464 +12 0.347534 0.247342 0.010505 0.007012 +12 0.347242 0.231283 0.010505 0.007464 +12 0.285819 0.244289 0.010213 0.006786 +13 0.611905 0.237616 0.011088 0.007464 +13 0.541436 0.237616 0.010213 0.007464 +12 0.496207 0.237503 0.010797 0.007691 +11 0.496498 0.253449 0.010797 0.007012 +13 0.380070 0.234562 0.009629 0.007238 +12 0.379486 0.250735 0.010213 0.007012 +12 0.450978 0.234223 0.010213 0.007012 +12 0.450686 0.250509 0.010213 0.007012 +13 0.522323 0.231056 0.010505 0.007012 +13 0.592501 0.231056 0.010797 0.007464 +12 0.318062 0.228455 0.010505 0.007238 +12 0.318208 0.244176 0.009629 0.007012 +13 0.398453 0.228342 0.010213 0.007464 +11 0.253137 0.225062 0.010213 0.007691 +11 0.253575 0.263289 0.009921 0.007238 +12 0.253429 0.240896 0.010797 0.007691 +1 0.111614 0.320855 0.021885 0.045917 +1 0.147505 0.246437 0.022469 0.045917 +3 0.249052 0.404546 0.007295 0.020131 +3 0.714473 0.330129 0.007879 0.018774 +3 0.306682 0.243949 0.008170 0.019679 +3 0.485702 0.237164 0.007295 0.019679 +4 0.165597 0.404773 0.008462 0.019679 +5 0.165451 0.713753 0.008754 0.016060 +5 0.760578 0.382606 0.008462 0.015607 +5 0.303327 0.404773 0.008462 0.015607 +1 0.112197 0.395046 0.021885 0.045917 +1 0.112781 0.555870 0.021885 0.045465 +5 0.556317 0.234675 0.008462 0.015607 +4 0.274584 0.244628 0.009338 0.019226 +4 0.619055 0.404320 0.008462 0.018774 +3 0.370732 0.546822 0.007879 0.020131 +3 0.276481 0.407939 0.007295 0.019226 +5 0.399621 0.543655 0.008462 0.015607 +5 0.466735 0.872993 0.009046 0.015607 +4 0.368982 0.234675 0.009629 0.018322 +4 0.492705 0.729134 0.009629 0.018322 +5 0.201488 0.864623 0.008462 0.016060 +3 0.702509 0.546822 0.007295 0.019679 +5 0.565363 0.768039 0.008462 0.015607 +3 0.353224 0.876385 0.007295 0.020131 +5 0.811059 0.321307 0.008462 0.015607 +3 0.165451 0.643406 0.007587 0.020131 +5 0.796615 0.787718 0.008170 0.013798 +3 0.751094 0.792920 0.008170 0.019226 +3 0.572221 0.722574 0.007587 0.019679 +3 0.577911 0.407713 0.007879 0.019679 +5 0.658156 0.780480 0.008462 0.015155 +5 0.796761 0.632775 0.011380 0.016060 +1 0.112781 0.864397 0.022469 0.046370 +5 0.220455 0.398213 0.008462 0.016060 +5 0.502918 0.553268 0.008462 0.015834 +5 0.532098 0.633228 0.008462 0.016060 +1 0.112781 0.790206 0.022469 0.046370 +1 0.113219 0.710360 0.022177 0.045917 +1 0.112781 0.475119 0.021885 0.045917 +5 0.551940 0.841325 0.008462 0.015607 +1 0.113364 0.630287 0.021885 0.046822 +5 0.285089 0.534608 0.008170 0.015607 +3 0.473738 0.556322 0.007295 0.020131 +5 0.222644 0.639900 0.008754 0.016286 +3 0.684272 0.789867 0.007587 0.020357 +4 0.409834 0.873445 0.008462 0.018774 +3 0.784214 0.385546 0.006711 0.019226 +3 0.807704 0.382493 0.006420 0.019000 +3 0.603151 0.333861 0.006420 0.019453 +4 0.626495 0.330694 0.008754 0.018548 +3 0.681938 0.397874 0.006420 0.018548 +5 0.658594 0.395386 0.007587 0.014476 +5 0.437409 0.247455 0.007587 0.014929 +3 0.439743 0.233658 0.007003 0.018095 +5 0.136271 0.553268 0.007587 0.014929 +5 0.143566 0.543316 0.008170 0.014929 +5 0.135687 0.627686 0.007587 0.015381 +5 0.143858 0.617507 0.007587 0.014929 +5 0.135979 0.787831 0.008170 0.015381 +5 0.143858 0.778105 0.007587 0.014929 +5 0.136563 0.862248 0.008170 0.014929 +5 0.144149 0.852070 0.007003 0.015381 +5 0.171141 0.244062 0.008462 0.015381 +5 0.178874 0.234110 0.007003 0.014929 +5 0.136271 0.707532 0.007587 0.014929 +5 0.143858 0.697806 0.007587 0.014476 +5 0.135395 0.318480 0.007003 0.014929 +5 0.142982 0.308301 0.007587 0.015381 +5 0.135687 0.392445 0.007587 0.014476 +5 0.143420 0.382945 0.007879 0.014476 +5 0.135687 0.472744 0.007587 0.014929 +5 0.143274 0.462791 0.007587 0.014929 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_10.jpg b/data_dataset/mosz/debug/debug_10.jpg new file mode 100644 index 0000000..f1146a7 Binary files /dev/null and b/data_dataset/mosz/debug/debug_10.jpg differ diff --git a/data_dataset/mosz/debug/debug_10.txt b/data_dataset/mosz/debug/debug_10.txt new file mode 100644 index 0000000..3f4f8af --- /dev/null +++ b/data_dataset/mosz/debug/debug_10.txt @@ -0,0 +1,307 @@ +10 0.463700 0.807614 0.007611 0.004985 +10 0.461944 0.678677 0.013466 0.005438 +10 0.302693 0.671425 0.013466 0.006345 +10 0.382319 0.671199 0.013466 0.006345 +6 0.203015 0.657036 0.007904 0.016089 +10 0.238437 0.652844 0.014344 0.005892 +7 0.740047 0.582370 0.013466 0.015862 +7 0.683255 0.582030 0.012295 0.015636 +6 0.782787 0.579085 0.007611 0.009291 +10 0.819087 0.578178 0.013466 0.006118 +7 0.658080 0.581917 0.012295 0.016315 +6 0.707553 0.581577 0.010539 0.022887 +6 0.419057 0.581917 0.004977 0.028552 +7 0.733021 0.508384 0.012881 0.016089 +7 0.573185 0.508384 0.012881 0.016089 +7 0.420667 0.507931 0.012295 0.016089 +7 0.263466 0.507818 0.012881 0.016315 +7 0.721019 0.433832 0.012881 0.015636 +7 0.455796 0.433379 0.012881 0.016089 +10 0.403689 0.428960 0.014052 0.005892 +10 0.714578 0.354634 0.013466 0.005892 +6 0.758782 0.359053 0.010539 0.024247 +7 0.362119 0.284047 0.012295 0.016089 +6 0.330064 0.283141 0.011417 0.023793 +7 0.780152 0.210174 0.012881 0.016542 +6 0.673302 0.206775 0.007611 0.009291 +7 0.527225 0.209948 0.012881 0.015636 +6 0.638173 0.210174 0.007611 0.016542 +7 0.419496 0.209721 0.012881 0.016089 +7 0.307377 0.209268 0.012295 0.015636 +7 0.196429 0.208815 0.012881 0.016089 +9 0.174180 0.208022 0.005855 0.025833 +6 0.747951 0.209495 0.010539 0.023340 +12 0.250146 0.870496 0.010831 0.007931 +13 0.225556 0.861659 0.010831 0.007478 +12 0.297717 0.861432 0.011124 0.007478 +12 0.323478 0.857806 0.010539 0.007478 +12 0.202576 0.855087 0.010539 0.007025 +12 0.729655 0.854634 0.010831 0.007025 +12 0.349971 0.854634 0.010246 0.007025 +12 0.492681 0.854634 0.010539 0.007478 +12 0.610802 0.854181 0.010831 0.007478 +12 0.798302 0.851462 0.010539 0.007478 +12 0.679450 0.851235 0.010539 0.007478 +12 0.560158 0.851235 0.010246 0.007478 +12 0.374561 0.851462 0.010246 0.007931 +12 0.441745 0.851235 0.010539 0.007931 +12 0.175498 0.848742 0.010246 0.007478 +12 0.466774 0.848063 0.010831 0.007025 +12 0.823770 0.848063 0.010539 0.007478 +12 0.703601 0.848063 0.010246 0.007478 +12 0.416423 0.848063 0.010831 0.007478 +12 0.772980 0.847836 0.010831 0.007478 +12 0.654420 0.848063 0.010246 0.007931 +12 0.584748 0.847609 0.010246 0.007025 +12 0.533811 0.847609 0.010246 0.007478 +12 0.848800 0.844663 0.010246 0.007931 +12 0.254098 0.791412 0.010539 0.007478 +12 0.669057 0.790959 0.010831 0.007478 +12 0.367681 0.791185 0.010539 0.007931 +12 0.768296 0.790959 0.010246 0.007931 +12 0.486680 0.790959 0.010246 0.007931 +12 0.851288 0.788466 0.010539 0.007025 +12 0.205943 0.788466 0.010831 0.007025 +12 0.793472 0.788239 0.010246 0.007025 +12 0.320550 0.788466 0.010539 0.007478 +12 0.555621 0.788013 0.011124 0.007025 +12 0.437939 0.787786 0.010539 0.007025 +12 0.297278 0.785067 0.010831 0.007025 +12 0.181352 0.785293 0.010831 0.007478 +12 0.825381 0.785067 0.010831 0.007478 +12 0.724093 0.784840 0.010831 0.007025 +12 0.413495 0.785067 0.010246 0.007478 +12 0.228776 0.785067 0.010831 0.007478 +12 0.579625 0.784727 0.010539 0.007251 +12 0.462383 0.784840 0.010831 0.007478 +12 0.531762 0.784614 0.011417 0.007478 +12 0.343530 0.784727 0.010831 0.007705 +12 0.603484 0.781441 0.010831 0.007025 +12 0.693208 0.781554 0.010539 0.007705 +12 0.645053 0.778042 0.010831 0.007478 +12 0.227605 0.734761 0.010246 0.006571 +12 0.294643 0.731815 0.010831 0.007478 +12 0.254245 0.728643 0.010831 0.007025 +12 0.175790 0.725697 0.010831 0.007025 +12 0.321575 0.725470 0.010831 0.007478 +12 0.853776 0.725470 0.010831 0.007931 +12 0.704186 0.725244 0.010246 0.007478 +12 0.802693 0.722524 0.010539 0.007025 +12 0.728776 0.722298 0.010246 0.007025 +12 0.201112 0.722524 0.011124 0.007478 +12 0.612998 0.722298 0.009953 0.007478 +12 0.777078 0.719352 0.010831 0.007025 +12 0.828308 0.719125 0.010246 0.007025 +12 0.560158 0.719125 0.010246 0.007025 +12 0.651786 0.719125 0.010831 0.007478 +12 0.347336 0.715953 0.010831 0.007025 +12 0.586505 0.715953 0.010246 0.007478 +12 0.677693 0.713007 0.009953 0.007478 +12 0.533958 0.712780 0.010539 0.007931 +12 0.372073 0.709608 0.010539 0.007931 +12 0.491657 0.709608 0.010831 0.008384 +12 0.411739 0.704169 0.010831 0.007931 +12 0.465896 0.703716 0.010831 0.008384 +12 0.437939 0.700091 0.010539 0.007478 +12 0.358460 0.660435 0.007319 0.005665 +12 0.525615 0.656583 0.010831 0.007931 +12 0.551230 0.650691 0.010539 0.007931 +12 0.849093 0.647972 0.010831 0.007025 +12 0.724093 0.644573 0.010246 0.007478 +12 0.820989 0.641400 0.009660 0.007478 +12 0.768150 0.641174 0.010539 0.007478 +12 0.577137 0.641061 0.010246 0.007251 +12 0.794643 0.637775 0.010831 0.007931 +12 0.604215 0.637775 0.009953 0.007931 +12 0.646809 0.635282 0.010246 0.007478 +12 0.698770 0.634829 0.010539 0.007931 +12 0.673156 0.631430 0.010246 0.007478 +12 0.175790 0.598346 0.010831 0.007931 +13 0.480240 0.576365 0.011417 0.007478 +13 0.479947 0.563222 0.012002 0.007478 +11 0.288056 0.576139 0.010539 0.007025 +11 0.287617 0.563449 0.010246 0.007025 +13 0.574795 0.576365 0.010831 0.007931 +13 0.574649 0.563222 0.011710 0.007931 +13 0.383050 0.576139 0.011417 0.007478 +13 0.382758 0.562996 0.011417 0.007478 +12 0.201844 0.576139 0.010831 0.007478 +12 0.634221 0.570020 0.010246 0.007478 +12 0.634075 0.553705 0.010539 0.007478 +13 0.537032 0.569794 0.011417 0.007478 +13 0.536739 0.553932 0.012002 0.007478 +13 0.344262 0.570134 0.011124 0.008158 +13 0.344116 0.554045 0.012002 0.007705 +11 0.249707 0.570020 0.009953 0.007931 +12 0.249854 0.553932 0.010831 0.007478 +13 0.440135 0.569794 0.010831 0.007931 +13 0.440135 0.553705 0.012002 0.007478 +12 0.223507 0.563902 0.010831 0.007478 +12 0.287324 0.520394 0.010246 0.007931 +12 0.309865 0.514049 0.010831 0.007931 +12 0.337968 0.504759 0.010831 0.007478 +12 0.443648 0.504305 0.010246 0.007478 +12 0.757465 0.498867 0.010246 0.007478 +12 0.596751 0.498640 0.010831 0.007025 +12 0.467067 0.498187 0.010246 0.007025 +12 0.782641 0.492749 0.010246 0.007025 +12 0.535861 0.492295 0.010831 0.007478 +12 0.621048 0.492069 0.010246 0.007478 +12 0.490486 0.492069 0.010246 0.007478 +12 0.384514 0.491842 0.010246 0.007478 +11 0.212676 0.488670 0.010831 0.007478 +11 0.174912 0.485497 0.010246 0.007931 +12 0.853484 0.483458 0.010246 0.007025 +12 0.693355 0.483231 0.010831 0.007478 +12 0.807377 0.483005 0.010539 0.007478 +12 0.645931 0.483005 0.010831 0.007478 +12 0.361680 0.482552 0.011417 0.007931 +12 0.513612 0.481872 0.010246 0.007478 +12 0.828893 0.476886 0.010246 0.007478 +12 0.669350 0.475980 0.010831 0.007478 +12 0.745755 0.446295 0.010831 0.007478 +12 0.478776 0.445842 0.010831 0.007478 +12 0.768296 0.440403 0.010246 0.007478 +12 0.501903 0.439724 0.010246 0.007478 +12 0.798741 0.431113 0.010246 0.007025 +11 0.174619 0.430659 0.010246 0.007025 +12 0.531762 0.430659 0.010246 0.007478 +12 0.206089 0.424088 0.010539 0.007025 +12 0.855533 0.419103 0.010246 0.007025 +12 0.586651 0.417970 0.009953 0.007025 +12 0.264491 0.417856 0.010831 0.007705 +11 0.668472 0.415250 0.010831 0.007478 +11 0.342799 0.414684 0.010539 0.007251 +11 0.627781 0.412305 0.010246 0.007478 +11 0.305767 0.411851 0.010246 0.007478 +12 0.823478 0.409132 0.010539 0.007025 +12 0.555328 0.408906 0.010539 0.007478 +11 0.230386 0.407999 0.010539 0.007478 +12 0.789520 0.378994 0.010539 0.007931 +12 0.397102 0.378314 0.010831 0.007025 +11 0.817623 0.372536 0.010539 0.007251 +11 0.427547 0.371516 0.010831 0.007478 +12 0.848946 0.366304 0.010539 0.007478 +12 0.456235 0.365171 0.010831 0.007478 +11 0.501610 0.355767 0.010246 0.007251 +12 0.246926 0.355654 0.011417 0.007025 +11 0.210919 0.352255 0.010831 0.007478 +11 0.319233 0.352481 0.010831 0.008384 +12 0.530445 0.349535 0.010539 0.007478 +11 0.175205 0.349309 0.010831 0.007478 +11 0.284104 0.349082 0.010831 0.007931 +12 0.587237 0.343191 0.010539 0.007931 +11 0.655591 0.340245 0.010831 0.007478 +11 0.622512 0.337299 0.010246 0.007931 +11 0.554596 0.333447 0.010246 0.007931 +12 0.296399 0.290165 0.010246 0.007025 +12 0.221751 0.290165 0.010831 0.007478 +12 0.198185 0.286540 0.010539 0.007478 +12 0.174619 0.283821 0.010831 0.007931 +12 0.770345 0.275663 0.010246 0.007025 +12 0.273273 0.274530 0.010246 0.007478 +11 0.842945 0.272490 0.010246 0.007478 +11 0.742242 0.272037 0.010246 0.007025 +12 0.247951 0.271584 0.010539 0.007478 +11 0.807231 0.269545 0.010246 0.007478 +11 0.708285 0.268865 0.010246 0.007478 +12 0.588554 0.268638 0.010831 0.007478 +11 0.660275 0.266145 0.010246 0.007478 +11 0.559280 0.265692 0.010831 0.007478 +11 0.626317 0.262746 0.010246 0.007478 +11 0.526200 0.262293 0.010246 0.007025 +11 0.386270 0.262293 0.010246 0.007931 +11 0.475556 0.259121 0.010831 0.007478 +11 0.439256 0.255722 0.010831 0.007931 +12 0.808987 0.229436 0.010246 0.007025 +12 0.833285 0.222864 0.010246 0.007931 +12 0.856996 0.216746 0.010831 0.007478 +12 0.339432 0.215726 0.009660 0.007251 +12 0.226288 0.215386 0.010539 0.007478 +11 0.373536 0.209495 0.010539 0.007478 +12 0.373390 0.187061 0.010831 0.007931 +12 0.450673 0.200204 0.010831 0.007478 +12 0.557523 0.194312 0.010246 0.007025 +11 0.480094 0.193859 0.010539 0.007478 +11 0.479947 0.178450 0.010831 0.007478 +11 0.260831 0.193746 0.009953 0.007251 +11 0.588261 0.187741 0.009660 0.008838 +18 0.588261 0.172105 0.010831 0.007478 +12 0.644467 0.140834 0.010246 0.007478 +12 0.486680 0.140947 0.010831 0.008158 +12 0.328893 0.140154 0.010246 0.007931 +12 0.175498 0.139701 0.010246 0.007931 +12 0.768589 0.135395 0.010246 0.007478 +12 0.611827 0.134942 0.010539 0.007478 +12 0.451405 0.134262 0.010539 0.007025 +12 0.293765 0.134036 0.010246 0.007478 +12 0.739900 0.128824 0.010246 0.007025 +12 0.688964 0.128597 0.010246 0.007025 +12 0.584748 0.128371 0.010246 0.007025 +12 0.533226 0.128144 0.010246 0.007025 +12 0.372512 0.127691 0.010831 0.007025 +12 0.424912 0.127464 0.010246 0.007025 +12 0.266833 0.127238 0.010246 0.007478 +12 0.220433 0.127011 0.010539 0.007478 +12 0.667008 0.125198 0.010831 0.007478 +12 0.510246 0.124745 0.011124 0.007478 +12 0.351142 0.124292 0.010246 0.007478 +12 0.197746 0.123839 0.010831 0.007478 +12 0.243413 0.117947 0.010246 0.007478 +12 0.716920 0.113188 0.010539 0.007025 +12 0.561329 0.112962 0.010246 0.007478 +12 0.401786 0.112282 0.010831 0.007931 +1 0.124268 0.116814 0.023126 0.046000 +4 0.146663 0.105484 0.008782 0.018808 +4 0.390662 0.112282 0.009075 0.018355 +4 0.550790 0.112962 0.008489 0.018808 +4 0.282933 0.133356 0.009075 0.019261 +4 0.468238 0.186834 0.010246 0.023793 +4 0.705064 0.113188 0.009075 0.018355 +5 0.215603 0.212441 0.008489 0.015636 +5 0.546399 0.191140 0.008489 0.015636 +5 0.361680 0.206549 0.009075 0.015636 +4 0.146516 0.196578 0.009660 0.018808 +5 0.361973 0.184342 0.008489 0.015636 +1 0.122512 0.506345 0.023126 0.046454 +4 0.574502 0.418763 0.008489 0.019035 +4 0.756879 0.135169 0.009660 0.019261 +4 0.439842 0.133809 0.009075 0.019261 +5 0.328308 0.212667 0.007904 0.015636 +1 0.122219 0.656583 0.023126 0.046000 +1 0.123097 0.207908 0.022541 0.046000 +4 0.146809 0.270678 0.008489 0.020168 +1 0.122804 0.432699 0.023126 0.046000 +1 0.123390 0.357920 0.022541 0.046000 +1 0.121633 0.581124 0.023126 0.046454 +4 0.145638 0.495241 0.009660 0.018808 +5 0.249854 0.190913 0.007904 0.016089 +4 0.574649 0.343530 0.008782 0.019035 +3 0.765369 0.721845 0.006733 0.015182 +4 0.284397 0.860752 0.009660 0.019261 +3 0.284836 0.785293 0.008197 0.019714 +3 0.814549 0.785293 0.007319 0.019714 +4 0.252196 0.418423 0.009075 0.018808 +1 0.122365 0.282688 0.022834 0.046000 +4 0.599971 0.134489 0.009660 0.018808 +4 0.796985 0.229889 0.009075 0.018355 +1 0.121926 0.796397 0.022541 0.046454 +3 0.518735 0.784840 0.007611 0.020168 +4 0.755416 0.790959 0.009660 0.018355 +4 0.235217 0.355654 0.009660 0.019261 +5 0.439842 0.197485 0.008489 0.016089 +1 0.121926 0.730909 0.023126 0.046000 +4 0.147834 0.345910 0.008782 0.018355 +4 0.146516 0.570020 0.009660 0.018808 +4 0.842652 0.419329 0.009660 0.018808 +4 0.146224 0.719579 0.009660 0.018808 +4 0.146809 0.421369 0.009075 0.017902 +3 0.712822 0.785067 0.007026 0.019714 +4 0.145053 0.644799 0.009660 0.018808 +3 0.400468 0.785293 0.007611 0.020168 +1 0.123975 0.863018 0.023712 0.046454 +4 0.146224 0.852141 0.009660 0.019261 +4 0.145785 0.785407 0.008782 0.017675 +3 0.170228 0.785633 0.006733 0.019035 +5 0.575966 0.170972 0.008489 0.018808 +5 0.575966 0.183889 0.008489 0.018808 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_11.jpg b/data_dataset/mosz/debug/debug_11.jpg new file mode 100644 index 0000000..b6d9a04 Binary files /dev/null and b/data_dataset/mosz/debug/debug_11.jpg differ diff --git a/data_dataset/mosz/debug/debug_11.txt b/data_dataset/mosz/debug/debug_11.txt new file mode 100644 index 0000000..6f647a4 --- /dev/null +++ b/data_dataset/mosz/debug/debug_11.txt @@ -0,0 +1,326 @@ +7 0.709340 0.859675 0.012220 0.015579 +7 0.286005 0.859449 0.012802 0.015579 +7 0.200466 0.859901 0.012802 0.015579 +7 0.372418 0.859449 0.012220 0.016031 +7 0.555717 0.859449 0.012220 0.015579 +7 0.461449 0.859449 0.013384 0.016031 +10 0.786733 0.854595 0.013384 0.005419 +10 0.635729 0.854708 0.012802 0.006096 +6 0.730870 0.859223 0.009892 0.022804 +6 0.393075 0.859223 0.010474 0.023707 +6 0.483852 0.859675 0.010474 0.024159 +6 0.220832 0.859223 0.010474 0.023256 +6 0.578120 0.858546 0.010474 0.023256 +6 0.307536 0.858320 0.010474 0.022804 +7 0.435554 0.773425 0.012220 0.015579 +7 0.618854 0.773425 0.012220 0.015128 +7 0.797207 0.772748 0.012802 0.016934 +7 0.491708 0.772974 0.012802 0.016031 +7 0.734943 0.772974 0.012802 0.015579 +7 0.686063 0.772974 0.012802 0.016031 +7 0.560372 0.772748 0.012802 0.015579 +7 0.743090 0.483856 0.012220 0.015353 +10 0.844923 0.479228 0.013384 0.005645 +6 0.766366 0.483292 0.009892 0.022804 +10 0.418388 0.426507 0.008729 0.004967 +10 0.238871 0.413412 0.009892 0.002709 +9 0.558336 0.329307 0.005237 0.034545 +6 0.396858 0.116392 0.005237 0.027320 +17 0.836631 0.887898 0.011347 0.007451 +12 0.527058 0.887672 0.010183 0.007451 +12 0.526768 0.875028 0.009601 0.007451 +12 0.527349 0.859223 0.010183 0.007451 +17 0.681554 0.887446 0.009601 0.007451 +17 0.680972 0.875254 0.009601 0.007451 +11 0.681263 0.859223 0.009601 0.006999 +12 0.681408 0.837774 0.011056 0.008354 +11 0.262729 0.875254 0.010474 0.007451 +12 0.262875 0.853579 0.009601 0.007451 +12 0.262438 0.831903 0.010474 0.007451 +12 0.433809 0.875028 0.010474 0.007451 +12 0.433663 0.853353 0.010183 0.007451 +11 0.348705 0.875028 0.009601 0.007902 +12 0.349287 0.853353 0.010183 0.007902 +12 0.348996 0.837548 0.010183 0.007902 +12 0.177480 0.844096 0.009892 0.007902 +18 0.176898 0.822195 0.009892 0.007451 +12 0.404568 0.801648 0.010183 0.007451 +12 0.291097 0.801874 0.010183 0.007902 +12 0.177917 0.801648 0.009601 0.007902 +12 0.364999 0.798487 0.010183 0.006999 +12 0.253419 0.798261 0.009892 0.007451 +12 0.339977 0.795552 0.010183 0.007902 +12 0.228251 0.795326 0.010183 0.007902 +12 0.204539 0.789230 0.010474 0.006999 +12 0.316410 0.789004 0.010183 0.006999 +12 0.586994 0.788779 0.010183 0.007451 +12 0.586704 0.767103 0.009601 0.007451 +12 0.461449 0.788779 0.010474 0.007451 +12 0.461013 0.776135 0.009601 0.006548 +12 0.528950 0.788553 0.009892 0.007902 +12 0.528659 0.772974 0.009892 0.007451 +12 0.660169 0.772974 0.009892 0.006548 +12 0.660023 0.757394 0.010183 0.007902 +12 0.773349 0.766877 0.010474 0.006999 +12 0.773203 0.751298 0.010765 0.007451 +12 0.710358 0.767103 0.010765 0.007451 +12 0.710358 0.754008 0.010765 0.007451 +12 0.823683 0.766877 0.011056 0.007451 +12 0.823538 0.745202 0.010183 0.008354 +12 0.847105 0.723301 0.010183 0.007451 +12 0.796479 0.719688 0.010183 0.007451 +12 0.821938 0.716527 0.009892 0.006999 +12 0.765784 0.716527 0.009892 0.006999 +12 0.729706 0.713366 0.010474 0.007451 +12 0.680826 0.710205 0.010474 0.006999 +12 0.656386 0.707496 0.010474 0.007451 +12 0.704539 0.707157 0.010765 0.007225 +12 0.177771 0.701851 0.010474 0.007902 +12 0.616962 0.701400 0.010183 0.007451 +12 0.566337 0.698465 0.010183 0.006999 +12 0.204684 0.695981 0.010765 0.007451 +12 0.533896 0.695529 0.009892 0.007451 +12 0.590922 0.695078 0.009892 0.007902 +12 0.494908 0.692368 0.009892 0.006548 +12 0.442974 0.689659 0.010183 0.007902 +12 0.229852 0.686498 0.010474 0.006999 +12 0.418097 0.686272 0.010474 0.006999 +12 0.469596 0.686272 0.011056 0.007902 +12 0.378528 0.680402 0.010474 0.007451 +12 0.256328 0.680176 0.010474 0.007902 +12 0.328630 0.676789 0.010183 0.007902 +12 0.296043 0.674306 0.010183 0.006999 +12 0.352488 0.673628 0.010183 0.007902 +12 0.177626 0.629826 0.010765 0.007451 +12 0.401658 0.629600 0.010765 0.007451 +12 0.639075 0.629149 0.010765 0.007902 +12 0.363544 0.626891 0.010183 0.006999 +12 0.570701 0.626439 0.010183 0.006999 +12 0.600524 0.625988 0.010474 0.006999 +12 0.813209 0.625762 0.009892 0.006999 +12 0.846378 0.625762 0.009892 0.007451 +12 0.338813 0.623730 0.010765 0.007451 +12 0.202211 0.623504 0.010474 0.006999 +12 0.539569 0.623278 0.010765 0.007451 +12 0.426244 0.623278 0.010474 0.007451 +12 0.779895 0.622827 0.010765 0.006999 +12 0.664678 0.622827 0.010765 0.006999 +12 0.314373 0.617182 0.010765 0.007451 +12 0.451993 0.614021 0.010183 0.007451 +12 0.226797 0.614134 0.010183 0.007677 +12 0.688537 0.613344 0.010765 0.007451 +12 0.290806 0.611086 0.010183 0.007451 +12 0.250655 0.607473 0.010183 0.007902 +12 0.475560 0.607248 0.010765 0.007902 +12 0.712395 0.606570 0.010183 0.007902 +12 0.516584 0.601152 0.010765 0.007902 +12 0.754292 0.600700 0.010183 0.007451 +12 0.580303 0.559607 0.010765 0.006999 +12 0.177189 0.557124 0.010474 0.007451 +12 0.647221 0.556672 0.010183 0.007451 +12 0.845650 0.553511 0.010183 0.006548 +12 0.605615 0.553737 0.010183 0.007451 +12 0.528804 0.550576 0.010765 0.006999 +12 0.203811 0.550802 0.010183 0.007902 +12 0.817137 0.550124 0.010183 0.007451 +12 0.673843 0.550350 0.010474 0.007902 +12 0.488653 0.547641 0.010765 0.006999 +12 0.554699 0.547415 0.010183 0.007451 +12 0.371981 0.544931 0.010183 0.006548 +12 0.792115 0.544028 0.010183 0.007451 +12 0.412424 0.541770 0.009601 0.006999 +12 0.227960 0.541657 0.009601 0.007225 +12 0.463049 0.541093 0.009601 0.006999 +12 0.699011 0.540641 0.010183 0.007451 +12 0.438318 0.538609 0.010183 0.007451 +12 0.254437 0.538383 0.010183 0.006999 +12 0.763893 0.537480 0.010765 0.007451 +12 0.346669 0.535674 0.009601 0.007451 +12 0.295461 0.535222 0.009601 0.006999 +12 0.724614 0.534997 0.010183 0.007451 +12 0.321356 0.531158 0.010183 0.006999 +12 0.715886 0.490065 0.010183 0.006999 +12 0.681699 0.486679 0.009892 0.006999 +12 0.656532 0.480808 0.010183 0.006548 +12 0.631801 0.477873 0.010765 0.007451 +12 0.608816 0.474938 0.010765 0.006999 +12 0.574484 0.471777 0.010765 0.007451 +12 0.526186 0.471777 0.010765 0.007451 +12 0.502764 0.468616 0.010474 0.007451 +12 0.468868 0.465681 0.010183 0.007451 +12 0.419843 0.465229 0.010474 0.007451 +12 0.550335 0.465003 0.010183 0.007902 +12 0.396130 0.462746 0.010183 0.007451 +12 0.253273 0.462294 0.010765 0.008354 +12 0.313500 0.459585 0.010183 0.007451 +12 0.444428 0.459133 0.010183 0.007451 +12 0.207012 0.458907 0.010183 0.007451 +12 0.362089 0.458794 0.010765 0.007677 +12 0.289060 0.456198 0.010183 0.007451 +12 0.229706 0.455972 0.010183 0.007451 +12 0.177189 0.455746 0.009892 0.007902 +12 0.338376 0.453263 0.010474 0.006999 +12 0.559645 0.412396 0.010183 0.007451 +12 0.438318 0.409686 0.010765 0.006999 +12 0.584085 0.409235 0.010183 0.006999 +12 0.609980 0.406299 0.010765 0.006999 +12 0.320483 0.403364 0.010183 0.006999 +12 0.469450 0.403364 0.010183 0.007451 +12 0.648094 0.403138 0.010183 0.007451 +12 0.673698 0.399977 0.010183 0.007902 +12 0.344923 0.397042 0.010183 0.007451 +12 0.533168 0.396591 0.010765 0.006999 +12 0.698720 0.396365 0.010183 0.006999 +12 0.494035 0.393881 0.010474 0.007451 +12 0.724324 0.393204 0.010765 0.007451 +12 0.203230 0.390720 0.010183 0.007451 +12 0.253855 0.390494 0.010183 0.007451 +12 0.761856 0.390494 0.010183 0.007902 +12 0.411551 0.390494 0.010183 0.007902 +12 0.371399 0.387108 0.010183 0.006999 +12 0.844777 0.387108 0.010765 0.007902 +12 0.787751 0.387108 0.010765 0.007902 +12 0.295316 0.384398 0.010474 0.007451 +12 0.812482 0.384172 0.010183 0.007902 +12 0.228833 0.384172 0.010183 0.008354 +12 0.176753 0.380560 0.009601 0.007451 +12 0.612162 0.330436 0.010474 0.006999 +12 0.376346 0.327726 0.010765 0.007451 +12 0.772912 0.326710 0.010183 0.007225 +12 0.535060 0.324001 0.009892 0.007225 +12 0.734507 0.323436 0.010183 0.006999 +12 0.491999 0.321630 0.010474 0.007451 +12 0.294006 0.321179 0.010183 0.007451 +12 0.848414 0.320501 0.009892 0.007451 +12 0.796189 0.320050 0.010183 0.007451 +12 0.702648 0.320050 0.010474 0.007902 +12 0.466686 0.318018 0.010474 0.007902 +12 0.252109 0.318243 0.010183 0.008354 +12 0.562264 0.317566 0.010183 0.007451 +12 0.324265 0.314857 0.010183 0.006999 +12 0.226942 0.314857 0.010474 0.007451 +12 0.677917 0.314405 0.009892 0.007451 +12 0.442683 0.312373 0.010183 0.007451 +12 0.822665 0.310905 0.010183 0.007677 +12 0.202648 0.308986 0.010765 0.007451 +12 0.587867 0.308309 0.010765 0.007451 +12 0.649258 0.307632 0.010183 0.006999 +12 0.411842 0.305599 0.010183 0.007902 +12 0.349869 0.305599 0.010765 0.007902 +18 0.176171 0.302438 0.010183 0.007451 +12 0.523567 0.260668 0.010183 0.007902 +12 0.176462 0.257959 0.010765 0.006999 +12 0.548880 0.257507 0.010765 0.007451 +12 0.482834 0.254798 0.010183 0.007451 +12 0.572301 0.254346 0.010474 0.006999 +12 0.201193 0.254572 0.010183 0.007902 +12 0.598051 0.251411 0.010183 0.006548 +12 0.226797 0.251524 0.010183 0.007225 +12 0.252400 0.248476 0.010183 0.006999 +12 0.642712 0.248250 0.010474 0.007451 +12 0.457230 0.245315 0.010183 0.006999 +12 0.289933 0.245315 0.010765 0.007451 +12 0.667879 0.245089 0.010183 0.007451 +12 0.316410 0.242380 0.010183 0.007451 +12 0.694646 0.241251 0.010183 0.007451 +12 0.432208 0.239445 0.010183 0.007451 +12 0.341722 0.238993 0.010765 0.007451 +12 0.720105 0.238654 0.010474 0.007225 +12 0.367763 0.236284 0.009892 0.006999 +12 0.760838 0.235380 0.011056 0.007451 +12 0.407477 0.233348 0.010183 0.007902 +12 0.788624 0.232219 0.010183 0.007902 +12 0.813209 0.229736 0.011056 0.006999 +12 0.846232 0.227252 0.010183 0.007902 +12 0.770294 0.197223 0.010183 0.006999 +12 0.795607 0.194288 0.010765 0.006999 +12 0.822229 0.191352 0.009892 0.006999 +12 0.846232 0.188417 0.009601 0.007902 +12 0.729561 0.188191 0.010183 0.007451 +12 0.377946 0.186159 0.010474 0.006999 +12 0.613035 0.182547 0.011056 0.007451 +12 0.703230 0.181869 0.011056 0.007902 +12 0.418534 0.179837 0.010183 0.007451 +12 0.352779 0.179612 0.010183 0.006999 +12 0.586122 0.176225 0.010183 0.006999 +12 0.443846 0.173290 0.010183 0.007451 +12 0.328193 0.173064 0.009892 0.006999 +12 0.256183 0.173064 0.010183 0.006999 +12 0.495199 0.173064 0.010474 0.007451 +12 0.678062 0.172838 0.010183 0.007902 +12 0.561973 0.169903 0.010765 0.007451 +12 0.536369 0.166968 0.010765 0.007451 +12 0.231743 0.166968 0.010183 0.007451 +12 0.653040 0.166290 0.010183 0.007902 +12 0.179372 0.163581 0.010183 0.006999 +12 0.469450 0.163581 0.010765 0.007451 +12 0.301571 0.162904 0.010183 0.007451 +12 0.205848 0.159968 0.010765 0.008354 +12 0.531568 0.125198 0.010474 0.006999 +12 0.556008 0.122488 0.011056 0.007451 +12 0.489962 0.119327 0.010474 0.007451 +12 0.583358 0.119101 0.010474 0.007451 +12 0.608525 0.116166 0.010765 0.007451 +12 0.648094 0.113005 0.010765 0.006999 +12 0.674571 0.110070 0.010183 0.006999 +12 0.465086 0.110296 0.010183 0.007902 +12 0.300407 0.107135 0.010183 0.006999 +12 0.203230 0.106909 0.010183 0.006999 +12 0.699884 0.106683 0.010765 0.007451 +12 0.440064 0.104425 0.010183 0.006999 +12 0.375473 0.104200 0.010183 0.007451 +12 0.324265 0.103748 0.010183 0.007451 +12 0.726797 0.103522 0.010474 0.007902 +12 0.350451 0.101039 0.010765 0.007902 +12 0.254001 0.100587 0.010474 0.007451 +12 0.768112 0.100135 0.010474 0.006999 +12 0.414460 0.097652 0.009601 0.007451 +12 0.227669 0.097200 0.010765 0.007451 +12 0.792988 0.096749 0.010183 0.006999 +12 0.818301 0.094039 0.010765 0.007451 +12 0.176462 0.094265 0.010765 0.008354 +12 0.843905 0.090878 0.010765 0.007451 +1 0.124673 0.114586 0.022403 0.045834 +4 0.147512 0.103748 0.009892 0.018289 +3 0.289060 0.162452 0.007856 0.015579 +4 0.147949 0.248476 0.009019 0.018740 +4 0.287605 0.107586 0.008438 0.018740 +1 0.124091 0.259652 0.022403 0.045608 +1 0.124673 0.187514 0.022985 0.045834 +4 0.312482 0.315534 0.009310 0.018740 +4 0.148240 0.327726 0.009019 0.018289 +4 0.166861 0.163581 0.009019 0.018289 +4 0.147367 0.175999 0.009601 0.018289 +4 0.665988 0.314857 0.008729 0.018289 +4 0.522694 0.324791 0.008438 0.018289 +3 0.722869 0.323662 0.007274 0.019643 +3 0.834303 0.226801 0.007856 0.019643 +4 0.281786 0.321856 0.008438 0.018289 +3 0.302444 0.459585 0.007274 0.019643 +4 0.148385 0.471325 0.009310 0.018289 +1 0.125691 0.411267 0.022112 0.045383 +4 0.148531 0.399977 0.009019 0.018289 +1 0.125255 0.701400 0.022403 0.045834 +3 0.631219 0.248250 0.007274 0.019192 +1 0.125255 0.339016 0.021821 0.045383 +5 0.458103 0.400203 0.007856 0.015579 +4 0.554990 0.698465 0.009019 0.019192 +1 0.125546 0.628923 0.022985 0.045383 +4 0.194792 0.459585 0.008438 0.018289 +4 0.316119 0.677467 0.009019 0.018289 +3 0.835758 0.625988 0.007856 0.019643 +1 0.125546 0.483292 0.021821 0.045834 +4 0.801426 0.625988 0.009019 0.018289 +4 0.831976 0.387559 0.009019 0.018740 +4 0.558481 0.626214 0.008438 0.019192 +4 0.149113 0.617182 0.009019 0.018289 +1 0.125836 0.772296 0.021821 0.044931 +4 0.784841 0.720366 0.009601 0.018289 +4 0.148385 0.689433 0.009310 0.018289 +3 0.589322 0.625988 0.007274 0.019192 +4 0.148240 0.544480 0.009019 0.018289 +1 0.125546 0.555995 0.022403 0.045834 +4 0.148676 0.761233 0.009310 0.018289 +1 0.126418 0.858546 0.022403 0.045834 +4 0.148967 0.847934 0.009310 0.018289 +4 0.429444 0.312825 0.009310 0.018289 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_12.jpg b/data_dataset/mosz/debug/debug_12.jpg new file mode 100644 index 0000000..c8164cb Binary files /dev/null and b/data_dataset/mosz/debug/debug_12.jpg differ diff --git a/data_dataset/mosz/debug/debug_12.txt b/data_dataset/mosz/debug/debug_12.txt new file mode 100644 index 0000000..adb725f --- /dev/null +++ b/data_dataset/mosz/debug/debug_12.txt @@ -0,0 +1,357 @@ +10 0.836465 0.855165 0.014093 0.006356 +7 0.263946 0.856867 0.012918 0.015664 +7 0.172930 0.857094 0.012918 0.016118 +7 0.784792 0.856640 0.012918 0.015664 +8 0.764240 0.859818 0.015267 0.022020 +8 0.379624 0.859137 0.015267 0.022474 +6 0.807986 0.854143 0.011157 0.022474 +8 0.439518 0.784449 0.015267 0.030193 +8 0.607751 0.782406 0.014680 0.022020 +9 0.622725 0.785471 0.016442 0.040863 +10 0.239577 0.700114 0.014093 0.006356 +7 0.433059 0.702724 0.012331 0.015664 +7 0.195831 0.701816 0.012331 0.016118 +7 0.287140 0.701589 0.012918 0.016572 +6 0.214621 0.698638 0.011157 0.022474 +10 0.238696 0.619296 0.013506 0.006356 +7 0.298004 0.621112 0.012331 0.015891 +6 0.205813 0.618502 0.011157 0.022928 +10 0.262478 0.468104 0.013506 0.006356 +7 0.199648 0.470488 0.013506 0.016572 +7 0.378156 0.470261 0.012331 0.016572 +6 0.228127 0.467310 0.010570 0.022020 +8 0.533764 0.390579 0.014093 0.008400 +7 0.473282 0.392849 0.012918 0.016118 +7 0.594539 0.392168 0.012331 0.016118 +6 0.502936 0.389557 0.011157 0.022701 +7 0.224016 0.232350 0.012918 0.016118 +13 0.421756 0.885698 0.010863 0.007946 +11 0.237962 0.882860 0.010863 0.007264 +12 0.237522 0.860272 0.010570 0.007491 +11 0.204786 0.882747 0.010276 0.007037 +11 0.203905 0.860499 0.009689 0.007037 +13 0.442014 0.882633 0.011450 0.007264 +12 0.331914 0.881839 0.010863 0.007491 +12 0.331327 0.862997 0.010863 0.007491 +11 0.340722 0.860045 0.010863 0.007491 +17 0.294334 0.881839 0.010863 0.007491 +11 0.293746 0.863224 0.010863 0.007491 +11 0.304022 0.860045 0.010863 0.007491 +13 0.486348 0.879796 0.010863 0.008854 +13 0.460217 0.879455 0.010276 0.008173 +13 0.608779 0.875709 0.011450 0.007491 +13 0.505138 0.875709 0.010863 0.007491 +13 0.528920 0.875028 0.011450 0.007946 +13 0.398268 0.872645 0.010863 0.007264 +13 0.629918 0.872531 0.010276 0.007491 +13 0.549765 0.872418 0.010863 0.007264 +13 0.591456 0.869012 0.010863 0.007719 +12 0.738550 0.866175 0.010276 0.007037 +13 0.655167 0.865721 0.010276 0.006583 +13 0.697152 0.862770 0.010863 0.007491 +13 0.673371 0.860045 0.010276 0.007037 +13 0.567821 0.859705 0.010570 0.007264 +12 0.415003 0.805562 0.010276 0.007491 +13 0.378009 0.802838 0.010276 0.007491 +13 0.226806 0.798865 0.010863 0.007264 +13 0.201703 0.798865 0.011157 0.007264 +11 0.172343 0.798865 0.011157 0.007264 +13 0.242660 0.795800 0.010863 0.007491 +13 0.363623 0.795687 0.010863 0.007719 +13 0.854228 0.792849 0.011450 0.007491 +12 0.576483 0.792168 0.010276 0.007491 +12 0.538021 0.792168 0.010863 0.007491 +13 0.299618 0.788763 0.009689 0.007491 +13 0.841456 0.786493 0.010570 0.007491 +13 0.348649 0.785925 0.010276 0.007264 +13 0.314885 0.785925 0.010863 0.007264 +12 0.557399 0.785812 0.010863 0.007491 +12 0.495156 0.785925 0.010863 0.007719 +12 0.275250 0.782860 0.010276 0.007037 +13 0.257046 0.782974 0.010276 0.007264 +11 0.465208 0.782860 0.010863 0.007491 +13 0.333089 0.782860 0.010863 0.007491 +12 0.518056 0.782633 0.010863 0.007491 +13 0.826336 0.780363 0.009689 0.007037 +13 0.811950 0.777185 0.010276 0.007037 +13 0.766295 0.776958 0.011157 0.007491 +13 0.794921 0.773439 0.011450 0.007719 +13 0.751762 0.773439 0.010863 0.007719 +13 0.735614 0.773326 0.011450 0.007491 +12 0.638579 0.770488 0.011157 0.006810 +13 0.780681 0.770488 0.010570 0.007264 +13 0.698180 0.770488 0.010570 0.007264 +13 0.713447 0.766969 0.010570 0.007491 +12 0.661920 0.761862 0.010863 0.006810 +13 0.683940 0.761067 0.010276 0.007037 +13 0.853494 0.719296 0.010570 0.007491 +12 0.172490 0.717594 0.010863 0.007264 +12 0.172490 0.724858 0.010863 0.007264 +13 0.688638 0.715323 0.010863 0.007264 +13 0.663975 0.715210 0.010863 0.007037 +11 0.631386 0.715210 0.010276 0.007037 +13 0.837199 0.712486 0.010863 0.007491 +13 0.705520 0.711805 0.010570 0.007037 +12 0.586318 0.711578 0.010570 0.007037 +13 0.764827 0.705789 0.010570 0.006810 +11 0.386671 0.705108 0.011157 0.007264 +13 0.819289 0.703065 0.011450 0.007719 +13 0.783177 0.702951 0.010863 0.007491 +11 0.358485 0.702270 0.010570 0.007037 +12 0.336025 0.702270 0.010276 0.007037 +13 0.802554 0.699659 0.010863 0.007264 +12 0.742513 0.699432 0.010570 0.006810 +13 0.723136 0.699205 0.010570 0.007264 +13 0.530241 0.698865 0.010570 0.007037 +12 0.565179 0.695914 0.010570 0.007491 +12 0.505432 0.695914 0.010863 0.007491 +12 0.483705 0.692736 0.010863 0.007037 +13 0.546389 0.692509 0.010570 0.007037 +11 0.455520 0.689444 0.010863 0.007719 +11 0.310188 0.685698 0.010276 0.007491 +12 0.576923 0.644381 0.010570 0.007946 +12 0.576189 0.630760 0.010276 0.007037 +11 0.172930 0.644268 0.010570 0.007719 +11 0.172343 0.631215 0.010570 0.007037 +12 0.363329 0.643473 0.010863 0.008400 +11 0.323693 0.643133 0.010276 0.007719 +12 0.667499 0.637457 0.010863 0.006810 +12 0.667058 0.621680 0.009982 0.007037 +12 0.749706 0.637457 0.010276 0.007264 +12 0.749119 0.621907 0.009689 0.007037 +12 0.461832 0.637230 0.010570 0.006810 +12 0.638139 0.634506 0.010863 0.007264 +12 0.637551 0.618502 0.010863 0.007037 +18 0.829272 0.633825 0.014974 0.006356 +18 0.829272 0.640182 0.014974 0.006356 +13 0.724163 0.634506 0.010276 0.007719 +13 0.724457 0.618275 0.010863 0.007037 +13 0.388432 0.634052 0.010570 0.007719 +12 0.774075 0.631215 0.010276 0.006583 +12 0.436142 0.630988 0.010863 0.007037 +18 0.436142 0.643814 0.010863 0.008173 +11 0.606283 0.630760 0.010570 0.007037 +11 0.605255 0.615096 0.010863 0.007491 +13 0.414122 0.627923 0.010276 0.007264 +18 0.513652 0.627582 0.014386 0.007037 +18 0.513946 0.643473 0.013799 0.007946 +13 0.697446 0.628263 0.010863 0.007491 +18 0.707134 0.624858 0.010863 0.007491 +11 0.838667 0.569580 0.010863 0.007719 +11 0.838080 0.554143 0.010863 0.006810 +11 0.803288 0.569580 0.010570 0.007719 +12 0.355402 0.567877 0.010863 0.007946 +17 0.764680 0.566969 0.012038 0.007037 +18 0.699794 0.566629 0.014974 0.008173 +12 0.330299 0.564132 0.009982 0.007719 +13 0.620229 0.563678 0.010863 0.007264 +13 0.637258 0.560613 0.010863 0.007491 +13 0.591897 0.560613 0.010570 0.007491 +11 0.400029 0.560386 0.010863 0.007491 +11 0.398855 0.538252 0.010863 0.007719 +11 0.400029 0.567877 0.010863 0.007491 +12 0.304756 0.560499 0.010570 0.007719 +12 0.433500 0.560386 0.010863 0.008400 +12 0.433206 0.538479 0.010276 0.007264 +13 0.570023 0.556981 0.010276 0.007491 +13 0.542278 0.556981 0.011157 0.007491 +12 0.228420 0.554484 0.010570 0.007037 +13 0.655314 0.554030 0.010570 0.007037 +13 0.516882 0.554030 0.009689 0.007037 +12 0.198914 0.551532 0.010276 0.007491 +12 0.280241 0.551192 0.010863 0.007719 +13 0.497798 0.550965 0.010276 0.008173 +12 0.254404 0.548127 0.010863 0.007037 +13 0.477393 0.547900 0.010570 0.007037 +13 0.457722 0.544949 0.011157 0.007491 +12 0.172490 0.541884 0.010276 0.007264 +12 0.810482 0.470829 0.010863 0.007264 +12 0.172490 0.470488 0.010276 0.007037 +12 0.777452 0.467196 0.010570 0.007264 +12 0.840722 0.464359 0.010276 0.007037 +12 0.645479 0.464018 0.010863 0.007719 +12 0.570757 0.460840 0.010570 0.006810 +11 0.708896 0.460726 0.010863 0.007037 +12 0.675719 0.458002 0.010276 0.007491 +12 0.748092 0.457775 0.010570 0.007491 +12 0.599383 0.457548 0.010276 0.007491 +12 0.495890 0.451078 0.010570 0.007264 +13 0.522901 0.447900 0.010570 0.007264 +12 0.465796 0.447900 0.010863 0.007719 +12 0.436729 0.444495 0.010276 0.007264 +13 0.546242 0.444608 0.010863 0.007946 +12 0.407076 0.440863 0.010863 0.008173 +13 0.374486 0.399659 0.010863 0.007491 +12 0.201262 0.396368 0.010863 0.006810 +13 0.397827 0.396141 0.011157 0.006810 +12 0.171462 0.393530 0.011157 0.007491 +13 0.328391 0.393190 0.010276 0.007264 +13 0.775543 0.392963 0.010863 0.007719 +12 0.443188 0.392963 0.010863 0.007719 +11 0.291691 0.393190 0.010863 0.008173 +13 0.841603 0.389898 0.011450 0.007037 +12 0.261157 0.390011 0.010863 0.007719 +13 0.352173 0.389784 0.010863 0.007719 +12 0.804610 0.386720 0.010276 0.007037 +12 0.231210 0.386720 0.010863 0.007491 +13 0.749413 0.386379 0.010276 0.007264 +12 0.718291 0.380023 0.010276 0.007264 +12 0.686289 0.376617 0.010863 0.007264 +12 0.655755 0.373780 0.010863 0.007037 +12 0.625954 0.370375 0.011157 0.007491 +13 0.276424 0.340863 0.010863 0.007491 +13 0.276130 0.325085 0.010276 0.007719 +12 0.197739 0.340863 0.010863 0.007491 +12 0.196858 0.324972 0.010276 0.007491 +13 0.293746 0.340863 0.011450 0.007946 +13 0.293159 0.324858 0.010276 0.007719 +12 0.368614 0.337911 0.010863 0.007491 +12 0.368027 0.321680 0.010863 0.007719 +12 0.724310 0.337457 0.009982 0.007491 +13 0.311216 0.334733 0.011157 0.007491 +13 0.310775 0.318615 0.010276 0.007037 +13 0.258955 0.334620 0.011157 0.007719 +13 0.258514 0.318729 0.010276 0.006810 +13 0.240018 0.334052 0.010863 0.007491 +13 0.239724 0.318729 0.010276 0.006810 +11 0.674251 0.333598 0.011450 0.007491 +12 0.645479 0.333598 0.010276 0.007491 +12 0.617880 0.331101 0.010276 0.007037 +12 0.597328 0.328036 0.010276 0.007264 +13 0.222695 0.328263 0.010863 0.007719 +13 0.221814 0.312486 0.009689 0.007037 +12 0.418820 0.324972 0.010276 0.007037 +12 0.576923 0.324745 0.010570 0.007037 +12 0.533030 0.321680 0.010863 0.007264 +12 0.393277 0.321680 0.010863 0.007719 +12 0.484292 0.318615 0.010863 0.007037 +12 0.511304 0.318388 0.010863 0.007037 +12 0.461979 0.315664 0.010863 0.007491 +12 0.845713 0.312486 0.010276 0.006583 +12 0.439812 0.312259 0.011157 0.007037 +11 0.815326 0.309194 0.010570 0.007264 +12 0.794627 0.306016 0.010276 0.007264 +12 0.773928 0.302724 0.009982 0.007037 +12 0.751908 0.299432 0.010570 0.006810 +18 0.322519 0.261635 0.012038 0.007491 +12 0.321051 0.238706 0.010276 0.007037 +18 0.469612 0.261521 0.011450 0.008173 +12 0.469319 0.235301 0.010863 0.007491 +13 0.690840 0.257662 0.011157 0.007264 +13 0.690546 0.241430 0.010570 0.007491 +12 0.618908 0.257889 0.010570 0.007719 +12 0.618174 0.241430 0.010276 0.007491 +13 0.707722 0.257321 0.010863 0.007037 +13 0.706988 0.241203 0.010570 0.007491 +13 0.583529 0.254938 0.011450 0.008173 +13 0.583235 0.237911 0.010863 0.007719 +13 0.828978 0.254597 0.011450 0.007946 +13 0.828685 0.237911 0.010863 0.007264 +13 0.797416 0.254597 0.010570 0.007946 +13 0.797270 0.237911 0.010276 0.007264 +12 0.739724 0.254824 0.011450 0.008400 +12 0.738843 0.238025 0.010863 0.007491 +13 0.552701 0.254711 0.010863 0.008627 +13 0.552261 0.237911 0.010570 0.007719 +13 0.674251 0.251192 0.010863 0.007946 +13 0.673664 0.234847 0.010863 0.007037 +13 0.657957 0.251305 0.010570 0.008173 +13 0.657223 0.234847 0.010863 0.007037 +13 0.723576 0.250851 0.010863 0.007719 +13 0.722548 0.234620 0.011157 0.007037 +13 0.568409 0.247787 0.010570 0.007491 +13 0.567675 0.231555 0.010276 0.007719 +13 0.536406 0.247900 0.011157 0.007719 +13 0.536260 0.231669 0.010863 0.007946 +12 0.515414 0.247900 0.010276 0.007719 +12 0.514827 0.231669 0.010276 0.007946 +13 0.812830 0.247560 0.010863 0.007491 +13 0.812830 0.231442 0.010863 0.007946 +13 0.781415 0.247673 0.011450 0.007719 +13 0.781268 0.231442 0.011157 0.007946 +12 0.759982 0.247673 0.010863 0.007719 +12 0.759689 0.231442 0.010276 0.007946 +12 0.274662 0.245289 0.010276 0.007946 +13 0.641809 0.244722 0.011157 0.007719 +13 0.641368 0.228263 0.010863 0.007491 +12 0.297857 0.241771 0.009689 0.007719 +13 0.360834 0.235528 0.010570 0.007037 +12 0.248385 0.232350 0.010570 0.007491 +18 0.249119 0.261180 0.010863 0.007946 +12 0.405608 0.232350 0.010276 0.007946 +12 0.378597 0.232350 0.010276 0.007946 +12 0.495302 0.232123 0.011157 0.007946 +18 0.495743 0.260840 0.010863 0.008173 +13 0.343365 0.229171 0.010276 0.007037 +11 0.442308 0.228944 0.010863 0.007491 +18 0.443482 0.261067 0.010863 0.008173 +11 0.430270 0.195006 0.006753 0.004994 +1 0.149883 0.230988 0.022607 0.046538 +4 0.565326 0.325653 0.009689 0.017934 +5 0.483999 0.228717 0.008514 0.016118 +4 0.606136 0.241203 0.009689 0.019750 +4 0.216236 0.554711 0.008514 0.019296 +3 0.696858 0.460726 0.007927 0.019296 +5 0.557399 0.553802 0.008514 0.015664 +3 0.394157 0.232577 0.007340 0.020204 +4 0.607604 0.563791 0.009102 0.018388 +3 0.662801 0.333825 0.007340 0.019750 +5 0.402965 0.802157 0.008514 0.016118 +4 0.518350 0.699092 0.009689 0.019296 +1 0.110540 0.314302 0.023194 0.046084 +1 0.112302 0.699773 0.022020 0.046084 +1 0.112595 0.468899 0.022020 0.045630 +3 0.407369 0.324518 0.007340 0.019750 +5 0.500734 0.314642 0.008514 0.015891 +3 0.763799 0.303178 0.007340 0.019750 +3 0.531856 0.557435 0.007927 0.020204 +5 0.193335 0.856640 0.008514 0.015664 +3 0.798738 0.470715 0.007340 0.019750 +4 0.643423 0.866175 0.010276 0.019296 +4 0.409718 0.886606 0.010276 0.019750 +5 0.498385 0.624291 0.008514 0.015891 +5 0.685115 0.624631 0.008514 0.015664 +4 0.186289 0.325199 0.009102 0.018842 +4 0.215062 0.799432 0.008514 0.018388 +3 0.472548 0.693417 0.007340 0.020204 +5 0.650470 0.759024 0.007927 0.013848 +5 0.401497 0.623950 0.008514 0.015664 +3 0.580887 0.868899 0.007340 0.020204 +3 0.282590 0.859818 0.008514 0.019296 +4 0.288462 0.789330 0.008514 0.018615 +3 0.677481 0.715664 0.007340 0.020658 +3 0.475338 0.878888 0.007634 0.020658 +4 0.726806 0.865948 0.009102 0.018388 +4 0.517469 0.875255 0.009689 0.019296 +1 0.111421 0.391714 0.022607 0.045630 +3 0.686289 0.862543 0.006753 0.018388 +1 0.112302 0.856413 0.022607 0.046084 +5 0.454345 0.778774 0.009102 0.015664 +1 0.113183 0.620318 0.022607 0.046084 +1 0.113183 0.543587 0.022020 0.046084 +1 0.114357 0.779682 0.022020 0.046084 +5 0.192748 0.879796 0.008514 0.016572 +3 0.283030 0.882520 0.008221 0.020204 +5 0.620229 0.711578 0.007927 0.016118 +4 0.634028 0.334733 0.008514 0.019750 +5 0.724750 0.770148 0.008514 0.015664 +3 0.262772 0.245403 0.005872 0.019523 +4 0.287728 0.241657 0.008808 0.018842 +5 0.135349 0.466969 0.008221 0.014983 +5 0.143277 0.456527 0.007634 0.014983 +5 0.135056 0.390011 0.008221 0.015437 +5 0.142983 0.379342 0.007634 0.014983 +5 0.169407 0.229285 0.008221 0.015437 +5 0.177041 0.219069 0.008221 0.014983 +5 0.134175 0.312372 0.008808 0.014529 +5 0.141515 0.301930 0.008221 0.014529 +5 0.135349 0.854030 0.008221 0.014529 +5 0.143277 0.844041 0.007634 0.014529 +5 0.135937 0.541657 0.008221 0.015437 +5 0.142689 0.531215 0.007634 0.014529 +5 0.135937 0.698524 0.007634 0.014983 +5 0.142983 0.688536 0.007634 0.014983 +5 0.135937 0.618388 0.007634 0.014529 +5 0.143864 0.608400 0.007046 0.014529 +5 0.135643 0.776617 0.007634 0.014983 +5 0.144157 0.767083 0.007046 0.014983 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_13.jpg b/data_dataset/mosz/debug/debug_13.jpg new file mode 100644 index 0000000..9f07289 Binary files /dev/null and b/data_dataset/mosz/debug/debug_13.jpg differ diff --git a/data_dataset/mosz/debug/debug_13.txt b/data_dataset/mosz/debug/debug_13.txt new file mode 100644 index 0000000..1e30e1f --- /dev/null +++ b/data_dataset/mosz/debug/debug_13.txt @@ -0,0 +1,485 @@ +10 0.554252 0.849705 0.013490 0.006125 +7 0.496481 0.852427 0.012903 0.015200 +9 0.279179 0.858553 0.005279 0.044691 +6 0.523167 0.848571 0.011144 0.022005 +9 0.253372 0.853335 0.005279 0.041515 +9 0.185337 0.851293 0.005279 0.041515 +10 0.848387 0.772005 0.013490 0.006352 +7 0.804985 0.774274 0.013490 0.016788 +6 0.824340 0.770985 0.011144 0.024274 +7 0.333431 0.697255 0.012903 0.016561 +8 0.429619 0.621484 0.014663 0.022005 +8 0.550147 0.621257 0.015249 0.022005 +7 0.680938 0.616720 0.012903 0.016107 +10 0.508798 0.376815 0.013490 0.005898 +10 0.232551 0.377042 0.013490 0.006352 +7 0.595308 0.378970 0.012903 0.016107 +7 0.471554 0.378743 0.012903 0.016107 +7 0.273314 0.378743 0.012903 0.016107 +7 0.197067 0.378630 0.012903 0.016334 +10 0.552493 0.374319 0.012903 0.006352 +6 0.487977 0.375567 0.011730 0.022459 +6 0.213196 0.375794 0.011144 0.022913 +6 0.685044 0.294465 0.005279 0.028584 +7 0.684457 0.151543 0.012317 0.016788 +13 0.275806 0.875907 0.010850 0.008167 +13 0.409238 0.875113 0.010264 0.007940 +12 0.672874 0.874206 0.009677 0.007940 +12 0.608211 0.874093 0.010557 0.007713 +13 0.719501 0.873639 0.010264 0.007260 +13 0.699707 0.873979 0.010557 0.007940 +13 0.652639 0.873752 0.011437 0.007940 +13 0.632405 0.873752 0.010850 0.007940 +13 0.767009 0.873639 0.010264 0.008167 +12 0.740909 0.873525 0.010850 0.007940 +13 0.857331 0.873412 0.011437 0.008167 +13 0.836510 0.873525 0.010850 0.008394 +12 0.809238 0.873299 0.010264 0.007940 +13 0.788416 0.873525 0.010850 0.008394 +12 0.249707 0.869442 0.010264 0.007033 +12 0.248534 0.853562 0.010264 0.007940 +13 0.296041 0.869215 0.010264 0.007486 +12 0.383431 0.868534 0.010264 0.007486 +12 0.382405 0.852654 0.010557 0.007486 +13 0.428592 0.868081 0.010264 0.007486 +12 0.181525 0.867173 0.010557 0.007486 +12 0.180792 0.854129 0.010850 0.007713 +13 0.227859 0.866720 0.011144 0.007940 +12 0.316862 0.866039 0.010850 0.007486 +12 0.315982 0.853108 0.010264 0.007940 +13 0.361290 0.865812 0.010557 0.007486 +17 0.469648 0.864564 0.011437 0.007260 +12 0.468768 0.852201 0.010850 0.007033 +13 0.208504 0.860594 0.009971 0.007486 +13 0.341202 0.859460 0.010264 0.007486 +17 0.705132 0.799682 0.011437 0.007260 +11 0.704839 0.780740 0.010850 0.007486 +11 0.393402 0.790835 0.010850 0.007260 +12 0.393109 0.775181 0.010850 0.006806 +12 0.392522 0.758621 0.010264 0.008167 +12 0.353959 0.787886 0.010557 0.007713 +12 0.330938 0.784823 0.010264 0.007033 +17 0.737243 0.783462 0.011144 0.006579 +12 0.304545 0.781987 0.011437 0.007260 +12 0.279032 0.782101 0.010850 0.007486 +12 0.784018 0.780626 0.010850 0.007260 +18 0.652933 0.780399 0.013783 0.007260 +18 0.653519 0.799909 0.013783 0.007260 +12 0.252053 0.779152 0.010850 0.007033 +13 0.586657 0.777564 0.010264 0.007033 +12 0.234457 0.776316 0.012023 0.007713 +13 0.601173 0.774274 0.009971 0.006806 +13 0.562903 0.774387 0.010850 0.007486 +12 0.209384 0.773253 0.011144 0.007033 +12 0.182845 0.773140 0.010850 0.007260 +13 0.520381 0.771438 0.010264 0.007033 +13 0.544575 0.771211 0.010557 0.007486 +13 0.494868 0.768262 0.010850 0.007940 +13 0.615396 0.767809 0.010264 0.007486 +13 0.479326 0.765086 0.010264 0.007033 +13 0.455865 0.762137 0.010264 0.007486 +13 0.431232 0.758848 0.010264 0.007713 +11 0.292815 0.697595 0.010850 0.007260 +12 0.524780 0.696915 0.010264 0.006806 +12 0.710997 0.696348 0.010850 0.007486 +12 0.201173 0.694873 0.010557 0.007260 +12 0.181672 0.694760 0.011437 0.007486 +11 0.266716 0.694419 0.010264 0.007260 +13 0.248240 0.694419 0.010850 0.007260 +12 0.468182 0.693852 0.010850 0.007033 +12 0.656158 0.693512 0.010264 0.006806 +12 0.486364 0.690676 0.010850 0.007940 +12 0.861144 0.690336 0.010850 0.007713 +12 0.675220 0.689882 0.010850 0.007713 +12 0.224194 0.688521 0.010850 0.007260 +12 0.843842 0.687046 0.010264 0.007486 +12 0.419355 0.684097 0.010557 0.007033 +12 0.819208 0.683870 0.010264 0.007486 +12 0.608504 0.683757 0.010557 0.007260 +12 0.794868 0.683643 0.010850 0.007486 +12 0.769648 0.680694 0.010850 0.007033 +13 0.626246 0.680581 0.010264 0.007260 +12 0.584604 0.680694 0.010264 0.007486 +13 0.437390 0.680694 0.010264 0.007486 +12 0.393109 0.680921 0.010850 0.007940 +12 0.375513 0.677858 0.010850 0.007260 +13 0.452933 0.677405 0.010850 0.007713 +13 0.641202 0.677064 0.010850 0.007486 +12 0.565249 0.677178 0.010850 0.007713 +12 0.752639 0.676951 0.010850 0.007713 +12 0.357771 0.674456 0.010557 0.007713 +12 0.547654 0.673662 0.010264 0.007486 +12 0.733578 0.673094 0.010264 0.008167 +13 0.181085 0.636683 0.012023 0.007486 +13 0.318475 0.630785 0.010557 0.007940 +13 0.262317 0.630672 0.010264 0.007713 +13 0.246188 0.630672 0.010850 0.007713 +12 0.222434 0.630672 0.010264 0.007713 +13 0.205718 0.630785 0.010850 0.007940 +13 0.374927 0.630331 0.010264 0.007486 +13 0.573460 0.623866 0.009677 0.007260 +13 0.573167 0.607985 0.010264 0.007260 +12 0.528152 0.623639 0.011144 0.007260 +12 0.527859 0.607985 0.010557 0.006806 +13 0.511290 0.623752 0.010850 0.007486 +13 0.510997 0.607759 0.010264 0.007260 +13 0.495015 0.623752 0.010557 0.007486 +13 0.494282 0.607985 0.010850 0.006806 +12 0.470235 0.623752 0.010850 0.007486 +12 0.469648 0.608099 0.010850 0.007033 +13 0.446774 0.623752 0.010850 0.007486 +13 0.625367 0.623525 0.010264 0.007486 +13 0.624927 0.607872 0.010557 0.007033 +13 0.608651 0.623525 0.009677 0.007486 +13 0.607918 0.607872 0.010557 0.007033 +12 0.590176 0.623525 0.010264 0.007486 +12 0.589589 0.607872 0.010264 0.007033 +12 0.641789 0.623299 0.011437 0.007940 +12 0.641202 0.607872 0.010850 0.007033 +13 0.302053 0.614791 0.009971 0.006806 +12 0.278886 0.614905 0.010557 0.007033 +11 0.847947 0.614791 0.010850 0.007260 +12 0.341496 0.608553 0.010264 0.007486 +12 0.393402 0.608099 0.010850 0.007486 +13 0.358798 0.608212 0.010850 0.007713 +12 0.784897 0.605263 0.010264 0.007713 +13 0.805718 0.601860 0.010850 0.007260 +12 0.754839 0.601747 0.010557 0.007033 +12 0.731818 0.598798 0.010850 0.007486 +13 0.825953 0.598457 0.010264 0.007260 +12 0.707478 0.595054 0.010264 0.008167 +13 0.210411 0.563181 0.010850 0.007940 +13 0.836804 0.560572 0.010850 0.007713 +13 0.233431 0.560118 0.009971 0.007260 +13 0.446774 0.560118 0.010850 0.008167 +13 0.725073 0.557396 0.011437 0.007260 +13 0.468768 0.556942 0.010264 0.007260 +13 0.256452 0.557055 0.010850 0.007486 +13 0.862610 0.554446 0.010850 0.007260 +12 0.765103 0.554106 0.010557 0.007033 +13 0.481085 0.553652 0.010850 0.007033 +13 0.269941 0.553879 0.010264 0.007486 +12 0.602493 0.553539 0.010264 0.007260 +12 0.425953 0.553426 0.010264 0.007033 +13 0.816276 0.551157 0.010850 0.007940 +13 0.750880 0.550930 0.010264 0.007940 +13 0.291935 0.550590 0.010850 0.007260 +13 0.849707 0.550703 0.010850 0.007940 +12 0.639150 0.550590 0.010850 0.007713 +12 0.352933 0.550476 0.010850 0.007486 +13 0.502786 0.550363 0.010264 0.007713 +12 0.391349 0.550250 0.010264 0.007940 +13 0.782405 0.547641 0.011144 0.006806 +13 0.802346 0.547300 0.011144 0.007033 +13 0.738710 0.547414 0.010557 0.007260 +13 0.313050 0.547300 0.010850 0.007033 +12 0.585630 0.547074 0.010557 0.007033 +12 0.369795 0.547074 0.010557 0.007033 +13 0.704692 0.547074 0.010557 0.007486 +13 0.524340 0.546960 0.011144 0.007260 +13 0.684604 0.544124 0.009677 0.007486 +13 0.663196 0.544238 0.010264 0.007713 +12 0.569501 0.544011 0.010557 0.007260 +12 0.329765 0.544238 0.010850 0.007713 +13 0.537537 0.543784 0.009971 0.007260 +12 0.552639 0.540608 0.010850 0.007260 +12 0.181085 0.524955 0.010264 0.007260 +12 0.625220 0.467786 0.010557 0.007260 +13 0.581085 0.465064 0.010264 0.007260 +13 0.653519 0.461661 0.010850 0.006806 +13 0.554545 0.461320 0.009971 0.006579 +13 0.679472 0.458598 0.009971 0.007033 +12 0.527566 0.458371 0.009971 0.007033 +13 0.705425 0.455309 0.010264 0.007260 +13 0.731378 0.452473 0.010557 0.007033 +13 0.503226 0.452019 0.010557 0.007033 +13 0.765982 0.449297 0.011144 0.007033 +13 0.484311 0.448843 0.010850 0.007033 +12 0.401320 0.448616 0.010264 0.007033 +13 0.790762 0.446348 0.010264 0.007486 +12 0.181085 0.445780 0.010850 0.007713 +12 0.463490 0.445554 0.010264 0.007713 +13 0.427126 0.445213 0.010264 0.007486 +12 0.854985 0.442945 0.010850 0.007486 +13 0.444721 0.442264 0.010264 0.007486 +12 0.302786 0.442264 0.010264 0.007486 +11 0.817742 0.439655 0.010264 0.007260 +11 0.368915 0.438861 0.010557 0.007486 +13 0.283138 0.438748 0.010850 0.007713 +13 0.265543 0.435685 0.010850 0.007940 +12 0.324780 0.435572 0.010850 0.008167 +11 0.209531 0.432509 0.010264 0.007940 +11 0.236657 0.432055 0.010557 0.007940 +12 0.179619 0.378857 0.010264 0.007260 +13 0.377419 0.372731 0.010557 0.007713 +12 0.456158 0.372505 0.010850 0.007713 +13 0.422434 0.369102 0.010264 0.007713 +11 0.855572 0.367173 0.010850 0.007486 +12 0.393988 0.365812 0.010850 0.007486 +13 0.365836 0.365926 0.010850 0.007713 +12 0.759091 0.363544 0.010264 0.007033 +11 0.720088 0.363544 0.010850 0.007033 +11 0.829765 0.360594 0.010850 0.007940 +11 0.805425 0.360368 0.010264 0.007940 +12 0.342962 0.359120 0.010850 0.007713 +12 0.781672 0.356851 0.010850 0.008167 +12 0.324194 0.355490 0.011437 0.008621 +12 0.678446 0.353108 0.010264 0.007486 +12 0.307771 0.352654 0.010264 0.007940 +13 0.693402 0.350045 0.009677 0.007260 +12 0.656158 0.349932 0.010264 0.007486 +12 0.291056 0.349251 0.010850 0.008394 +13 0.706891 0.346983 0.010850 0.007486 +12 0.640762 0.346416 0.010557 0.007713 +12 0.618622 0.343466 0.010264 0.008167 +12 0.545308 0.317151 0.010264 0.007713 +11 0.202786 0.316130 0.010264 0.007486 +12 0.201613 0.300476 0.011437 0.007940 +12 0.467742 0.313861 0.010557 0.007486 +17 0.495455 0.313181 0.012610 0.007033 +12 0.439883 0.310231 0.010557 0.007486 +12 0.420528 0.306715 0.010557 0.007260 +12 0.400733 0.303426 0.010850 0.007033 +12 0.254106 0.303426 0.010850 0.007486 +13 0.844575 0.302405 0.010557 0.007713 +12 0.360264 0.300703 0.010850 0.007940 +12 0.227126 0.300476 0.010850 0.007940 +13 0.861144 0.299229 0.010850 0.006806 +12 0.726833 0.298548 0.010850 0.006806 +12 0.341202 0.297414 0.011437 0.006806 +12 0.314516 0.297300 0.010850 0.007033 +13 0.814223 0.296053 0.010850 0.007713 +11 0.786657 0.295826 0.010850 0.007713 +12 0.706012 0.295485 0.010264 0.007033 +12 0.293988 0.294351 0.010850 0.007486 +13 0.831232 0.292763 0.010850 0.007486 +12 0.765543 0.292196 0.010850 0.007713 +12 0.665249 0.291629 0.010850 0.007033 +12 0.273314 0.290721 0.010557 0.007486 +12 0.745015 0.289133 0.009677 0.007033 +11 0.631525 0.288453 0.011437 0.007033 +12 0.609531 0.285277 0.010850 0.007033 +12 0.590469 0.282328 0.010264 0.007486 +12 0.570088 0.278698 0.010557 0.007486 +18 0.180205 0.238430 0.010264 0.007713 +11 0.180499 0.205989 0.010850 0.007260 +12 0.246774 0.238544 0.010850 0.008394 +12 0.245894 0.209279 0.010264 0.007940 +13 0.810264 0.237976 0.010557 0.008167 +13 0.809824 0.221302 0.010850 0.007033 +13 0.791496 0.237182 0.010557 0.007486 +13 0.790762 0.221075 0.010264 0.007033 +12 0.708358 0.237182 0.010850 0.007486 +12 0.708065 0.220622 0.010264 0.007033 +13 0.495748 0.236388 0.011437 0.007713 +13 0.495015 0.219714 0.011144 0.007033 +13 0.477566 0.236275 0.011437 0.007486 +13 0.476979 0.219714 0.010264 0.007033 +12 0.391349 0.235481 0.011437 0.007260 +12 0.390762 0.219260 0.010264 0.007486 +13 0.642669 0.234006 0.010850 0.007940 +13 0.642082 0.216992 0.010850 0.007486 +13 0.605572 0.233666 0.010557 0.008167 +13 0.605425 0.216992 0.010264 0.007486 +11 0.534018 0.233439 0.010557 0.008167 +12 0.533284 0.216538 0.010264 0.007033 +13 0.355132 0.232985 0.010557 0.008621 +13 0.354252 0.215858 0.010557 0.007940 +13 0.318182 0.232191 0.010557 0.008394 +13 0.317742 0.215971 0.010850 0.007260 +13 0.828006 0.230830 0.010850 0.007033 +13 0.828006 0.215177 0.010850 0.007486 +13 0.753959 0.230603 0.010557 0.007033 +13 0.753519 0.214723 0.009677 0.007033 +13 0.773167 0.230150 0.011437 0.007033 +13 0.772581 0.214496 0.010264 0.007486 +13 0.513930 0.229809 0.011437 0.007260 +13 0.513636 0.213362 0.010850 0.007033 +13 0.457918 0.229809 0.010850 0.007260 +13 0.457331 0.213022 0.010850 0.007260 +13 0.438123 0.229242 0.011144 0.007486 +13 0.437683 0.213135 0.010264 0.007033 +13 0.623900 0.226860 0.010850 0.007260 +13 0.623607 0.210753 0.010264 0.007713 +13 0.587830 0.226860 0.010264 0.007260 +13 0.587830 0.210753 0.010264 0.007713 +12 0.557331 0.226633 0.010264 0.007260 +12 0.557038 0.210526 0.010850 0.007713 +13 0.337537 0.226066 0.010557 0.007486 +13 0.337097 0.209959 0.010850 0.007940 +13 0.299267 0.225839 0.010264 0.007486 +13 0.298387 0.209732 0.010850 0.007940 +12 0.274194 0.225839 0.010557 0.007486 +12 0.274047 0.209279 0.010264 0.007940 +13 0.735044 0.224138 0.010264 0.007713 +13 0.734457 0.208031 0.010264 0.007260 +13 0.419795 0.222550 0.010850 0.007713 +13 0.419208 0.206443 0.010850 0.007260 +11 0.213490 0.212568 0.010557 0.007260 +12 0.213783 0.238090 0.010557 0.008394 +18 0.779032 0.157554 0.012023 0.007940 +12 0.778446 0.134301 0.010850 0.007713 +18 0.707478 0.156307 0.010850 0.008167 +12 0.706891 0.127382 0.010850 0.007486 +12 0.511290 0.152337 0.010264 0.007486 +13 0.536217 0.151996 0.010850 0.007713 +13 0.552053 0.149047 0.009677 0.008167 +13 0.567302 0.145871 0.010850 0.007713 +11 0.479032 0.145531 0.011437 0.007486 +13 0.445308 0.145304 0.010850 0.007486 +13 0.582698 0.142809 0.009971 0.007940 +13 0.422434 0.142128 0.010850 0.007486 +13 0.285924 0.141901 0.011144 0.008394 +13 0.197214 0.141674 0.010850 0.007940 +12 0.732991 0.140426 0.010264 0.007260 +13 0.599413 0.139746 0.010557 0.007260 +13 0.309238 0.138952 0.010850 0.007940 +12 0.757918 0.137137 0.010850 0.007033 +13 0.620968 0.136343 0.010264 0.006806 +13 0.326100 0.135549 0.010557 0.007033 +13 0.270088 0.135436 0.010557 0.007260 +13 0.406452 0.135322 0.010557 0.007486 +13 0.636364 0.133280 0.010557 0.007940 +13 0.213050 0.132260 0.010850 0.008167 +13 0.813636 0.131012 0.010850 0.007033 +13 0.651760 0.130104 0.010850 0.007033 +13 0.390469 0.128970 0.011437 0.007486 +13 0.341789 0.128970 0.011437 0.007486 +13 0.246481 0.128743 0.010850 0.007486 +12 0.856305 0.128176 0.010557 0.007713 +12 0.831525 0.128176 0.010850 0.007713 +13 0.181818 0.128176 0.011144 0.007713 +12 0.685777 0.127155 0.010850 0.007486 +13 0.373167 0.126361 0.010850 0.007713 +13 0.229179 0.125794 0.011437 0.007940 +13 0.797801 0.124546 0.010850 0.007260 +13 0.357331 0.122958 0.010850 0.007260 +4 0.696628 0.220622 0.009677 0.018829 +3 0.242962 0.303652 0.007331 0.019737 +1 0.120381 0.123752 0.022581 0.046960 +5 0.234164 0.206329 0.007918 0.015653 +4 0.843842 0.367173 0.009677 0.018376 +3 0.608651 0.132146 0.011437 0.028358 +3 0.484018 0.313407 0.007331 0.020191 +4 0.415249 0.445894 0.009384 0.018829 +3 0.468182 0.145304 0.007331 0.020644 +4 0.388710 0.303652 0.009091 0.019283 +3 0.411290 0.368988 0.007918 0.019283 +4 0.196921 0.433417 0.008504 0.018829 +1 0.119208 0.457237 0.022581 0.046053 +4 0.354985 0.366266 0.009091 0.019283 +3 0.298094 0.138725 0.007331 0.021098 +3 0.818768 0.361048 0.007625 0.020644 +3 0.826540 0.560005 0.006745 0.019283 +4 0.719062 0.452246 0.009384 0.018376 +4 0.433871 0.145985 0.009091 0.018829 +3 0.845894 0.128063 0.007331 0.021098 +5 0.329765 0.292990 0.008504 0.015200 +4 0.257918 0.134868 0.009091 0.019737 +4 0.379032 0.218807 0.009091 0.019283 +4 0.455572 0.314088 0.009091 0.018829 +5 0.561144 0.603675 0.008504 0.015426 +4 0.169208 0.446121 0.009971 0.019283 +4 0.569062 0.464496 0.009677 0.018829 +3 0.389736 0.448843 0.007625 0.019283 +3 0.668035 0.458598 0.007038 0.019737 +4 0.773460 0.604923 0.008504 0.018829 +4 0.596921 0.684324 0.009091 0.019283 +3 0.345601 0.672981 0.007331 0.020191 +3 0.791642 0.547981 0.009091 0.019283 +3 0.696921 0.594714 0.006745 0.020191 +3 0.281672 0.697936 0.007331 0.020644 +3 0.195161 0.631125 0.007331 0.019056 +4 0.576100 0.777564 0.009091 0.018829 +4 0.407478 0.684324 0.009091 0.019283 +3 0.381672 0.774841 0.007331 0.019737 +3 0.380352 0.550023 0.008211 0.020191 +4 0.843842 0.443398 0.009677 0.019283 +4 0.668035 0.352654 0.009971 0.018376 +4 0.341935 0.550930 0.009971 0.020191 +4 0.805718 0.439882 0.009677 0.019056 +4 0.356745 0.439315 0.009091 0.018376 +3 0.197801 0.772913 0.007918 0.019510 +3 0.516276 0.458598 0.007331 0.020191 +4 0.641789 0.460867 0.009677 0.018829 +1 0.119795 0.537092 0.022581 0.046053 +1 0.120088 0.776429 0.022581 0.046506 +4 0.783138 0.683870 0.009677 0.018829 +4 0.246481 0.556828 0.009091 0.018829 +3 0.227126 0.432963 0.007918 0.020644 +4 0.715103 0.557282 0.009091 0.017922 +3 0.512170 0.696574 0.007331 0.019737 +4 0.724487 0.783462 0.009091 0.018376 +3 0.699853 0.696801 0.007331 0.020191 +3 0.722141 0.672981 0.007331 0.019737 +4 0.414663 0.552972 0.008798 0.018829 +4 0.693402 0.455422 0.009677 0.019283 +1 0.118035 0.292763 0.022581 0.046506 +1 0.118915 0.616946 0.022581 0.046053 +1 0.119795 0.697028 0.022581 0.046506 +1 0.118915 0.377155 0.022581 0.046506 +1 0.120674 0.854015 0.023167 0.046506 +3 0.580792 0.282781 0.007331 0.019283 +1 0.119501 0.208371 0.022581 0.046506 +4 0.612463 0.467446 0.009677 0.018376 +4 0.778006 0.445894 0.009971 0.019283 +3 0.213050 0.688181 0.007331 0.019283 +3 0.254985 0.435912 0.007331 0.020191 +4 0.170528 0.773480 0.009677 0.019737 +3 0.292522 0.781647 0.007331 0.020191 +4 0.265836 0.782101 0.009091 0.019283 +3 0.458504 0.607872 0.007331 0.019283 +3 0.535630 0.672074 0.007331 0.019737 +3 0.170674 0.637591 0.007038 0.019283 +3 0.223314 0.776202 0.007331 0.020191 +3 0.331818 0.608553 0.007331 0.019283 +4 0.543548 0.461093 0.009091 0.019737 +5 0.143402 0.534483 0.007038 0.014973 +5 0.150733 0.525181 0.007625 0.015426 +4 0.168328 0.525408 0.008798 0.017695 +3 0.833138 0.686706 0.007038 0.019056 +3 0.808504 0.684324 0.005865 0.020191 +3 0.627713 0.550136 0.006158 0.019056 +4 0.652053 0.544691 0.009091 0.018149 +3 0.533138 0.771098 0.007038 0.018603 +4 0.508504 0.771325 0.008211 0.019056 +3 0.468035 0.764746 0.007038 0.019510 +4 0.443988 0.762250 0.008211 0.018149 +4 0.197361 0.562954 0.008798 0.017468 +3 0.221701 0.559437 0.007038 0.019056 +4 0.793695 0.360481 0.008504 0.018603 +3 0.771994 0.356397 0.006158 0.019510 +3 0.722287 0.139292 0.007038 0.019964 +4 0.745455 0.136570 0.007625 0.019056 +3 0.629912 0.346869 0.006452 0.019964 +4 0.606158 0.343013 0.008211 0.017695 +3 0.343109 0.787659 0.005865 0.019510 +4 0.319062 0.785163 0.008211 0.018149 +5 0.143402 0.121597 0.008211 0.014973 +5 0.151320 0.112069 0.007625 0.014973 +4 0.694575 0.547187 0.008504 0.018149 +3 0.673900 0.542763 0.006452 0.017922 +5 0.142815 0.375454 0.007625 0.015426 +5 0.150733 0.365472 0.008211 0.014519 +3 0.437243 0.559097 0.006452 0.018829 +4 0.456012 0.557169 0.011144 0.018149 +5 0.142522 0.205989 0.008211 0.014973 +5 0.150440 0.196234 0.007625 0.015426 +3 0.491349 0.549909 0.006745 0.019056 +4 0.513783 0.546960 0.008798 0.018603 +5 0.142522 0.290381 0.007625 0.015880 +5 0.149560 0.280399 0.007625 0.014973 +3 0.281672 0.550590 0.006158 0.019510 +4 0.303079 0.546733 0.009091 0.018149 +5 0.143402 0.614791 0.007625 0.014973 +5 0.150440 0.605263 0.007625 0.014973 +5 0.143988 0.851407 0.008211 0.015426 +5 0.151906 0.842105 0.007625 0.014973 +5 0.142522 0.455535 0.007625 0.014973 +5 0.150440 0.446234 0.007625 0.015426 +5 0.144282 0.694873 0.007625 0.015426 +5 0.151320 0.685345 0.007625 0.015426 +5 0.144282 0.773367 0.008211 0.014519 +5 0.151026 0.763838 0.007625 0.015426 +4 0.753226 0.449864 0.007918 0.017695 +3 0.745015 0.449183 0.006745 0.019056 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_14.jpg b/data_dataset/mosz/debug/debug_14.jpg new file mode 100644 index 0000000..6ea16bd Binary files /dev/null and b/data_dataset/mosz/debug/debug_14.jpg differ diff --git a/data_dataset/mosz/debug/debug_14.txt b/data_dataset/mosz/debug/debug_14.txt new file mode 100644 index 0000000..9c3e2a3 --- /dev/null +++ b/data_dataset/mosz/debug/debug_14.txt @@ -0,0 +1,448 @@ +10 0.836176 0.854091 0.013529 0.006364 +7 0.676765 0.856023 0.012353 0.015682 +7 0.540000 0.856250 0.012941 0.016136 +7 0.498824 0.856250 0.012941 0.016136 +7 0.619118 0.855795 0.012353 0.016136 +7 0.580294 0.855795 0.013529 0.016136 +6 0.812059 0.852841 0.011176 0.022955 +6 0.745000 0.852386 0.011176 0.022045 +6 0.695882 0.852614 0.011765 0.022500 +9 0.275000 0.849886 0.012353 0.028864 +7 0.200294 0.773295 0.012353 0.016591 +8 0.537647 0.777614 0.015294 0.026136 +6 0.226765 0.770568 0.010000 0.022045 +7 0.607647 0.695114 0.012941 0.015682 +6 0.629706 0.692386 0.011176 0.022955 +10 0.509706 0.606136 0.008824 0.002273 +8 0.286176 0.364659 0.014706 0.026591 +7 0.305882 0.363523 0.012941 0.016136 +7 0.195294 0.363523 0.012941 0.016136 +7 0.388235 0.362386 0.012941 0.015682 +7 0.168235 0.291250 0.012941 0.016136 +9 0.811176 0.283182 0.015294 0.041818 +8 0.703529 0.278750 0.014118 0.027500 +7 0.622941 0.278068 0.012941 0.016136 +8 0.559412 0.285455 0.015294 0.038182 +7 0.747353 0.277841 0.013529 0.016591 +7 0.718235 0.277386 0.012941 0.016591 +7 0.574706 0.277159 0.012941 0.016136 +7 0.825588 0.277159 0.012353 0.017045 +10 0.699706 0.203182 0.013529 0.006364 +7 0.657647 0.209432 0.012941 0.025227 +10 0.794706 0.200000 0.014118 0.006364 +10 0.261765 0.125682 0.012941 0.005909 +7 0.197059 0.128295 0.012941 0.015682 +7 0.390000 0.127386 0.012941 0.016591 +10 0.328529 0.123182 0.013529 0.006364 +6 0.226471 0.125114 0.010588 0.023864 +6 0.778529 0.123977 0.011176 0.022500 +17 0.788971 0.885341 0.010882 0.007955 +11 0.788971 0.871932 0.010882 0.007500 +11 0.788676 0.849659 0.010294 0.007500 +11 0.788971 0.839432 0.010882 0.007955 +11 0.719412 0.871705 0.010588 0.007045 +11 0.719265 0.849432 0.010294 0.007045 +12 0.600588 0.859205 0.009412 0.006591 +12 0.600147 0.836705 0.010882 0.007045 +12 0.658382 0.849659 0.009706 0.007500 +12 0.657794 0.827727 0.010882 0.008182 +12 0.518529 0.849659 0.010000 0.007500 +12 0.517941 0.827386 0.011176 0.008409 +13 0.340147 0.843977 0.010882 0.007955 +13 0.354559 0.843750 0.010294 0.008409 +13 0.275147 0.841023 0.010294 0.007500 +13 0.258971 0.841250 0.010882 0.007955 +13 0.224265 0.841250 0.010882 0.007955 +13 0.204559 0.841023 0.010294 0.007500 +13 0.190735 0.841250 0.010882 0.007955 +13 0.170882 0.841250 0.010588 0.007955 +13 0.311176 0.840795 0.011176 0.007955 +13 0.294559 0.840795 0.010294 0.007955 +13 0.238676 0.840795 0.010294 0.007955 +12 0.559853 0.839886 0.010294 0.007045 +13 0.410294 0.838068 0.010588 0.007955 +13 0.425441 0.837614 0.010882 0.007955 +13 0.390735 0.834205 0.010882 0.008409 +13 0.374265 0.834432 0.010882 0.008864 +12 0.477206 0.827614 0.010882 0.007955 +13 0.443676 0.827841 0.010882 0.008409 +18 0.559265 0.817841 0.010294 0.007500 +11 0.170441 0.802955 0.010294 0.008182 +12 0.169412 0.789432 0.010588 0.007955 +12 0.513088 0.801250 0.010882 0.007955 +12 0.512500 0.788750 0.010882 0.007500 +13 0.475441 0.797841 0.009706 0.007500 +13 0.457794 0.791932 0.010882 0.007500 +13 0.438676 0.789205 0.010294 0.007500 +13 0.263382 0.789205 0.010294 0.007500 +13 0.559853 0.788750 0.010294 0.007500 +13 0.289853 0.786023 0.010294 0.007500 +13 0.608235 0.785341 0.011176 0.007955 +13 0.588529 0.785341 0.010588 0.007955 +13 0.315735 0.782841 0.010294 0.006591 +13 0.808088 0.766477 0.010294 0.007500 +13 0.422353 0.782614 0.010588 0.007045 +13 0.653971 0.782159 0.010294 0.007045 +13 0.637794 0.782159 0.010882 0.007045 +13 0.332794 0.779432 0.010294 0.007045 +13 0.696618 0.778977 0.010882 0.007955 +13 0.676324 0.778750 0.010294 0.007500 +13 0.403676 0.776477 0.010882 0.007500 +13 0.350147 0.776477 0.010882 0.007500 +13 0.737794 0.776023 0.010882 0.007500 +13 0.719118 0.776023 0.010588 0.007500 +13 0.366912 0.773295 0.010294 0.007500 +13 0.782353 0.772614 0.011176 0.007955 +13 0.762059 0.772614 0.011176 0.007955 +13 0.386618 0.770114 0.010882 0.006591 +13 0.827206 0.766477 0.010882 0.007500 +13 0.854265 0.756705 0.010882 0.007955 +13 0.855441 0.720795 0.010882 0.007045 +13 0.838235 0.713977 0.011765 0.007955 +13 0.491618 0.711477 0.010294 0.007500 +13 0.187206 0.711477 0.010882 0.007500 +13 0.661912 0.711023 0.010882 0.007500 +13 0.413676 0.711023 0.010882 0.007500 +13 0.821912 0.710568 0.010882 0.007500 +13 0.210441 0.708750 0.010294 0.007500 +13 0.475441 0.708295 0.010882 0.007500 +13 0.436618 0.708295 0.010882 0.007500 +13 0.688382 0.707386 0.010882 0.007500 +13 0.807206 0.704432 0.010882 0.007045 +13 0.711618 0.704432 0.010294 0.007045 +13 0.460147 0.704659 0.010882 0.007500 +13 0.235441 0.704886 0.010882 0.007955 +13 0.250735 0.702159 0.010882 0.007955 +13 0.726618 0.701250 0.010882 0.007955 +13 0.266029 0.698977 0.010882 0.007045 +13 0.791471 0.698068 0.010588 0.007045 +13 0.742500 0.698068 0.010882 0.007045 +13 0.282206 0.696023 0.011471 0.008409 +13 0.170294 0.695795 0.010588 0.007955 +13 0.757206 0.695114 0.010882 0.007500 +13 0.320441 0.692386 0.010294 0.007500 +13 0.297353 0.692386 0.011176 0.007500 +13 0.774853 0.691477 0.010882 0.007500 +13 0.396618 0.689205 0.010882 0.007500 +13 0.336324 0.689432 0.010294 0.007955 +13 0.381029 0.686250 0.010294 0.007045 +13 0.359853 0.683068 0.010294 0.007955 +11 0.513824 0.682614 0.010588 0.007955 +12 0.584853 0.679205 0.010882 0.007500 +13 0.588235 0.624659 0.011176 0.007500 +13 0.852647 0.624205 0.010588 0.007500 +13 0.816029 0.624205 0.010882 0.007500 +13 0.625441 0.624432 0.010882 0.007955 +13 0.606618 0.621250 0.010882 0.007045 +13 0.473824 0.621250 0.011176 0.007045 +13 0.834118 0.620795 0.010588 0.007045 +13 0.739559 0.621023 0.010882 0.007500 +13 0.703088 0.620795 0.010882 0.007045 +13 0.512059 0.621023 0.011176 0.007500 +13 0.417794 0.618523 0.010882 0.007045 +13 0.720735 0.618068 0.010882 0.007045 +13 0.644853 0.618295 0.010882 0.007500 +13 0.492647 0.618295 0.011176 0.007500 +13 0.453676 0.618523 0.010882 0.007955 +13 0.683824 0.618068 0.011765 0.007955 +13 0.664265 0.614886 0.010882 0.007045 +13 0.435441 0.614886 0.010882 0.007045 +13 0.380441 0.615114 0.010294 0.007500 +13 0.342647 0.615114 0.010588 0.007500 +13 0.568971 0.611932 0.010882 0.007500 +13 0.532500 0.611932 0.010882 0.007500 +13 0.361618 0.611932 0.010294 0.007500 +13 0.322500 0.611932 0.010882 0.007500 +13 0.284265 0.611932 0.010882 0.007500 +13 0.264265 0.611932 0.010882 0.007500 +13 0.797059 0.611477 0.010588 0.007500 +13 0.759559 0.611477 0.010882 0.007500 +13 0.207206 0.611932 0.010882 0.008409 +13 0.170147 0.611932 0.010882 0.008409 +13 0.550588 0.608523 0.011176 0.007045 +13 0.303235 0.608523 0.011176 0.007045 +13 0.246029 0.608750 0.010882 0.007500 +13 0.189706 0.608523 0.011176 0.007045 +13 0.778971 0.608068 0.010882 0.007045 +13 0.227353 0.605341 0.010588 0.007955 +13 0.412500 0.556250 0.010882 0.007045 +13 0.437794 0.553068 0.010882 0.007955 +13 0.464706 0.549659 0.010588 0.007500 +12 0.648824 0.546932 0.011176 0.007500 +13 0.482500 0.547159 0.010882 0.007955 +13 0.373971 0.546932 0.011471 0.007500 +13 0.337206 0.546932 0.010882 0.007500 +13 0.613676 0.543523 0.010882 0.007045 +13 0.574853 0.543523 0.010882 0.007045 +13 0.500735 0.543523 0.010882 0.007045 +13 0.262206 0.543523 0.010294 0.007045 +13 0.225441 0.543750 0.010882 0.007500 +13 0.356471 0.543295 0.011176 0.007500 +13 0.594853 0.540795 0.010882 0.007955 +13 0.244265 0.540795 0.010882 0.007955 +13 0.206618 0.540795 0.010882 0.007955 +13 0.556912 0.540568 0.011471 0.008409 +13 0.519559 0.540341 0.010882 0.007955 +13 0.394265 0.540341 0.010882 0.007955 +13 0.170147 0.540568 0.010882 0.008409 +13 0.188529 0.536932 0.011176 0.007500 +13 0.539265 0.534432 0.011471 0.007955 +13 0.318382 0.534205 0.010882 0.007500 +13 0.281324 0.534205 0.010882 0.007500 +13 0.852647 0.530568 0.010588 0.007500 +13 0.814412 0.530568 0.011176 0.007500 +13 0.300441 0.530568 0.010294 0.007500 +13 0.832794 0.527386 0.011471 0.007500 +13 0.794265 0.527727 0.010882 0.008182 +13 0.759118 0.527386 0.010588 0.007500 +13 0.776912 0.523750 0.010294 0.007500 +13 0.733676 0.523750 0.010882 0.007500 +13 0.696029 0.523750 0.010882 0.007500 +13 0.676029 0.523977 0.010882 0.007955 +13 0.714559 0.521250 0.010294 0.007955 +13 0.278088 0.478068 0.010294 0.007045 +12 0.169853 0.478295 0.010294 0.007500 +12 0.169412 0.462159 0.010000 0.007045 +13 0.356029 0.468750 0.010882 0.007500 +13 0.298382 0.468750 0.010882 0.007500 +12 0.198529 0.468523 0.010588 0.007955 +12 0.375735 0.465568 0.010294 0.006591 +12 0.223824 0.465341 0.010588 0.007045 +13 0.316912 0.462386 0.011471 0.007500 +13 0.854853 0.459205 0.010882 0.007500 +13 0.819853 0.459205 0.011471 0.007500 +13 0.837059 0.456477 0.010588 0.007500 +13 0.799706 0.456477 0.010588 0.007500 +12 0.448382 0.456250 0.010882 0.007045 +13 0.763824 0.456023 0.011176 0.007500 +13 0.652500 0.456023 0.010882 0.007500 +12 0.402500 0.456023 0.010882 0.007500 +13 0.336618 0.456023 0.010882 0.007500 +12 0.249265 0.456023 0.010294 0.007500 +13 0.743971 0.455795 0.010294 0.007955 +13 0.687794 0.455795 0.010882 0.007955 +13 0.725441 0.452841 0.010882 0.006591 +13 0.671176 0.453068 0.011176 0.007045 +13 0.633676 0.453068 0.010882 0.007045 +13 0.597794 0.453068 0.010882 0.007045 +13 0.782500 0.452614 0.010882 0.007045 +13 0.615735 0.449659 0.010294 0.007500 +13 0.577059 0.449659 0.010588 0.007500 +13 0.540147 0.449886 0.010882 0.007955 +13 0.707794 0.449432 0.010882 0.007955 +13 0.558676 0.446477 0.010294 0.007500 +13 0.513235 0.446477 0.010588 0.007500 +13 0.475882 0.446477 0.010588 0.007500 +13 0.494559 0.443295 0.010294 0.007500 +11 0.641618 0.392841 0.011471 0.007500 +12 0.641324 0.376705 0.010882 0.007045 +12 0.577059 0.392841 0.011176 0.007500 +12 0.577206 0.373523 0.010882 0.007045 +12 0.773088 0.389659 0.010882 0.007500 +13 0.773088 0.373068 0.010882 0.007045 +12 0.527794 0.389432 0.010882 0.007955 +13 0.527647 0.373295 0.010588 0.007500 +13 0.306029 0.386250 0.010882 0.007045 +13 0.286912 0.386250 0.010294 0.007045 +11 0.196029 0.386250 0.010882 0.007045 +12 0.745147 0.386023 0.010882 0.007500 +12 0.744853 0.370341 0.010882 0.007955 +12 0.467206 0.383295 0.010882 0.007500 +12 0.467059 0.367159 0.011176 0.007045 +12 0.386912 0.383295 0.010294 0.007500 +12 0.714706 0.383068 0.011176 0.007955 +12 0.714412 0.366932 0.011176 0.007500 +12 0.444265 0.380114 0.010882 0.007500 +12 0.443676 0.363977 0.010882 0.007045 +13 0.263088 0.379886 0.010882 0.007045 +12 0.262941 0.370568 0.010588 0.007500 +13 0.242794 0.379886 0.010294 0.007045 +13 0.793676 0.379659 0.010882 0.007500 +13 0.553676 0.379659 0.010882 0.007500 +13 0.325000 0.379659 0.010588 0.007500 +13 0.225441 0.373750 0.010882 0.007500 +12 0.214265 0.370341 0.010882 0.007955 +12 0.818529 0.373295 0.011176 0.007500 +11 0.818824 0.392386 0.011176 0.007500 +13 0.850588 0.370341 0.011176 0.007955 +13 0.603235 0.370341 0.011176 0.007955 +12 0.496471 0.370114 0.010588 0.007500 +11 0.496912 0.386250 0.010294 0.007045 +12 0.690294 0.363977 0.011176 0.007045 +12 0.691324 0.379886 0.010882 0.007955 +12 0.664853 0.360341 0.010882 0.007045 +12 0.665735 0.383295 0.011471 0.007500 +12 0.412500 0.360568 0.010882 0.007500 +12 0.412647 0.383295 0.010588 0.007500 +13 0.702500 0.300341 0.010882 0.007045 +11 0.623088 0.300341 0.010882 0.007045 +13 0.717500 0.300114 0.011471 0.007500 +13 0.588529 0.297841 0.010588 0.007500 +13 0.559265 0.297841 0.010294 0.007500 +11 0.441029 0.297841 0.010294 0.007500 +12 0.440735 0.281477 0.010882 0.007500 +11 0.382059 0.297841 0.010588 0.007500 +12 0.381912 0.281705 0.010294 0.007045 +13 0.838235 0.297386 0.010588 0.007500 +13 0.810294 0.297386 0.011176 0.007500 +12 0.747794 0.297159 0.010882 0.007045 +13 0.665441 0.294432 0.010882 0.007045 +13 0.731324 0.293977 0.010882 0.007045 +12 0.258971 0.291477 0.010882 0.007500 +12 0.258676 0.274886 0.011471 0.007955 +13 0.573971 0.291250 0.010294 0.007955 +13 0.824853 0.290795 0.010882 0.007955 +12 0.237647 0.288068 0.010588 0.007045 +12 0.237059 0.271932 0.011176 0.007500 +12 0.214265 0.288068 0.010882 0.007045 +12 0.641765 0.285000 0.010588 0.007273 +13 0.651471 0.287500 0.010588 0.007273 +12 0.535735 0.284773 0.010294 0.006818 +13 0.535735 0.291591 0.010294 0.006818 +12 0.513676 0.284773 0.010882 0.006818 +12 0.513676 0.291591 0.010882 0.006818 +13 0.789265 0.291477 0.011471 0.007045 +12 0.789265 0.284432 0.011471 0.007045 +12 0.767206 0.291136 0.010882 0.006818 +12 0.767206 0.284318 0.010882 0.006818 +12 0.682353 0.284432 0.010588 0.007045 +13 0.682647 0.294432 0.011176 0.007045 +12 0.492647 0.284659 0.010588 0.007500 +12 0.492059 0.297614 0.010588 0.007045 +13 0.416471 0.281932 0.010588 0.007500 +13 0.475735 0.281705 0.010294 0.007955 +12 0.343676 0.278295 0.010882 0.007500 +12 0.344412 0.294432 0.011176 0.007045 +13 0.283676 0.278295 0.010882 0.007500 +13 0.283676 0.294432 0.010882 0.007045 +13 0.460441 0.275114 0.011471 0.007500 +13 0.401618 0.275114 0.010294 0.007500 +12 0.316029 0.274886 0.010882 0.007955 +12 0.316029 0.291023 0.010882 0.007500 +13 0.299265 0.272614 0.011471 0.007955 +13 0.299559 0.288068 0.010882 0.007045 +11 0.188235 0.268750 0.010588 0.008409 +12 0.188824 0.285114 0.010588 0.007500 +13 0.442794 0.234205 0.011471 0.008409 +12 0.405441 0.233295 0.010882 0.008409 +12 0.404559 0.211250 0.010294 0.007955 +13 0.495588 0.230341 0.011176 0.007955 +12 0.465441 0.230114 0.010882 0.007500 +13 0.191324 0.229659 0.010882 0.006591 +12 0.168971 0.229659 0.010882 0.006591 +12 0.168824 0.214659 0.010588 0.007500 +13 0.550588 0.227386 0.011176 0.008409 +12 0.515882 0.227386 0.010588 0.008409 +13 0.427206 0.227386 0.010882 0.008409 +13 0.243676 0.227159 0.010882 0.007955 +12 0.573676 0.226932 0.010882 0.008409 +12 0.638088 0.223977 0.011471 0.007955 +13 0.482647 0.223977 0.011176 0.007955 +13 0.301618 0.221477 0.010294 0.007500 +13 0.207206 0.221250 0.010882 0.007045 +13 0.606029 0.221023 0.010882 0.007500 +13 0.536029 0.221023 0.010882 0.007500 +13 0.361324 0.221250 0.010882 0.007955 +13 0.591176 0.218295 0.010588 0.007500 +13 0.258971 0.217841 0.010882 0.007500 +12 0.223676 0.217841 0.010882 0.007500 +13 0.375735 0.214659 0.010294 0.007500 +12 0.341912 0.214886 0.010882 0.007955 +13 0.317206 0.214659 0.010882 0.007500 +12 0.283088 0.214886 0.010882 0.007955 +13 0.420147 0.155114 0.010882 0.007500 +12 0.168382 0.150341 0.010882 0.007955 +11 0.827794 0.149205 0.010882 0.007500 +11 0.827206 0.133523 0.009706 0.007045 +13 0.444265 0.149205 0.010882 0.007500 +12 0.467353 0.140114 0.011176 0.007500 +13 0.497206 0.133977 0.010882 0.007955 +13 0.521471 0.127614 0.011176 0.007955 +12 0.548235 0.118068 0.011176 0.007045 +13 0.653824 0.111477 0.010588 0.007500 +13 0.575441 0.111477 0.010882 0.007500 +13 0.678235 0.104886 0.011176 0.007955 +13 0.597647 0.104205 0.010588 0.008409 +12 0.624559 0.095341 0.010294 0.007955 +17 0.729706 0.095114 0.011765 0.008409 +3 0.413971 0.226250 0.010882 0.021136 +4 0.202794 0.288750 0.009706 0.018864 +4 0.272794 0.278523 0.008529 0.018409 +4 0.331618 0.214659 0.008529 0.019773 +3 0.563382 0.226932 0.007353 0.017955 +3 0.272794 0.214659 0.007353 0.019773 +4 0.733382 0.386023 0.009706 0.019773 +3 0.227500 0.288068 0.007353 0.019318 +4 0.610735 0.300341 0.009118 0.019318 +1 0.113676 0.125568 0.023235 0.046136 +3 0.808088 0.373295 0.007353 0.019773 +3 0.783971 0.379432 0.007353 0.018409 +5 0.680735 0.377386 0.007941 0.015227 +4 0.329559 0.843977 0.009118 0.019318 +5 0.429853 0.278295 0.008529 0.016136 +3 0.566618 0.373295 0.006765 0.019773 +4 0.183971 0.386023 0.009706 0.018864 +4 0.453088 0.549432 0.009118 0.019318 +4 0.309853 0.692841 0.009706 0.018864 +4 0.224265 0.704886 0.009118 0.019318 +4 0.850735 0.295341 0.005588 0.016591 +3 0.578676 0.785114 0.007353 0.019773 +5 0.453971 0.227159 0.008529 0.015682 +3 0.371618 0.281477 0.007353 0.019773 +4 0.158088 0.214659 0.008529 0.018864 +3 0.536912 0.685568 0.006176 0.014318 +4 0.626618 0.781705 0.009118 0.018409 +4 0.484853 0.386023 0.009118 0.018864 +1 0.114853 0.539432 0.022059 0.045682 +1 0.115735 0.772841 0.022647 0.046136 +1 0.113382 0.203523 0.022647 0.046591 +1 0.114559 0.375114 0.022647 0.046136 +1 0.116324 0.695568 0.022647 0.046136 +1 0.116618 0.856250 0.023235 0.045682 +4 0.502794 0.683068 0.008529 0.018409 +1 0.114853 0.289659 0.022059 0.046136 +1 0.115735 0.460114 0.022647 0.045227 +1 0.115735 0.616023 0.022647 0.046136 +3 0.427500 0.553068 0.007353 0.020227 +3 0.542206 0.379886 0.007353 0.019318 +3 0.747500 0.527614 0.007353 0.020227 +3 0.199559 0.708523 0.006765 0.020227 +3 0.529265 0.450341 0.007353 0.020227 +5 0.425882 0.705000 0.008235 0.015455 +3 0.449706 0.704773 0.006471 0.018636 +3 0.280000 0.785909 0.005882 0.019091 +4 0.303529 0.783182 0.008235 0.018182 +5 0.370294 0.682955 0.007647 0.015000 +3 0.348529 0.683182 0.006471 0.020000 +5 0.136176 0.692727 0.007647 0.015455 +5 0.144412 0.682500 0.007647 0.015000 +3 0.677647 0.707500 0.005882 0.019545 +4 0.700588 0.704318 0.008235 0.018636 +3 0.757353 0.389091 0.006471 0.019091 +4 0.762353 0.373182 0.008235 0.019091 +5 0.329412 0.290909 0.008235 0.015455 +3 0.332059 0.278182 0.006471 0.019091 +5 0.134118 0.123864 0.008235 0.015000 +5 0.142059 0.114091 0.007647 0.014545 +5 0.134412 0.201818 0.007647 0.015455 +5 0.142059 0.192273 0.007647 0.015455 +5 0.137059 0.854318 0.008235 0.015000 +5 0.144706 0.843864 0.008235 0.015000 +5 0.506176 0.223636 0.007647 0.015455 +5 0.525882 0.217045 0.007059 0.014091 +3 0.510294 0.389091 0.006471 0.019091 +4 0.515294 0.373409 0.008235 0.019545 +5 0.135588 0.615000 0.007647 0.015455 +5 0.143235 0.604545 0.007647 0.014545 +5 0.136176 0.537045 0.007647 0.015000 +5 0.143529 0.527955 0.008235 0.015000 +5 0.136471 0.770682 0.007059 0.015000 +5 0.144412 0.761136 0.007647 0.015000 +5 0.135294 0.373409 0.007059 0.015000 +5 0.143235 0.363636 0.007647 0.014545 +5 0.429118 0.375682 0.007647 0.015000 +3 0.433235 0.363864 0.006471 0.019545 +5 0.135588 0.458864 0.007647 0.015000 +5 0.143529 0.448636 0.008235 0.014545 +5 0.135294 0.287955 0.007059 0.015000 +5 0.142647 0.278409 0.007647 0.015000 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_15.jpg b/data_dataset/mosz/debug/debug_15.jpg new file mode 100644 index 0000000..0934216 Binary files /dev/null and b/data_dataset/mosz/debug/debug_15.jpg differ diff --git a/data_dataset/mosz/debug/debug_15.txt b/data_dataset/mosz/debug/debug_15.txt new file mode 100644 index 0000000..8f60f00 --- /dev/null +++ b/data_dataset/mosz/debug/debug_15.txt @@ -0,0 +1,468 @@ +9 0.301671 0.870803 0.007036 0.022913 +7 0.202287 0.730036 0.012313 0.014973 +7 0.723248 0.669578 0.013486 0.016107 +7 0.790970 0.669805 0.012899 0.016561 +7 0.626796 0.669351 0.012899 0.016107 +7 0.557021 0.673208 0.012899 0.024274 +10 0.590736 0.664701 0.013486 0.005898 +6 0.757256 0.666856 0.011140 0.022459 +6 0.738786 0.666629 0.010554 0.022913 +10 0.368514 0.652450 0.008795 0.003176 +8 0.482556 0.601974 0.015245 0.026996 +8 0.407505 0.604469 0.015245 0.024274 +8 0.344767 0.603789 0.015245 0.022005 +8 0.284667 0.610027 0.014658 0.034936 +9 0.604955 0.594034 0.014952 0.034256 +8 0.544562 0.603902 0.016124 0.034483 +7 0.603928 0.538226 0.012313 0.019737 +7 0.716799 0.539587 0.012899 0.016561 +6 0.624743 0.536184 0.010554 0.022005 +6 0.387863 0.476293 0.011140 0.022913 +6 0.321313 0.476407 0.010554 0.022686 +6 0.363823 0.476066 0.011140 0.022459 +7 0.154940 0.412092 0.013193 0.015200 +7 0.217092 0.412092 0.013193 0.015653 +6 0.294928 0.409369 0.011727 0.022913 +6 0.272354 0.408916 0.011140 0.022005 +6 0.233949 0.408689 0.011727 0.022459 +6 0.672823 0.408462 0.009968 0.023367 +6 0.638229 0.408462 0.011140 0.022459 +6 0.693492 0.408008 0.011434 0.022913 +8 0.817649 0.359347 0.015245 0.034936 +6 0.215186 0.149387 0.011140 0.023820 +12 0.796834 0.895304 0.010554 0.007940 +12 0.821020 0.888612 0.010847 0.007713 +12 0.647757 0.884415 0.010261 0.007486 +12 0.839343 0.883054 0.011140 0.007486 +13 0.619613 0.881125 0.010261 0.008167 +13 0.665347 0.877949 0.010261 0.007260 +13 0.590296 0.878063 0.010261 0.007486 +13 0.679713 0.872051 0.010847 0.007260 +13 0.605394 0.871484 0.011140 0.007033 +13 0.576517 0.871484 0.010847 0.007033 +13 0.308267 0.870803 0.010261 0.007033 +12 0.208883 0.870463 0.010847 0.007260 +12 0.183670 0.870236 0.010847 0.007260 +11 0.722076 0.869442 0.011140 0.007033 +13 0.560539 0.868081 0.010554 0.007940 +12 0.228232 0.867514 0.011434 0.007713 +11 0.763559 0.866039 0.010261 0.006579 +13 0.546907 0.864678 0.010847 0.007486 +12 0.253591 0.864111 0.010554 0.007260 +11 0.696130 0.862863 0.010261 0.007486 +13 0.494137 0.861842 0.010847 0.007260 +13 0.287013 0.861162 0.010554 0.007713 +11 0.154940 0.860935 0.011434 0.007713 +13 0.525506 0.858666 0.010261 0.007260 +13 0.511140 0.855263 0.010847 0.007713 +13 0.321753 0.855150 0.010847 0.007486 +13 0.474494 0.851974 0.010261 0.007486 +13 0.337291 0.851747 0.010261 0.007486 +12 0.411023 0.848684 0.011140 0.007713 +12 0.391527 0.848571 0.010847 0.007486 +12 0.372471 0.848571 0.010261 0.007486 +12 0.353269 0.848684 0.011140 0.007713 +13 0.444884 0.848684 0.010847 0.008167 +13 0.459543 0.845054 0.010847 0.008167 +12 0.660070 0.823049 0.010847 0.008167 +12 0.425828 0.821915 0.010261 0.007713 +12 0.682938 0.819986 0.010847 0.007033 +12 0.450454 0.818398 0.010261 0.007486 +11 0.183377 0.818172 0.010847 0.007486 +13 0.715773 0.816924 0.010847 0.007260 +12 0.480651 0.816016 0.010847 0.007260 +11 0.155966 0.815336 0.009968 0.007260 +13 0.729698 0.810685 0.010554 0.006579 +12 0.627822 0.810118 0.010847 0.006806 +12 0.326297 0.809778 0.010554 0.007033 +12 0.560246 0.809551 0.010554 0.007033 +12 0.393286 0.809324 0.010847 0.007033 +13 0.229258 0.809097 0.010554 0.007033 +12 0.204632 0.809097 0.011140 0.007033 +12 0.610818 0.806942 0.010847 0.006806 +12 0.645119 0.806715 0.010261 0.007260 +12 0.409997 0.806148 0.010261 0.007033 +12 0.376869 0.806261 0.010847 0.007260 +12 0.592641 0.803879 0.010847 0.007033 +12 0.360305 0.803426 0.010554 0.007033 +13 0.744503 0.801157 0.010847 0.007486 +12 0.545001 0.800250 0.010554 0.007486 +12 0.310613 0.800136 0.010847 0.007260 +13 0.768543 0.798321 0.010847 0.007260 +12 0.840223 0.795599 0.011140 0.007713 +12 0.822486 0.795599 0.010847 0.007713 +12 0.805482 0.795599 0.010847 0.007713 +12 0.787306 0.795372 0.010847 0.007713 +12 0.529024 0.794011 0.010261 0.007713 +12 0.292143 0.793897 0.010261 0.007486 +11 0.503518 0.787545 0.010847 0.007486 +11 0.263119 0.787432 0.010847 0.007260 +12 0.758868 0.765994 0.010847 0.007940 +12 0.648050 0.765313 0.010847 0.007940 +11 0.387716 0.765086 0.010847 0.008394 +12 0.724274 0.762591 0.010847 0.007486 +12 0.619613 0.762477 0.010261 0.007713 +12 0.358399 0.761797 0.010847 0.007260 +17 0.497801 0.761570 0.010554 0.007260 +12 0.791410 0.760322 0.010261 0.008394 +12 0.707271 0.759528 0.010847 0.007713 +11 0.474787 0.758848 0.010261 0.007260 +12 0.603489 0.758848 0.010847 0.007713 +12 0.309880 0.758848 0.011140 0.008167 +12 0.341689 0.758621 0.010261 0.008167 +12 0.775579 0.756012 0.010261 0.007033 +12 0.690853 0.756125 0.010261 0.007260 +12 0.587071 0.755672 0.010847 0.007713 +12 0.438581 0.755104 0.010554 0.007486 +12 0.325858 0.755104 0.010261 0.007486 +12 0.294782 0.754991 0.011434 0.007713 +12 0.808414 0.753630 0.010261 0.007260 +11 0.667106 0.752609 0.010261 0.007033 +11 0.519936 0.752382 0.010261 0.007033 +11 0.410583 0.752155 0.010847 0.007033 +11 0.558341 0.752382 0.010847 0.007940 +12 0.278071 0.752042 0.010847 0.007260 +17 0.234096 0.751928 0.012020 0.007033 +12 0.843008 0.750681 0.010847 0.007713 +12 0.825711 0.747505 0.010847 0.006806 +12 0.184550 0.708371 0.010261 0.007486 +17 0.157872 0.708371 0.012020 0.007486 +12 0.156699 0.693852 0.010847 0.007486 +12 0.156406 0.678652 0.010847 0.007033 +12 0.156552 0.662659 0.011140 0.007713 +12 0.476546 0.688067 0.011434 0.007260 +12 0.641601 0.685458 0.010847 0.007033 +12 0.538405 0.685458 0.010847 0.007486 +17 0.510847 0.685572 0.012020 0.007713 +12 0.454119 0.681942 0.010554 0.007713 +12 0.430959 0.681828 0.009968 0.007940 +13 0.391381 0.678652 0.010554 0.007033 +13 0.294195 0.678652 0.010847 0.007486 +12 0.408824 0.675590 0.010261 0.007260 +12 0.348432 0.675703 0.010261 0.007486 +13 0.371006 0.672527 0.010847 0.007486 +13 0.316476 0.672300 0.010847 0.007486 +13 0.240252 0.666289 0.010847 0.007260 +13 0.182938 0.665835 0.011140 0.007713 +12 0.810173 0.664360 0.010847 0.007486 +12 0.705218 0.663226 0.010847 0.007486 +17 0.663295 0.663226 0.011434 0.007940 +12 0.271328 0.662886 0.010847 0.007713 +12 0.221489 0.662772 0.010847 0.008394 +13 0.254911 0.659483 0.010847 0.007260 +13 0.206245 0.659369 0.010847 0.007940 +17 0.830108 0.642355 0.012020 0.007033 +17 0.834506 0.626021 0.011434 0.007033 +11 0.834359 0.607985 0.011140 0.007260 +13 0.834359 0.591198 0.011140 0.006352 +11 0.834359 0.597550 0.011140 0.006352 +11 0.725447 0.623979 0.010261 0.007033 +11 0.724861 0.608212 0.010261 0.007260 +11 0.725007 0.591992 0.010554 0.007486 +11 0.698476 0.624206 0.010261 0.007486 +11 0.697889 0.608212 0.010261 0.007260 +11 0.698036 0.591878 0.010554 0.007260 +13 0.305629 0.622731 0.010261 0.007260 +12 0.326151 0.619102 0.010261 0.007713 +13 0.361331 0.617173 0.010261 0.007486 +12 0.387423 0.613657 0.010847 0.007713 +11 0.218264 0.610368 0.010261 0.007033 +13 0.428760 0.610254 0.010847 0.007260 +11 0.189680 0.610141 0.010554 0.007033 +12 0.462474 0.607418 0.010847 0.007486 +12 0.263999 0.607418 0.010847 0.007486 +13 0.506450 0.600953 0.010847 0.007260 +11 0.161096 0.600726 0.010847 0.007260 +12 0.524626 0.598004 0.010847 0.006806 +13 0.560686 0.594941 0.010261 0.007940 +11 0.806948 0.591765 0.010847 0.006579 +11 0.807241 0.626475 0.010847 0.007033 +11 0.806948 0.608553 0.010261 0.007486 +11 0.806948 0.598344 0.010847 0.006579 +12 0.584286 0.591765 0.010554 0.007486 +11 0.780709 0.591198 0.010554 0.006806 +11 0.780856 0.626475 0.010847 0.007486 +11 0.781003 0.608212 0.009968 0.007260 +11 0.780709 0.598004 0.010554 0.006806 +13 0.627822 0.588475 0.010261 0.007260 +11 0.664614 0.585299 0.011140 0.007260 +12 0.737174 0.568285 0.010847 0.008167 +12 0.766198 0.562727 0.010261 0.007940 +12 0.513486 0.536865 0.010261 0.007033 +13 0.792143 0.552405 0.010554 0.007260 +12 0.812372 0.546166 0.011140 0.007940 +12 0.465699 0.527223 0.010847 0.007713 +11 0.553650 0.542990 0.010847 0.006579 +12 0.582527 0.540041 0.010554 0.007486 +12 0.839050 0.539587 0.010554 0.007486 +17 0.331135 0.537092 0.011434 0.007033 +13 0.413955 0.536751 0.010554 0.007260 +12 0.383612 0.536751 0.010847 0.007260 +13 0.289211 0.533802 0.010847 0.007260 +12 0.435210 0.533235 0.010847 0.007486 +12 0.265465 0.530513 0.011434 0.007033 +13 0.240838 0.527337 0.010261 0.007940 +12 0.208590 0.523934 0.010261 0.007486 +12 0.485488 0.521552 0.010554 0.007260 +13 0.187628 0.520871 0.010554 0.007260 +12 0.156992 0.517355 0.010261 0.008394 +11 0.655673 0.497731 0.010261 0.007260 +12 0.702873 0.495009 0.009675 0.006806 +17 0.157285 0.491946 0.011434 0.007486 +13 0.733656 0.488317 0.010261 0.007033 +13 0.576224 0.485821 0.010847 0.007033 +11 0.617561 0.485141 0.011434 0.007486 +11 0.832454 0.483439 0.007329 0.006806 +12 0.841102 0.465971 0.010554 0.007260 +12 0.753884 0.481965 0.010847 0.007033 +12 0.551305 0.481965 0.010261 0.007033 +13 0.787746 0.479015 0.010554 0.007486 +13 0.531369 0.478789 0.010261 0.007033 +12 0.501612 0.479015 0.010554 0.007486 +13 0.481237 0.475613 0.010847 0.007033 +12 0.807974 0.472890 0.010554 0.007486 +12 0.454999 0.472663 0.010554 0.007486 +11 0.413955 0.472550 0.010554 0.007713 +13 0.243770 0.469828 0.010847 0.007260 +13 0.264878 0.466992 0.010847 0.007033 +13 0.229112 0.463589 0.010847 0.007486 +11 0.189680 0.463362 0.011140 0.007486 +13 0.281149 0.461434 0.010554 0.006806 +11 0.296541 0.454628 0.010847 0.007713 +12 0.199941 0.436706 0.011140 0.007713 +12 0.199502 0.421279 0.010261 0.006806 +12 0.199355 0.405286 0.011140 0.007486 +12 0.173996 0.436593 0.010847 0.007486 +12 0.173703 0.418217 0.010847 0.007486 +11 0.183377 0.415268 0.010847 0.007486 +17 0.482117 0.436025 0.011434 0.007713 +12 0.446643 0.433643 0.010847 0.007486 +12 0.390062 0.433417 0.010261 0.007486 +12 0.370419 0.430581 0.010847 0.007260 +12 0.423483 0.430354 0.011434 0.007713 +11 0.318675 0.427745 0.010554 0.007486 +12 0.406626 0.427405 0.010554 0.007260 +12 0.354295 0.427745 0.010261 0.007940 +12 0.842568 0.420939 0.011140 0.007033 +12 0.786133 0.420712 0.010847 0.007033 +12 0.820727 0.417877 0.010847 0.007260 +12 0.769862 0.417650 0.010554 0.007260 +11 0.716066 0.414587 0.010261 0.006579 +12 0.803430 0.414814 0.010261 0.007486 +12 0.753152 0.414474 0.010554 0.007260 +13 0.561859 0.414587 0.010261 0.007486 +13 0.583260 0.411638 0.010847 0.007486 +11 0.512460 0.408462 0.011140 0.007033 +13 0.548226 0.408122 0.011140 0.007260 +13 0.596892 0.405172 0.009968 0.007260 +11 0.618734 0.398820 0.010847 0.007260 +13 0.787159 0.378063 0.009968 0.007033 +12 0.317502 0.375907 0.011140 0.007260 +13 0.803283 0.375794 0.010554 0.007486 +13 0.762240 0.375454 0.010554 0.007260 +12 0.342275 0.369442 0.011434 0.007486 +12 0.155526 0.366946 0.010847 0.007033 +13 0.397098 0.366606 0.010847 0.007260 +13 0.744503 0.366266 0.010261 0.007033 +12 0.359572 0.363317 0.010847 0.007940 +13 0.175315 0.360141 0.010554 0.007033 +13 0.411463 0.359914 0.010261 0.007486 +13 0.728965 0.359687 0.010847 0.007486 +13 0.189241 0.353789 0.011434 0.007033 +13 0.714453 0.353448 0.010554 0.006806 +13 0.426415 0.353335 0.010847 0.007033 +11 0.236148 0.350953 0.011434 0.007260 +11 0.282175 0.347323 0.010847 0.007260 +13 0.450748 0.346983 0.010261 0.007486 +11 0.206831 0.344601 0.011434 0.007260 +12 0.470976 0.344034 0.010847 0.007033 +12 0.625183 0.343920 0.010847 0.007260 +12 0.499414 0.343920 0.010261 0.007713 +12 0.552184 0.340858 0.010261 0.007033 +12 0.523454 0.340971 0.010261 0.007260 +12 0.667693 0.340631 0.010261 0.007033 +12 0.642187 0.340744 0.010847 0.007260 +11 0.589417 0.337795 0.010847 0.007713 +13 0.700088 0.337568 0.010554 0.007713 +13 0.154647 0.305467 0.010847 0.007486 +13 0.841982 0.300363 0.011140 0.007260 +13 0.172237 0.298888 0.010847 0.007033 +13 0.810466 0.297300 0.010261 0.007486 +12 0.389182 0.292083 0.010847 0.007033 +12 0.360012 0.292309 0.011140 0.007486 +13 0.494870 0.291629 0.011140 0.007486 +13 0.825711 0.290948 0.010261 0.006579 +13 0.794928 0.290948 0.010847 0.007033 +13 0.188361 0.289474 0.010261 0.007260 +12 0.410437 0.288907 0.010554 0.007033 +13 0.777924 0.287659 0.010847 0.007713 +13 0.213134 0.286411 0.010554 0.007033 +12 0.435943 0.285504 0.010554 0.006579 +13 0.762240 0.284596 0.009968 0.007033 +11 0.331574 0.283122 0.010554 0.007260 +12 0.292729 0.283008 0.010261 0.007486 +12 0.271914 0.283008 0.010847 0.007486 +12 0.251539 0.283008 0.010554 0.007486 +12 0.230871 0.283008 0.010847 0.007486 +13 0.704632 0.281760 0.009675 0.006806 +13 0.473322 0.282214 0.010261 0.007713 +13 0.737760 0.278471 0.010261 0.007486 +13 0.511580 0.275862 0.010554 0.006806 +13 0.723395 0.275295 0.010847 0.007486 +13 0.527851 0.272346 0.010261 0.007033 +13 0.682058 0.272005 0.010261 0.007260 +12 0.544562 0.269850 0.009675 0.007486 +12 0.589710 0.269510 0.010847 0.007260 +12 0.611697 0.269283 0.010261 0.007713 +12 0.566843 0.269170 0.010847 0.007486 +13 0.649223 0.268716 0.010261 0.007486 +13 0.666520 0.264292 0.010847 0.007713 +12 0.154647 0.246030 0.010847 0.008394 +12 0.192466 0.240585 0.010261 0.007486 +12 0.565670 0.238317 0.010847 0.007486 +12 0.815597 0.238203 0.009968 0.008167 +12 0.174582 0.237523 0.010847 0.007713 +11 0.310613 0.235935 0.010847 0.007713 +12 0.591176 0.235027 0.010261 0.007260 +12 0.841102 0.233893 0.010554 0.007713 +12 0.209909 0.233439 0.009968 0.007260 +11 0.281003 0.233099 0.010261 0.007486 +12 0.625476 0.231738 0.010847 0.007033 +12 0.246702 0.229696 0.010847 0.007033 +12 0.228819 0.226860 0.010261 0.006806 +13 0.360012 0.226520 0.011140 0.006579 +12 0.333480 0.226747 0.010847 0.007033 +12 0.457490 0.226066 0.010261 0.007033 +12 0.530343 0.225613 0.010554 0.007033 +12 0.713281 0.225159 0.010554 0.007033 +12 0.781882 0.224932 0.010554 0.007486 +12 0.513632 0.222663 0.011140 0.007486 +12 0.549252 0.222210 0.010847 0.007486 +12 0.765465 0.221756 0.011140 0.007486 +12 0.799033 0.221416 0.010847 0.007713 +12 0.496335 0.219487 0.010554 0.007486 +12 0.748168 0.218466 0.010554 0.007260 +12 0.442832 0.216425 0.010847 0.007260 +12 0.696423 0.215517 0.010261 0.007713 +12 0.426121 0.209959 0.010261 0.007940 +12 0.679420 0.209279 0.010261 0.007486 +11 0.396511 0.204174 0.010847 0.007260 +11 0.649809 0.202813 0.010847 0.007260 +11 0.441659 0.178993 0.010847 0.008167 +12 0.758868 0.177858 0.010847 0.007713 +12 0.404573 0.176157 0.010554 0.007486 +11 0.576371 0.175136 0.010554 0.007260 +12 0.721196 0.174569 0.010554 0.007486 +12 0.841835 0.174569 0.011434 0.007940 +12 0.386837 0.173662 0.010261 0.007940 +12 0.349604 0.173888 0.010847 0.008394 +11 0.549399 0.172641 0.010554 0.007260 +12 0.702873 0.172527 0.010261 0.007940 +12 0.822486 0.171506 0.010261 0.007260 +12 0.368074 0.170032 0.010261 0.007940 +12 0.330548 0.169918 0.010261 0.007713 +12 0.506157 0.169578 0.010847 0.007486 +12 0.805189 0.168897 0.010847 0.007486 +12 0.683817 0.168671 0.010847 0.007486 +17 0.260188 0.167536 0.011434 0.007033 +12 0.311785 0.167083 0.010261 0.007033 +11 0.468484 0.166402 0.010554 0.006579 +11 0.648490 0.165948 0.010554 0.007033 +11 0.601143 0.166175 0.010847 0.007486 +11 0.778804 0.165154 0.010847 0.007713 +4 0.579742 0.234914 0.008502 0.018829 +1 0.105394 0.289133 0.022574 0.045599 +4 0.202433 0.286298 0.009088 0.019964 +3 0.833040 0.420939 0.007329 0.019737 +4 0.423776 0.284823 0.009675 0.017922 +3 0.609059 0.399387 0.006743 0.019283 +1 0.104661 0.216084 0.023454 0.045599 +4 0.377162 0.291856 0.009088 0.019283 +3 0.486221 0.290948 0.007916 0.017922 +3 0.614043 0.344034 0.007329 0.020191 +5 0.572120 0.408462 0.009088 0.015653 +5 0.193052 0.654832 0.012606 0.017468 +4 0.692612 0.281647 0.009088 0.018376 +4 0.268983 0.347436 0.009088 0.019283 +5 0.520522 0.475386 0.008502 0.015653 +5 0.435503 0.430240 0.008502 0.015653 +3 0.418792 0.610141 0.007916 0.019737 +4 0.486514 0.344487 0.009088 0.018829 +4 0.539871 0.341084 0.009088 0.018376 +5 0.571826 0.536638 0.008502 0.016107 +3 0.830108 0.466084 0.007329 0.020191 +4 0.829229 0.234006 0.009088 0.018829 +4 0.298886 0.236502 0.008502 0.018829 +4 0.655966 0.341084 0.009088 0.018829 +4 0.439314 0.347663 0.008502 0.018376 +1 0.106274 0.349932 0.022574 0.046506 +5 0.572706 0.588589 0.009088 0.015653 +5 0.774406 0.475613 0.008502 0.015200 +4 0.774700 0.377609 0.008502 0.018829 +1 0.106567 0.599705 0.022574 0.046053 +4 0.453093 0.527110 0.009088 0.019283 +1 0.107153 0.478562 0.022574 0.045145 +4 0.126502 0.204515 0.009088 0.018829 +4 0.127382 0.338135 0.008502 0.018376 +4 0.330255 0.369896 0.009675 0.019283 +4 0.127968 0.466992 0.009088 0.018376 +5 0.360451 0.668897 0.008502 0.015653 +4 0.809000 0.888952 0.009088 0.019283 +3 0.179273 0.609687 0.007329 0.018829 +3 0.254031 0.466992 0.007916 0.019737 +3 0.297567 0.870576 0.007622 0.019283 +4 0.482703 0.861048 0.009088 0.015653 +4 0.672090 0.819533 0.009088 0.018376 +5 0.826590 0.536638 0.007916 0.016107 +4 0.402082 0.536638 0.009088 0.019737 +5 0.605834 0.481965 0.007916 0.015653 +5 0.294782 0.619215 0.008502 0.015653 +4 0.241425 0.866493 0.009675 0.021098 +4 0.171944 0.818398 0.009088 0.017922 +4 0.756816 0.798208 0.009675 0.019737 +4 0.763412 0.595168 0.017004 0.026543 +4 0.750660 0.283916 0.009088 0.018376 +3 0.380094 0.433417 0.007916 0.019283 +3 0.722809 0.488317 0.007329 0.019737 +4 0.535620 0.864224 0.009968 0.016561 +3 0.502639 0.536638 0.007329 0.019283 +1 0.107446 0.735141 0.022574 0.045599 +5 0.685136 0.588702 0.008209 0.015880 +4 0.223248 0.351293 0.009088 0.018829 +4 0.196423 0.870917 0.009381 0.018603 +1 0.106860 0.539587 0.022574 0.045599 +5 0.374524 0.610368 0.008502 0.015653 +4 0.752565 0.866493 0.009968 0.019283 +4 0.710056 0.869215 0.009381 0.018376 +5 0.780563 0.549115 0.008502 0.016107 +4 0.464966 0.688181 0.009381 0.019283 +5 0.686456 0.620009 0.008502 0.015880 +5 0.495309 0.597890 0.009675 0.015653 +1 0.106274 0.799569 0.023160 0.045599 +3 0.172237 0.665948 0.007329 0.019737 +5 0.755057 0.558643 0.007916 0.016107 +4 0.207124 0.609914 0.009088 0.018829 +4 0.128262 0.787092 0.009675 0.018829 +1 0.106714 0.865585 0.022281 0.046053 +4 0.126796 0.277110 0.009088 0.018829 +4 0.438141 0.819079 0.009088 0.018376 +4 0.128262 0.854469 0.009675 0.018376 +3 0.382732 0.678879 0.007329 0.020191 +4 0.127968 0.723117 0.009675 0.018829 +3 0.615655 0.589043 0.007036 0.020191 +4 0.162709 0.138838 0.008209 0.017695 +1 0.141601 0.149728 0.022281 0.044918 +5 0.254471 0.526770 0.007622 0.015426 +3 0.229258 0.527450 0.006450 0.019510 +4 0.127529 0.526996 0.008209 0.018149 +5 0.146291 0.514519 0.008209 0.014973 +4 0.127529 0.656080 0.008795 0.017695 +1 0.107593 0.666742 0.021695 0.045372 +4 0.127529 0.399047 0.008209 0.018149 +1 0.106714 0.409936 0.022281 0.045372 +5 0.148930 0.597550 0.008209 0.014973 +4 0.128262 0.588022 0.009088 0.017695 +3 0.442832 0.681602 0.006743 0.019737 +5 0.419672 0.678766 0.007329 0.014973 +3 0.283934 0.678993 0.006743 0.019510 +5 0.304896 0.668784 0.008209 0.015426 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_16.jpg b/data_dataset/mosz/debug/debug_16.jpg new file mode 100644 index 0000000..05edf31 Binary files /dev/null and b/data_dataset/mosz/debug/debug_16.jpg differ diff --git a/data_dataset/mosz/debug/debug_16.txt b/data_dataset/mosz/debug/debug_16.txt new file mode 100644 index 0000000..1d5f489 --- /dev/null +++ b/data_dataset/mosz/debug/debug_16.txt @@ -0,0 +1,491 @@ +7 0.793860 0.862174 0.012865 0.023783 +7 0.732456 0.858324 0.012865 0.016535 +7 0.659357 0.858097 0.012865 0.016535 +7 0.190351 0.860589 0.012865 0.022877 +7 0.304678 0.857078 0.012281 0.016308 +7 0.341228 0.856738 0.012865 0.016082 +6 0.842105 0.855379 0.011111 0.023330 +6 0.816959 0.855606 0.011111 0.022424 +6 0.680702 0.854700 0.011111 0.022424 +9 0.825439 0.799094 0.006433 0.025368 +7 0.787135 0.794451 0.012865 0.016082 +6 0.167544 0.789921 0.011111 0.022424 +10 0.854094 0.714836 0.013450 0.005889 +7 0.186842 0.722424 0.012281 0.022877 +6 0.606725 0.715629 0.011111 0.021971 +6 0.586257 0.715629 0.011111 0.021971 +6 0.548246 0.715402 0.011111 0.021971 +6 0.222222 0.715176 0.010526 0.021971 +6 0.201754 0.714949 0.010526 0.021518 +6 0.279240 0.714949 0.011111 0.021971 +6 0.259064 0.715176 0.010526 0.022424 +7 0.273977 0.453794 0.012865 0.016082 +7 0.350877 0.453794 0.012281 0.015629 +7 0.166374 0.453567 0.012865 0.016535 +7 0.489181 0.453114 0.012865 0.016082 +6 0.313450 0.450623 0.011111 0.022877 +6 0.291813 0.450623 0.011111 0.023330 +10 0.844883 0.373273 0.013743 0.005889 +7 0.803655 0.377237 0.013158 0.016988 +7 0.208772 0.310872 0.012865 0.015176 +9 0.747076 0.310872 0.013450 0.027860 +8 0.677778 0.314043 0.014035 0.022877 +7 0.306433 0.309853 0.012865 0.016308 +8 0.626608 0.316648 0.014620 0.028539 +8 0.837135 0.302039 0.014620 0.032843 +6 0.226023 0.306795 0.011111 0.021518 +8 0.795322 0.313364 0.016374 0.036014 +6 0.389766 0.176784 0.011111 0.021971 +6 0.368713 0.177350 0.011111 0.023556 +6 0.329825 0.177237 0.010526 0.023330 +6 0.755848 0.175878 0.011111 0.022424 +6 0.798538 0.175651 0.011111 0.022424 +6 0.823684 0.175198 0.011111 0.023330 +7 0.650000 0.109287 0.012281 0.027407 +8 0.538596 0.122537 0.014035 0.031257 +7 0.590643 0.115402 0.012865 0.017441 +6 0.554094 0.112005 0.011111 0.021971 +6 0.699123 0.111438 0.011111 0.022650 +6 0.666082 0.111778 0.010526 0.022424 +6 0.717836 0.111778 0.011111 0.023783 +12 0.280848 0.885277 0.010819 0.008381 +12 0.361111 0.879162 0.010526 0.007475 +13 0.231579 0.875991 0.010526 0.007475 +11 0.772222 0.874179 0.011111 0.007022 +12 0.772222 0.881200 0.011111 0.007022 +12 0.706140 0.877010 0.010526 0.007248 +18 0.715205 0.874066 0.010526 0.007248 +12 0.510965 0.873499 0.010819 0.007475 +12 0.382602 0.873046 0.010234 0.007475 +13 0.246930 0.872820 0.010234 0.007928 +12 0.168567 0.872593 0.010234 0.007475 +13 0.208918 0.872593 0.010234 0.007928 +12 0.534064 0.863760 0.011404 0.007928 +12 0.405409 0.863760 0.010234 0.007928 +13 0.263304 0.863307 0.010234 0.007928 +12 0.556579 0.857644 0.010819 0.007475 +12 0.426170 0.857191 0.010819 0.007475 +12 0.578216 0.851529 0.010819 0.008381 +12 0.448392 0.851302 0.010819 0.007928 +17 0.600439 0.841789 0.010819 0.007928 +17 0.489327 0.841110 0.010819 0.007475 +12 0.639327 0.835447 0.011404 0.008381 +13 0.831579 0.797848 0.010526 0.007022 +12 0.669883 0.797395 0.011111 0.007475 +12 0.669152 0.781767 0.010819 0.007928 +12 0.501462 0.797169 0.010526 0.007022 +12 0.500731 0.781314 0.010819 0.007928 +13 0.845614 0.795130 0.010526 0.007928 +13 0.807164 0.794904 0.010819 0.007928 +12 0.767398 0.794677 0.010819 0.007475 +12 0.649854 0.794677 0.010819 0.007475 +12 0.569444 0.794451 0.011404 0.007475 +13 0.569298 0.778143 0.011111 0.007475 +12 0.481140 0.793998 0.011404 0.007475 +11 0.367836 0.793998 0.011111 0.007475 +13 0.368275 0.777576 0.011404 0.007248 +12 0.629971 0.790940 0.010819 0.007701 +12 0.462427 0.790600 0.011404 0.007928 +11 0.198684 0.790374 0.010234 0.007475 +13 0.860819 0.788562 0.010526 0.007475 +13 0.708041 0.788562 0.010234 0.007475 +13 0.707749 0.778369 0.011404 0.007928 +12 0.537719 0.788109 0.011111 0.007928 +13 0.537719 0.777916 0.011111 0.007475 +12 0.614327 0.787656 0.010526 0.007475 +11 0.601901 0.784485 0.010819 0.007475 +12 0.444591 0.787656 0.010819 0.007475 +11 0.431725 0.784032 0.010819 0.007022 +11 0.273977 0.787203 0.010526 0.007022 +11 0.224269 0.787203 0.011111 0.007475 +11 0.299269 0.784485 0.010234 0.007022 +13 0.722515 0.781993 0.010526 0.007928 +13 0.384357 0.781314 0.010819 0.007022 +13 0.553947 0.781314 0.010819 0.007928 +11 0.325877 0.781087 0.010819 0.007928 +13 0.737135 0.778596 0.011111 0.007475 +13 0.399415 0.777690 0.010526 0.007022 +13 0.751316 0.772480 0.010819 0.007928 +13 0.584942 0.772027 0.011404 0.007928 +13 0.414474 0.771348 0.010819 0.007928 +12 0.167982 0.733975 0.010234 0.007475 +11 0.502632 0.727860 0.010526 0.007022 +13 0.651316 0.724915 0.010234 0.007475 +11 0.526462 0.724689 0.010819 0.007022 +12 0.629971 0.724802 0.010819 0.007701 +12 0.323830 0.724462 0.010234 0.007928 +18 0.324269 0.709513 0.007018 0.003398 +12 0.301608 0.724236 0.010819 0.007928 +17 0.787281 0.722197 0.010819 0.007475 +17 0.786696 0.706342 0.011988 0.007475 +17 0.455556 0.721291 0.011696 0.007022 +12 0.748684 0.718800 0.010819 0.007475 +12 0.419591 0.718120 0.010526 0.007475 +12 0.731140 0.715629 0.010819 0.006569 +12 0.402193 0.715176 0.010234 0.007022 +12 0.714181 0.709287 0.010819 0.007475 +12 0.385526 0.708834 0.010819 0.007022 +11 0.685234 0.702718 0.010234 0.007475 +11 0.354094 0.702492 0.010526 0.007475 +12 0.390205 0.675085 0.010234 0.007475 +12 0.389327 0.659003 0.009649 0.007022 +11 0.337573 0.674858 0.011404 0.008381 +11 0.167982 0.674405 0.010234 0.007928 +12 0.224123 0.674179 0.010234 0.007928 +12 0.223246 0.658550 0.009649 0.007475 +17 0.442544 0.671687 0.011988 0.007475 +17 0.441667 0.656059 0.011404 0.007022 +11 0.272807 0.671461 0.012281 0.007475 +17 0.271784 0.655379 0.011988 0.007022 +11 0.473830 0.668743 0.010819 0.007022 +12 0.515643 0.668743 0.010819 0.007475 +12 0.406433 0.668516 0.010526 0.007022 +12 0.406140 0.652661 0.010526 0.007928 +12 0.239474 0.668177 0.010526 0.006795 +12 0.239181 0.652435 0.009942 0.007475 +12 0.200146 0.668290 0.010234 0.007022 +11 0.299269 0.668063 0.010819 0.007022 +12 0.367105 0.668063 0.010819 0.007475 +12 0.367105 0.675538 0.010819 0.007475 +12 0.855994 0.666704 0.010819 0.007475 +12 0.557164 0.665572 0.010819 0.007475 +12 0.838743 0.663307 0.011404 0.007022 +12 0.597515 0.662401 0.010819 0.007022 +12 0.539035 0.662174 0.010234 0.007022 +12 0.820760 0.660136 0.011111 0.007475 +12 0.653070 0.659683 0.010819 0.007475 +12 0.574708 0.659456 0.010819 0.007475 +12 0.755263 0.656738 0.011111 0.007475 +12 0.695175 0.656285 0.010819 0.007022 +12 0.618860 0.656285 0.011404 0.007475 +12 0.732018 0.653794 0.010819 0.007928 +11 0.789766 0.653794 0.011111 0.008381 +12 0.673830 0.653567 0.010234 0.007928 +12 0.709795 0.650170 0.010819 0.007022 +12 0.523830 0.613137 0.010234 0.008154 +12 0.360380 0.612344 0.010819 0.008381 +12 0.450585 0.609626 0.010526 0.007475 +12 0.490351 0.609173 0.011111 0.007475 +12 0.827632 0.607135 0.010819 0.007928 +12 0.426901 0.606795 0.010526 0.007248 +12 0.655556 0.606908 0.011111 0.007928 +12 0.467690 0.606682 0.010234 0.007928 +12 0.810673 0.603964 0.010819 0.007475 +11 0.846930 0.603964 0.010819 0.007928 +12 0.408626 0.603737 0.011404 0.007928 +12 0.621491 0.603511 0.011404 0.007928 +12 0.343275 0.602605 0.011111 0.007022 +12 0.581433 0.602605 0.010819 0.007928 +12 0.794298 0.600566 0.010819 0.007022 +12 0.598684 0.600113 0.010234 0.007475 +12 0.557456 0.599887 0.010819 0.007475 +12 0.778509 0.597395 0.010819 0.007928 +12 0.706140 0.597169 0.010526 0.007928 +17 0.308772 0.596716 0.011696 0.007928 +12 0.539912 0.596489 0.010819 0.007928 +12 0.391374 0.596489 0.010819 0.007928 +12 0.688012 0.593771 0.011111 0.007022 +12 0.746637 0.593771 0.010234 0.007475 +13 0.275585 0.593318 0.010819 0.007022 +12 0.722953 0.591053 0.010819 0.007475 +12 0.671345 0.590827 0.010526 0.007475 +12 0.252193 0.590374 0.010819 0.007475 +13 0.233772 0.586976 0.010234 0.007475 +12 0.209649 0.583805 0.010526 0.007475 +13 0.193421 0.581087 0.010234 0.007475 +12 0.167105 0.577916 0.010234 0.007928 +12 0.502193 0.545527 0.010819 0.008381 +12 0.422661 0.545753 0.010819 0.008834 +12 0.263889 0.545300 0.010234 0.007928 +17 0.598977 0.542129 0.010234 0.007475 +12 0.438158 0.542129 0.010234 0.007475 +12 0.233480 0.542129 0.010234 0.007475 +12 0.340789 0.541676 0.010819 0.007475 +12 0.662427 0.541676 0.010819 0.007928 +12 0.630556 0.541450 0.011404 0.007475 +12 0.217251 0.540091 0.009942 0.007928 +12 0.406579 0.539185 0.010234 0.007475 +12 0.568567 0.538732 0.010234 0.007022 +12 0.485380 0.539185 0.010526 0.007928 +12 0.455702 0.538958 0.010234 0.007475 +12 0.324123 0.538958 0.010234 0.007475 +12 0.308480 0.536467 0.010526 0.007928 +12 0.519006 0.536014 0.010526 0.007475 +12 0.390205 0.536240 0.010234 0.007928 +12 0.552193 0.535561 0.011404 0.007475 +12 0.200877 0.535561 0.010526 0.007928 +13 0.718567 0.532616 0.009649 0.007475 +12 0.373246 0.532616 0.010234 0.007928 +11 0.285673 0.532390 0.011111 0.007475 +11 0.167105 0.532163 0.010819 0.007022 +12 0.535380 0.532163 0.011111 0.007928 +12 0.646637 0.529219 0.010819 0.007475 +13 0.731433 0.529219 0.010819 0.007928 +13 0.705409 0.529219 0.010234 0.007928 +13 0.744883 0.526048 0.010819 0.007022 +13 0.691228 0.525821 0.011111 0.007022 +13 0.780409 0.523103 0.010526 0.007928 +13 0.758333 0.522650 0.010234 0.007475 +13 0.793860 0.519932 0.010526 0.007022 +13 0.817105 0.519706 0.010819 0.007475 +13 0.861550 0.514043 0.010819 0.007475 +13 0.830702 0.516874 0.010526 0.007248 +13 0.841228 0.513930 0.010526 0.007248 +11 0.701901 0.481200 0.010819 0.007928 +12 0.667544 0.478256 0.011111 0.007928 +11 0.825000 0.477803 0.010234 0.007928 +12 0.611842 0.476217 0.010819 0.007928 +11 0.799561 0.475538 0.010819 0.007022 +12 0.648830 0.475538 0.011111 0.007022 +12 0.760526 0.472367 0.010526 0.007475 +12 0.594591 0.472593 0.010819 0.007928 +12 0.630556 0.472254 0.011404 0.007701 +12 0.575585 0.469422 0.010234 0.007022 +12 0.186988 0.469649 0.010819 0.007475 +17 0.526754 0.469422 0.011988 0.007475 +11 0.849561 0.469196 0.010819 0.007475 +11 0.727924 0.469196 0.010819 0.007475 +12 0.255994 0.447678 0.010819 0.007475 +12 0.367982 0.447452 0.010234 0.007475 +17 0.210673 0.447452 0.011404 0.007475 +12 0.471930 0.425481 0.011111 0.007928 +17 0.437427 0.425481 0.012281 0.007928 +17 0.389766 0.425028 0.011696 0.007475 +11 0.301316 0.403058 0.009649 0.007022 +11 0.300439 0.384258 0.010234 0.007475 +11 0.300000 0.367950 0.010526 0.006569 +11 0.300000 0.374519 0.010526 0.006569 +17 0.274854 0.403284 0.010526 0.007475 +11 0.274415 0.384485 0.010819 0.007022 +11 0.274269 0.367950 0.011111 0.006569 +11 0.274269 0.374519 0.011111 0.006569 +11 0.327485 0.403284 0.011111 0.007928 +11 0.327193 0.384032 0.010526 0.007475 +11 0.326901 0.374632 0.010526 0.006795 +11 0.326901 0.367837 0.010526 0.006795 +12 0.368275 0.402152 0.010234 0.007475 +12 0.367690 0.386976 0.010234 0.006116 +12 0.367836 0.371348 0.011111 0.007475 +17 0.197807 0.401472 0.010819 0.007928 +11 0.197515 0.384485 0.010234 0.007475 +11 0.197368 0.368403 0.011111 0.007022 +17 0.223099 0.400340 0.010526 0.007475 +11 0.222368 0.384032 0.010819 0.007475 +11 0.222368 0.368403 0.010234 0.007022 +12 0.705556 0.396716 0.010526 0.007475 +12 0.779678 0.393545 0.010819 0.007022 +17 0.746491 0.393545 0.012281 0.007475 +12 0.654240 0.390600 0.010234 0.007475 +12 0.679094 0.390374 0.010819 0.007928 +13 0.613012 0.386976 0.010819 0.007022 +13 0.506433 0.386750 0.011111 0.007022 +12 0.566228 0.384485 0.010819 0.007475 +12 0.631140 0.384145 0.010819 0.007701 +13 0.590789 0.380861 0.010819 0.007475 +13 0.529386 0.380634 0.010819 0.007475 +13 0.450292 0.374519 0.010526 0.007475 +13 0.391520 0.374292 0.010526 0.007475 +12 0.482310 0.371348 0.010819 0.007475 +12 0.430848 0.371348 0.010819 0.007928 +13 0.464766 0.368177 0.010819 0.006569 +13 0.414181 0.368177 0.010234 0.007022 +11 0.166520 0.362061 0.010819 0.007475 +12 0.325877 0.338279 0.010234 0.008381 +12 0.351023 0.331937 0.010234 0.006569 +13 0.590936 0.331710 0.010526 0.007022 +12 0.608480 0.328313 0.011111 0.007475 +13 0.639912 0.325821 0.010234 0.007475 +12 0.373392 0.322990 0.010526 0.007248 +12 0.661404 0.322650 0.011111 0.007475 +11 0.513304 0.319253 0.011404 0.007022 +13 0.699561 0.319253 0.010819 0.007475 +11 0.483772 0.319026 0.010819 0.007022 +12 0.391667 0.316535 0.010234 0.007022 +12 0.730409 0.316308 0.010526 0.007928 +12 0.554532 0.316082 0.010819 0.007928 +11 0.165205 0.313590 0.010526 0.007475 +12 0.192836 0.310646 0.010234 0.007475 +11 0.455409 0.310193 0.010234 0.007475 +13 0.767105 0.309966 0.010234 0.007475 +12 0.416667 0.310193 0.010526 0.007928 +12 0.782456 0.306569 0.011696 0.007022 +13 0.805702 0.303398 0.010234 0.007928 +12 0.825292 0.300000 0.009649 0.007475 +13 0.859211 0.297055 0.010819 0.007475 +11 0.347222 0.265572 0.010819 0.007022 +12 0.387281 0.262174 0.010234 0.007022 +13 0.415205 0.255606 0.010526 0.007475 +13 0.279678 0.252661 0.010234 0.007022 +17 0.316813 0.252661 0.011988 0.007475 +11 0.810380 0.250963 0.007310 0.008154 +11 0.817982 0.232956 0.010819 0.007475 +12 0.255994 0.249490 0.010234 0.007022 +12 0.432602 0.249264 0.010819 0.007475 +13 0.463012 0.246546 0.010819 0.007928 +13 0.238158 0.246319 0.010234 0.007475 +12 0.210380 0.246546 0.010819 0.007928 +13 0.191374 0.243148 0.011404 0.007475 +17 0.697807 0.242469 0.011404 0.007022 +13 0.772076 0.242469 0.010234 0.007475 +13 0.858333 0.242242 0.010819 0.007475 +12 0.742251 0.242242 0.010234 0.007475 +12 0.165936 0.240430 0.010819 0.007928 +12 0.480848 0.239977 0.010234 0.007475 +13 0.662427 0.239524 0.010819 0.007022 +12 0.789035 0.239071 0.010234 0.007928 +12 0.637865 0.236580 0.010819 0.007475 +13 0.508918 0.233409 0.010234 0.007475 +13 0.614474 0.233182 0.010819 0.007475 +12 0.587281 0.230238 0.010234 0.007022 +13 0.569444 0.227746 0.010234 0.007475 +12 0.834942 0.226161 0.010819 0.007022 +12 0.543421 0.224122 0.011404 0.007928 +17 0.166082 0.204870 0.012281 0.007475 +17 0.591813 0.191959 0.011696 0.007475 +12 0.553655 0.189241 0.010234 0.007022 +12 0.491959 0.189241 0.010819 0.007475 +12 0.472368 0.186297 0.011404 0.007928 +12 0.528801 0.186070 0.010819 0.007928 +13 0.250146 0.183579 0.010234 0.006569 +11 0.412719 0.183352 0.011404 0.007022 +12 0.452778 0.183126 0.010819 0.007022 +12 0.510673 0.182899 0.010819 0.007022 +13 0.272661 0.180408 0.009649 0.007475 +13 0.235819 0.177010 0.010819 0.007475 +11 0.197807 0.177010 0.010819 0.007475 +13 0.286550 0.173839 0.010526 0.007022 +11 0.850000 0.172480 0.011111 0.007475 +13 0.677485 0.169762 0.010526 0.007022 +11 0.308918 0.167497 0.010234 0.008381 +13 0.698246 0.166591 0.011111 0.007475 +11 0.624415 0.163420 0.010819 0.007475 +13 0.664181 0.163420 0.010819 0.007928 +13 0.714181 0.160476 0.010234 0.007928 +11 0.731725 0.154134 0.010234 0.007928 +13 0.510819 0.143715 0.010526 0.007475 +12 0.633333 0.140317 0.011111 0.007928 +12 0.632602 0.124462 0.010819 0.007022 +12 0.632456 0.108607 0.011111 0.007928 +13 0.525000 0.140091 0.010819 0.007475 +13 0.488743 0.140317 0.010819 0.008381 +12 0.607164 0.139411 0.010234 0.007475 +12 0.606140 0.121857 0.010526 0.007248 +11 0.615789 0.118007 0.010526 0.007248 +12 0.857749 0.136467 0.010819 0.007022 +12 0.806579 0.135787 0.010234 0.007022 +12 0.787719 0.132616 0.011111 0.007928 +13 0.164181 0.131710 0.010819 0.007022 +12 0.835673 0.131937 0.011696 0.007928 +13 0.473977 0.131257 0.010526 0.007475 +11 0.738012 0.130351 0.010526 0.007475 +12 0.773538 0.130125 0.010819 0.007475 +12 0.820906 0.129672 0.010819 0.007475 +13 0.179094 0.125368 0.010234 0.007475 +13 0.460088 0.124915 0.010819 0.007475 +13 0.193567 0.119253 0.010526 0.007022 +13 0.446930 0.118800 0.010819 0.007022 +13 0.216520 0.112458 0.010819 0.007928 +12 0.258918 0.109740 0.010234 0.007475 +12 0.365936 0.109513 0.010234 0.007475 +12 0.233772 0.109513 0.010234 0.007475 +12 0.402632 0.106342 0.010526 0.007022 +12 0.381140 0.106342 0.010234 0.007022 +12 0.297953 0.106342 0.010526 0.007022 +12 0.274708 0.106342 0.010234 0.007022 +11 0.332018 0.102945 0.010234 0.007928 +13 0.434064 0.102718 0.010819 0.007928 +1 0.118421 0.115402 0.022807 0.046433 +5 0.606579 0.652888 0.011988 0.015629 +5 0.533772 0.220045 0.008480 0.016535 +4 0.286696 0.107022 0.009064 0.018800 +3 0.797222 0.136467 0.007310 0.017894 +4 0.246345 0.109740 0.009064 0.018800 +3 0.497807 0.233522 0.007310 0.020385 +3 0.354825 0.109740 0.007310 0.020159 +3 0.297515 0.167497 0.007895 0.020159 +4 0.499561 0.144281 0.008480 0.018573 +5 0.627924 0.232956 0.007895 0.016535 +4 0.137573 0.103171 0.009064 0.018347 +5 0.755994 0.306569 0.009649 0.016082 +4 0.806287 0.519706 0.008480 0.019706 +4 0.392251 0.106795 0.008480 0.019253 +4 0.760965 0.242242 0.009649 0.019706 +4 0.205702 0.112231 0.009649 0.019706 +3 0.543713 0.189468 0.007310 0.019706 +5 0.182602 0.307475 0.007895 0.015176 +1 0.118567 0.245640 0.021930 0.045980 +3 0.847515 0.242469 0.007310 0.019253 +3 0.603070 0.233635 0.007310 0.019706 +5 0.186404 0.397169 0.008480 0.016082 +5 0.404240 0.307022 0.007895 0.015629 +3 0.688012 0.166591 0.007602 0.020159 +5 0.262135 0.177237 0.007895 0.016082 +5 0.816228 0.296602 0.008480 0.015629 +3 0.689766 0.319139 0.007602 0.019932 +5 0.338743 0.327860 0.008480 0.016082 +5 0.451901 0.243375 0.007895 0.015629 +4 0.140351 0.571574 0.009942 0.018347 +3 0.849561 0.297508 0.007310 0.020612 +4 0.138158 0.233862 0.009649 0.018800 +4 0.140497 0.639977 0.009649 0.018347 +3 0.479094 0.608947 0.006725 0.021065 +1 0.120906 0.651529 0.023099 0.045980 +3 0.529094 0.662627 0.007895 0.019253 +1 0.120906 0.717441 0.022515 0.045527 +5 0.847515 0.132390 0.008480 0.016535 +5 0.580848 0.328086 0.008480 0.014723 +5 0.304240 0.249490 0.008480 0.015629 +3 0.472807 0.319479 0.007602 0.019253 +4 0.851316 0.513817 0.008480 0.019253 +4 0.806579 0.232729 0.009649 0.018347 +4 0.186404 0.790827 0.008480 0.018800 +5 0.225877 0.243375 0.008480 0.015629 +4 0.820614 0.798075 0.009064 0.019253 +3 0.184211 0.581087 0.007602 0.019706 +4 0.260965 0.787429 0.009064 0.018800 +3 0.404240 0.255379 0.007310 0.019253 +4 0.694006 0.396942 0.008480 0.018800 +5 0.644591 0.387429 0.007895 0.015176 +5 0.444006 0.306795 0.007895 0.015629 +4 0.438743 0.609400 0.009064 0.019253 +4 0.570029 0.603058 0.009649 0.018347 +3 0.610380 0.602831 0.007310 0.019706 +5 0.186111 0.366138 0.008480 0.015629 +1 0.119737 0.793092 0.022515 0.045527 +5 0.651316 0.319479 0.008480 0.016082 +5 0.403363 0.364100 0.009064 0.014723 +4 0.378216 0.659456 0.009064 0.018347 +4 0.769591 0.523783 0.009357 0.018800 +1 0.119737 0.582899 0.022515 0.045527 +4 0.502339 0.319706 0.009357 0.019253 +4 0.141228 0.780861 0.009357 0.018347 +3 0.603363 0.386523 0.007310 0.018347 +5 0.580117 0.377010 0.009357 0.015629 +3 0.495760 0.386976 0.007310 0.019253 +3 0.381871 0.374745 0.007602 0.019706 +4 0.586988 0.663080 0.009064 0.018800 +4 0.221345 0.875991 0.009357 0.018800 +4 0.141374 0.706116 0.009649 0.018347 +3 0.736404 0.594224 0.007895 0.019706 +3 0.669444 0.390374 0.007310 0.020159 +5 0.518129 0.377237 0.009357 0.015629 +5 0.361842 0.319026 0.008480 0.015629 +4 0.212135 0.658550 0.009064 0.018800 +4 0.139766 0.843715 0.008772 0.016761 +1 0.120468 0.855266 0.021637 0.045300 +4 0.137719 0.297848 0.008772 0.017667 +1 0.119006 0.309626 0.021637 0.045753 +4 0.138889 0.441223 0.008187 0.018120 +1 0.119883 0.453001 0.021637 0.045300 +4 0.139474 0.503964 0.008772 0.017667 +1 0.120175 0.515062 0.021637 0.045300 +4 0.138596 0.365572 0.008772 0.018120 +1 0.120175 0.376670 0.021637 0.044847 +4 0.743567 0.657758 0.008187 0.020385 +3 0.722222 0.653681 0.006433 0.019479 +4 0.138012 0.167610 0.008772 0.018120 +1 0.119298 0.179162 0.022222 0.044847 +3 0.685380 0.656399 0.006433 0.019026 +5 0.664327 0.650283 0.007602 0.014949 +4 0.252339 0.375085 0.008772 0.018120 +3 0.260819 0.368743 0.006433 0.018120 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_17.jpg b/data_dataset/mosz/debug/debug_17.jpg new file mode 100644 index 0000000..c9e0707 Binary files /dev/null and b/data_dataset/mosz/debug/debug_17.jpg differ diff --git a/data_dataset/mosz/debug/debug_17.txt b/data_dataset/mosz/debug/debug_17.txt new file mode 100644 index 0000000..61ac621 --- /dev/null +++ b/data_dataset/mosz/debug/debug_17.txt @@ -0,0 +1,378 @@ +10 0.177353 0.843864 0.013529 0.005909 +10 0.793235 0.752045 0.013529 0.005909 +10 0.459706 0.751136 0.013529 0.005909 +10 0.846176 0.749318 0.013529 0.005909 +6 0.764412 0.752159 0.011176 0.023409 +6 0.431471 0.751250 0.011176 0.023409 +10 0.273235 0.145227 0.013529 0.005909 +12 0.210735 0.870909 0.009706 0.008182 +12 0.379265 0.865341 0.010294 0.007955 +12 0.229853 0.864886 0.010294 0.007955 +12 0.563088 0.859432 0.010882 0.007955 +12 0.400441 0.858750 0.010294 0.007500 +12 0.359265 0.858750 0.010294 0.007500 +12 0.582059 0.856023 0.010588 0.007500 +12 0.542794 0.856023 0.010294 0.007500 +12 0.339853 0.855568 0.010294 0.007500 +13 0.251029 0.855568 0.010294 0.007500 +12 0.600441 0.853068 0.010294 0.007955 +12 0.524559 0.852614 0.010294 0.007955 +12 0.319853 0.852614 0.010294 0.007955 +12 0.505441 0.849432 0.010882 0.007045 +12 0.419265 0.849205 0.010294 0.007500 +12 0.299853 0.849318 0.010294 0.007727 +12 0.268676 0.848977 0.010294 0.007045 +12 0.631471 0.846932 0.010588 0.007500 +12 0.486912 0.846477 0.010294 0.007500 +12 0.467353 0.843068 0.010000 0.007955 +12 0.438088 0.843068 0.010294 0.007955 +12 0.708088 0.837614 0.010294 0.007045 +12 0.649559 0.837614 0.010882 0.007045 +12 0.669412 0.833977 0.010000 0.007955 +12 0.727794 0.831250 0.009706 0.007045 +12 0.688529 0.831023 0.010000 0.007500 +12 0.744559 0.825341 0.010294 0.007955 +12 0.764559 0.816023 0.010294 0.007500 +18 0.846029 0.810114 0.014412 0.007500 +18 0.799559 0.809432 0.014412 0.007045 +12 0.560882 0.781250 0.010000 0.007955 +12 0.343676 0.781250 0.009706 0.007955 +12 0.234265 0.781250 0.009706 0.007955 +12 0.670882 0.780795 0.010000 0.007955 +13 0.694559 0.778750 0.010294 0.007500 +13 0.654559 0.778750 0.010294 0.007500 +13 0.582206 0.778523 0.010294 0.007045 +13 0.365147 0.778750 0.010294 0.007500 +13 0.327206 0.778750 0.009706 0.007500 +13 0.543382 0.778295 0.010294 0.007500 +13 0.256029 0.778523 0.010294 0.007955 +13 0.216912 0.778295 0.010294 0.007500 +13 0.710735 0.775341 0.009706 0.007045 +13 0.598382 0.775114 0.009706 0.007500 +13 0.310441 0.775568 0.010294 0.008409 +13 0.272206 0.775341 0.010294 0.007955 +13 0.200441 0.775114 0.010294 0.007500 +13 0.638088 0.774886 0.010294 0.007955 +13 0.527500 0.775114 0.010294 0.008409 +13 0.381912 0.775114 0.009706 0.008409 +11 0.739559 0.772386 0.009706 0.007500 +12 0.616176 0.772159 0.010000 0.007955 +12 0.504265 0.772159 0.009706 0.007955 +11 0.407500 0.772159 0.010294 0.007955 +12 0.288088 0.772159 0.010294 0.007955 +12 0.176029 0.772273 0.009706 0.008182 +12 0.370147 0.707386 0.009706 0.008409 +13 0.389853 0.704205 0.010294 0.007500 +13 0.354559 0.704432 0.010294 0.007955 +11 0.253382 0.704432 0.010294 0.007955 +13 0.339853 0.701250 0.010294 0.007955 +12 0.234559 0.701250 0.010294 0.007955 +13 0.404118 0.700795 0.010000 0.007955 +17 0.854265 0.698068 0.010882 0.007045 +13 0.324853 0.698295 0.009706 0.007500 +12 0.214559 0.698295 0.010294 0.007500 +12 0.419559 0.697841 0.010882 0.007500 +13 0.310294 0.695000 0.010588 0.007273 +11 0.277500 0.695114 0.010294 0.007500 +12 0.805882 0.691705 0.010000 0.007955 +12 0.196471 0.691932 0.010588 0.008409 +12 0.438382 0.691023 0.009706 0.007500 +13 0.824559 0.688523 0.010294 0.007045 +13 0.791324 0.688295 0.009706 0.007500 +13 0.839706 0.685568 0.010588 0.007500 +13 0.775735 0.685568 0.010294 0.007500 +12 0.176324 0.685568 0.010294 0.007500 +12 0.560441 0.685114 0.010294 0.007500 +12 0.757794 0.682500 0.010882 0.007727 +11 0.728088 0.682159 0.010294 0.007045 +11 0.696765 0.681932 0.010000 0.007500 +12 0.541324 0.681705 0.009706 0.007045 +12 0.456324 0.681705 0.010294 0.007045 +12 0.677794 0.678977 0.010882 0.007955 +12 0.523088 0.678750 0.010882 0.008409 +12 0.658676 0.675341 0.010294 0.007045 +12 0.503971 0.675568 0.010294 0.007500 +12 0.475588 0.675341 0.010000 0.007045 +12 0.639706 0.672386 0.010588 0.007500 +12 0.621029 0.669205 0.010294 0.007500 +17 0.584118 0.669205 0.011176 0.007500 +12 0.538088 0.632159 0.010294 0.007955 +12 0.554265 0.629205 0.009706 0.008409 +12 0.521029 0.629205 0.010294 0.008409 +12 0.405000 0.625909 0.010000 0.007727 +12 0.504559 0.625795 0.010294 0.007955 +12 0.422353 0.625568 0.010000 0.007500 +12 0.311324 0.623295 0.010882 0.007500 +12 0.569853 0.622841 0.010294 0.007500 +11 0.452353 0.622841 0.010588 0.007500 +12 0.388382 0.622841 0.009706 0.007500 +12 0.488382 0.622614 0.010882 0.007955 +12 0.286029 0.620114 0.009706 0.007500 +12 0.237647 0.620114 0.010000 0.007500 +12 0.363382 0.619886 0.010294 0.007955 +13 0.848088 0.617386 0.010294 0.007500 +12 0.677794 0.616932 0.010882 0.007500 +12 0.339265 0.616932 0.010294 0.007500 +12 0.212206 0.616932 0.010294 0.007500 +12 0.270294 0.616705 0.010588 0.007955 +13 0.862206 0.613977 0.010294 0.007045 +13 0.833382 0.613977 0.010294 0.007045 +13 0.819265 0.613977 0.010294 0.007045 +11 0.797794 0.614205 0.010882 0.007500 +12 0.661029 0.613750 0.010294 0.006591 +12 0.586176 0.613750 0.010588 0.007500 +12 0.253235 0.613750 0.010588 0.007500 +12 0.195147 0.613750 0.010294 0.007500 +12 0.782206 0.611250 0.010294 0.007955 +12 0.644559 0.610568 0.010294 0.007500 +12 0.176912 0.610568 0.010294 0.007500 +12 0.764559 0.607841 0.010294 0.007500 +12 0.627500 0.607386 0.010294 0.007500 +12 0.602353 0.607386 0.010588 0.007500 +12 0.749265 0.604659 0.010294 0.007500 +12 0.733088 0.601477 0.009706 0.007500 +17 0.696912 0.601250 0.011471 0.007045 +12 0.238971 0.558523 0.009706 0.007955 +11 0.259853 0.555568 0.010294 0.007500 +12 0.219118 0.555568 0.010588 0.007500 +12 0.287206 0.552159 0.010882 0.007955 +12 0.197500 0.552159 0.010294 0.007955 +12 0.398971 0.551705 0.009706 0.007955 +12 0.307206 0.549432 0.009706 0.007955 +12 0.176912 0.549432 0.010294 0.007955 +11 0.426324 0.548977 0.010294 0.007955 +12 0.380441 0.548068 0.010294 0.007955 +12 0.581029 0.545568 0.010294 0.007500 +12 0.460441 0.545568 0.010294 0.007500 +12 0.359853 0.545795 0.010294 0.007955 +12 0.339853 0.545795 0.010294 0.007955 +12 0.859265 0.542841 0.010294 0.007500 +12 0.602500 0.542614 0.010882 0.007955 +12 0.554706 0.542386 0.010000 0.007500 +12 0.480441 0.542386 0.010294 0.007500 +12 0.840294 0.539659 0.010000 0.007500 +12 0.533235 0.539205 0.010000 0.007500 +12 0.512794 0.539545 0.010294 0.008182 +12 0.820441 0.536477 0.010294 0.007500 +12 0.628382 0.536250 0.009706 0.007955 +12 0.778676 0.530114 0.010294 0.007500 +12 0.800147 0.526932 0.009706 0.007500 +12 0.758824 0.527159 0.010000 0.007955 +12 0.654706 0.526705 0.010588 0.007955 +12 0.732500 0.523750 0.009706 0.007500 +12 0.706618 0.520568 0.010294 0.006591 +12 0.676176 0.520341 0.010000 0.007045 +12 0.819853 0.477614 0.010294 0.007955 +12 0.802794 0.474205 0.010294 0.007500 +12 0.678382 0.474205 0.009706 0.007500 +17 0.847941 0.473977 0.011176 0.007955 +13 0.749559 0.471477 0.009706 0.007500 +13 0.778382 0.471250 0.009706 0.007955 +13 0.726618 0.468295 0.009706 0.007500 +12 0.697647 0.468068 0.010000 0.007955 +12 0.620735 0.468068 0.010882 0.007955 +13 0.764265 0.464659 0.009706 0.007500 +13 0.639412 0.464659 0.010000 0.007500 +12 0.600735 0.464659 0.009706 0.007500 +12 0.268088 0.461932 0.010294 0.007500 +13 0.655147 0.461250 0.010294 0.007045 +12 0.248971 0.455795 0.010882 0.007955 +12 0.555735 0.455341 0.010294 0.007955 +11 0.499265 0.452159 0.010294 0.007045 +13 0.287647 0.452386 0.010588 0.007500 +12 0.230147 0.452386 0.009706 0.007500 +12 0.536324 0.451932 0.010294 0.007500 +12 0.203529 0.449432 0.010000 0.007955 +12 0.582647 0.448750 0.010000 0.007500 +12 0.421029 0.448864 0.010294 0.007727 +12 0.306324 0.446250 0.010294 0.007045 +12 0.175735 0.446477 0.010294 0.007500 +12 0.395147 0.446023 0.010294 0.007500 +12 0.440441 0.445568 0.010294 0.007500 +13 0.459265 0.442614 0.010294 0.007955 +12 0.375147 0.442614 0.010294 0.007955 +12 0.325147 0.439659 0.010294 0.007500 +13 0.476029 0.439205 0.009706 0.007500 +12 0.356765 0.439432 0.010588 0.007955 +13 0.453088 0.399432 0.009706 0.007955 +12 0.527941 0.398409 0.010588 0.008182 +13 0.427500 0.396477 0.010294 0.007500 +13 0.568382 0.396250 0.010882 0.007955 +13 0.467500 0.396250 0.010294 0.007955 +11 0.546618 0.395795 0.010882 0.007955 +13 0.640294 0.393068 0.010000 0.007955 +13 0.482206 0.393523 0.010294 0.008864 +13 0.613971 0.389659 0.010294 0.007500 +13 0.583676 0.389659 0.009706 0.007500 +13 0.496618 0.389659 0.009706 0.007500 +13 0.663088 0.386477 0.009706 0.007500 +13 0.598382 0.386477 0.009706 0.007500 +12 0.511029 0.386705 0.010294 0.007955 +12 0.801029 0.383295 0.010294 0.007500 +13 0.781471 0.380114 0.010588 0.007500 +12 0.228824 0.377841 0.010000 0.007500 +12 0.825588 0.376932 0.010588 0.007500 +13 0.766912 0.376932 0.010294 0.007500 +12 0.212059 0.374659 0.010000 0.007500 +13 0.398676 0.373977 0.010294 0.007045 +13 0.383382 0.374318 0.010294 0.007727 +11 0.362059 0.374205 0.010588 0.007500 +13 0.744853 0.373750 0.009706 0.007500 +12 0.193971 0.371705 0.010294 0.007955 +12 0.343382 0.371250 0.010294 0.007955 +13 0.722794 0.370568 0.010294 0.007500 +12 0.327500 0.368068 0.010294 0.007045 +12 0.175882 0.368068 0.010000 0.007045 +13 0.414118 0.367614 0.010588 0.007045 +12 0.842794 0.367386 0.010294 0.007500 +13 0.708971 0.367159 0.009706 0.007045 +12 0.310000 0.365114 0.010588 0.007500 +13 0.686912 0.364205 0.010294 0.007500 +12 0.290735 0.361932 0.009706 0.007500 +17 0.252500 0.361932 0.010882 0.007500 +12 0.860147 0.361250 0.010882 0.007045 +17 0.175735 0.325341 0.011471 0.007955 +12 0.751471 0.323523 0.010588 0.007955 +12 0.205441 0.322841 0.009706 0.008409 +13 0.736618 0.321023 0.009706 0.007500 +11 0.637059 0.321250 0.010588 0.007955 +13 0.771029 0.320909 0.010294 0.008182 +12 0.618382 0.317841 0.009706 0.007500 +13 0.785882 0.317841 0.010000 0.008409 +13 0.722206 0.317614 0.010294 0.007955 +12 0.222353 0.315568 0.010000 0.007500 +13 0.707500 0.314659 0.010294 0.007500 +12 0.600735 0.314659 0.009706 0.007500 +12 0.801029 0.313977 0.010294 0.007955 +13 0.694559 0.311705 0.010294 0.007045 +11 0.661618 0.311705 0.010294 0.007045 +12 0.338676 0.309432 0.010294 0.007955 +12 0.823824 0.308523 0.010000 0.007955 +12 0.582794 0.308523 0.010294 0.007955 +13 0.524265 0.308523 0.009706 0.007955 +12 0.321618 0.306250 0.010294 0.007045 +12 0.239118 0.306250 0.010000 0.007045 +13 0.538382 0.305341 0.009706 0.007045 +13 0.510000 0.305568 0.010000 0.007500 +13 0.495294 0.305568 0.010000 0.007500 +11 0.471912 0.305341 0.010882 0.007045 +12 0.304118 0.303068 0.010000 0.007955 +12 0.566471 0.302386 0.010000 0.007500 +12 0.454118 0.302273 0.010588 0.007727 +12 0.256912 0.300114 0.010294 0.007500 +12 0.286912 0.299886 0.010294 0.007955 +12 0.437353 0.299205 0.010588 0.007500 +12 0.841176 0.298750 0.010000 0.007500 +12 0.418676 0.296023 0.010294 0.007500 +12 0.400441 0.293295 0.010294 0.007500 +17 0.362500 0.293295 0.010882 0.007500 +12 0.858382 0.292159 0.010294 0.007045 +12 0.247059 0.250795 0.010588 0.007955 +12 0.822206 0.249659 0.010294 0.007500 +13 0.731324 0.249432 0.009706 0.007955 +13 0.228971 0.247841 0.009706 0.007500 +13 0.268088 0.247386 0.010294 0.007500 +17 0.845000 0.246705 0.011176 0.007955 +13 0.748088 0.246705 0.010294 0.007955 +13 0.703382 0.246705 0.010294 0.007955 +13 0.285882 0.244432 0.010000 0.007955 +13 0.210294 0.244091 0.010000 0.007727 +13 0.765147 0.243068 0.010294 0.007955 +12 0.304559 0.241023 0.010294 0.008409 +13 0.192794 0.240795 0.010294 0.007955 +13 0.783382 0.240341 0.010294 0.007955 +13 0.174559 0.238295 0.010294 0.007500 +12 0.802206 0.237159 0.010294 0.007955 +12 0.330441 0.234886 0.010294 0.007955 +12 0.470294 0.227841 0.010588 0.007500 +12 0.351765 0.224886 0.010588 0.007045 +13 0.669118 0.224205 0.010000 0.007500 +11 0.626324 0.224205 0.010294 0.007500 +12 0.448824 0.224205 0.010588 0.007500 +13 0.652500 0.223977 0.009706 0.007955 +12 0.426765 0.221477 0.010588 0.007500 +12 0.604853 0.221023 0.009706 0.007500 +12 0.371912 0.218523 0.009706 0.007045 +12 0.582941 0.218068 0.010000 0.007045 +12 0.406324 0.218295 0.010294 0.007500 +13 0.686765 0.217614 0.010000 0.007045 +12 0.561029 0.215114 0.010294 0.008409 +17 0.494853 0.211932 0.010882 0.007500 +12 0.540588 0.211477 0.010588 0.007500 +12 0.307500 0.171477 0.010294 0.007500 +11 0.816618 0.171250 0.009706 0.007955 +12 0.795147 0.167955 0.009118 0.007273 +12 0.329118 0.165341 0.010588 0.007955 +12 0.775147 0.165114 0.010294 0.008409 +11 0.848088 0.161477 0.010294 0.007500 +12 0.753382 0.158523 0.010294 0.007955 +13 0.683235 0.158523 0.010588 0.007955 +12 0.465441 0.158523 0.010882 0.007955 +12 0.350441 0.156023 0.010294 0.007500 +13 0.701618 0.155341 0.010294 0.007045 +12 0.443971 0.155341 0.010294 0.007045 +13 0.665000 0.155114 0.010000 0.007500 +13 0.647206 0.155114 0.009706 0.007500 +11 0.620882 0.155341 0.010588 0.007955 +12 0.732206 0.152159 0.010294 0.007955 +12 0.598088 0.152159 0.010294 0.007955 +12 0.423971 0.152159 0.010294 0.007955 +12 0.402500 0.149205 0.010882 0.007500 +12 0.370441 0.149432 0.010294 0.007955 +12 0.577941 0.148750 0.010000 0.007500 +12 0.556176 0.145795 0.010588 0.007955 +12 0.534706 0.142614 0.010588 0.007045 +17 0.490588 0.142841 0.011176 0.007500 +1 0.121912 0.296250 0.023235 0.045682 +1 0.161912 0.146250 0.023235 0.046591 +5 0.812500 0.305568 0.007941 0.016136 +1 0.123088 0.371477 0.022059 0.046136 +4 0.652794 0.386023 0.008529 0.018864 +1 0.121912 0.222386 0.023235 0.046136 +3 0.483382 0.211932 0.007353 0.019773 +4 0.184559 0.134659 0.009706 0.018864 +3 0.241029 0.362159 0.007353 0.019318 +4 0.409265 0.449205 0.009706 0.018864 +1 0.123676 0.530114 0.022059 0.046136 +3 0.814265 0.376477 0.007941 0.021591 +4 0.665147 0.474205 0.009706 0.018864 +4 0.447500 0.545114 0.009706 0.019773 +5 0.319559 0.232841 0.007941 0.013409 +4 0.145147 0.209659 0.009706 0.018864 +4 0.570441 0.448977 0.009706 0.018409 +4 0.145441 0.284659 0.009118 0.017955 +4 0.146618 0.443068 0.009118 0.018409 +1 0.123971 0.455341 0.022647 0.045682 +4 0.146029 0.591932 0.009118 0.017955 +1 0.125735 0.678523 0.022647 0.045682 +4 0.738676 0.470795 0.008529 0.018409 +4 0.719853 0.523523 0.008529 0.019318 +3 0.572794 0.669432 0.007353 0.019318 +5 0.428971 0.688068 0.007941 0.015682 +3 0.440147 0.623295 0.006765 0.019773 +4 0.486618 0.451250 0.009118 0.018409 +4 0.568676 0.545341 0.009706 0.019318 +3 0.835147 0.474659 0.007353 0.019773 +4 0.297794 0.623750 0.009118 0.019773 +4 0.224853 0.619659 0.009118 0.018864 +4 0.790147 0.474659 0.009118 0.018864 +4 0.413088 0.549659 0.009118 0.018864 +1 0.124559 0.603977 0.022647 0.045682 +4 0.146618 0.517614 0.009118 0.018409 +3 0.617500 0.536250 0.007353 0.020227 +4 0.218971 0.452841 0.009118 0.019773 +4 0.191324 0.449659 0.009118 0.018864 +4 0.145735 0.358977 0.009706 0.018409 +4 0.747206 0.527159 0.009118 0.019318 +4 0.642794 0.526932 0.009706 0.019773 +4 0.147206 0.833523 0.009118 0.018409 +1 0.124853 0.752386 0.022059 0.046136 +1 0.124559 0.845568 0.022647 0.046136 +4 0.146618 0.740568 0.009118 0.018864 +4 0.146618 0.666477 0.009118 0.018864 +4 0.374412 0.623182 0.008824 0.018182 +4 0.351471 0.619545 0.008824 0.018182 +4 0.698529 0.366818 0.007647 0.018182 +4 0.675588 0.364091 0.007647 0.018182 +4 0.756471 0.376818 0.008235 0.018182 +4 0.734118 0.373636 0.008235 0.019091 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_18.jpg b/data_dataset/mosz/debug/debug_18.jpg new file mode 100644 index 0000000..348cab4 Binary files /dev/null and b/data_dataset/mosz/debug/debug_18.jpg differ diff --git a/data_dataset/mosz/debug/debug_18.txt b/data_dataset/mosz/debug/debug_18.txt new file mode 100644 index 0000000..6d0f20b --- /dev/null +++ b/data_dataset/mosz/debug/debug_18.txt @@ -0,0 +1,378 @@ +7 0.809927 0.857886 0.012263 0.015388 +7 0.747737 0.857773 0.012847 0.015162 +7 0.766715 0.857547 0.012263 0.015162 +7 0.537810 0.857321 0.012263 0.016067 +7 0.556204 0.857094 0.012847 0.016067 +10 0.846423 0.853134 0.014015 0.005884 +6 0.783358 0.855058 0.011095 0.023761 +7 0.278832 0.643698 0.012263 0.014709 +7 0.417226 0.643924 0.012263 0.015614 +7 0.340146 0.643924 0.012263 0.015614 +7 0.555620 0.647997 0.012263 0.024214 +7 0.478248 0.643698 0.012847 0.015614 +7 0.782482 0.566531 0.012847 0.015162 +7 0.661022 0.566531 0.012847 0.015162 +7 0.727883 0.566305 0.012263 0.015162 +7 0.609051 0.565852 0.012847 0.015162 +7 0.390365 0.439579 0.012847 0.014709 +7 0.276788 0.439579 0.013431 0.014709 +7 0.437664 0.439353 0.012847 0.015614 +7 0.370803 0.439579 0.012263 0.015614 +7 0.196788 0.439353 0.013431 0.015614 +10 0.475912 0.434714 0.013431 0.005884 +6 0.412847 0.436864 0.011095 0.023308 +7 0.759708 0.365354 0.012263 0.015614 +7 0.363796 0.365354 0.012263 0.015614 +7 0.829489 0.364449 0.012847 0.016972 +7 0.409051 0.365128 0.012847 0.015614 +7 0.343942 0.364902 0.012263 0.016067 +6 0.384234 0.361960 0.011095 0.023308 +7 0.825985 0.290450 0.012847 0.015614 +7 0.331971 0.290450 0.012847 0.015614 +7 0.764088 0.290224 0.012847 0.015614 +7 0.689635 0.289998 0.012263 0.015162 +7 0.395620 0.289998 0.012847 0.015162 +7 0.623066 0.288640 0.012263 0.018330 +7 0.550365 0.290224 0.012847 0.016067 +7 0.195912 0.290224 0.012847 0.016067 +7 0.476496 0.289771 0.012263 0.015614 +7 0.259562 0.289771 0.012847 0.015614 +6 0.587883 0.289771 0.004964 0.028287 +7 0.346423 0.226974 0.012555 0.015841 +7 0.274453 0.226635 0.012847 0.015162 +7 0.640000 0.226409 0.012847 0.016067 +7 0.547883 0.226409 0.012555 0.016067 +7 0.502336 0.226635 0.012555 0.015614 +7 0.405839 0.226635 0.012847 0.015614 +7 0.199270 0.226182 0.012555 0.014709 +7 0.773723 0.226409 0.012847 0.015614 +7 0.698686 0.226409 0.013431 0.015614 +7 0.482044 0.226409 0.012263 0.015614 +7 0.835036 0.225730 0.012847 0.016520 +10 0.585255 0.221770 0.013723 0.006336 +6 0.521752 0.223919 0.011095 0.022856 +7 0.644672 0.146979 0.012847 0.015614 +7 0.338978 0.146753 0.012263 0.016067 +7 0.573431 0.146979 0.012847 0.016067 +7 0.837080 0.146526 0.013431 0.015614 +7 0.707153 0.146413 0.012847 0.016293 +7 0.519124 0.146753 0.012847 0.016067 +7 0.776934 0.151052 0.013431 0.025119 +6 0.315036 0.144037 0.011095 0.023308 +12 0.722482 0.882439 0.010803 0.007468 +12 0.722482 0.869993 0.010803 0.007015 +12 0.722336 0.854153 0.009343 0.007015 +17 0.574453 0.882213 0.010219 0.007468 +17 0.574161 0.869541 0.009635 0.007468 +11 0.574015 0.853926 0.009343 0.007015 +17 0.667007 0.881987 0.010803 0.007920 +17 0.667007 0.866599 0.009635 0.007015 +11 0.666861 0.850984 0.009927 0.007468 +17 0.625109 0.881761 0.010511 0.007920 +17 0.625255 0.863431 0.010219 0.007468 +11 0.624964 0.847816 0.010219 0.007015 +12 0.518832 0.854153 0.009927 0.007015 +12 0.484234 0.851211 0.010219 0.007920 +12 0.432847 0.850984 0.010219 0.007920 +11 0.405109 0.850984 0.010803 0.007920 +12 0.376204 0.848043 0.010219 0.007015 +12 0.320730 0.847590 0.010219 0.007468 +11 0.295620 0.847703 0.010219 0.007694 +12 0.260000 0.844648 0.010219 0.007468 +12 0.201022 0.841254 0.010219 0.007468 +11 0.174161 0.841254 0.010219 0.007920 +11 0.458832 0.834804 0.009635 0.007694 +11 0.228759 0.834691 0.010803 0.007920 +11 0.349343 0.834691 0.010219 0.008373 +12 0.853577 0.774044 0.009635 0.007920 +12 0.688613 0.773591 0.010219 0.007468 +12 0.804526 0.770649 0.010803 0.007920 +11 0.777372 0.770649 0.010219 0.007920 +12 0.569781 0.770423 0.010803 0.008373 +12 0.458832 0.770423 0.009635 0.008373 +11 0.175474 0.770423 0.010511 0.008373 +11 0.715474 0.770197 0.010219 0.008373 +12 0.742044 0.767481 0.010803 0.007468 +11 0.592555 0.767255 0.010803 0.007468 +11 0.481898 0.767481 0.010219 0.007920 +11 0.542044 0.767255 0.011387 0.007920 +12 0.337664 0.767255 0.010219 0.007920 +12 0.205985 0.767255 0.010803 0.007920 +12 0.270803 0.767029 0.009635 0.007920 +11 0.825985 0.764766 0.010511 0.008373 +11 0.661898 0.764087 0.010511 0.007468 +11 0.358102 0.764313 0.010219 0.007920 +11 0.303796 0.764087 0.010219 0.007920 +12 0.508759 0.763408 0.010219 0.008373 +11 0.427299 0.761145 0.010803 0.007468 +12 0.628029 0.760919 0.010511 0.007920 +12 0.393431 0.757977 0.010803 0.007920 +11 0.234599 0.757751 0.010803 0.007920 +12 0.799708 0.702082 0.010511 0.007468 +12 0.320438 0.701403 0.010219 0.007468 +11 0.822044 0.698914 0.010219 0.007920 +11 0.342774 0.698687 0.010511 0.007468 +11 0.769635 0.698687 0.010511 0.007920 +11 0.293869 0.698574 0.010219 0.008147 +12 0.738248 0.696198 0.010219 0.007920 +12 0.261460 0.695293 0.010803 0.007468 +12 0.855766 0.695293 0.011095 0.007920 +11 0.413869 0.695293 0.010219 0.007920 +12 0.376788 0.694954 0.010219 0.007694 +12 0.441898 0.692351 0.009635 0.007468 +12 0.616788 0.691899 0.010219 0.007468 +11 0.703796 0.689636 0.010219 0.007920 +11 0.651679 0.688957 0.010511 0.007920 +11 0.227883 0.688957 0.010219 0.007920 +12 0.495620 0.688957 0.010803 0.008373 +11 0.174745 0.688052 0.010219 0.008373 +11 0.587299 0.686468 0.010803 0.007920 +12 0.204672 0.686015 0.010511 0.007468 +11 0.532555 0.686015 0.010511 0.008373 +12 0.681022 0.685562 0.010219 0.007920 +12 0.566569 0.682394 0.010219 0.007920 +11 0.469635 0.682847 0.010219 0.008826 +11 0.610073 0.652523 0.010219 0.007468 +12 0.635182 0.649808 0.010219 0.007468 +17 0.579854 0.649808 0.010511 0.007920 +12 0.496496 0.646413 0.010803 0.007468 +12 0.531825 0.646187 0.010219 0.007468 +11 0.672263 0.643471 0.010803 0.007920 +12 0.461168 0.643245 0.010219 0.007468 +12 0.260584 0.643245 0.010803 0.007468 +12 0.260292 0.633514 0.010219 0.007015 +12 0.443796 0.640303 0.010511 0.007468 +12 0.400146 0.639851 0.009635 0.007468 +12 0.232555 0.639851 0.010803 0.007468 +12 0.365547 0.637135 0.009927 0.007015 +11 0.174745 0.637361 0.010803 0.007468 +12 0.323358 0.636909 0.010219 0.007015 +11 0.208175 0.636909 0.009927 0.007015 +12 0.696934 0.633967 0.010511 0.007015 +12 0.296934 0.633741 0.009927 0.007015 +11 0.721606 0.627404 0.010219 0.007920 +12 0.746131 0.621521 0.010219 0.007920 +12 0.852847 0.618579 0.009927 0.007468 +11 0.827737 0.612243 0.009927 0.007468 +11 0.778832 0.612016 0.009635 0.007468 +12 0.809489 0.608961 0.010219 0.008147 +12 0.339416 0.588029 0.010219 0.007920 +11 0.425985 0.587576 0.010511 0.007920 +11 0.267007 0.584635 0.010219 0.007920 +12 0.403066 0.584408 0.010219 0.007920 +12 0.450365 0.584295 0.010219 0.008147 +12 0.291387 0.581693 0.009927 0.007468 +12 0.227299 0.581466 0.010219 0.007468 +11 0.373285 0.581466 0.010219 0.007920 +11 0.483066 0.578525 0.010803 0.007468 +11 0.314307 0.578298 0.010803 0.007468 +11 0.204526 0.577846 0.010219 0.007468 +11 0.175912 0.571962 0.010219 0.007920 +12 0.506861 0.568794 0.010511 0.006563 +11 0.535036 0.562910 0.010803 0.007468 +17 0.840146 0.560195 0.012555 0.007468 +12 0.803066 0.559968 0.010803 0.007468 +12 0.765985 0.559742 0.010219 0.007015 +12 0.681898 0.559742 0.010219 0.007015 +12 0.747299 0.559742 0.010219 0.007468 +12 0.710803 0.559742 0.010803 0.007468 +12 0.644526 0.559742 0.010219 0.007468 +12 0.628029 0.559742 0.010511 0.007468 +12 0.588905 0.559742 0.010511 0.007920 +12 0.557810 0.556574 0.010803 0.007015 +12 0.492409 0.519009 0.010219 0.007015 +11 0.530365 0.515841 0.010219 0.007468 +12 0.435766 0.515614 0.010219 0.007015 +12 0.374745 0.515388 0.010803 0.007015 +11 0.295036 0.515501 0.010219 0.007694 +12 0.324526 0.512220 0.009635 0.006563 +11 0.466715 0.512220 0.010219 0.007015 +11 0.560730 0.509278 0.010219 0.007468 +11 0.257226 0.509278 0.009927 0.007468 +11 0.411241 0.509278 0.010219 0.007920 +11 0.847445 0.506336 0.010219 0.007468 +11 0.584672 0.505884 0.010219 0.007015 +11 0.225839 0.505884 0.010803 0.007468 +11 0.350511 0.505657 0.010219 0.007468 +11 0.175912 0.505657 0.010219 0.007468 +12 0.720000 0.499547 0.009927 0.007468 +12 0.613723 0.499547 0.009927 0.007468 +12 0.205109 0.499321 0.009635 0.007015 +11 0.816204 0.496832 0.010219 0.007468 +11 0.779562 0.496832 0.010511 0.007920 +11 0.748759 0.493664 0.009635 0.007468 +11 0.643066 0.493664 0.010803 0.007468 +11 0.694161 0.493437 0.010219 0.007468 +12 0.673139 0.490496 0.010219 0.007920 +11 0.512117 0.455193 0.009927 0.007468 +12 0.299416 0.452025 0.010803 0.007468 +12 0.546715 0.448857 0.010219 0.007468 +12 0.346569 0.448518 0.009927 0.007241 +11 0.854161 0.445463 0.010803 0.007920 +11 0.226131 0.445236 0.010219 0.007468 +12 0.252701 0.442068 0.009635 0.007015 +11 0.822628 0.442068 0.010803 0.007468 +11 0.767737 0.442068 0.010803 0.007920 +11 0.579416 0.439126 0.010219 0.007468 +12 0.732263 0.438900 0.010511 0.007468 +12 0.801314 0.435958 0.010219 0.007468 +12 0.176204 0.435732 0.009635 0.007015 +12 0.611241 0.435732 0.010219 0.007468 +11 0.645985 0.432790 0.010219 0.007920 +11 0.698832 0.432790 0.010803 0.008373 +12 0.677664 0.426454 0.010511 0.007468 +12 0.203942 0.391831 0.009635 0.007468 +12 0.224088 0.386173 0.010219 0.007920 +11 0.733577 0.383684 0.010803 0.007468 +12 0.732993 0.368070 0.010219 0.007015 +17 0.676496 0.381195 0.011095 0.007468 +17 0.675912 0.371012 0.011095 0.007920 +17 0.619708 0.380969 0.011971 0.007468 +11 0.619124 0.358565 0.011387 0.007920 +17 0.565109 0.380969 0.011387 0.007920 +17 0.564234 0.358792 0.011387 0.007920 +12 0.451679 0.380969 0.011095 0.007920 +17 0.450949 0.358905 0.011387 0.008147 +12 0.246715 0.380516 0.009927 0.007920 +12 0.267591 0.374180 0.010219 0.007015 +12 0.287153 0.371238 0.010803 0.007468 +12 0.175620 0.370785 0.009635 0.007468 +12 0.319124 0.368070 0.009927 0.007015 +12 0.857372 0.364902 0.010219 0.007920 +12 0.789343 0.358565 0.010803 0.007468 +17 0.508175 0.358565 0.011387 0.007920 +17 0.508467 0.380742 0.011387 0.007920 +12 0.809197 0.355737 0.010803 0.007694 +12 0.449635 0.305725 0.009927 0.007694 +12 0.449051 0.292826 0.009927 0.007241 +12 0.499124 0.299163 0.010803 0.007694 +12 0.849197 0.292940 0.010219 0.007015 +12 0.524380 0.292487 0.010511 0.007015 +12 0.417956 0.289545 0.010803 0.007468 +12 0.784234 0.283435 0.011095 0.007468 +12 0.375766 0.283661 0.009927 0.007920 +12 0.709927 0.283209 0.010803 0.007468 +12 0.571241 0.283209 0.010219 0.007920 +12 0.648175 0.280267 0.010511 0.007015 +12 0.312555 0.280267 0.010219 0.007015 +12 0.354015 0.277325 0.010219 0.007015 +12 0.806277 0.277325 0.010803 0.007920 +12 0.279854 0.276873 0.010219 0.007015 +12 0.743358 0.277099 0.011095 0.007920 +12 0.238102 0.270989 0.009635 0.007468 +12 0.174745 0.270763 0.010219 0.007468 +12 0.669051 0.267821 0.010803 0.007920 +12 0.603066 0.267594 0.010803 0.007920 +12 0.217372 0.267368 0.010219 0.007468 +12 0.173431 0.247228 0.010511 0.007468 +12 0.219708 0.241344 0.010219 0.007015 +12 0.245693 0.231840 0.010219 0.007468 +11 0.457080 0.229124 0.010219 0.007468 +12 0.427153 0.226182 0.009927 0.007468 +12 0.293431 0.226069 0.010511 0.008147 +12 0.325401 0.220072 0.010219 0.007015 +12 0.387591 0.220072 0.009635 0.007468 +12 0.621898 0.219620 0.009927 0.007920 +12 0.366569 0.216904 0.010803 0.007468 +12 0.657956 0.213510 0.010803 0.007015 +12 0.679416 0.204232 0.010511 0.007468 +12 0.856642 0.203553 0.010511 0.007468 +12 0.723942 0.200837 0.010803 0.007468 +12 0.753723 0.197443 0.010803 0.007920 +12 0.815328 0.196990 0.010219 0.007920 +12 0.794599 0.194501 0.010803 0.007015 +12 0.815620 0.171193 0.010219 0.007015 +12 0.853577 0.165309 0.010219 0.007920 +11 0.359124 0.162593 0.009927 0.007468 +11 0.400000 0.162820 0.010511 0.008373 +12 0.757810 0.162254 0.010219 0.007694 +12 0.793723 0.159199 0.010803 0.007015 +12 0.724672 0.159199 0.010511 0.007468 +11 0.423066 0.156483 0.011095 0.007468 +12 0.591387 0.156031 0.010219 0.007015 +11 0.446277 0.153202 0.010803 0.007694 +17 0.623212 0.153089 0.010803 0.007920 +17 0.685693 0.152863 0.010803 0.007920 +11 0.664964 0.149695 0.010219 0.007015 +11 0.469927 0.149921 0.010219 0.007468 +12 0.555474 0.146640 0.010803 0.007694 +12 0.502044 0.146526 0.010219 0.007468 +12 0.537372 0.143585 0.010803 0.007015 +1 0.162774 0.145621 0.022482 0.045485 +4 0.777080 0.358565 0.009051 0.018783 +1 0.122774 0.288640 0.022482 0.045938 +4 0.186423 0.133628 0.008467 0.018783 +1 0.122482 0.225051 0.022482 0.045485 +4 0.663212 0.371012 0.009051 0.018330 +4 0.845401 0.365128 0.009051 0.018783 +4 0.710219 0.200837 0.009635 0.018783 +4 0.720438 0.383910 0.009635 0.018330 +1 0.122482 0.364449 0.023066 0.045485 +4 0.191387 0.391944 0.009635 0.018104 +5 0.567153 0.436185 0.008467 0.015614 +4 0.635766 0.279814 0.009051 0.018330 +4 0.144964 0.213057 0.009635 0.018330 +1 0.123942 0.502037 0.022482 0.046391 +3 0.662190 0.490043 0.007591 0.020140 +4 0.212993 0.445236 0.009051 0.018783 +4 0.708175 0.627970 0.009635 0.019461 +4 0.598394 0.436298 0.009051 0.019914 +3 0.313723 0.512446 0.007299 0.020140 +3 0.333577 0.447499 0.007299 0.017877 +4 0.548175 0.509165 0.009051 0.018556 +3 0.535036 0.448405 0.007299 0.019688 +5 0.719854 0.435279 0.007883 0.016972 +3 0.554307 0.683073 0.007299 0.019688 +1 0.123358 0.438900 0.022482 0.045938 +1 0.122482 0.565399 0.022482 0.045485 +3 0.353723 0.636909 0.007299 0.019688 +4 0.841022 0.445463 0.009635 0.018330 +4 0.144672 0.351550 0.009051 0.018330 +4 0.145255 0.553179 0.009635 0.017877 +4 0.144964 0.276420 0.009635 0.018330 +4 0.144964 0.630346 0.009051 0.018330 +4 0.145255 0.490043 0.009635 0.018330 +3 0.796642 0.609527 0.007299 0.020140 +3 0.390219 0.584182 0.007299 0.019235 +3 0.431095 0.640530 0.007883 0.019235 +3 0.456204 0.512220 0.007299 0.019235 +3 0.245255 0.509278 0.007591 0.019688 +5 0.726277 0.692125 0.007883 0.015614 +5 0.764818 0.766802 0.009051 0.016067 +3 0.447445 0.835823 0.007299 0.019688 +3 0.248321 0.844648 0.007299 0.020593 +1 0.121752 0.856415 0.022774 0.045485 +4 0.311679 0.637135 0.009635 0.018783 +3 0.456204 0.683073 0.007299 0.019688 +5 0.216204 0.831523 0.008467 0.015614 +1 0.123942 0.716565 0.021898 0.045485 +4 0.567445 0.649581 0.008467 0.018783 +3 0.654599 0.866372 0.007007 0.019235 +4 0.325401 0.766576 0.009635 0.018783 +3 0.222044 0.758203 0.007299 0.019235 +5 0.614453 0.757977 0.008467 0.016067 +1 0.123066 0.791242 0.022482 0.046391 +4 0.163942 0.571962 0.009635 0.018330 +3 0.665839 0.426454 0.007299 0.020593 +1 0.123650 0.643019 0.022482 0.045938 +3 0.401460 0.695746 0.007591 0.019235 +4 0.257080 0.766576 0.009635 0.018330 +5 0.283358 0.843743 0.008467 0.016067 +3 0.380876 0.758203 0.007299 0.019688 +4 0.386423 0.639624 0.009635 0.017877 +5 0.842190 0.692125 0.008467 0.015614 +4 0.164526 0.370785 0.009051 0.018783 +4 0.709489 0.854266 0.009343 0.019461 +4 0.144672 0.844309 0.009051 0.019009 +5 0.363942 0.691446 0.008467 0.015614 +4 0.254307 0.583277 0.009343 0.018330 +5 0.248321 0.691333 0.008467 0.016293 +4 0.145401 0.704119 0.009343 0.018330 +5 0.338248 0.831976 0.008467 0.015614 +4 0.164672 0.435393 0.007591 0.018104 +4 0.144818 0.426115 0.008759 0.017651 +4 0.145255 0.779362 0.008467 0.018104 +3 0.162920 0.770536 0.006423 0.018556 +3 0.447299 0.770763 0.006423 0.018556 +3 0.469489 0.767368 0.006423 0.019461 +4 0.507445 0.853813 0.008759 0.019914 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_19.jpg b/data_dataset/mosz/debug/debug_19.jpg new file mode 100644 index 0000000..ecfb67f Binary files /dev/null and b/data_dataset/mosz/debug/debug_19.jpg differ diff --git a/data_dataset/mosz/debug/debug_19.txt b/data_dataset/mosz/debug/debug_19.txt new file mode 100644 index 0000000..715aa68 --- /dev/null +++ b/data_dataset/mosz/debug/debug_19.txt @@ -0,0 +1,389 @@ +7 0.668669 0.796666 0.012603 0.015650 +10 0.736079 0.792470 0.013775 0.005897 +7 0.604484 0.796553 0.013189 0.015877 +6 0.705305 0.793037 0.007327 0.010206 +7 0.624121 0.796439 0.012603 0.016103 +7 0.251612 0.795078 0.013189 0.016103 +7 0.193875 0.795305 0.012603 0.015650 +6 0.644197 0.795078 0.010551 0.023361 +7 0.424971 0.725675 0.012309 0.015196 +7 0.351407 0.725448 0.012896 0.015196 +6 0.306565 0.724994 0.005275 0.028805 +6 0.544256 0.583012 0.010551 0.023361 +6 0.611079 0.518939 0.011137 0.023134 +6 0.718494 0.454752 0.011430 0.023134 +6 0.807737 0.383647 0.011137 0.023815 +10 0.766852 0.375595 0.013775 0.005897 +10 0.572831 0.375595 0.013775 0.005897 +10 0.522421 0.375595 0.013775 0.005897 +10 0.369138 0.375595 0.013189 0.005897 +10 0.324004 0.375595 0.014361 0.005897 +10 0.724062 0.375482 0.013775 0.006124 +10 0.670428 0.375369 0.013189 0.005897 +10 0.623242 0.375595 0.013775 0.006351 +10 0.467907 0.375369 0.013775 0.005897 +10 0.417497 0.375369 0.013775 0.005897 +7 0.200469 0.321728 0.012896 0.014743 +7 0.274033 0.321501 0.012309 0.015196 +7 0.222450 0.321501 0.012309 0.015196 +10 0.341735 0.316398 0.014068 0.006351 +6 0.518757 0.319460 0.011723 0.023361 +6 0.245897 0.318780 0.011137 0.023361 +7 0.339977 0.257541 0.012309 0.015650 +7 0.570047 0.257315 0.012896 0.015196 +7 0.549531 0.257541 0.011723 0.015650 +7 0.504689 0.257315 0.012309 0.015196 +7 0.359613 0.257541 0.012896 0.015650 +7 0.856096 0.257088 0.012896 0.015196 +7 0.836166 0.257088 0.012896 0.015196 +7 0.694021 0.257088 0.012309 0.015196 +7 0.647128 0.256861 0.012309 0.015650 +7 0.625733 0.257088 0.012896 0.016103 +7 0.485346 0.257088 0.012309 0.015196 +7 0.426729 0.257315 0.012309 0.015650 +7 0.405920 0.257315 0.012896 0.015650 +7 0.790739 0.256861 0.012309 0.015196 +7 0.770809 0.256861 0.012309 0.015196 +7 0.714537 0.256748 0.012309 0.015423 +9 0.823710 0.185983 0.009086 0.037650 +7 0.424971 0.117374 0.013482 0.015196 +7 0.476846 0.116693 0.012896 0.015650 +7 0.402696 0.116920 0.012309 0.016103 +10 0.517878 0.112270 0.014068 0.006351 +6 0.446659 0.114879 0.011137 0.022908 +11 0.304807 0.873554 0.010551 0.007485 +11 0.261430 0.873327 0.009965 0.007485 +12 0.499560 0.870832 0.010844 0.007938 +11 0.534877 0.867884 0.010551 0.007938 +11 0.229191 0.867430 0.009965 0.007485 +12 0.333968 0.867203 0.010258 0.007485 +11 0.475381 0.864255 0.011137 0.007485 +12 0.567849 0.861760 0.010258 0.006577 +12 0.206477 0.861080 0.009672 0.006577 +11 0.362104 0.861080 0.010258 0.007031 +12 0.860199 0.860399 0.009965 0.007031 +12 0.454426 0.858131 0.009672 0.007938 +12 0.738423 0.856543 0.010258 0.007031 +11 0.423212 0.854729 0.010551 0.007485 +12 0.387896 0.854502 0.010258 0.007485 +11 0.173652 0.854502 0.009672 0.007485 +12 0.805832 0.853595 0.010258 0.007485 +11 0.594226 0.852234 0.010258 0.007485 +11 0.775059 0.850193 0.010258 0.007938 +11 0.714097 0.849739 0.009672 0.007485 +11 0.828546 0.847471 0.010551 0.007485 +12 0.618406 0.846110 0.009965 0.007485 +12 0.686987 0.843389 0.010551 0.007485 +11 0.655481 0.839986 0.009672 0.007938 +11 0.776084 0.803470 0.010551 0.007938 +12 0.473916 0.801656 0.010551 0.007485 +12 0.584555 0.798707 0.009672 0.007485 +12 0.584701 0.776480 0.009965 0.007485 +12 0.494725 0.798254 0.009965 0.007031 +12 0.802022 0.797120 0.010844 0.007031 +12 0.514068 0.792357 0.010551 0.007485 +12 0.453546 0.791903 0.009672 0.007031 +11 0.831331 0.791222 0.010258 0.007485 +12 0.392292 0.788841 0.010258 0.007711 +12 0.417497 0.788728 0.010258 0.007938 +12 0.533998 0.786006 0.010551 0.007485 +12 0.306125 0.785552 0.010258 0.007485 +12 0.364889 0.785325 0.009965 0.007938 +12 0.344812 0.782377 0.010258 0.007485 +12 0.273740 0.782150 0.010551 0.007485 +12 0.857708 0.781470 0.010258 0.007031 +12 0.325762 0.779202 0.009672 0.007485 +12 0.553634 0.776026 0.009965 0.007485 +12 0.233441 0.775573 0.010258 0.007938 +12 0.173652 0.775346 0.010258 0.007938 +12 0.213511 0.771944 0.010258 0.007938 +12 0.727872 0.751758 0.009672 0.007031 +11 0.194168 0.750284 0.010258 0.008165 +11 0.699443 0.744954 0.010258 0.007485 +11 0.663247 0.744954 0.009965 0.008392 +11 0.228019 0.744273 0.010551 0.007938 +12 0.614742 0.741778 0.009672 0.007485 +12 0.586313 0.741551 0.010258 0.007485 +11 0.255275 0.740871 0.009965 0.007485 +12 0.558763 0.738376 0.010258 0.007485 +12 0.487837 0.738149 0.010258 0.007485 +12 0.534437 0.735201 0.010844 0.007485 +12 0.446952 0.734747 0.010551 0.007031 +12 0.283265 0.734861 0.010258 0.007711 +12 0.510111 0.732025 0.010258 0.007485 +11 0.770662 0.729984 0.010844 0.007031 +12 0.324004 0.728396 0.009672 0.006577 +12 0.397128 0.728396 0.009965 0.007031 +12 0.373535 0.725221 0.010258 0.007485 +12 0.805539 0.723633 0.010258 0.007031 +11 0.830598 0.720458 0.010551 0.007485 +12 0.858294 0.714108 0.010258 0.007485 +12 0.410170 0.683262 0.010258 0.007485 +11 0.524472 0.682581 0.010258 0.007485 +12 0.385404 0.680653 0.010551 0.008165 +11 0.480510 0.680313 0.010258 0.007938 +11 0.694461 0.678272 0.010258 0.007485 +11 0.693875 0.668292 0.010258 0.007485 +11 0.354777 0.677364 0.009672 0.007938 +11 0.448564 0.676684 0.009672 0.007938 +12 0.235346 0.676457 0.010551 0.008392 +11 0.310815 0.673962 0.010844 0.007485 +12 0.211020 0.673736 0.010551 0.007485 +11 0.819607 0.672375 0.009672 0.007938 +11 0.819314 0.656271 0.010258 0.007485 +11 0.782093 0.671808 0.010844 0.006804 +11 0.782093 0.678612 0.010844 0.006804 +11 0.649619 0.671694 0.009672 0.007031 +11 0.273593 0.671014 0.010258 0.007485 +11 0.173798 0.670560 0.009965 0.007031 +11 0.725528 0.669199 0.010258 0.007031 +11 0.724941 0.656044 0.010258 0.007031 +11 0.614742 0.649467 0.010258 0.007938 +11 0.560375 0.645838 0.009965 0.007485 +17 0.487251 0.607054 0.011430 0.007485 +17 0.486665 0.590950 0.011430 0.007938 +17 0.416618 0.606827 0.012016 0.007938 +17 0.415592 0.590950 0.011137 0.007938 +12 0.769783 0.601610 0.010258 0.007031 +12 0.634086 0.601384 0.012016 0.007938 +11 0.632034 0.588229 0.010258 0.007031 +11 0.846131 0.598889 0.009965 0.007485 +12 0.744578 0.598435 0.010258 0.007031 +17 0.343640 0.597755 0.011430 0.007485 +17 0.275791 0.597528 0.011723 0.007485 +11 0.814039 0.595260 0.009672 0.007938 +11 0.712046 0.594466 0.010844 0.006804 +11 0.712046 0.601270 0.010844 0.006804 +11 0.586899 0.594239 0.010258 0.006804 +11 0.586899 0.601043 0.010258 0.006804 +11 0.215416 0.594352 0.009965 0.007485 +11 0.666178 0.591404 0.010551 0.007938 +11 0.172479 0.590950 0.010258 0.007485 +12 0.849209 0.534021 0.010258 0.007485 +12 0.816676 0.530619 0.009672 0.007485 +11 0.777403 0.527671 0.010844 0.007938 +11 0.644050 0.527217 0.010258 0.007485 +11 0.731682 0.524042 0.009672 0.007031 +17 0.555832 0.524042 0.010844 0.007031 +17 0.555539 0.514289 0.011430 0.007485 +17 0.361518 0.521093 0.011430 0.007485 +12 0.236372 0.521093 0.009672 0.007938 +11 0.692995 0.520753 0.009672 0.007711 +11 0.306125 0.517918 0.010844 0.007485 +17 0.493113 0.517351 0.012016 0.006804 +17 0.493113 0.524155 0.012016 0.006804 +17 0.423652 0.517351 0.011430 0.006804 +17 0.423652 0.524155 0.011430 0.006804 +12 0.205012 0.517691 0.010258 0.007485 +11 0.173652 0.514629 0.009672 0.007258 +11 0.275352 0.514516 0.010258 0.007485 +17 0.527403 0.462803 0.011430 0.007031 +17 0.665152 0.459628 0.011430 0.007485 +12 0.326641 0.456906 0.010258 0.007031 +17 0.598769 0.456226 0.011137 0.007485 +17 0.459408 0.456226 0.012016 0.007938 +12 0.293230 0.453731 0.010258 0.007031 +11 0.401084 0.453504 0.010258 0.007031 +11 0.261870 0.450556 0.009672 0.007485 +11 0.367087 0.450329 0.010258 0.007485 +11 0.753957 0.450102 0.010258 0.007938 +11 0.213804 0.447380 0.009672 0.007485 +11 0.845692 0.446927 0.009672 0.007485 +11 0.806272 0.443978 0.010551 0.007485 +11 0.173652 0.443978 0.010258 0.007485 +17 0.173652 0.402812 0.011430 0.007258 +11 0.842761 0.379791 0.010844 0.007485 +17 0.172773 0.345770 0.010258 0.007938 +12 0.171747 0.333749 0.009965 0.007485 +12 0.171307 0.311749 0.009672 0.007031 +12 0.851553 0.333976 0.010258 0.007485 +12 0.829279 0.330574 0.010258 0.007031 +12 0.805979 0.323770 0.010551 0.007485 +12 0.721571 0.321048 0.009965 0.007485 +12 0.782386 0.317646 0.010258 0.007031 +11 0.598329 0.314924 0.010258 0.007938 +11 0.553048 0.314924 0.010551 0.007938 +12 0.676583 0.314470 0.010258 0.007485 +11 0.629982 0.314697 0.010258 0.007938 +12 0.745457 0.314470 0.010258 0.007938 +12 0.699297 0.311522 0.009965 0.007031 +17 0.746923 0.282037 0.010258 0.007485 +12 0.746043 0.269335 0.009672 0.007485 +12 0.745750 0.247108 0.010258 0.007485 +17 0.601700 0.282264 0.010551 0.007938 +12 0.600674 0.269335 0.010844 0.007485 +12 0.600381 0.247108 0.010258 0.007485 +12 0.314918 0.282264 0.010258 0.007938 +17 0.461460 0.282037 0.010258 0.007938 +12 0.460873 0.269562 0.010258 0.007485 +12 0.460580 0.247335 0.010258 0.007485 +11 0.670135 0.279542 0.010258 0.007485 +12 0.669842 0.269109 0.009672 0.007485 +12 0.668816 0.247108 0.009965 0.007031 +11 0.525938 0.279315 0.010258 0.007485 +12 0.525498 0.269562 0.009965 0.007938 +12 0.524766 0.247562 0.010258 0.007485 +11 0.381741 0.279088 0.010258 0.007938 +12 0.381448 0.269335 0.009672 0.007485 +12 0.380862 0.247335 0.009672 0.007031 +12 0.811841 0.278635 0.008792 0.007938 +12 0.811694 0.268882 0.009672 0.007485 +12 0.811401 0.246655 0.010258 0.007485 +12 0.282972 0.270016 0.010844 0.007485 +12 0.237544 0.270016 0.010258 0.007485 +12 0.263775 0.266614 0.009965 0.007031 +12 0.172186 0.260490 0.010258 0.007031 +12 0.217907 0.260490 0.010844 0.007485 +12 0.198857 0.257541 0.010258 0.007031 +12 0.452374 0.217850 0.009672 0.007485 +12 0.499267 0.217623 0.009672 0.007938 +12 0.480070 0.214221 0.009965 0.008392 +12 0.563599 0.204922 0.010551 0.007485 +12 0.519783 0.205149 0.010258 0.007938 +12 0.377638 0.205149 0.010844 0.007938 +12 0.422479 0.205149 0.010258 0.008392 +12 0.402696 0.201746 0.009965 0.007031 +12 0.545281 0.201746 0.009672 0.007485 +12 0.357415 0.195849 0.010258 0.007485 +12 0.312573 0.195849 0.010844 0.007485 +12 0.638189 0.195396 0.010258 0.007031 +12 0.591882 0.195396 0.010258 0.007485 +12 0.338658 0.192674 0.010258 0.007485 +12 0.619285 0.192220 0.010551 0.007938 +12 0.281213 0.183375 0.010258 0.007485 +12 0.236518 0.183375 0.010551 0.007485 +12 0.707943 0.182468 0.010258 0.007485 +12 0.662808 0.182468 0.010258 0.007485 +12 0.804074 0.182241 0.010258 0.007485 +12 0.850821 0.182014 0.009965 0.007485 +12 0.261137 0.180653 0.009965 0.007485 +12 0.688746 0.179519 0.009965 0.007938 +12 0.829719 0.179066 0.009965 0.007938 +12 0.216295 0.173849 0.009965 0.007485 +12 0.171307 0.173849 0.010258 0.007938 +12 0.738423 0.172942 0.010258 0.007031 +12 0.783558 0.172488 0.010258 0.007031 +12 0.197978 0.170674 0.010258 0.007485 +12 0.764508 0.168859 0.009672 0.007938 +17 0.271542 0.142776 0.010844 0.007031 +17 0.270809 0.123724 0.010551 0.007938 +11 0.270662 0.107621 0.009672 0.007485 +17 0.314625 0.142776 0.010258 0.007485 +17 0.314332 0.126673 0.009672 0.007031 +11 0.313892 0.110796 0.010551 0.007938 +17 0.215416 0.142549 0.009965 0.007485 +11 0.214683 0.130075 0.009672 0.007031 +11 0.214977 0.114198 0.009672 0.007031 +12 0.372655 0.142549 0.010258 0.007938 +12 0.372069 0.129394 0.010258 0.007031 +12 0.371776 0.113518 0.010258 0.007031 +12 0.608880 0.141869 0.010258 0.007938 +12 0.559349 0.141869 0.010844 0.008392 +12 0.587778 0.138013 0.010258 0.007938 +11 0.170721 0.129848 0.010844 0.007031 +11 0.170721 0.136879 0.010844 0.007031 +12 0.632327 0.129168 0.010258 0.007938 +12 0.682737 0.128714 0.010258 0.007938 +12 0.661049 0.125539 0.010258 0.007031 +12 0.771981 0.118961 0.010551 0.007031 +12 0.722304 0.118961 0.010258 0.007031 +12 0.750147 0.115786 0.009672 0.007938 +12 0.800703 0.106033 0.009965 0.007485 +12 0.850234 0.105806 0.009965 0.007485 +12 0.828986 0.103085 0.010258 0.007485 +1 0.119578 0.117827 0.022860 0.046042 +3 0.817849 0.102971 0.007327 0.020866 +4 0.357708 0.113291 0.008499 0.018825 +4 0.139947 0.105126 0.009086 0.018825 +5 0.739302 0.112611 0.008499 0.015650 +4 0.202081 0.114198 0.009086 0.019279 +3 0.303048 0.126219 0.007620 0.019279 +1 0.118552 0.192901 0.023154 0.045589 +3 0.677169 0.179973 0.006741 0.019279 +3 0.650645 0.125312 0.007620 0.019732 +5 0.348916 0.518145 0.009086 0.015650 +3 0.534437 0.201293 0.007327 0.019732 +5 0.575762 0.134838 0.007913 0.015650 +3 0.819314 0.179633 0.007327 0.019052 +5 0.752784 0.165911 0.007913 0.016103 +5 0.185375 0.167725 0.007913 0.015650 +1 0.122362 0.456906 0.022567 0.045589 +3 0.250440 0.181107 0.006741 0.018825 +5 0.800264 0.275006 0.008499 0.016557 +4 0.140533 0.180653 0.009672 0.018372 +4 0.140826 0.244840 0.009672 0.018825 +4 0.157239 0.137333 0.009086 0.018825 +1 0.122362 0.654003 0.022567 0.046042 +3 0.202960 0.594126 0.007327 0.019279 +4 0.478458 0.517464 0.009086 0.019279 +1 0.120311 0.257541 0.022567 0.046042 +5 0.202374 0.443298 0.008499 0.015196 +5 0.807591 0.653096 0.008499 0.016103 +5 0.607708 0.189159 0.008499 0.016330 +5 0.468787 0.211046 0.007913 0.016103 +3 0.391852 0.201633 0.007620 0.019506 +5 0.411049 0.520413 0.007913 0.015196 +5 0.712046 0.396802 0.005569 0.010206 +5 0.327814 0.189952 0.007913 0.015196 +1 0.122948 0.520866 0.022567 0.045589 +1 0.122655 0.584600 0.022567 0.046042 +3 0.794402 0.444432 0.007327 0.018825 +1 0.120604 0.320821 0.022567 0.045589 +4 0.574297 0.741098 0.009086 0.018825 +5 0.370018 0.275232 0.008499 0.016103 +4 0.142292 0.308800 0.009672 0.018825 +4 0.144050 0.508392 0.008499 0.018825 +1 0.122655 0.724994 0.022567 0.045589 +3 0.252784 0.266387 0.007327 0.019732 +5 0.514508 0.275459 0.007913 0.015650 +4 0.380715 0.788728 0.009379 0.018825 +4 0.214097 0.744273 0.008499 0.018372 +5 0.763042 0.846791 0.008499 0.016103 +4 0.600967 0.649467 0.009086 0.018825 +4 0.792351 0.723180 0.009086 0.019279 +3 0.406506 0.788954 0.007034 0.020640 +4 0.197685 0.674189 0.009086 0.018825 +3 0.848623 0.860626 0.007327 0.019732 +1 0.121483 0.385915 0.022567 0.046042 +5 0.401671 0.603652 0.008499 0.015650 +5 0.680686 0.517691 0.007913 0.016103 +5 0.195633 0.856997 0.007327 0.015196 +4 0.649912 0.744954 0.009086 0.018825 +3 0.603605 0.740871 0.006741 0.019279 +5 0.833382 0.443071 0.007913 0.016557 +5 0.586166 0.453277 0.008792 0.015650 +3 0.804074 0.530392 0.007327 0.019279 +5 0.657532 0.275686 0.007913 0.015650 +5 0.187720 0.254366 0.008499 0.015650 +4 0.296747 0.674416 0.009086 0.018825 +5 0.263921 0.594352 0.008499 0.016103 +5 0.249707 0.869472 0.008206 0.015650 +4 0.442263 0.791903 0.009379 0.019279 +5 0.642878 0.837718 0.007327 0.014743 +3 0.350381 0.861080 0.007327 0.019279 +3 0.768904 0.671921 0.007327 0.020186 +4 0.636723 0.671467 0.009086 0.018825 +3 0.292204 0.873554 0.007620 0.019732 +1 0.122216 0.869698 0.022860 0.045589 +5 0.719666 0.520073 0.008499 0.015423 +5 0.315064 0.453504 0.008206 0.016103 +5 0.837925 0.530846 0.008792 0.016103 +5 0.793523 0.850646 0.008499 0.016557 +5 0.554660 0.857904 0.007913 0.015650 +1 0.121483 0.793944 0.023154 0.045589 +4 0.323124 0.867430 0.009086 0.019279 +5 0.702081 0.846110 0.007327 0.016103 +3 0.443288 0.857904 0.006741 0.019732 +5 0.447392 0.453504 0.008499 0.015650 +4 0.574590 0.594579 0.009672 0.018825 +4 0.143464 0.571898 0.009086 0.018825 +4 0.142878 0.781923 0.009086 0.018825 +4 0.143611 0.712520 0.009379 0.018825 +5 0.582210 0.849059 0.009086 0.016103 +4 0.143464 0.641982 0.008499 0.018372 +5 0.224941 0.518145 0.008499 0.016103 +4 0.142438 0.374121 0.009379 0.018825 +4 0.143171 0.857904 0.009086 0.018372 +5 0.675410 0.839306 0.007913 0.016103 +4 0.142145 0.444318 0.008206 0.018145 +3 0.162368 0.444318 0.006448 0.019052 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_2.jpg b/data_dataset/mosz/debug/debug_2.jpg new file mode 100644 index 0000000..2b393b5 Binary files /dev/null and b/data_dataset/mosz/debug/debug_2.jpg differ diff --git a/data_dataset/mosz/debug/debug_2.txt b/data_dataset/mosz/debug/debug_2.txt new file mode 100644 index 0000000..c2a7539 --- /dev/null +++ b/data_dataset/mosz/debug/debug_2.txt @@ -0,0 +1,586 @@ +7 0.838795 0.864409 0.012288 0.016085 +7 0.767700 0.863729 0.012873 0.015179 +7 0.617320 0.863729 0.012873 0.015179 +7 0.688414 0.865088 0.012288 0.018351 +7 0.453774 0.863276 0.012288 0.014726 +7 0.530866 0.864295 0.013166 0.020843 +10 0.238444 0.792478 0.013458 0.005890 +10 0.646870 0.792252 0.013458 0.006343 +7 0.611176 0.794744 0.012288 0.015406 +7 0.312463 0.794404 0.012873 0.015632 +7 0.202750 0.794517 0.012288 0.016312 +10 0.279403 0.790213 0.013458 0.006343 +6 0.625219 0.792818 0.011118 0.022882 +6 0.216501 0.793271 0.010532 0.023788 +6 0.537303 0.793158 0.011410 0.023561 +10 0.647747 0.707295 0.013458 0.005890 +10 0.375658 0.707295 0.013458 0.005890 +7 0.614980 0.709900 0.012288 0.015632 +7 0.344353 0.709447 0.012873 0.015632 +6 0.628730 0.708314 0.010532 0.023335 +6 0.358104 0.708088 0.011118 0.023788 +9 0.857665 0.626076 0.009070 0.036022 +8 0.278818 0.554939 0.015799 0.033303 +7 0.385898 0.557884 0.013458 0.015179 +7 0.700995 0.557431 0.011703 0.015632 +7 0.722352 0.401563 0.014043 0.022882 +10 0.238151 0.324875 0.012873 0.005890 +7 0.198947 0.326801 0.012873 0.016085 +7 0.272674 0.326575 0.012873 0.016085 +6 0.215623 0.325442 0.011118 0.023335 +8 0.179637 0.118260 0.015214 0.033530 +6 0.517262 0.105460 0.010532 0.023788 +13 0.358982 0.876303 0.010532 0.007250 +12 0.599620 0.872678 0.009655 0.006797 +12 0.652575 0.872791 0.010240 0.007476 +12 0.631510 0.872791 0.010240 0.007476 +12 0.467671 0.872904 0.010240 0.007703 +12 0.435635 0.872565 0.010532 0.007476 +12 0.732738 0.869959 0.010240 0.007703 +12 0.702458 0.869959 0.010532 0.007703 +12 0.545494 0.869846 0.010240 0.007476 +12 0.412522 0.869733 0.011118 0.007250 +13 0.303248 0.869733 0.010240 0.007250 +12 0.670421 0.869619 0.009655 0.007476 +12 0.512727 0.869619 0.010240 0.007476 +12 0.575922 0.869619 0.010240 0.007929 +12 0.782475 0.866448 0.010240 0.005664 +12 0.803248 0.866561 0.010825 0.006797 +12 0.749707 0.866674 0.010240 0.007023 +13 0.387215 0.866561 0.009655 0.006797 +13 0.317730 0.866561 0.009947 0.007250 +13 0.289497 0.866448 0.009655 0.007023 +12 0.495173 0.866334 0.010240 0.007250 +12 0.855910 0.864182 0.010825 0.007023 +12 0.821094 0.863956 0.010240 0.007476 +13 0.372879 0.863502 0.010240 0.007023 +13 0.331334 0.863616 0.010240 0.007250 +12 0.254974 0.863502 0.009655 0.007476 +13 0.269602 0.860444 0.009655 0.006797 +12 0.182124 0.860557 0.010240 0.007023 +13 0.344792 0.860444 0.010240 0.007250 +13 0.235079 0.860331 0.009655 0.007023 +13 0.221036 0.853987 0.010240 0.007023 +12 0.201872 0.853987 0.011118 0.007023 +12 0.182270 0.823290 0.009947 0.007250 +12 0.182270 0.800634 0.009947 0.007703 +13 0.697923 0.810263 0.010240 0.007023 +12 0.590696 0.810263 0.009947 0.007023 +12 0.591135 0.788061 0.010240 0.007023 +13 0.749707 0.807318 0.010825 0.007476 +11 0.558953 0.807318 0.009655 0.007476 +11 0.559245 0.785116 0.009655 0.007476 +11 0.340843 0.804146 0.009947 0.007023 +11 0.326946 0.807091 0.010240 0.007476 +17 0.338356 0.788287 0.012580 0.009742 +13 0.794909 0.801427 0.011118 0.007023 +13 0.846255 0.801314 0.010825 0.007250 +13 0.711527 0.800748 0.010532 0.007023 +12 0.679930 0.800748 0.010532 0.007023 +12 0.355178 0.800748 0.010532 0.007476 +13 0.763166 0.797916 0.010240 0.007250 +12 0.731568 0.797576 0.010240 0.007023 +13 0.860884 0.795084 0.010240 0.007476 +12 0.828116 0.795084 0.009655 0.007476 +13 0.808514 0.794857 0.009655 0.007476 +12 0.777209 0.794857 0.010240 0.007476 +13 0.378145 0.785116 0.010240 0.007023 +13 0.392920 0.781831 0.009947 0.006797 +12 0.407402 0.778885 0.010240 0.006797 +13 0.472937 0.763140 0.010240 0.007476 +13 0.425541 0.762913 0.010240 0.007476 +13 0.439877 0.759515 0.009655 0.007023 +13 0.487858 0.759515 0.010825 0.007476 +18 0.454213 0.756343 0.010240 0.007023 +18 0.515067 0.756230 0.011410 0.007250 +13 0.697338 0.737879 0.009070 0.007250 +13 0.697045 0.721908 0.009655 0.007023 +13 0.813487 0.737879 0.009655 0.007703 +13 0.813780 0.715451 0.010240 0.007250 +13 0.799444 0.737766 0.009655 0.007476 +13 0.799444 0.722021 0.009655 0.006797 +12 0.781012 0.737766 0.010240 0.007476 +12 0.781012 0.715451 0.010240 0.007250 +12 0.677443 0.737766 0.010240 0.007476 +12 0.678028 0.715451 0.010240 0.006797 +13 0.711381 0.737653 0.010240 0.007703 +13 0.711088 0.715564 0.010825 0.007023 +13 0.752633 0.735274 0.009655 0.007023 +13 0.752779 0.725079 0.009947 0.007476 +13 0.861761 0.735274 0.010240 0.007476 +13 0.861176 0.718736 0.010240 0.007023 +13 0.847133 0.735161 0.010240 0.007250 +13 0.846840 0.725419 0.009655 0.007703 +12 0.827970 0.735161 0.010532 0.007250 +12 0.828116 0.718962 0.009655 0.007476 +13 0.767115 0.734934 0.010532 0.007250 +13 0.766969 0.718623 0.010240 0.007250 +12 0.734201 0.734708 0.010240 0.007250 +12 0.734201 0.718509 0.010240 0.007476 +12 0.324898 0.731763 0.009655 0.007703 +12 0.324898 0.715904 0.009655 0.007250 +12 0.291545 0.728817 0.009655 0.007250 +12 0.291545 0.712619 0.009655 0.007476 +11 0.264482 0.725306 0.010532 0.007476 +11 0.264628 0.709447 0.009655 0.007476 +18 0.184757 0.722587 0.013751 0.007023 +18 0.184757 0.706389 0.013751 0.006797 +17 0.231861 0.722134 0.010825 0.007929 +17 0.231861 0.706275 0.010825 0.007023 +12 0.503365 0.716130 0.009655 0.006797 +12 0.502633 0.693475 0.010532 0.006797 +12 0.600790 0.716017 0.010240 0.007023 +12 0.600205 0.693362 0.010240 0.007023 +12 0.408572 0.715791 0.010825 0.007476 +12 0.407987 0.693589 0.010825 0.006570 +12 0.547250 0.712959 0.009655 0.007250 +12 0.546957 0.696760 0.010240 0.007476 +12 0.459479 0.712506 0.010825 0.007250 +12 0.459479 0.696534 0.010825 0.007023 +13 0.563926 0.703330 0.010240 0.007023 +13 0.476448 0.703217 0.010825 0.007250 +13 0.520626 0.700045 0.010240 0.007250 +13 0.425541 0.699932 0.010825 0.007476 +13 0.576799 0.696760 0.010240 0.007476 +13 0.489029 0.696534 0.010240 0.007476 +13 0.533207 0.693589 0.010825 0.007023 +13 0.437683 0.693362 0.009947 0.007023 +13 0.697484 0.636611 0.009947 0.006797 +13 0.696606 0.613956 0.009947 0.006797 +13 0.781305 0.633326 0.009655 0.007023 +11 0.661937 0.633326 0.009655 0.007023 +12 0.661059 0.610671 0.010240 0.007023 +12 0.634728 0.633326 0.010240 0.007023 +13 0.683441 0.633326 0.009362 0.007476 +13 0.683002 0.611010 0.010825 0.007250 +13 0.801492 0.629814 0.010240 0.007250 +12 0.614541 0.630041 0.009655 0.007703 +13 0.840696 0.629814 0.010240 0.007703 +11 0.809977 0.626869 0.006144 0.004078 +13 0.852984 0.626756 0.010240 0.007023 +13 0.827823 0.626869 0.010240 0.007250 +12 0.594207 0.626756 0.009362 0.007023 +12 0.573581 0.626756 0.009655 0.007023 +11 0.816852 0.623584 0.007022 0.004758 +12 0.552662 0.623697 0.009947 0.007250 +12 0.182709 0.620865 0.009655 0.007023 +12 0.339233 0.620865 0.010240 0.007476 +13 0.864980 0.620299 0.010825 0.007703 +13 0.716062 0.620639 0.010240 0.008382 +12 0.537741 0.620299 0.009947 0.007703 +12 0.297689 0.617580 0.010240 0.006797 +12 0.496050 0.617354 0.009070 0.006797 +13 0.754974 0.617241 0.009655 0.007476 +12 0.516969 0.617127 0.009947 0.007250 +13 0.735518 0.617127 0.010532 0.007703 +12 0.312902 0.614295 0.010240 0.007476 +13 0.768724 0.613842 0.010240 0.007023 +12 0.468549 0.613956 0.010240 0.007250 +12 0.453335 0.610671 0.010240 0.007476 +12 0.254974 0.608292 0.010240 0.007250 +12 0.431539 0.607499 0.009947 0.007476 +12 0.410328 0.607725 0.009655 0.007929 +18 0.271358 0.605007 0.010240 0.007023 +18 0.232738 0.604780 0.010240 0.007023 +18 0.389263 0.604440 0.009655 0.007250 +18 0.285108 0.601495 0.009655 0.007250 +18 0.374049 0.601495 0.010825 0.007703 +12 0.217232 0.601609 0.009655 0.007929 +18 0.201726 0.598437 0.010240 0.007023 +18 0.358543 0.598210 0.010240 0.007476 +12 0.195875 0.555618 0.007314 0.004758 +12 0.196752 0.541799 0.010240 0.007023 +13 0.293885 0.541912 0.010240 0.006797 +13 0.343476 0.541799 0.009947 0.007023 +13 0.245319 0.541572 0.010240 0.006570 +12 0.308953 0.541686 0.010532 0.007250 +12 0.358250 0.541572 0.010240 0.007476 +13 0.329286 0.541572 0.009655 0.007476 +11 0.668812 0.534776 0.009947 0.007476 +11 0.523259 0.531944 0.010240 0.007250 +12 0.838063 0.531831 0.010240 0.007476 +12 0.576360 0.531831 0.009947 0.007476 +12 0.556612 0.531831 0.010240 0.007476 +11 0.640287 0.531717 0.010240 0.007703 +13 0.625219 0.531377 0.010532 0.007929 +12 0.858689 0.528659 0.010532 0.007476 +12 0.601083 0.525261 0.009655 0.007023 +12 0.788034 0.522429 0.010240 0.007250 +12 0.472206 0.522315 0.010532 0.007929 +18 0.329432 0.519483 0.010532 0.006797 +18 0.231568 0.519483 0.010240 0.006797 +18 0.211088 0.519483 0.010240 0.006797 +18 0.308806 0.519257 0.010240 0.006797 +18 0.260532 0.519370 0.010825 0.007023 +18 0.761703 0.519370 0.010240 0.007476 +18 0.492101 0.519144 0.009947 0.007023 +18 0.358104 0.519144 0.010532 0.007023 +18 0.446021 0.518917 0.009655 0.007023 +18 0.807490 0.519030 0.010532 0.007703 +18 0.507168 0.516085 0.010240 0.007250 +18 0.822996 0.515972 0.009947 0.007476 +18 0.426126 0.515972 0.010825 0.007476 +18 0.741808 0.515406 0.010240 0.007250 +18 0.721913 0.513027 0.010240 0.007023 +18 0.405939 0.512800 0.010240 0.007476 +12 0.182270 0.494223 0.009947 0.007476 +13 0.207870 0.487879 0.009655 0.007023 +13 0.228057 0.484708 0.010240 0.007023 +13 0.671738 0.484028 0.010532 0.007476 +13 0.550029 0.481309 0.009362 0.007023 +13 0.640287 0.481083 0.009655 0.007023 +13 0.249122 0.481196 0.010240 0.007250 +13 0.842744 0.478251 0.010825 0.007250 +13 0.263751 0.478251 0.010240 0.007250 +13 0.792276 0.478024 0.010532 0.007250 +13 0.738882 0.477798 0.010240 0.007250 +13 0.686220 0.477911 0.010240 0.007476 +13 0.427004 0.477911 0.010240 0.007476 +12 0.613956 0.477798 0.010825 0.007703 +13 0.529257 0.477685 0.009947 0.007476 +13 0.278379 0.475193 0.010240 0.006570 +12 0.345231 0.475079 0.009362 0.006797 +12 0.502341 0.474739 0.009947 0.007023 +12 0.390140 0.474739 0.010240 0.007023 +13 0.563926 0.474626 0.010240 0.007250 +13 0.598742 0.474286 0.009655 0.007476 +12 0.365126 0.471908 0.010532 0.006797 +13 0.447191 0.471681 0.010240 0.006797 +13 0.299005 0.472021 0.010532 0.007476 +13 0.487858 0.471568 0.010240 0.007023 +12 0.320655 0.468623 0.009947 0.007023 +13 0.723669 0.468283 0.010825 0.007250 +12 0.701287 0.468283 0.010532 0.007250 +13 0.579432 0.464771 0.010240 0.007476 +12 0.757899 0.462392 0.010240 0.006797 +13 0.467379 0.462279 0.009655 0.007023 +13 0.778379 0.462166 0.010240 0.007250 +13 0.827531 0.456049 0.010240 0.007250 +12 0.807636 0.455822 0.010240 0.007250 +12 0.857665 0.446534 0.010825 0.007250 +12 0.858689 0.430788 0.010532 0.007476 +13 0.738882 0.429882 0.009655 0.007476 +13 0.758484 0.427390 0.010240 0.007476 +12 0.841135 0.424558 0.010532 0.007703 +13 0.779111 0.424218 0.011118 0.007476 +12 0.825483 0.421273 0.010825 0.007476 +13 0.792422 0.421160 0.010240 0.007703 +12 0.812171 0.417422 0.009947 0.007476 +13 0.642627 0.408133 0.009655 0.007023 +12 0.704798 0.408133 0.009947 0.007476 +17 0.662815 0.405075 0.011410 0.007250 +12 0.519163 0.392275 0.009655 0.007023 +12 0.543739 0.389103 0.009655 0.007476 +12 0.181831 0.386611 0.010240 0.007023 +13 0.624634 0.386384 0.009947 0.007023 +12 0.575629 0.385818 0.010240 0.007250 +13 0.498683 0.382873 0.009655 0.007250 +13 0.478496 0.379588 0.010240 0.007023 +11 0.600497 0.379361 0.009655 0.007023 +12 0.411791 0.379701 0.010240 0.007703 +13 0.430222 0.376756 0.009655 0.007250 +13 0.391018 0.376416 0.009655 0.007023 +12 0.459626 0.376189 0.010532 0.007929 +12 0.290960 0.373924 0.010825 0.007023 +13 0.376243 0.373244 0.010532 0.007023 +13 0.444558 0.373018 0.010240 0.007023 +13 0.309684 0.370639 0.009655 0.007703 +13 0.270772 0.370526 0.009070 0.007476 +12 0.352545 0.370299 0.009947 0.007476 +18 0.325190 0.367241 0.010240 0.007250 +18 0.250878 0.367014 0.010240 0.007250 +18 0.226156 0.364182 0.009947 0.007023 +18 0.200556 0.364295 0.010240 0.007250 +12 0.181539 0.326801 0.010240 0.007023 +12 0.713136 0.316720 0.010825 0.006797 +11 0.680369 0.316493 0.009655 0.006797 +11 0.547835 0.313321 0.010240 0.007250 +12 0.582066 0.313095 0.010825 0.007703 +12 0.440462 0.310376 0.010240 0.006797 +11 0.406817 0.310489 0.010240 0.007023 +11 0.623318 0.310263 0.010240 0.007023 +13 0.504242 0.310263 0.009655 0.007023 +12 0.458309 0.310150 0.010240 0.007250 +11 0.651404 0.310036 0.010240 0.007476 +11 0.519163 0.310036 0.010240 0.007476 +11 0.853716 0.306978 0.010532 0.007250 +12 0.599620 0.306525 0.010240 0.007250 +12 0.482592 0.304033 0.010240 0.007250 +12 0.358543 0.300974 0.010240 0.007476 +12 0.334845 0.298142 0.009655 0.007250 +13 0.378145 0.297689 0.009655 0.007250 +12 0.802662 0.297349 0.010240 0.007476 +12 0.317291 0.294744 0.009655 0.007250 +13 0.822996 0.294291 0.009947 0.007250 +12 0.778672 0.293951 0.010240 0.007023 +13 0.392920 0.293951 0.010532 0.007023 +12 0.754974 0.291346 0.009655 0.007250 +12 0.293885 0.291346 0.009655 0.007703 +13 0.838063 0.290666 0.010825 0.007250 +18 0.730690 0.287494 0.010240 0.007250 +12 0.707285 0.262460 0.010240 0.007023 +13 0.317876 0.260082 0.009655 0.007703 +11 0.672469 0.259402 0.010825 0.006797 +12 0.648917 0.259402 0.010532 0.007703 +13 0.339526 0.256797 0.009655 0.007023 +12 0.412668 0.256570 0.009655 0.007023 +11 0.552516 0.256343 0.010825 0.007476 +12 0.625805 0.256117 0.009947 0.007476 +12 0.366442 0.253625 0.010825 0.007023 +12 0.238590 0.253851 0.010240 0.007476 +12 0.388239 0.253285 0.011118 0.007250 +12 0.602106 0.252945 0.010532 0.007023 +12 0.578408 0.253058 0.010532 0.007250 +12 0.514336 0.252945 0.010532 0.007476 +12 0.199824 0.251019 0.010532 0.007250 +13 0.297396 0.250680 0.010240 0.007023 +12 0.495026 0.250000 0.009947 0.007023 +12 0.471036 0.250000 0.009947 0.007023 +13 0.283060 0.247508 0.009655 0.007023 +11 0.258192 0.247508 0.010240 0.007023 +12 0.181100 0.247621 0.010532 0.007250 +13 0.822264 0.246942 0.010240 0.007250 +12 0.450995 0.246602 0.010825 0.007929 +13 0.861469 0.243543 0.010240 0.007250 +12 0.431978 0.243430 0.010240 0.007023 +12 0.219719 0.241164 0.010532 0.007476 +12 0.837478 0.240372 0.010240 0.007250 +13 0.808806 0.240258 0.010240 0.007476 +12 0.789058 0.233915 0.010532 0.007476 +12 0.770480 0.230970 0.010825 0.007023 +12 0.751755 0.227685 0.010825 0.006797 +12 0.732738 0.224173 0.010240 0.007476 +11 0.199532 0.197553 0.011118 0.007250 +12 0.199239 0.175351 0.009947 0.007250 +11 0.199239 0.159266 0.009947 0.007703 +11 0.498683 0.196534 0.009655 0.007023 +11 0.498391 0.173879 0.010240 0.007023 +12 0.587917 0.196194 0.010240 0.006797 +12 0.587332 0.173765 0.010240 0.007250 +11 0.559391 0.196307 0.010532 0.007023 +11 0.559245 0.173992 0.010240 0.006797 +12 0.752048 0.196081 0.010825 0.007023 +12 0.752341 0.173765 0.010240 0.006797 +12 0.670421 0.196081 0.010240 0.007023 +12 0.670129 0.173425 0.009655 0.007023 +12 0.538327 0.196081 0.010532 0.007023 +12 0.538180 0.173992 0.010240 0.006797 +17 0.691486 0.195967 0.010240 0.007250 +11 0.691486 0.173652 0.010240 0.007023 +17 0.609567 0.195854 0.010240 0.007023 +11 0.609567 0.173765 0.010240 0.006797 +11 0.382095 0.187358 0.010532 0.006797 +12 0.381949 0.171160 0.010240 0.007023 +11 0.432563 0.187132 0.010825 0.006797 +12 0.432709 0.171047 0.009947 0.007250 +12 0.478496 0.187019 0.010240 0.007023 +12 0.478496 0.173992 0.010240 0.007250 +12 0.322264 0.181015 0.010240 0.007250 +12 0.322118 0.165270 0.009947 0.007476 +12 0.222791 0.178410 0.010240 0.007023 +12 0.858250 0.176824 0.010240 0.007023 +11 0.828994 0.173652 0.010240 0.007023 +13 0.413253 0.171500 0.009655 0.007250 +12 0.811439 0.170594 0.010240 0.006797 +13 0.464307 0.170707 0.009947 0.007476 +13 0.294617 0.168668 0.009947 0.007023 +12 0.294324 0.184640 0.010532 0.007250 +12 0.346840 0.168101 0.010240 0.007250 +12 0.346840 0.184300 0.010240 0.007023 +12 0.793739 0.167422 0.010532 0.007703 +12 0.269017 0.165723 0.010240 0.007476 +12 0.269310 0.181468 0.010825 0.007250 +12 0.180076 0.165609 0.010240 0.007250 +13 0.399795 0.165043 0.010825 0.007023 +13 0.450702 0.164590 0.010825 0.007023 +12 0.776916 0.164363 0.010240 0.007023 +13 0.308514 0.161985 0.010825 0.007250 +12 0.247806 0.161985 0.009947 0.007703 +12 0.248245 0.178410 0.009655 0.007023 +13 0.427297 0.119959 0.010240 0.007476 +13 0.544032 0.116787 0.009655 0.007476 +13 0.749854 0.116334 0.010532 0.007023 +12 0.730983 0.116221 0.010240 0.007250 +12 0.712259 0.116221 0.010240 0.007250 +13 0.406524 0.116448 0.009655 0.007703 +13 0.353569 0.114069 0.010240 0.007023 +13 0.691779 0.113389 0.010240 0.007023 +13 0.764482 0.113276 0.010532 0.007250 +13 0.193827 0.112143 0.010240 0.006797 +13 0.338941 0.110784 0.010240 0.006797 +13 0.557782 0.110557 0.010240 0.006797 +12 0.467232 0.110331 0.010532 0.006797 +13 0.386337 0.110444 0.010240 0.007023 +13 0.777501 0.109991 0.009655 0.007023 +12 0.669982 0.109991 0.009947 0.007023 +13 0.632826 0.110104 0.010532 0.007250 +13 0.372294 0.107499 0.010240 0.007476 +13 0.441340 0.107272 0.010240 0.007476 +13 0.791837 0.106706 0.010240 0.007703 +13 0.646723 0.106593 0.010240 0.007476 +13 0.311732 0.104894 0.009655 0.007250 +13 0.807636 0.103534 0.010240 0.006797 +13 0.326068 0.101155 0.010240 0.007023 +13 0.821094 0.100702 0.010240 0.007476 +13 0.619222 0.100702 0.010240 0.007476 +13 0.291106 0.098777 0.010532 0.006797 +13 0.841281 0.097531 0.009655 0.007023 +13 0.270187 0.095492 0.009655 0.007476 +13 0.861469 0.094019 0.010240 0.007250 +13 0.605471 0.094132 0.010825 0.007476 +13 0.249707 0.092207 0.009655 0.006797 +13 0.228496 0.092433 0.009947 0.007250 +13 0.584991 0.091300 0.009655 0.007250 +13 0.207285 0.089261 0.010240 0.007250 +13 0.571387 0.087789 0.010532 0.007476 +1 0.121855 0.326575 0.021943 0.045537 +3 0.641018 0.309810 0.007022 0.019710 +5 0.588648 0.471568 0.008192 0.014726 +1 0.447630 0.702424 0.011703 0.030585 +3 0.659304 0.481989 0.011410 0.024241 +4 0.400965 0.380041 0.008484 0.018351 +5 0.361761 0.104327 0.009070 0.015632 +3 0.669544 0.316606 0.006729 0.019710 +5 0.591281 0.250680 0.008777 0.013367 +3 0.171884 0.620865 0.006729 0.019710 +3 0.629754 0.480856 0.007314 0.020163 +1 0.121709 0.247508 0.022235 0.045990 +5 0.421445 0.165496 0.010825 0.020616 +1 0.121270 0.181128 0.022528 0.045537 +1 0.120977 0.108405 0.022528 0.045990 +3 0.709918 0.513933 0.007314 0.017898 +4 0.613224 0.310489 0.008777 0.018351 +4 0.564219 0.385931 0.009655 0.018351 +5 0.721475 0.794404 0.008192 0.015179 +4 0.460796 0.522089 0.009362 0.018804 +3 0.402282 0.255890 0.007607 0.018351 +4 0.791252 0.629701 0.008484 0.018804 +3 0.348596 0.598437 0.007899 0.019710 +3 0.379754 0.474513 0.007022 0.019257 +3 0.802370 0.417422 0.007314 0.020163 +4 0.244441 0.607725 0.009070 0.019257 +4 0.532621 0.117241 0.009070 0.018804 +4 0.283353 0.168441 0.008484 0.018351 +4 0.536864 0.313548 0.009362 0.018124 +4 0.347425 0.300748 0.009070 0.018804 +4 0.424956 0.872791 0.009070 0.018804 +4 0.694705 0.407454 0.009655 0.021522 +4 0.702311 0.117014 0.009070 0.018804 +3 0.657548 0.535002 0.007314 0.019710 +3 0.171299 0.493996 0.006729 0.019710 +5 0.244734 0.860104 0.007899 0.014726 +4 0.588795 0.873018 0.009070 0.018351 +3 0.747367 0.461713 0.007899 0.019483 +3 0.470743 0.303919 0.007022 0.019710 +3 0.394822 0.513140 0.006729 0.019483 +4 0.595085 0.094132 0.008777 0.018351 +4 0.540960 0.256117 0.009947 0.018804 +4 0.776624 0.522089 0.008484 0.018351 +3 0.254096 0.709334 0.007314 0.020390 +3 0.370538 0.170707 0.007314 0.018804 +4 0.743856 0.290779 0.008484 0.018351 +5 0.662229 0.256117 0.009070 0.015632 +4 0.334699 0.474966 0.009362 0.020163 +4 0.532329 0.389329 0.009070 0.019257 +4 0.238882 0.481309 0.009655 0.019257 +4 0.301200 0.105233 0.008484 0.018804 +4 0.484933 0.617467 0.009070 0.018804 +3 0.441925 0.611124 0.007314 0.019257 +4 0.728057 0.429882 0.009070 0.018351 +3 0.327823 0.620639 0.007314 0.019710 +5 0.279549 0.863956 0.007314 0.015632 +3 0.817876 0.794744 0.007314 0.019937 +5 0.314073 0.728931 0.007899 0.014726 +3 0.485518 0.865768 0.007314 0.018804 +4 0.745026 0.617354 0.009655 0.019030 +3 0.650527 0.610671 0.007899 0.019710 +1 0.123464 0.794404 0.022235 0.045084 +1 0.123318 0.863502 0.022528 0.045537 +1 0.123318 0.471794 0.021943 0.045990 +1 0.123318 0.405415 0.021943 0.045537 +5 0.484201 0.247281 0.008777 0.015179 +4 0.588795 0.379361 0.008484 0.018804 +1 0.123903 0.709221 0.021943 0.045990 +1 0.124195 0.643068 0.021943 0.045990 +1 0.123903 0.556751 0.022528 0.045537 +3 0.650380 0.632873 0.007022 0.018804 +3 0.190316 0.598663 0.007314 0.020163 +3 0.589819 0.525714 0.007607 0.019710 +3 0.306319 0.294744 0.005851 0.018577 +4 0.282329 0.291346 0.008192 0.018124 +3 0.364833 0.373584 0.005851 0.019030 +4 0.340843 0.370639 0.008192 0.017671 +4 0.790813 0.297010 0.008192 0.018124 +3 0.767115 0.294517 0.006437 0.019483 +4 0.508192 0.392388 0.008192 0.017671 +3 0.488005 0.383099 0.006437 0.019030 +3 0.236981 0.178070 0.006437 0.018577 +4 0.212697 0.178296 0.008192 0.019030 +4 0.562610 0.627096 0.008192 0.018124 +3 0.583967 0.626643 0.006437 0.019030 +3 0.638385 0.258949 0.006437 0.018124 +3 0.615126 0.256230 0.006729 0.019030 +4 0.539497 0.481423 0.007607 0.018577 +3 0.518724 0.476665 0.006437 0.016765 +5 0.477033 0.468509 0.007899 0.014952 +3 0.456700 0.461939 0.006437 0.018577 +3 0.830603 0.097191 0.006437 0.018577 +4 0.851229 0.093339 0.007899 0.018124 +3 0.526916 0.620299 0.005851 0.018577 +3 0.506437 0.617127 0.005851 0.019483 +3 0.705968 0.620299 0.005851 0.019030 +3 0.724985 0.617354 0.006437 0.019483 +4 0.196899 0.487313 0.008192 0.018124 +3 0.215623 0.483688 0.010532 0.020843 +3 0.289058 0.469869 0.007022 0.019030 +3 0.310854 0.468509 0.006729 0.019030 +3 0.307197 0.259175 0.006437 0.018124 +4 0.329286 0.256683 0.008484 0.018124 +5 0.144822 0.706615 0.008192 0.014952 +5 0.152136 0.696647 0.007607 0.014952 +3 0.280573 0.098324 0.006437 0.019030 +4 0.259655 0.095152 0.007899 0.018124 +4 0.415886 0.477798 0.008484 0.017671 +3 0.436220 0.471454 0.006437 0.019483 +3 0.416325 0.119846 0.006437 0.019483 +4 0.396138 0.117354 0.008192 0.018124 +3 0.169397 0.722021 0.007022 0.019483 +4 0.172323 0.705936 0.008192 0.019030 +4 0.631949 0.408020 0.008777 0.018124 +3 0.651551 0.404622 0.005851 0.019483 +5 0.333528 0.180562 0.007607 0.014499 +3 0.335869 0.168101 0.006437 0.018577 +3 0.218549 0.722021 0.007022 0.019030 +3 0.221767 0.705936 0.006437 0.018577 +5 0.143651 0.323743 0.007607 0.014952 +5 0.151258 0.314001 0.007607 0.014499 +5 0.142774 0.178749 0.007607 0.014952 +5 0.149795 0.168781 0.007607 0.014952 +5 0.144822 0.554372 0.007607 0.014952 +5 0.151843 0.544631 0.007607 0.014499 +4 0.399649 0.607612 0.007607 0.017218 +3 0.420714 0.607386 0.006437 0.019483 +4 0.218549 0.093113 0.009947 0.018124 +3 0.238590 0.092207 0.006729 0.019030 +5 0.141896 0.106026 0.007607 0.014499 +5 0.149795 0.096058 0.008192 0.014499 +5 0.143359 0.244676 0.008192 0.015406 +5 0.150965 0.234934 0.007022 0.014952 +5 0.144822 0.860444 0.007607 0.014499 +5 0.152136 0.851155 0.007607 0.014952 +3 0.624195 0.633439 0.006729 0.018577 +4 0.604447 0.629588 0.007607 0.017671 +3 0.280281 0.373811 0.006437 0.019030 +4 0.260094 0.370639 0.008192 0.018124 +5 0.144822 0.791346 0.007607 0.014952 +5 0.152428 0.781831 0.007607 0.014952 +5 0.144529 0.402583 0.007607 0.014952 +5 0.151843 0.392841 0.008192 0.014499 +5 0.144383 0.468962 0.007314 0.014499 +5 0.152136 0.458994 0.008192 0.015406 +5 0.144383 0.640009 0.007314 0.014952 +5 0.152428 0.630267 0.008192 0.015406 +3 0.748683 0.425804 0.006437 0.016991 +4 0.767993 0.424105 0.011118 0.017671 +5 0.722060 0.731309 0.007607 0.015406 +4 0.723815 0.718169 0.007607 0.018124 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_20.jpg b/data_dataset/mosz/debug/debug_20.jpg new file mode 100644 index 0000000..c8ee71c Binary files /dev/null and b/data_dataset/mosz/debug/debug_20.jpg differ diff --git a/data_dataset/mosz/debug/debug_20.txt b/data_dataset/mosz/debug/debug_20.txt new file mode 100644 index 0000000..5adcd72 --- /dev/null +++ b/data_dataset/mosz/debug/debug_20.txt @@ -0,0 +1,372 @@ +7 0.692782 0.871879 0.012911 0.015207 +7 0.760270 0.871539 0.012911 0.016341 +7 0.714202 0.871652 0.012324 0.015660 +6 0.799296 0.868475 0.007629 0.009759 +10 0.828932 0.867000 0.014085 0.005901 +6 0.732981 0.868702 0.011150 0.022469 +7 0.347711 0.603155 0.011737 0.015207 +7 0.421948 0.603382 0.012324 0.015207 +7 0.262324 0.603155 0.012324 0.015207 +7 0.196890 0.602928 0.012911 0.015207 +7 0.193075 0.530527 0.012911 0.014753 +7 0.387617 0.530300 0.012324 0.014753 +7 0.327171 0.530300 0.012324 0.014753 +7 0.254988 0.530527 0.012324 0.015207 +7 0.531984 0.529846 0.012324 0.015207 +7 0.483275 0.530073 0.012324 0.015660 +7 0.462735 0.530073 0.012324 0.015660 +6 0.502347 0.527803 0.010563 0.022923 +7 0.259977 0.456537 0.012911 0.015207 +7 0.192782 0.456310 0.012324 0.015207 +7 0.392312 0.456083 0.012324 0.015207 +7 0.331279 0.456083 0.012324 0.015207 +7 0.688380 0.455629 0.012911 0.015207 +7 0.628521 0.455856 0.012911 0.015660 +7 0.829519 0.455629 0.012324 0.015660 +7 0.763498 0.455402 0.012911 0.015207 +7 0.287559 0.381412 0.012324 0.015660 +7 0.267019 0.381412 0.012324 0.015660 +7 0.834507 0.381185 0.012324 0.015660 +7 0.773768 0.381185 0.012911 0.015660 +7 0.568955 0.381185 0.012911 0.015660 +7 0.548122 0.381185 0.012324 0.015660 +7 0.500880 0.381185 0.012911 0.015660 +7 0.480340 0.381412 0.012911 0.016114 +7 0.219777 0.381185 0.012911 0.015660 +7 0.199237 0.381185 0.012911 0.015660 +7 0.466843 0.317181 0.012911 0.014753 +7 0.446009 0.317181 0.012324 0.014753 +7 0.621479 0.316954 0.012324 0.014753 +7 0.600059 0.317181 0.012911 0.015207 +7 0.375587 0.317181 0.012324 0.015207 +7 0.353873 0.317181 0.012324 0.015207 +7 0.304871 0.317181 0.012911 0.015207 +7 0.284038 0.317181 0.012324 0.015207 +7 0.537559 0.317181 0.012324 0.015660 +7 0.516725 0.316727 0.012911 0.014753 +7 0.694542 0.316727 0.012911 0.015207 +7 0.672242 0.316727 0.012911 0.015207 +7 0.828638 0.316727 0.012324 0.015660 +7 0.778169 0.316500 0.012324 0.015207 +7 0.758509 0.316387 0.012911 0.015433 +7 0.851526 0.316046 0.012324 0.017022 +7 0.544308 0.252951 0.012324 0.015207 +7 0.498826 0.253177 0.012911 0.015660 +7 0.478286 0.253177 0.012911 0.015660 +7 0.424002 0.253404 0.012324 0.015207 +7 0.403756 0.253177 0.012911 0.015207 +7 0.359448 0.253177 0.012324 0.015207 +7 0.336561 0.253177 0.012324 0.015207 +7 0.283451 0.253177 0.012911 0.015207 +7 0.263204 0.253177 0.012324 0.015207 +7 0.217430 0.253177 0.012324 0.015660 +7 0.197183 0.252951 0.012911 0.015207 +7 0.704519 0.252951 0.012324 0.015660 +7 0.685153 0.252724 0.012324 0.015207 +7 0.639671 0.253177 0.012911 0.016114 +7 0.620305 0.252951 0.012911 0.016568 +7 0.852700 0.252043 0.011737 0.017022 +7 0.832746 0.252724 0.012911 0.015660 +7 0.768779 0.252270 0.012911 0.015660 +7 0.564847 0.252497 0.012324 0.016114 +7 0.788439 0.252270 0.012324 0.015660 +7 0.660798 0.188947 0.012911 0.014753 +7 0.586854 0.189060 0.012911 0.015433 +7 0.683099 0.188720 0.012911 0.015207 +7 0.610915 0.188947 0.012911 0.015660 +7 0.824237 0.188266 0.012324 0.015660 +7 0.770833 0.188493 0.012324 0.015207 +7 0.747653 0.188606 0.012911 0.015887 +7 0.849178 0.188039 0.012911 0.015207 +7 0.345070 0.115411 0.012324 0.014753 +7 0.368838 0.115411 0.012911 0.015660 +6 0.630282 0.114276 0.005282 0.028824 +12 0.665640 0.892987 0.010270 0.007490 +12 0.636590 0.890717 0.010857 0.007490 +13 0.609302 0.884135 0.010270 0.007944 +12 0.374853 0.883908 0.009683 0.007490 +17 0.325264 0.883908 0.011444 0.007490 +17 0.267752 0.883681 0.011444 0.007036 +13 0.395687 0.880504 0.010270 0.007036 +12 0.589202 0.878007 0.009977 0.007490 +11 0.209360 0.877326 0.009683 0.007490 +12 0.415640 0.874603 0.010270 0.007490 +11 0.173856 0.874376 0.010270 0.007036 +12 0.570276 0.874376 0.009683 0.007944 +12 0.440874 0.868475 0.010270 0.007036 +13 0.542987 0.868248 0.010270 0.007490 +12 0.515258 0.861893 0.009977 0.007490 +13 0.460094 0.861893 0.010563 0.007490 +12 0.481661 0.858715 0.010857 0.007490 +12 0.261297 0.822628 0.009683 0.007490 +11 0.842870 0.813323 0.010857 0.007490 +12 0.820423 0.813096 0.010563 0.007036 +12 0.775822 0.813323 0.009977 0.007490 +11 0.730487 0.813096 0.010270 0.007490 +17 0.368985 0.813096 0.011444 0.007490 +17 0.310886 0.813096 0.011444 0.007490 +11 0.207600 0.812869 0.010270 0.007490 +11 0.697770 0.810145 0.009977 0.007036 +12 0.612529 0.810372 0.010270 0.007490 +12 0.798562 0.810145 0.010270 0.007490 +11 0.416520 0.810145 0.010270 0.007490 +11 0.233421 0.809918 0.010270 0.007036 +12 0.653022 0.810145 0.011444 0.007944 +12 0.563234 0.803563 0.010270 0.007944 +11 0.584360 0.800499 0.010270 0.007263 +11 0.174149 0.800159 0.010270 0.007490 +12 0.498093 0.797662 0.010270 0.007944 +11 0.531543 0.794258 0.010270 0.007490 +12 0.448210 0.791080 0.010270 0.007490 +11 0.470804 0.788130 0.010857 0.007944 +11 0.317342 0.750000 0.010270 0.007490 +11 0.272300 0.750000 0.009977 0.007490 +11 0.218310 0.749773 0.010563 0.007490 +17 0.706573 0.746823 0.011150 0.007490 +17 0.643633 0.746823 0.011444 0.007490 +12 0.586708 0.746823 0.010270 0.007490 +11 0.366931 0.746596 0.010857 0.007036 +11 0.762177 0.743872 0.010270 0.007490 +12 0.852553 0.737290 0.010270 0.007944 +12 0.533891 0.737063 0.010270 0.007490 +11 0.557952 0.734113 0.010270 0.007036 +12 0.791227 0.731162 0.010857 0.007490 +11 0.175029 0.730708 0.009683 0.007490 +11 0.816168 0.727985 0.010270 0.007490 +12 0.462001 0.727758 0.009683 0.007036 +11 0.498093 0.724807 0.010270 0.007490 +12 0.403316 0.721630 0.009683 0.007944 +11 0.426496 0.718679 0.010270 0.007944 +11 0.258950 0.692578 0.010270 0.007036 +11 0.287119 0.690082 0.010270 0.007490 +11 0.316461 0.686450 0.010270 0.007490 +11 0.225352 0.686223 0.010563 0.007490 +17 0.174149 0.686223 0.010857 0.007490 +11 0.355634 0.683273 0.009977 0.007490 +11 0.478433 0.680095 0.010270 0.007036 +12 0.437793 0.677372 0.010563 0.007944 +12 0.387471 0.676918 0.010270 0.007490 +11 0.410651 0.673740 0.009683 0.007490 +12 0.515992 0.673513 0.010270 0.007490 +11 0.538879 0.667612 0.010270 0.007490 +11 0.834507 0.664662 0.009977 0.007944 +12 0.566901 0.661030 0.009977 0.007944 +11 0.606221 0.658534 0.009977 0.007944 +12 0.640258 0.652179 0.009977 0.007944 +11 0.663879 0.646051 0.010270 0.007490 +17 0.740170 0.642873 0.011444 0.007490 +11 0.796655 0.642873 0.010563 0.007944 +18 0.692635 0.639469 0.010270 0.007944 +11 0.174736 0.621993 0.009683 0.007036 +11 0.174002 0.605651 0.010563 0.007036 +17 0.544161 0.619269 0.011444 0.007944 +17 0.488556 0.619269 0.011737 0.007944 +11 0.590522 0.616319 0.010270 0.007944 +12 0.444102 0.616092 0.009683 0.007944 +17 0.836121 0.612914 0.010857 0.007036 +12 0.784478 0.609964 0.010857 0.007490 +17 0.372653 0.609510 0.009977 0.007036 +12 0.734888 0.606332 0.010270 0.007036 +11 0.397447 0.605878 0.010270 0.007036 +11 0.759536 0.603382 0.010270 0.007944 +12 0.289173 0.602928 0.009683 0.007490 +12 0.326731 0.599750 0.009683 0.006582 +12 0.671215 0.597027 0.010857 0.007490 +12 0.222565 0.596346 0.010270 0.007490 +11 0.704959 0.593849 0.010270 0.007490 +12 0.243104 0.593168 0.010270 0.007490 +12 0.618104 0.590899 0.010270 0.007036 +11 0.639818 0.587494 0.010270 0.007490 +17 0.832600 0.545506 0.011444 0.007490 +17 0.832453 0.536314 0.011150 0.008171 +17 0.764671 0.545506 0.011150 0.007490 +17 0.764525 0.523264 0.011444 0.007490 +11 0.576144 0.545506 0.011444 0.007490 +17 0.575264 0.523491 0.012031 0.007944 +17 0.702318 0.545279 0.011444 0.007490 +17 0.701731 0.523264 0.011444 0.007944 +12 0.438087 0.533023 0.009977 0.007036 +12 0.408304 0.529846 0.010270 0.007490 +17 0.638938 0.523491 0.011444 0.007490 +17 0.639525 0.545733 0.011444 0.007490 +12 0.367224 0.523491 0.010270 0.007490 +12 0.306778 0.520313 0.010270 0.006582 +12 0.347565 0.517363 0.009683 0.007944 +12 0.274501 0.517363 0.010270 0.007944 +12 0.235622 0.511235 0.009977 0.007944 +12 0.173709 0.511008 0.009977 0.007490 +12 0.213468 0.508057 0.010270 0.007944 +13 0.489290 0.483318 0.010270 0.007490 +12 0.509536 0.477644 0.009683 0.007944 +12 0.528609 0.471516 0.010270 0.007490 +13 0.548856 0.464707 0.009683 0.007490 +12 0.460534 0.461984 0.010270 0.007490 +12 0.568662 0.461530 0.010563 0.007490 +12 0.601086 0.458579 0.009683 0.006582 +12 0.413879 0.458579 0.010270 0.007490 +12 0.351819 0.449501 0.010563 0.007490 +12 0.281250 0.449501 0.009683 0.007490 +12 0.647887 0.449047 0.009977 0.007490 +12 0.220511 0.446096 0.010270 0.007490 +12 0.372653 0.443146 0.009977 0.007490 +12 0.312940 0.443146 0.009683 0.007490 +12 0.669161 0.442692 0.009683 0.007490 +12 0.708333 0.435883 0.009977 0.007490 +12 0.851673 0.432932 0.010270 0.007490 +12 0.242224 0.432932 0.009683 0.008398 +12 0.174149 0.432705 0.010270 0.007944 +12 0.807512 0.427031 0.009977 0.007490 +12 0.744865 0.426350 0.010270 0.007490 +12 0.785945 0.423627 0.010270 0.007036 +12 0.241050 0.408874 0.009683 0.007490 +12 0.321156 0.402746 0.009683 0.008398 +12 0.610622 0.400023 0.009977 0.007490 +11 0.522447 0.396845 0.010270 0.007036 +12 0.421802 0.397072 0.009683 0.007490 +13 0.340522 0.396845 0.010270 0.007490 +13 0.630135 0.393441 0.009683 0.007944 +12 0.454372 0.390036 0.010270 0.007036 +12 0.650381 0.390036 0.010270 0.007490 +12 0.748973 0.389582 0.010270 0.007490 +12 0.717576 0.389582 0.010857 0.007490 +11 0.174442 0.387540 0.010270 0.007490 +13 0.401262 0.387313 0.009683 0.007490 +12 0.359595 0.387313 0.009683 0.007490 +13 0.696596 0.386859 0.009977 0.007490 +12 0.380869 0.380958 0.009977 0.007490 +12 0.794161 0.380731 0.010270 0.007490 +12 0.677523 0.377099 0.010563 0.007036 +12 0.816168 0.374376 0.010857 0.007490 +12 0.854607 0.368021 0.010270 0.007490 +12 0.328785 0.344984 0.010270 0.007717 +12 0.800616 0.344644 0.010270 0.007944 +12 0.644660 0.344644 0.009977 0.008398 +12 0.489143 0.344190 0.010563 0.007944 +12 0.257482 0.338516 0.009683 0.007944 +17 0.174442 0.335452 0.011444 0.008625 +12 0.419748 0.332615 0.010270 0.007490 +17 0.574677 0.329437 0.010270 0.007490 +12 0.730781 0.325465 0.010270 0.007717 +12 0.238410 0.280867 0.009683 0.007490 +12 0.380722 0.280867 0.010270 0.007944 +12 0.520393 0.280413 0.010270 0.007490 +12 0.745745 0.270654 0.010270 0.007490 +12 0.810299 0.270654 0.010270 0.007944 +12 0.660651 0.268611 0.010270 0.007944 +12 0.173269 0.265660 0.009683 0.007036 +11 0.314701 0.262256 0.009683 0.007036 +12 0.454665 0.259305 0.010270 0.007944 +12 0.595217 0.259079 0.009683 0.007944 +12 0.636004 0.216409 0.010270 0.007944 +12 0.796215 0.215729 0.010270 0.007944 +12 0.522154 0.214367 0.010270 0.007944 +12 0.561180 0.210508 0.009683 0.008398 +11 0.492518 0.207558 0.009683 0.007944 +12 0.465816 0.204834 0.010270 0.007036 +12 0.721978 0.204153 0.009683 0.007036 +11 0.436473 0.198252 0.010270 0.007490 +11 0.173709 0.195302 0.010563 0.007036 +12 0.207600 0.192124 0.010270 0.007036 +11 0.396567 0.191897 0.010270 0.007036 +11 0.243985 0.188720 0.010270 0.007490 +11 0.369278 0.185542 0.010857 0.007036 +11 0.313527 0.185542 0.009683 0.007036 +12 0.270833 0.185542 0.009977 0.007036 +12 0.340522 0.182592 0.010857 0.007490 +11 0.650381 0.142873 0.010270 0.007944 +11 0.599325 0.140150 0.010270 0.007944 +11 0.694102 0.136518 0.009683 0.007944 +11 0.456719 0.136518 0.010270 0.008398 +11 0.396273 0.134022 0.010270 0.007490 +11 0.553550 0.133908 0.010270 0.007717 +11 0.741344 0.133114 0.010270 0.007490 +11 0.502201 0.130844 0.009683 0.007944 +12 0.778609 0.130163 0.009683 0.007490 +11 0.814114 0.126986 0.010270 0.008398 +12 0.848151 0.123128 0.010270 0.007036 +12 0.316608 0.118134 0.009977 0.007490 +12 0.270980 0.114957 0.009683 0.007490 +12 0.203345 0.108602 0.010563 0.007944 +11 0.233715 0.108375 0.010270 0.008398 +11 0.173856 0.105197 0.010270 0.007490 +5 0.462881 0.677372 0.013791 0.025647 +5 0.259243 0.111779 0.007923 0.016114 +5 0.586121 0.136859 0.007923 0.015887 +5 0.304431 0.114276 0.009096 0.015660 +1 0.118691 0.114049 0.022594 0.046527 +3 0.835827 0.123128 0.007336 0.019292 +5 0.489583 0.126986 0.008509 0.016114 +4 0.733128 0.271335 0.009096 0.018384 +4 0.405663 0.331707 0.008509 0.018384 +1 0.119865 0.316954 0.022594 0.045620 +5 0.765112 0.126305 0.009096 0.015660 +5 0.222271 0.105197 0.007923 0.016114 +5 0.231661 0.185769 0.008509 0.015660 +5 0.194982 0.188266 0.007923 0.016114 +5 0.802377 0.123808 0.008509 0.016114 +4 0.141725 0.176010 0.009390 0.018838 +1 0.118985 0.188266 0.022594 0.046074 +4 0.659771 0.597254 0.009683 0.018384 +4 0.207893 0.445869 0.009096 0.019292 +4 0.665346 0.377099 0.009096 0.019292 +5 0.640698 0.806968 0.008509 0.015660 +4 0.361356 0.609510 0.009096 0.018384 +4 0.596978 0.400023 0.009683 0.018838 +4 0.722565 0.606559 0.009683 0.019746 +4 0.299442 0.185315 0.009096 0.017930 +5 0.680898 0.134022 0.008509 0.015207 +5 0.445569 0.133568 0.008509 0.015660 +4 0.313527 0.599069 0.008509 0.017476 +4 0.476086 0.482637 0.009096 0.017476 +1 0.119278 0.252270 0.022007 0.046074 +4 0.278903 0.602928 0.008509 0.017930 +1 0.120452 0.602247 0.022594 0.045166 +4 0.142019 0.304017 0.009390 0.018838 +3 0.358421 0.185996 0.007336 0.020200 +4 0.143046 0.664208 0.009096 0.018384 +4 0.143046 0.517590 0.008509 0.018384 +4 0.142752 0.443146 0.009096 0.018384 +4 0.626320 0.652406 0.009683 0.018838 +4 0.475499 0.618134 0.009683 0.018838 +4 0.819102 0.535974 0.009683 0.018838 +1 0.120745 0.676237 0.022007 0.046074 +4 0.210827 0.596573 0.008509 0.018384 +4 0.206719 0.749546 0.009096 0.018384 +4 0.297682 0.812869 0.009096 0.018384 +3 0.788586 0.810145 0.007336 0.019746 +4 0.304724 0.749773 0.009096 0.018384 +4 0.196156 0.812415 0.009096 0.018838 +1 0.121332 0.455175 0.022594 0.046074 +1 0.120452 0.870291 0.022594 0.045620 +4 0.841109 0.737517 0.009096 0.018838 +4 0.521860 0.737063 0.009096 0.018838 +4 0.709654 0.203019 0.009096 0.018838 +1 0.119572 0.380277 0.022007 0.046074 +3 0.161532 0.336019 0.007336 0.020200 +4 0.161238 0.622220 0.009096 0.018838 +4 0.502494 0.673740 0.008509 0.019292 +4 0.447330 0.461984 0.009096 0.018838 +1 0.120452 0.809464 0.022007 0.046527 +4 0.162119 0.685769 0.009683 0.018838 +1 0.120745 0.742964 0.022594 0.046074 +4 0.245892 0.692011 0.008803 0.018611 +4 0.530370 0.868475 0.009096 0.019292 +1 0.121039 0.529846 0.022007 0.045620 +4 0.449090 0.729119 0.009096 0.020200 +4 0.591696 0.658988 0.009683 0.018384 +4 0.630135 0.747049 0.009683 0.019292 +4 0.557365 0.874376 0.009096 0.019292 +4 0.849032 0.876645 0.005575 0.015660 +4 0.142752 0.368248 0.008509 0.018384 +4 0.552377 0.803790 0.009096 0.018838 +4 0.142165 0.240241 0.009096 0.018384 +4 0.435006 0.790399 0.009096 0.018384 +4 0.142752 0.797435 0.009096 0.018838 +3 0.823504 0.612233 0.007336 0.018838 +4 0.142459 0.590218 0.009096 0.018384 +4 0.624560 0.890944 0.009683 0.018384 +4 0.143046 0.858942 0.009096 0.018384 +5 0.161972 0.100999 0.007629 0.014526 +4 0.141432 0.101680 0.008803 0.018611 +4 0.142899 0.730595 0.008803 0.018157 +3 0.163439 0.730595 0.006455 0.019065 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_21.jpg b/data_dataset/mosz/debug/debug_21.jpg new file mode 100644 index 0000000..3f34c42 Binary files /dev/null and b/data_dataset/mosz/debug/debug_21.jpg differ diff --git a/data_dataset/mosz/debug/debug_21.txt b/data_dataset/mosz/debug/debug_21.txt new file mode 100644 index 0000000..57a176c --- /dev/null +++ b/data_dataset/mosz/debug/debug_21.txt @@ -0,0 +1,360 @@ +6 0.247872 0.790626 0.005577 0.028824 +6 0.765923 0.653200 0.005577 0.028597 +7 0.733490 0.574330 0.013502 0.014753 +7 0.677722 0.574103 0.012328 0.015207 +7 0.651306 0.574103 0.012328 0.015207 +10 0.816848 0.569224 0.013502 0.005901 +6 0.781333 0.570245 0.007044 0.009759 +6 0.700616 0.571834 0.011154 0.023377 +7 0.749780 0.504880 0.012621 0.014753 +7 0.619753 0.504199 0.013208 0.015207 +7 0.239360 0.504312 0.013208 0.015433 +7 0.484737 0.503972 0.013208 0.016114 +7 0.746698 0.429755 0.012328 0.015207 +7 0.408571 0.429074 0.012328 0.015660 +10 0.375110 0.424194 0.013502 0.005901 +7 0.717934 0.354176 0.012915 0.015660 +10 0.518638 0.297776 0.013502 0.005901 +7 0.395950 0.289038 0.007631 0.010667 +6 0.374817 0.289946 0.006457 0.015207 +7 0.617259 0.283364 0.012328 0.015660 +6 0.588201 0.280980 0.010566 0.023604 +10 0.406516 0.271788 0.013502 0.006582 +7 0.768418 0.200862 0.013502 0.016341 +6 0.737893 0.198933 0.011154 0.022923 +7 0.512474 0.130163 0.012328 0.015660 +7 0.404168 0.130163 0.012915 0.015207 +7 0.297329 0.129029 0.012915 0.015660 +7 0.184033 0.129029 0.012915 0.016114 +12 0.462724 0.873468 0.010273 0.007490 +12 0.429850 0.873581 0.010273 0.007717 +12 0.846493 0.867453 0.009979 0.007263 +12 0.744497 0.867227 0.010273 0.007263 +12 0.485618 0.867113 0.010273 0.007490 +12 0.408130 0.867113 0.010273 0.007490 +12 0.643822 0.866886 0.010860 0.007490 +12 0.190637 0.861439 0.010860 0.007944 +12 0.266070 0.861212 0.010273 0.007944 +12 0.331230 0.858034 0.010273 0.007036 +12 0.288524 0.858148 0.009979 0.007263 +12 0.388025 0.857808 0.009979 0.007490 +12 0.517611 0.857581 0.009686 0.007490 +12 0.232609 0.855084 0.010273 0.007490 +12 0.804520 0.854857 0.009979 0.007490 +12 0.702818 0.854517 0.010273 0.007263 +12 0.598620 0.854403 0.009686 0.007036 +12 0.309510 0.854857 0.010860 0.007944 +12 0.536542 0.854517 0.010566 0.007717 +12 0.364397 0.851793 0.010273 0.007263 +12 0.826387 0.851680 0.009686 0.007490 +12 0.776636 0.851566 0.010566 0.007263 +12 0.212063 0.851793 0.010273 0.007717 +12 0.724244 0.851339 0.009686 0.007263 +12 0.676108 0.851226 0.009686 0.007036 +12 0.571324 0.851226 0.010273 0.007490 +12 0.621221 0.850999 0.010273 0.007490 +12 0.167449 0.848842 0.010273 0.007263 +12 0.305254 0.807422 0.009979 0.007490 +12 0.327267 0.804358 0.010566 0.007717 +12 0.228940 0.804358 0.009979 0.007717 +12 0.746258 0.801067 0.010273 0.007490 +12 0.188582 0.800840 0.010273 0.007490 +12 0.639859 0.800613 0.009979 0.007490 +12 0.364984 0.800726 0.009686 0.007717 +12 0.264015 0.800613 0.009686 0.007490 +12 0.535368 0.800499 0.009979 0.007717 +12 0.427796 0.800386 0.009686 0.007490 +12 0.209128 0.797662 0.010273 0.007490 +12 0.286029 0.794485 0.010273 0.007036 +12 0.166275 0.794371 0.010273 0.007263 +12 0.386117 0.791307 0.009686 0.007944 +12 0.807896 0.788357 0.010273 0.007036 +12 0.699442 0.788016 0.009979 0.006809 +12 0.487819 0.787676 0.009979 0.007490 +12 0.593044 0.787449 0.009099 0.007490 +12 0.828441 0.785406 0.010273 0.007490 +12 0.778691 0.785293 0.010566 0.007263 +12 0.718521 0.785066 0.009979 0.007263 +12 0.459789 0.784839 0.010273 0.007263 +12 0.406956 0.784839 0.010273 0.007263 +12 0.669944 0.784725 0.010273 0.007490 +12 0.613296 0.784612 0.010273 0.007263 +12 0.566628 0.784612 0.010273 0.007717 +12 0.509246 0.784498 0.010566 0.007490 +12 0.848400 0.782229 0.010273 0.007490 +12 0.613883 0.747730 0.010273 0.007036 +12 0.674787 0.744666 0.009979 0.008171 +12 0.268711 0.744326 0.010273 0.007490 +12 0.233490 0.741829 0.010273 0.007944 +12 0.635016 0.741262 0.010273 0.007717 +12 0.291606 0.739106 0.010273 0.007036 +12 0.210743 0.738992 0.009979 0.007263 +12 0.694599 0.738311 0.009686 0.007263 +12 0.570883 0.738198 0.009979 0.007490 +12 0.533314 0.735134 0.009979 0.007717 +12 0.593044 0.734793 0.009686 0.007490 +12 0.190050 0.732297 0.010273 0.007490 +12 0.434253 0.731843 0.010273 0.007490 +12 0.312151 0.729233 0.010273 0.007263 +12 0.718080 0.728779 0.009686 0.007263 +12 0.511887 0.728665 0.010566 0.007490 +12 0.468007 0.728665 0.009686 0.007490 +12 0.167009 0.726169 0.010566 0.007036 +12 0.335045 0.725942 0.010273 0.007036 +12 0.489874 0.725715 0.010566 0.007036 +12 0.846199 0.722991 0.009979 0.007036 +12 0.368506 0.722991 0.010273 0.007490 +11 0.738333 0.722537 0.010273 0.007490 +12 0.411652 0.722537 0.010860 0.007944 +12 0.390520 0.719587 0.009686 0.007036 +12 0.822865 0.716523 0.010273 0.007717 +12 0.777077 0.716409 0.010273 0.007490 +12 0.799677 0.713459 0.010860 0.007036 +12 0.526856 0.678166 0.009979 0.007263 +12 0.582330 0.675783 0.009392 0.007944 +12 0.548723 0.672379 0.010273 0.007490 +12 0.182125 0.669428 0.009686 0.007036 +12 0.484004 0.669201 0.009979 0.007490 +12 0.603610 0.668861 0.009686 0.007263 +12 0.844585 0.666591 0.010273 0.007717 +12 0.447461 0.666024 0.010860 0.007490 +12 0.505430 0.665797 0.010566 0.007944 +12 0.801145 0.663073 0.010273 0.007036 +12 0.204579 0.663073 0.009979 0.007036 +12 0.347373 0.662960 0.010273 0.007263 +12 0.822278 0.660009 0.010273 0.007263 +12 0.226446 0.659782 0.010273 0.007263 +12 0.425448 0.659555 0.010273 0.007263 +12 0.626357 0.659328 0.010566 0.007263 +12 0.382154 0.659555 0.010566 0.007717 +12 0.248459 0.656491 0.009686 0.007036 +12 0.779278 0.656491 0.009979 0.007490 +12 0.405048 0.656378 0.010566 0.007263 +12 0.746551 0.653541 0.010273 0.007490 +12 0.323305 0.653654 0.010273 0.007717 +12 0.281626 0.653654 0.010273 0.007717 +12 0.646610 0.653200 0.009979 0.007717 +12 0.303640 0.650136 0.010860 0.007036 +12 0.724978 0.647072 0.009979 0.007263 +12 0.681978 0.646959 0.010273 0.007036 +18 0.160112 0.647526 0.011447 0.010440 +12 0.703111 0.643895 0.010273 0.007263 +12 0.165688 0.589764 0.010273 0.007490 +13 0.377018 0.577054 0.011447 0.007036 +13 0.376724 0.561394 0.012034 0.007490 +11 0.283387 0.577054 0.009686 0.007036 +11 0.283681 0.561167 0.010273 0.007944 +13 0.574259 0.576827 0.011447 0.007036 +13 0.573672 0.561167 0.011447 0.007490 +13 0.479601 0.576827 0.011154 0.007036 +13 0.478867 0.560940 0.012034 0.007944 +13 0.532580 0.570699 0.010273 0.006582 +13 0.533020 0.554358 0.011154 0.007490 +12 0.190930 0.570472 0.010273 0.007036 +12 0.627678 0.570132 0.009099 0.006809 +12 0.627678 0.554358 0.010273 0.007036 +13 0.337394 0.570472 0.010860 0.007490 +13 0.337394 0.555039 0.010860 0.007490 +11 0.246404 0.570472 0.009686 0.007490 +12 0.245964 0.554925 0.009979 0.007263 +13 0.436161 0.570245 0.011154 0.007490 +13 0.435721 0.554358 0.011447 0.007490 +12 0.855151 0.568202 0.012034 0.011575 +12 0.215879 0.561280 0.009686 0.007717 +12 0.262988 0.520086 0.009979 0.007490 +12 0.505136 0.517136 0.010566 0.007490 +12 0.283827 0.513958 0.009392 0.007036 +12 0.770913 0.510781 0.010273 0.007490 +12 0.640593 0.510440 0.010273 0.007263 +12 0.526563 0.510440 0.009979 0.007717 +12 0.310684 0.507490 0.010273 0.006809 +12 0.790431 0.501135 0.009979 0.007263 +12 0.551512 0.501021 0.009392 0.007036 +12 0.454799 0.501021 0.010273 0.007036 +12 0.658497 0.500794 0.010273 0.007036 +12 0.589375 0.500794 0.009979 0.007036 +12 0.415762 0.500794 0.010860 0.007490 +11 0.198268 0.500908 0.010273 0.007717 +11 0.165688 0.497957 0.010860 0.007263 +11 0.381567 0.497844 0.010566 0.007490 +12 0.351189 0.497617 0.010860 0.007944 +12 0.849721 0.495120 0.009979 0.007036 +12 0.811271 0.495234 0.010566 0.007263 +12 0.720135 0.494893 0.010273 0.007036 +12 0.569856 0.494666 0.010273 0.007036 +12 0.434987 0.494666 0.010566 0.007036 +12 0.681098 0.494553 0.009686 0.007263 +12 0.330056 0.494553 0.009686 0.007263 +12 0.829909 0.488879 0.010273 0.007263 +12 0.700470 0.488425 0.009686 0.006809 +12 0.427062 0.454153 0.009979 0.007717 +12 0.446140 0.450635 0.010566 0.007944 +11 0.329028 0.447685 0.009979 0.007036 +12 0.466539 0.447685 0.010273 0.007490 +12 0.492956 0.447231 0.010273 0.007490 +12 0.764162 0.445075 0.010273 0.007717 +12 0.512915 0.444507 0.010273 0.007490 +12 0.543440 0.441330 0.010273 0.007490 +12 0.165688 0.441443 0.010860 0.007717 +12 0.785295 0.438493 0.010273 0.007263 +12 0.564573 0.438266 0.010273 0.006809 +12 0.186528 0.438266 0.010273 0.006809 +12 0.205166 0.435315 0.009979 0.007263 +12 0.229968 0.435315 0.010273 0.007717 +12 0.583505 0.435089 0.010566 0.007717 +12 0.610214 0.434862 0.009979 0.007717 +12 0.810244 0.432365 0.010860 0.006809 +12 0.630026 0.431684 0.009686 0.006809 +12 0.250514 0.431911 0.010273 0.007263 +12 0.648665 0.428734 0.010566 0.007263 +12 0.270913 0.428847 0.009979 0.007490 +11 0.708394 0.425556 0.010273 0.007263 +11 0.299824 0.425443 0.010273 0.007036 +12 0.849574 0.423059 0.009686 0.007263 +11 0.677576 0.422719 0.009686 0.007036 +12 0.830349 0.419768 0.009979 0.007036 +12 0.743910 0.379936 0.009686 0.007717 +12 0.766950 0.376078 0.009979 0.007717 +12 0.822571 0.373581 0.010860 0.007263 +12 0.791018 0.373241 0.009979 0.007490 +12 0.522160 0.372220 0.009979 0.007263 +12 0.845759 0.370177 0.010273 0.007717 +11 0.606545 0.369269 0.009686 0.007263 +11 0.484737 0.369042 0.010273 0.007263 +11 0.569122 0.365978 0.009979 0.007490 +12 0.318462 0.365751 0.009979 0.007490 +11 0.450396 0.365751 0.009686 0.007944 +11 0.397857 0.362574 0.010273 0.007490 +11 0.288377 0.362006 0.010273 0.007263 +11 0.361315 0.359396 0.010566 0.007490 +11 0.253889 0.358942 0.010566 0.007490 +11 0.203258 0.355311 0.010273 0.007036 +11 0.165395 0.352360 0.010860 0.007490 +12 0.416055 0.301407 0.006164 0.004539 +11 0.432785 0.295506 0.006751 0.004539 +12 0.213824 0.295847 0.010273 0.007036 +12 0.296595 0.295733 0.010273 0.007263 +12 0.189756 0.292215 0.010273 0.007036 +12 0.559290 0.289832 0.006751 0.004085 +12 0.839742 0.291194 0.010566 0.007717 +12 0.506164 0.289492 0.006751 0.004312 +11 0.447461 0.289492 0.006751 0.004312 +12 0.166862 0.289038 0.010273 0.007036 +12 0.492075 0.286995 0.006751 0.004766 +11 0.810831 0.287676 0.010273 0.007036 +11 0.774729 0.284498 0.010860 0.007036 +12 0.476225 0.283023 0.006751 0.004993 +11 0.643088 0.283591 0.010566 0.007490 +11 0.727326 0.280980 0.010566 0.006809 +12 0.274141 0.279505 0.009979 0.007490 +11 0.692251 0.277690 0.010273 0.007490 +12 0.243763 0.276328 0.010273 0.007490 +12 0.544614 0.274626 0.006164 0.004539 +12 0.528177 0.270994 0.006164 0.004539 +12 0.797329 0.225715 0.010273 0.007490 +13 0.826827 0.219927 0.010566 0.007717 +12 0.848547 0.213913 0.009979 0.007490 +12 0.519372 0.212438 0.010273 0.007263 +12 0.349868 0.211984 0.010566 0.007717 +12 0.166569 0.211189 0.010273 0.007490 +12 0.655269 0.206423 0.010860 0.007490 +12 0.476812 0.205402 0.010860 0.007717 +12 0.306575 0.205175 0.009686 0.007717 +12 0.626504 0.200068 0.009686 0.007490 +12 0.574112 0.199955 0.009979 0.007717 +12 0.454799 0.199047 0.010273 0.007717 +12 0.406663 0.199160 0.010273 0.007944 +12 0.280158 0.198593 0.009686 0.007263 +12 0.224684 0.198706 0.010273 0.007490 +12 0.547402 0.196550 0.010566 0.007263 +12 0.378779 0.195983 0.009686 0.007490 +12 0.196214 0.194848 0.009686 0.007490 +12 0.432492 0.189628 0.010273 0.007036 +12 0.604784 0.184294 0.009686 0.006809 +12 0.257264 0.182819 0.009686 0.007490 +11 0.434840 0.145824 0.010273 0.007490 +12 0.327414 0.145710 0.010273 0.007717 +12 0.215292 0.145030 0.010273 0.007717 +12 0.701937 0.143895 0.010273 0.007717 +12 0.846052 0.137994 0.010860 0.007263 +12 0.758585 0.131525 0.009686 0.007490 +12 0.816701 0.131298 0.010860 0.007490 +12 0.536689 0.130390 0.010860 0.007490 +11 0.468007 0.129936 0.009686 0.007490 +12 0.467567 0.107354 0.009979 0.007717 +12 0.731289 0.127894 0.010273 0.006582 +11 0.249927 0.122787 0.010273 0.007263 +12 0.792926 0.121766 0.010273 0.007490 +12 0.159525 0.121879 0.011447 0.009532 +11 0.565013 0.118021 0.010566 0.007263 +11 0.564866 0.102247 0.010860 0.007490 +11 0.359260 0.117567 0.010566 0.007717 +4 0.552539 0.102701 0.008512 0.018384 +4 0.136337 0.116092 0.009686 0.018838 +1 0.112269 0.127894 0.022601 0.046074 +5 0.718374 0.124262 0.007925 0.015660 +4 0.238186 0.122560 0.009099 0.018611 +5 0.781186 0.117680 0.009099 0.015660 +4 0.135163 0.185542 0.009686 0.018838 +4 0.315087 0.144462 0.009099 0.019746 +5 0.834605 0.134703 0.009099 0.016114 +5 0.506751 0.209147 0.008512 0.016114 +4 0.202671 0.144235 0.009686 0.018838 +5 0.746551 0.128121 0.007925 0.015207 +5 0.592750 0.180209 0.007925 0.015887 +5 0.212944 0.195302 0.007925 0.015660 +5 0.562225 0.196664 0.007925 0.015660 +1 0.112269 0.351226 0.023188 0.046074 +4 0.422219 0.144689 0.009686 0.018838 +4 0.407543 0.301748 0.006751 0.012937 +5 0.245817 0.178734 0.007925 0.014753 +5 0.689903 0.140604 0.008512 0.015660 +4 0.813913 0.220041 0.008805 0.018838 +4 0.474171 0.787676 0.008512 0.019292 +5 0.338274 0.208693 0.008512 0.016568 +5 0.154535 0.207785 0.008512 0.016114 +4 0.784855 0.226169 0.009392 0.018384 +4 0.232022 0.276441 0.009099 0.018611 +5 0.185354 0.192124 0.007925 0.013845 +1 0.112856 0.197798 0.022601 0.046074 +1 0.111682 0.281775 0.023188 0.046074 +4 0.135163 0.339424 0.009099 0.018838 +4 0.217640 0.435429 0.009099 0.018384 +4 0.135750 0.560940 0.009099 0.018838 +4 0.480041 0.447685 0.009099 0.018384 +4 0.690197 0.854403 0.009686 0.018838 +1 0.112562 0.428620 0.022014 0.045620 +5 0.535515 0.192578 0.008512 0.015660 +4 0.791752 0.854857 0.009686 0.018384 +4 0.505283 0.857581 0.009686 0.019292 +5 0.643528 0.203019 0.008512 0.016114 +5 0.367038 0.191897 0.008512 0.015660 +5 0.296008 0.202111 0.008512 0.016114 +1 0.113443 0.503745 0.022014 0.046074 +4 0.794687 0.788357 0.009686 0.019746 +3 0.523188 0.800159 0.007925 0.019746 +3 0.627972 0.800159 0.007338 0.020200 +3 0.733050 0.800613 0.007338 0.019292 +4 0.809363 0.373695 0.010273 0.018384 +1 0.113736 0.791080 0.022601 0.046074 +4 0.587467 0.854290 0.008512 0.018611 +1 0.114030 0.861212 0.022014 0.046527 +4 0.509392 0.372333 0.009099 0.019292 +4 0.154535 0.289492 0.009099 0.019746 +4 0.261374 0.279505 0.009099 0.019292 +1 0.113443 0.722310 0.022601 0.046527 +3 0.352069 0.799932 0.007338 0.020654 +4 0.136043 0.416137 0.010273 0.018838 +5 0.394922 0.196210 0.007925 0.015207 +4 0.135456 0.269973 0.009686 0.018838 +1 0.113736 0.652633 0.022014 0.046074 +4 0.136484 0.778824 0.009979 0.017930 +4 0.136337 0.710281 0.009686 0.018838 +4 0.597740 0.434975 0.008512 0.018838 +4 0.580716 0.787789 0.009099 0.019973 +1 0.113736 0.573196 0.022601 0.046074 +4 0.686674 0.788130 0.009686 0.019746 +4 0.136190 0.641058 0.009979 0.018384 +4 0.135163 0.491489 0.009686 0.018838 +4 0.136190 0.849069 0.008218 0.018157 +3 0.156443 0.848842 0.006457 0.019519 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_22.jpg b/data_dataset/mosz/debug/debug_22.jpg new file mode 100644 index 0000000..d59f151 Binary files /dev/null and b/data_dataset/mosz/debug/debug_22.jpg differ diff --git a/data_dataset/mosz/debug/debug_22.txt b/data_dataset/mosz/debug/debug_22.txt new file mode 100644 index 0000000..a0357ba --- /dev/null +++ b/data_dataset/mosz/debug/debug_22.txt @@ -0,0 +1,344 @@ +7 0.709218 0.844582 0.012794 0.015576 +7 0.395464 0.844357 0.012213 0.015576 +7 0.578947 0.844131 0.012794 0.016479 +7 0.489096 0.843905 0.012213 0.016027 +7 0.302413 0.843905 0.012213 0.015124 +7 0.205874 0.843454 0.012213 0.015576 +10 0.772318 0.839503 0.013376 0.005418 +10 0.643210 0.839616 0.013376 0.006095 +6 0.600756 0.843454 0.009887 0.023702 +6 0.730445 0.842777 0.011050 0.023251 +6 0.417272 0.842551 0.010468 0.023702 +6 0.510323 0.842551 0.010468 0.023251 +6 0.323059 0.842325 0.010468 0.023702 +6 0.227682 0.841874 0.010468 0.023251 +9 0.686682 0.842664 0.004943 0.071332 +7 0.793254 0.765124 0.012794 0.015124 +7 0.848212 0.764560 0.012213 0.017156 +7 0.722012 0.764673 0.012213 0.015124 +7 0.667054 0.764221 0.012794 0.016027 +7 0.603082 0.764221 0.012794 0.015124 +7 0.547543 0.764221 0.012213 0.015124 +7 0.481826 0.763995 0.012213 0.015576 +7 0.428031 0.763544 0.012794 0.016027 +10 0.308811 0.550339 0.011050 0.004966 +10 0.332073 0.550113 0.008723 0.004966 +9 0.783367 0.406998 0.012794 0.026637 +6 0.627072 0.194018 0.005525 0.028217 +17 0.824513 0.873702 0.011341 0.006998 +17 0.682320 0.873025 0.009596 0.007901 +11 0.682611 0.860158 0.010177 0.007901 +12 0.682030 0.837923 0.009596 0.007675 +12 0.682030 0.827991 0.009596 0.007675 +12 0.174760 0.872348 0.009887 0.007901 +12 0.174615 0.859481 0.009596 0.007449 +12 0.174760 0.843228 0.009887 0.007449 +11 0.550596 0.872009 0.010177 0.008126 +12 0.550451 0.843567 0.009887 0.007223 +12 0.550451 0.850790 0.009887 0.007223 +17 0.367113 0.859932 0.009596 0.007449 +11 0.366822 0.843679 0.009596 0.007449 +12 0.366822 0.827652 0.009596 0.006998 +17 0.270282 0.859481 0.010177 0.006998 +12 0.269700 0.846388 0.009596 0.006998 +12 0.269700 0.830587 0.009596 0.007901 +12 0.460599 0.846727 0.009887 0.006772 +12 0.460599 0.853499 0.009887 0.006772 +12 0.399680 0.791986 0.010177 0.007449 +12 0.288601 0.791084 0.010177 0.007449 +12 0.174324 0.791084 0.009596 0.007901 +12 0.362169 0.788600 0.009596 0.007449 +12 0.251381 0.788600 0.010177 0.007449 +12 0.338325 0.785214 0.009596 0.007449 +12 0.226083 0.784876 0.009596 0.008126 +12 0.818988 0.780474 0.010177 0.007449 +12 0.818116 0.761287 0.010177 0.006998 +12 0.312445 0.779345 0.010177 0.006998 +12 0.200204 0.778668 0.010177 0.006998 +12 0.453766 0.772912 0.009596 0.007223 +12 0.517592 0.770203 0.009887 0.008126 +12 0.693079 0.767043 0.010177 0.006772 +12 0.693079 0.773815 0.010177 0.006772 +11 0.573568 0.766591 0.010759 0.006772 +12 0.573568 0.773363 0.010759 0.006772 +12 0.762722 0.763883 0.010468 0.006772 +12 0.762722 0.770655 0.010468 0.006772 +12 0.637540 0.763883 0.010759 0.006772 +12 0.637540 0.770655 0.010759 0.006772 +12 0.649462 0.723138 0.010177 0.007901 +12 0.844868 0.717043 0.010177 0.007449 +12 0.608462 0.717269 0.010759 0.007901 +12 0.175051 0.715688 0.009887 0.006998 +12 0.558883 0.714334 0.009887 0.006998 +12 0.794853 0.714108 0.010177 0.007901 +12 0.821896 0.710948 0.010759 0.007449 +12 0.763739 0.711174 0.010759 0.007901 +12 0.584908 0.710948 0.010177 0.007901 +12 0.526752 0.710722 0.010177 0.007449 +13 0.201948 0.710271 0.009596 0.007449 +12 0.724193 0.707788 0.010759 0.006998 +12 0.485897 0.707901 0.010468 0.007675 +12 0.675051 0.704628 0.010177 0.006998 +12 0.437191 0.704402 0.010177 0.006998 +12 0.698313 0.701467 0.010177 0.007449 +12 0.460599 0.701242 0.010468 0.007449 +12 0.410875 0.701242 0.009887 0.007449 +13 0.225938 0.701016 0.009887 0.007901 +12 0.368857 0.694921 0.010177 0.007901 +12 0.249927 0.694695 0.009596 0.007449 +12 0.318843 0.691761 0.010177 0.006998 +12 0.343850 0.688826 0.010177 0.006998 +12 0.287874 0.688600 0.010468 0.007449 +12 0.663710 0.648194 0.010177 0.007901 +12 0.460163 0.647517 0.010177 0.007449 +12 0.270282 0.647743 0.009596 0.007901 +13 0.815789 0.646163 0.010759 0.007901 +12 0.846322 0.645937 0.010177 0.007901 +13 0.602646 0.645711 0.010177 0.007449 +12 0.632887 0.645485 0.010177 0.007449 +12 0.429921 0.645485 0.010177 0.007449 +12 0.236551 0.645260 0.009596 0.007901 +13 0.789619 0.642438 0.009596 0.007675 +13 0.686973 0.642325 0.010177 0.007449 +13 0.481099 0.641874 0.010177 0.006998 +13 0.408694 0.641874 0.010759 0.006998 +13 0.573568 0.641874 0.010177 0.007449 +13 0.290928 0.641535 0.010177 0.007675 +13 0.215470 0.641196 0.009887 0.007449 +13 0.386886 0.635214 0.010177 0.007223 +13 0.195551 0.634763 0.010177 0.007223 +13 0.708491 0.632844 0.010177 0.007449 +13 0.501163 0.631941 0.010759 0.007449 +13 0.311864 0.632167 0.010177 0.007901 +12 0.366095 0.629007 0.009887 0.006998 +12 0.174905 0.628555 0.010759 0.007901 +12 0.729136 0.626524 0.010759 0.006998 +12 0.522826 0.625847 0.009887 0.007449 +12 0.331492 0.625621 0.009887 0.006998 +12 0.766938 0.620203 0.010177 0.007449 +12 0.551759 0.619752 0.010177 0.007449 +12 0.721285 0.582506 0.010177 0.007449 +12 0.318552 0.581828 0.009596 0.007449 +12 0.374527 0.578894 0.009887 0.006998 +12 0.780023 0.579120 0.010177 0.007901 +12 0.743239 0.576072 0.009305 0.007675 +12 0.339779 0.574831 0.009596 0.007449 +13 0.802995 0.573476 0.010177 0.007449 +12 0.678831 0.572912 0.009596 0.007675 +13 0.395900 0.572122 0.010177 0.007449 +12 0.273190 0.571896 0.010177 0.006998 +12 0.700640 0.569865 0.010177 0.007901 +12 0.641029 0.569639 0.010759 0.007449 +12 0.295580 0.568736 0.009596 0.007449 +12 0.240622 0.568736 0.010177 0.007449 +12 0.542309 0.566027 0.010468 0.006998 +13 0.824222 0.563770 0.009596 0.007449 +12 0.617912 0.563093 0.010468 0.007901 +12 0.573277 0.563093 0.010177 0.007901 +13 0.417127 0.562754 0.009596 0.007223 +12 0.218814 0.562415 0.009596 0.006998 +12 0.174469 0.562190 0.010468 0.007901 +12 0.595377 0.559707 0.010177 0.006998 +12 0.439227 0.559481 0.009596 0.006998 +12 0.197005 0.558804 0.010177 0.006998 +12 0.845449 0.557223 0.010177 0.007449 +12 0.519192 0.556546 0.010177 0.006998 +12 0.475720 0.556546 0.009887 0.006998 +12 0.497383 0.553160 0.009596 0.006998 +12 0.679558 0.509707 0.009887 0.007675 +12 0.648008 0.506885 0.009596 0.007901 +13 0.702094 0.503725 0.009596 0.007449 +13 0.626636 0.500113 0.009887 0.007449 +12 0.845885 0.497404 0.009887 0.006998 +13 0.605263 0.496953 0.010759 0.006998 +13 0.724193 0.494018 0.010177 0.007449 +12 0.582146 0.493679 0.010468 0.007675 +12 0.746002 0.490632 0.009596 0.007449 +12 0.506688 0.490406 0.010177 0.006998 +12 0.550451 0.490293 0.009887 0.007675 +12 0.779006 0.487923 0.010468 0.006998 +12 0.822768 0.487923 0.009596 0.007449 +12 0.802268 0.484763 0.010468 0.006998 +12 0.528787 0.483860 0.010177 0.006998 +12 0.406950 0.483860 0.010759 0.006998 +12 0.452166 0.483747 0.009887 0.007675 +12 0.485752 0.481038 0.010177 0.007223 +12 0.386304 0.477652 0.010177 0.007223 +12 0.285694 0.477540 0.010177 0.006998 +12 0.429631 0.477540 0.010759 0.007449 +12 0.328148 0.477314 0.010177 0.007449 +12 0.251963 0.474379 0.009596 0.007449 +12 0.350829 0.467833 0.009596 0.007449 +12 0.307502 0.467381 0.010177 0.006998 +12 0.202384 0.467381 0.010468 0.007449 +13 0.223757 0.464108 0.010177 0.007675 +12 0.174033 0.463770 0.010759 0.007901 +12 0.440390 0.431490 0.010177 0.007449 +12 0.553795 0.424944 0.010177 0.006998 +12 0.317534 0.425169 0.009887 0.007449 +12 0.466415 0.424944 0.009887 0.007449 +12 0.581419 0.421670 0.010177 0.007223 +12 0.606426 0.418849 0.010177 0.007901 +12 0.528787 0.418849 0.010759 0.007901 +12 0.344432 0.415688 0.009596 0.006998 +12 0.645536 0.415350 0.010468 0.007223 +12 0.491858 0.415237 0.010177 0.007449 +12 0.668508 0.412528 0.010468 0.007901 +12 0.369148 0.409594 0.010177 0.006998 +12 0.411021 0.409368 0.010177 0.006998 +12 0.695406 0.409368 0.010177 0.007449 +12 0.294126 0.408916 0.010177 0.007449 +12 0.720122 0.406433 0.010759 0.007449 +12 0.255743 0.406095 0.010177 0.007675 +12 0.205147 0.405982 0.010177 0.007449 +12 0.758069 0.403047 0.010468 0.007449 +12 0.230300 0.402596 0.010468 0.007449 +12 0.174324 0.402370 0.010177 0.007901 +12 0.841960 0.399549 0.010177 0.008126 +13 0.783803 0.399436 0.010177 0.007901 +12 0.808520 0.396388 0.010177 0.007675 +12 0.768974 0.352483 0.009596 0.007449 +12 0.728555 0.352257 0.010177 0.007449 +12 0.523699 0.349097 0.009887 0.007449 +12 0.485315 0.348871 0.009887 0.007449 +12 0.843559 0.343228 0.009887 0.007449 +12 0.793399 0.343228 0.010177 0.007449 +13 0.703838 0.339842 0.010177 0.007449 +13 0.677959 0.339729 0.010177 0.007223 +13 0.548415 0.339729 0.010468 0.007223 +13 0.433411 0.337133 0.010177 0.007449 +12 0.307648 0.336907 0.009887 0.006998 +13 0.460744 0.336907 0.010177 0.007449 +12 0.282204 0.336682 0.010177 0.006998 +13 0.818697 0.336682 0.010759 0.007449 +12 0.246583 0.333521 0.009887 0.007449 +12 0.222594 0.333409 0.009596 0.007223 +12 0.653242 0.333296 0.010177 0.007449 +13 0.581128 0.333409 0.010177 0.007675 +12 0.410730 0.330135 0.010177 0.007449 +12 0.338325 0.329910 0.009596 0.007901 +12 0.604972 0.326298 0.010177 0.007901 +12 0.368566 0.323815 0.010177 0.006998 +12 0.196569 0.323589 0.009887 0.007901 +12 0.173161 0.317043 0.010177 0.007901 +12 0.520646 0.278217 0.010177 0.007449 +12 0.172434 0.275056 0.009887 0.006998 +13 0.547252 0.274944 0.009887 0.007675 +13 0.572114 0.272122 0.010177 0.007449 +12 0.481390 0.272122 0.010177 0.007901 +12 0.197296 0.272122 0.009596 0.007901 +12 0.222594 0.268849 0.010177 0.007223 +12 0.597703 0.268510 0.010177 0.006998 +12 0.249346 0.266253 0.010177 0.007449 +13 0.455656 0.265801 0.010468 0.007901 +12 0.638122 0.265576 0.010759 0.007901 +12 0.287438 0.262641 0.010759 0.007901 +13 0.665019 0.261964 0.009887 0.007449 +12 0.313318 0.259707 0.010177 0.007901 +12 0.695987 0.259255 0.010177 0.007901 +12 0.338616 0.256546 0.009596 0.007449 +12 0.429340 0.256095 0.009596 0.007901 +12 0.722012 0.255643 0.010468 0.007449 +12 0.365222 0.252709 0.009887 0.007449 +12 0.762867 0.252032 0.010177 0.007901 +12 0.404042 0.249774 0.010177 0.007449 +12 0.788747 0.248871 0.010759 0.007449 +12 0.813609 0.245711 0.009887 0.007901 +12 0.839634 0.242438 0.010759 0.008126 +12 0.724193 0.210045 0.010759 0.007449 +12 0.765193 0.210045 0.010177 0.007901 +12 0.367694 0.207336 0.010759 0.007901 +12 0.790782 0.206433 0.010177 0.007449 +12 0.601047 0.203950 0.010468 0.006998 +13 0.817389 0.203273 0.010468 0.006998 +12 0.407531 0.201016 0.010177 0.007449 +13 0.340651 0.201016 0.010177 0.007449 +13 0.697150 0.200564 0.010177 0.007901 +12 0.842541 0.199887 0.010177 0.007901 +13 0.576040 0.197630 0.009887 0.007449 +13 0.670980 0.194244 0.010759 0.007449 +12 0.433411 0.191535 0.010177 0.006998 +13 0.316662 0.191535 0.010468 0.006998 +13 0.549433 0.191084 0.010759 0.006998 +12 0.483425 0.191196 0.010177 0.007223 +12 0.250800 0.188375 0.010177 0.006998 +12 0.523117 0.188149 0.010468 0.007901 +12 0.645827 0.187810 0.010468 0.008126 +12 0.457837 0.185214 0.010177 0.007449 +12 0.290346 0.184989 0.010177 0.007449 +13 0.224193 0.178668 0.009887 0.007449 +12 0.173597 0.175508 0.009887 0.007449 +12 0.198750 0.171896 0.010177 0.007901 +12 0.585635 0.141196 0.009887 0.006998 +13 0.607008 0.138036 0.010759 0.007901 +13 0.630125 0.134650 0.010468 0.006998 +12 0.549724 0.134650 0.010177 0.006998 +12 0.650916 0.131490 0.010177 0.007449 +13 0.527624 0.128555 0.010177 0.006998 +12 0.684501 0.128104 0.009887 0.007449 +13 0.705438 0.125169 0.010468 0.007901 +12 0.306484 0.122686 0.009887 0.007449 +13 0.728264 0.121558 0.010759 0.007449 +12 0.406804 0.119752 0.010468 0.007449 +12 0.384269 0.119639 0.010177 0.007223 +12 0.199913 0.119752 0.010177 0.007449 +13 0.506252 0.119526 0.009887 0.007449 +12 0.449695 0.119413 0.010759 0.007675 +12 0.750654 0.118397 0.010177 0.007901 +12 0.428613 0.116140 0.009887 0.006998 +12 0.349811 0.116479 0.010468 0.007675 +12 0.222158 0.116366 0.010468 0.007449 +12 0.171562 0.116366 0.009887 0.007449 +12 0.783076 0.115011 0.010468 0.007901 +12 0.242949 0.113431 0.010177 0.007901 +12 0.485461 0.112980 0.010177 0.007901 +12 0.326985 0.112980 0.010759 0.008352 +13 0.803867 0.111964 0.010759 0.007675 +12 0.277552 0.110045 0.009596 0.007901 +13 0.826258 0.108691 0.010177 0.007449 +12 0.847630 0.105079 0.009887 0.007901 +4 0.141756 0.113205 0.009596 0.018284 +1 0.121402 0.125056 0.022972 0.045598 +4 0.142919 0.259481 0.009596 0.018284 +3 0.684937 0.259029 0.007270 0.020542 +4 0.188572 0.119413 0.009014 0.018962 +4 0.293399 0.122460 0.009305 0.019187 +4 0.325531 0.330135 0.009014 0.018736 +1 0.121692 0.348081 0.021809 0.045598 +1 0.122419 0.417381 0.022099 0.046050 +4 0.828584 0.400113 0.009014 0.018284 +4 0.354754 0.324153 0.008723 0.018962 +3 0.193370 0.405756 0.007560 0.020090 +1 0.120529 0.271670 0.022390 0.045824 +1 0.119802 0.194018 0.022099 0.045824 +4 0.568043 0.333747 0.009014 0.019187 +4 0.804158 0.647065 0.009596 0.018736 +5 0.397790 0.405530 0.008142 0.016027 +4 0.142919 0.336230 0.009014 0.018284 +4 0.144664 0.474153 0.009596 0.018736 +4 0.143501 0.405756 0.009596 0.018284 +1 0.123146 0.485440 0.021809 0.045372 +4 0.781477 0.715011 0.009596 0.018284 +3 0.294708 0.468284 0.007270 0.020090 +3 0.640448 0.333747 0.007270 0.019187 +4 0.305467 0.691761 0.009596 0.019187 +1 0.123146 0.554740 0.022390 0.045824 +3 0.396482 0.331264 0.006688 0.020090 +3 0.241058 0.474379 0.006979 0.019639 +3 0.834254 0.646614 0.007560 0.020090 +5 0.428031 0.428555 0.008723 0.015576 +4 0.590433 0.645260 0.009596 0.018736 +1 0.123873 0.623702 0.022681 0.046050 +1 0.123582 0.693679 0.022681 0.045147 +1 0.123728 0.842325 0.021809 0.045824 +4 0.145246 0.750226 0.009014 0.018284 +4 0.145391 0.830361 0.009305 0.018736 +4 0.145246 0.682054 0.009014 0.018284 +4 0.189154 0.467494 0.009014 0.018962 +1 0.123728 0.762415 0.022390 0.045824 +4 0.144373 0.543228 0.009596 0.018736 +3 0.620820 0.645260 0.007560 0.020090 +4 0.144955 0.612302 0.009014 0.018736 +4 0.545944 0.715011 0.008433 0.018284 +4 0.141902 0.181941 0.008723 0.018059 +4 0.160657 0.175959 0.008433 0.018284 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_3.jpg b/data_dataset/mosz/debug/debug_3.jpg new file mode 100644 index 0000000..d141eb6 Binary files /dev/null and b/data_dataset/mosz/debug/debug_3.jpg differ diff --git a/data_dataset/mosz/debug/debug_3.txt b/data_dataset/mosz/debug/debug_3.txt new file mode 100644 index 0000000..255ca6b --- /dev/null +++ b/data_dataset/mosz/debug/debug_3.txt @@ -0,0 +1,535 @@ +10 0.844412 0.880909 0.013529 0.006364 +7 0.679706 0.882614 0.013529 0.016136 +7 0.626765 0.882386 0.013529 0.016591 +7 0.587059 0.883523 0.012941 0.017955 +7 0.538824 0.880114 0.012941 0.021136 +7 0.491765 0.880341 0.012941 0.019773 +6 0.697353 0.881932 0.011176 0.024773 +6 0.818824 0.881705 0.010588 0.024318 +6 0.754706 0.881023 0.010588 0.024773 +8 0.555000 0.809886 0.015882 0.021591 +7 0.203824 0.806023 0.012353 0.015682 +6 0.229706 0.804432 0.011176 0.023409 +9 0.837059 0.790114 0.010588 0.035682 +7 0.623529 0.730795 0.012941 0.015227 +6 0.642059 0.728977 0.011176 0.024318 +9 0.724118 0.572159 0.015294 0.046136 +9 0.763235 0.439205 0.017059 0.054773 +9 0.315882 0.424659 0.005882 0.028409 +9 0.401471 0.424432 0.007647 0.034318 +9 0.231176 0.425341 0.007059 0.032500 +9 0.752353 0.424205 0.007059 0.034773 +9 0.666765 0.423977 0.006471 0.035227 +9 0.486765 0.423977 0.007647 0.035227 +9 0.581765 0.424659 0.007059 0.034773 +9 0.232059 0.351250 0.006471 0.029773 +9 0.449412 0.351250 0.007059 0.029773 +9 0.341471 0.350341 0.007647 0.030682 +9 0.809412 0.349886 0.007059 0.033409 +9 0.559412 0.349886 0.007059 0.033409 +9 0.480882 0.273523 0.006471 0.033409 +9 0.306471 0.273295 0.007059 0.032955 +9 0.837941 0.271705 0.007647 0.036136 +9 0.393824 0.271705 0.008824 0.036136 +10 0.627353 0.230909 0.012353 0.005455 +9 0.407353 0.210114 0.008824 0.038409 +9 0.307059 0.197159 0.008235 0.033409 +9 0.393529 0.196477 0.007059 0.034773 +9 0.663824 0.195795 0.007647 0.034318 +9 0.220294 0.195341 0.008824 0.036136 +9 0.750882 0.195568 0.007647 0.037500 +8 0.370882 0.116705 0.014706 0.028864 +17 0.792794 0.912045 0.010882 0.007273 +17 0.792794 0.898977 0.010882 0.007500 +11 0.792794 0.882841 0.010882 0.007045 +11 0.793088 0.866250 0.011471 0.006591 +17 0.728824 0.898977 0.010588 0.007500 +11 0.728676 0.885909 0.010882 0.006818 +11 0.729265 0.869432 0.009706 0.007500 +12 0.602206 0.889205 0.010882 0.007500 +17 0.611912 0.885795 0.010882 0.007500 +12 0.655882 0.882386 0.011176 0.007045 +12 0.655882 0.889432 0.011176 0.007045 +12 0.515441 0.882386 0.010294 0.007045 +12 0.515441 0.889432 0.010294 0.007045 +11 0.562794 0.882045 0.010882 0.007273 +12 0.562794 0.889318 0.010882 0.007273 +13 0.358382 0.847500 0.010294 0.008182 +13 0.344706 0.847386 0.010588 0.007955 +18 0.319559 0.843977 0.010294 0.007500 +18 0.269559 0.843977 0.010294 0.007500 +18 0.305147 0.843864 0.010882 0.008182 +18 0.284559 0.843636 0.010882 0.007727 +18 0.249412 0.843636 0.010588 0.007727 +18 0.213382 0.843523 0.010882 0.007500 +18 0.199559 0.843636 0.010294 0.007727 +18 0.177500 0.843636 0.010882 0.007727 +12 0.234265 0.843295 0.010294 0.007955 +18 0.429265 0.840795 0.010882 0.007500 +12 0.414853 0.841023 0.010294 0.007955 +18 0.393676 0.837727 0.010294 0.007727 +13 0.393382 0.803295 0.010882 0.007045 +18 0.379412 0.837727 0.010588 0.007727 +18 0.473382 0.831136 0.010882 0.007273 +13 0.481618 0.790682 0.010882 0.007273 +18 0.450441 0.830795 0.010882 0.007500 +13 0.262500 0.821932 0.010294 0.007045 +13 0.287206 0.818636 0.010294 0.007727 +13 0.312500 0.815682 0.010294 0.007273 +13 0.332206 0.812386 0.010882 0.007045 +13 0.621471 0.809773 0.010000 0.007273 +13 0.601765 0.809886 0.011176 0.007500 +13 0.351471 0.809545 0.010588 0.006818 +13 0.576029 0.806705 0.010294 0.007500 +12 0.532500 0.806705 0.010294 0.007500 +12 0.532500 0.784205 0.010294 0.007955 +13 0.370735 0.806250 0.010294 0.007500 +12 0.177941 0.806250 0.010588 0.007500 +12 0.177647 0.783977 0.011176 0.007500 +13 0.664706 0.800455 0.010588 0.007727 +13 0.647647 0.800455 0.010000 0.007727 +13 0.412353 0.800000 0.010588 0.007727 +13 0.437206 0.797045 0.010294 0.007273 +13 0.462353 0.793523 0.010000 0.007500 +13 0.708676 0.790795 0.010882 0.007500 +13 0.691029 0.790795 0.010882 0.007500 +13 0.751618 0.787500 0.010882 0.008182 +13 0.734559 0.787386 0.010882 0.007955 +13 0.501029 0.787159 0.010882 0.007500 +13 0.795441 0.784432 0.010294 0.007500 +13 0.777941 0.784545 0.010588 0.007727 +13 0.822206 0.778182 0.010882 0.007727 +13 0.838971 0.777955 0.010882 0.008182 +18 0.865588 0.768523 0.011176 0.007500 +12 0.597941 0.759659 0.010588 0.007955 +13 0.571618 0.756250 0.010882 0.007500 +13 0.556471 0.749886 0.010000 0.007500 +13 0.667500 0.746705 0.010882 0.007500 +13 0.541029 0.746705 0.010882 0.007500 +13 0.689412 0.743750 0.010000 0.007045 +13 0.710735 0.740227 0.010294 0.007273 +13 0.526471 0.740114 0.010000 0.007045 +13 0.726324 0.737159 0.010882 0.007500 +13 0.741029 0.734205 0.010882 0.007045 +13 0.505000 0.733750 0.010588 0.007045 +13 0.757059 0.730909 0.011176 0.007727 +13 0.775735 0.727727 0.010882 0.007727 +13 0.490147 0.727614 0.010294 0.007500 +13 0.791176 0.724318 0.010000 0.007273 +13 0.476029 0.723977 0.010294 0.007500 +13 0.404559 0.723977 0.010882 0.007500 +13 0.191029 0.723977 0.009706 0.007500 +13 0.812500 0.721477 0.010294 0.007045 +13 0.461176 0.721023 0.010588 0.007045 +13 0.425000 0.721023 0.010000 0.007045 +13 0.213088 0.720909 0.010294 0.006818 +13 0.834559 0.718068 0.010882 0.007500 +13 0.446029 0.717614 0.010294 0.007500 +13 0.234559 0.717159 0.009706 0.007500 +13 0.850000 0.714773 0.010000 0.007273 +13 0.249853 0.714205 0.010882 0.007045 +13 0.865882 0.711477 0.011176 0.007045 +13 0.265735 0.710682 0.010294 0.007273 +13 0.178088 0.708068 0.010882 0.007500 +13 0.280735 0.707841 0.010294 0.007955 +13 0.317794 0.704545 0.010294 0.007727 +13 0.296471 0.704545 0.010000 0.007727 +13 0.332794 0.701591 0.010882 0.007273 +13 0.389559 0.701477 0.010294 0.007955 +13 0.375147 0.698636 0.010882 0.007727 +13 0.353382 0.694886 0.009706 0.007500 +13 0.861912 0.647955 0.010294 0.007273 +13 0.823235 0.648068 0.011176 0.007500 +13 0.630882 0.647955 0.010588 0.007273 +13 0.592206 0.647614 0.010882 0.007500 +13 0.842500 0.644773 0.010294 0.007273 +13 0.707500 0.644773 0.010882 0.007273 +13 0.746471 0.644545 0.010588 0.007727 +13 0.612206 0.644432 0.010882 0.007500 +13 0.515882 0.644432 0.010588 0.007500 +13 0.477353 0.644432 0.011176 0.007500 +13 0.726912 0.641591 0.010882 0.007273 +13 0.650147 0.641591 0.010882 0.007273 +13 0.496176 0.641591 0.010588 0.007273 +13 0.457941 0.641591 0.010588 0.007273 +13 0.688971 0.641364 0.010294 0.007727 +13 0.419118 0.641250 0.010588 0.007500 +13 0.668971 0.638068 0.010294 0.007500 +13 0.438676 0.638068 0.010882 0.007500 +13 0.388971 0.637955 0.010294 0.007273 +13 0.351471 0.638068 0.010588 0.007500 +13 0.765441 0.635341 0.010294 0.007500 +13 0.804559 0.635114 0.010882 0.007955 +13 0.573235 0.635114 0.011176 0.007955 +13 0.534853 0.635114 0.010294 0.007955 +13 0.331471 0.635000 0.010588 0.007727 +13 0.369853 0.634659 0.010882 0.007955 +13 0.293088 0.634659 0.010294 0.007955 +13 0.273676 0.634659 0.010294 0.007955 +13 0.216324 0.634659 0.010882 0.007955 +13 0.178529 0.634659 0.010588 0.007955 +13 0.785000 0.631932 0.010588 0.007045 +13 0.554265 0.631477 0.010882 0.007045 +13 0.312500 0.631477 0.010294 0.007045 +13 0.254706 0.631477 0.010588 0.007045 +13 0.197500 0.631250 0.010882 0.007500 +13 0.236176 0.628523 0.010588 0.007500 +13 0.426029 0.589886 0.010294 0.007500 +13 0.450735 0.586932 0.010294 0.007045 +13 0.476324 0.583523 0.010882 0.007500 +12 0.659853 0.580455 0.010294 0.006818 +13 0.494559 0.580227 0.010882 0.007273 +13 0.387500 0.580227 0.010882 0.007273 +13 0.349853 0.580227 0.010882 0.007273 +13 0.627794 0.577386 0.010294 0.007045 +13 0.590000 0.577386 0.010588 0.007045 +13 0.513971 0.577386 0.010882 0.007045 +13 0.369265 0.577045 0.010882 0.007273 +13 0.235735 0.576932 0.010882 0.007045 +13 0.273971 0.576705 0.010882 0.007500 +13 0.609118 0.574091 0.010588 0.007727 +13 0.571324 0.574205 0.010294 0.007955 +13 0.532500 0.573977 0.010294 0.007500 +13 0.406618 0.574091 0.010294 0.007727 +13 0.255000 0.573977 0.011176 0.007500 +13 0.178676 0.573977 0.010882 0.007500 +13 0.216765 0.573864 0.010588 0.008182 +13 0.197794 0.570341 0.010294 0.007500 +13 0.552206 0.568068 0.010882 0.007500 +13 0.330735 0.567955 0.010294 0.007273 +13 0.292794 0.567386 0.010882 0.007045 +13 0.826029 0.565000 0.010294 0.007727 +13 0.864559 0.564545 0.010882 0.007727 +13 0.311912 0.564091 0.010294 0.007727 +13 0.845441 0.561705 0.010294 0.007500 +13 0.768382 0.561705 0.010294 0.007500 +13 0.806912 0.561477 0.010882 0.007955 +18 0.743676 0.557955 0.010294 0.007273 +13 0.744265 0.491818 0.010294 0.007727 +18 0.704118 0.558068 0.010588 0.007500 +18 0.685147 0.557955 0.010882 0.007273 +13 0.682500 0.494886 0.010294 0.007500 +18 0.723971 0.555000 0.010882 0.007727 +13 0.728971 0.497841 0.010294 0.007955 +13 0.208676 0.542273 0.010882 0.007727 +13 0.193971 0.520114 0.010882 0.007045 +13 0.506324 0.513977 0.010882 0.007500 +13 0.476618 0.514091 0.011471 0.007727 +13 0.349118 0.513636 0.010588 0.007727 +13 0.319706 0.513636 0.010588 0.007727 +13 0.491324 0.510682 0.010294 0.007273 +13 0.334265 0.510341 0.010294 0.007500 +13 0.431324 0.507727 0.010294 0.006818 +13 0.461912 0.507500 0.010294 0.007273 +13 0.298382 0.507045 0.010294 0.007273 +13 0.268676 0.507159 0.010882 0.007500 +13 0.446765 0.504091 0.010588 0.007727 +13 0.417059 0.504205 0.010588 0.007955 +13 0.387500 0.504205 0.010882 0.007955 +13 0.283088 0.504091 0.010294 0.007727 +13 0.253971 0.504091 0.010294 0.007727 +13 0.223676 0.503864 0.010294 0.007273 +13 0.866618 0.501477 0.010294 0.007045 +13 0.835735 0.501250 0.010882 0.007500 +13 0.402353 0.501136 0.010000 0.007273 +13 0.238676 0.500795 0.010882 0.007500 +13 0.851176 0.498409 0.010000 0.007273 +13 0.820735 0.498409 0.010294 0.007273 +13 0.789706 0.498409 0.010588 0.007273 +18 0.787647 0.558068 0.011176 0.007500 +13 0.698088 0.498409 0.010882 0.007273 +12 0.531912 0.498068 0.010294 0.007500 +12 0.364265 0.497955 0.010294 0.007273 +13 0.774706 0.497841 0.010588 0.007955 +13 0.178676 0.497727 0.010882 0.007727 +13 0.759559 0.494886 0.010294 0.007500 +13 0.713088 0.494886 0.010294 0.007500 +13 0.652353 0.494773 0.010000 0.007273 +13 0.805147 0.494432 0.010882 0.007500 +13 0.606618 0.491818 0.010294 0.007727 +13 0.667500 0.491364 0.010882 0.007727 +13 0.637500 0.491591 0.010882 0.008182 +18 0.621912 0.488295 0.010294 0.007045 +18 0.585441 0.488295 0.010294 0.007045 +18 0.554559 0.488409 0.010882 0.007273 +18 0.570147 0.485227 0.010294 0.007273 +12 0.839853 0.447841 0.010882 0.007045 +12 0.825441 0.447955 0.010294 0.007273 +12 0.754559 0.447614 0.010882 0.007500 +12 0.740000 0.447500 0.011176 0.007273 +13 0.668235 0.447500 0.011176 0.007273 +13 0.654265 0.447500 0.010294 0.007273 +12 0.583971 0.447500 0.010882 0.007273 +13 0.569853 0.447614 0.010882 0.007500 +13 0.489265 0.447500 0.010882 0.007273 +18 0.475000 0.447614 0.010588 0.007500 +12 0.404265 0.447614 0.010294 0.007500 +18 0.389118 0.447614 0.010588 0.007500 +13 0.304706 0.447386 0.010000 0.007045 +13 0.318971 0.447159 0.010294 0.007500 +13 0.233676 0.447045 0.010294 0.007273 +13 0.219265 0.447045 0.010882 0.007273 +13 0.853971 0.425227 0.010882 0.007273 +13 0.812059 0.425000 0.011176 0.007727 +13 0.768971 0.424886 0.011471 0.007500 +13 0.725147 0.424886 0.010882 0.007500 +13 0.683382 0.424886 0.010882 0.007500 +13 0.640735 0.424773 0.010294 0.007273 +13 0.597794 0.424886 0.010294 0.007500 +13 0.556324 0.424886 0.010882 0.007500 +13 0.503088 0.424886 0.010294 0.007500 +13 0.460735 0.424886 0.010294 0.007500 +13 0.418088 0.424773 0.010882 0.007273 +13 0.375147 0.424773 0.010882 0.007273 +13 0.332941 0.424659 0.011176 0.007045 +12 0.290441 0.424659 0.010882 0.007045 +13 0.247794 0.424773 0.010294 0.007273 +13 0.204853 0.424659 0.010294 0.007045 +12 0.867941 0.402500 0.010588 0.008182 +12 0.797500 0.402386 0.010882 0.007955 +12 0.782794 0.402386 0.010882 0.007955 +12 0.712353 0.402386 0.010588 0.007955 +13 0.697500 0.402386 0.010882 0.007955 +13 0.626912 0.402386 0.010882 0.007955 +12 0.612500 0.402386 0.010294 0.007955 +13 0.541618 0.402500 0.010882 0.008182 +13 0.517500 0.402386 0.010882 0.007955 +12 0.446912 0.402273 0.010882 0.007727 +12 0.432500 0.402386 0.010294 0.007955 +12 0.361618 0.402273 0.009706 0.007727 +13 0.347059 0.402386 0.010000 0.007955 +12 0.276176 0.402159 0.010000 0.007500 +12 0.261912 0.402386 0.010294 0.007955 +12 0.191324 0.402273 0.010294 0.007727 +12 0.811324 0.370909 0.011471 0.007727 +13 0.793088 0.370909 0.011471 0.007727 +12 0.701618 0.370795 0.010882 0.007500 +12 0.683676 0.370795 0.010294 0.007500 +12 0.560441 0.370795 0.010882 0.007500 +13 0.542206 0.370909 0.010882 0.007727 +12 0.451324 0.370682 0.010294 0.007273 +12 0.433088 0.370682 0.010294 0.007273 +13 0.342500 0.370682 0.010294 0.007273 +12 0.324265 0.370682 0.010294 0.007273 +12 0.233676 0.370682 0.010294 0.007273 +12 0.215000 0.370682 0.010588 0.007273 +13 0.469559 0.348750 0.010294 0.007045 +13 0.415000 0.348864 0.010588 0.007273 +13 0.360588 0.348636 0.010000 0.006818 +13 0.829265 0.348523 0.010882 0.007500 +13 0.775147 0.348523 0.010882 0.007500 +13 0.720441 0.348523 0.010882 0.007500 +13 0.665882 0.348523 0.010588 0.007500 +13 0.578235 0.348523 0.011176 0.007500 +13 0.524118 0.348523 0.010588 0.007500 +13 0.306029 0.348523 0.010294 0.007500 +13 0.251912 0.348409 0.010294 0.007273 +13 0.197059 0.348409 0.010588 0.007273 +13 0.756912 0.326591 0.010882 0.007273 +12 0.738382 0.326477 0.010294 0.007045 +12 0.596471 0.326705 0.010588 0.007500 +13 0.506176 0.326705 0.010588 0.007500 +12 0.487206 0.326591 0.010294 0.007273 +12 0.396618 0.326591 0.010294 0.007273 +12 0.378382 0.326477 0.010294 0.007045 +12 0.269706 0.326477 0.010000 0.007045 +12 0.846912 0.326364 0.010882 0.007727 +12 0.647794 0.326250 0.010294 0.007500 +12 0.287794 0.326250 0.010294 0.007500 +12 0.178676 0.326250 0.010882 0.007500 +13 0.753382 0.295114 0.010882 0.007045 +13 0.651324 0.295227 0.010294 0.007273 +13 0.578676 0.295227 0.010882 0.007273 +13 0.482794 0.295227 0.010882 0.007273 +12 0.468382 0.295341 0.010294 0.007500 +13 0.395588 0.295227 0.010588 0.007273 +13 0.381029 0.295114 0.010882 0.007045 +13 0.308824 0.295114 0.011176 0.007045 +18 0.293676 0.295114 0.010294 0.007045 +13 0.222059 0.295114 0.010000 0.007045 +13 0.207500 0.295114 0.010882 0.007045 +12 0.840441 0.295000 0.010882 0.007727 +18 0.825441 0.294886 0.010294 0.007500 +18 0.738382 0.295000 0.010294 0.007727 +13 0.666176 0.294886 0.010588 0.007500 +18 0.564265 0.295000 0.010294 0.007727 +13 0.767794 0.272614 0.010294 0.007500 +13 0.724265 0.272614 0.010294 0.007500 +12 0.680441 0.272500 0.010882 0.007273 +13 0.637059 0.272614 0.010588 0.007500 +13 0.593676 0.272614 0.010294 0.007500 +13 0.550147 0.272614 0.010294 0.007500 +13 0.497059 0.272614 0.010588 0.007500 +12 0.453676 0.272727 0.010882 0.007727 +13 0.410147 0.272727 0.011471 0.007727 +13 0.366324 0.272727 0.010882 0.007727 +13 0.323382 0.272614 0.010882 0.007500 +13 0.279559 0.272614 0.011471 0.007500 +13 0.236324 0.272614 0.010882 0.007500 +12 0.192794 0.272727 0.010882 0.007727 +13 0.854559 0.272273 0.010882 0.007727 +12 0.811324 0.272273 0.011471 0.007727 +12 0.797206 0.250455 0.010294 0.007727 +12 0.511765 0.250341 0.010588 0.007500 +12 0.439559 0.250455 0.010294 0.007727 +13 0.424265 0.250341 0.010294 0.007500 +12 0.351912 0.250455 0.010294 0.007727 +12 0.337500 0.250341 0.010294 0.007500 +12 0.265441 0.250341 0.010294 0.007500 +12 0.782059 0.250114 0.010588 0.007955 +12 0.709853 0.250000 0.010882 0.007727 +12 0.694853 0.249886 0.010294 0.007500 +12 0.622941 0.250000 0.010000 0.007727 +13 0.608088 0.250227 0.010882 0.008182 +12 0.535735 0.250114 0.010882 0.007955 +12 0.250735 0.250000 0.010294 0.007727 +12 0.178676 0.250114 0.010882 0.007955 +12 0.869118 0.249659 0.010588 0.007955 +13 0.482500 0.218864 0.011471 0.007273 +11 0.468088 0.218977 0.010882 0.007500 +13 0.395441 0.218977 0.010294 0.007500 +18 0.381029 0.218977 0.010882 0.007500 +13 0.308824 0.218864 0.011176 0.007273 +12 0.293971 0.218977 0.010882 0.007500 +13 0.221912 0.218864 0.010294 0.007273 +18 0.207500 0.218977 0.010882 0.007500 +13 0.666324 0.218523 0.010882 0.007500 +13 0.651324 0.218636 0.010294 0.007727 +13 0.578971 0.218636 0.011471 0.007727 +13 0.565000 0.218636 0.010588 0.007727 +13 0.840441 0.218182 0.010882 0.007727 +18 0.825735 0.218068 0.010882 0.007500 +13 0.752794 0.218295 0.010882 0.007955 +18 0.738676 0.218295 0.010882 0.007955 +13 0.453382 0.196477 0.010882 0.007045 +13 0.409559 0.196477 0.010294 0.007045 +13 0.366029 0.196477 0.010294 0.007045 +12 0.322647 0.196477 0.010588 0.007045 +12 0.279265 0.196477 0.010882 0.007045 +13 0.637206 0.196136 0.011471 0.007273 +13 0.593824 0.196250 0.010588 0.007500 +13 0.550441 0.196250 0.010882 0.007500 +13 0.497206 0.196250 0.010294 0.007500 +13 0.236324 0.196250 0.010882 0.007500 +13 0.192794 0.196250 0.010882 0.007500 +13 0.854853 0.195795 0.010294 0.007500 +13 0.811324 0.195795 0.011471 0.007500 +13 0.767500 0.195795 0.010882 0.007500 +13 0.724559 0.195795 0.010882 0.007500 +13 0.680735 0.195909 0.011471 0.007727 +13 0.608235 0.174432 0.011176 0.007500 +13 0.535882 0.174318 0.011176 0.007273 +13 0.869265 0.173636 0.010882 0.006818 +12 0.623088 0.173864 0.010294 0.007273 +13 0.512206 0.173977 0.010882 0.007500 +12 0.439559 0.174091 0.010294 0.007727 +13 0.424265 0.173977 0.010294 0.007500 +12 0.351912 0.173864 0.010294 0.007273 +12 0.337794 0.173977 0.010294 0.007500 +12 0.265441 0.173864 0.010294 0.007273 +12 0.250735 0.173977 0.010294 0.007500 +12 0.178529 0.174091 0.010588 0.007727 +13 0.797206 0.173523 0.010294 0.007500 +13 0.709853 0.173523 0.010882 0.007500 +12 0.695000 0.173636 0.010588 0.007727 +13 0.782206 0.173295 0.010882 0.007955 +13 0.386324 0.145909 0.010882 0.007727 +13 0.402059 0.142955 0.010588 0.007273 +13 0.461618 0.136705 0.010882 0.007500 +13 0.416176 0.136136 0.011765 0.007273 +11 0.318824 0.136023 0.010000 0.007045 +13 0.446324 0.133409 0.010882 0.007273 +17 0.291029 0.133409 0.012059 0.007273 +13 0.477353 0.130227 0.010588 0.007273 +13 0.431912 0.130000 0.010294 0.007727 +12 0.260147 0.129886 0.010294 0.007500 +13 0.534265 0.126705 0.010294 0.007500 +13 0.513088 0.123750 0.010294 0.007045 +13 0.595147 0.120341 0.010882 0.007500 +13 0.550000 0.120341 0.010000 0.007500 +13 0.492206 0.120341 0.010882 0.007500 +12 0.242794 0.120341 0.010882 0.007500 +13 0.579853 0.117159 0.010882 0.007500 +12 0.224853 0.113977 0.010294 0.006591 +13 0.667353 0.113636 0.010588 0.006818 +13 0.609853 0.113750 0.010882 0.007045 +13 0.564853 0.113864 0.010294 0.007273 +12 0.207353 0.110795 0.011176 0.007500 +13 0.651912 0.110568 0.010294 0.007955 +17 0.179412 0.110568 0.011765 0.007955 +13 0.636912 0.107614 0.010882 0.007500 +13 0.733529 0.103864 0.011176 0.007273 +13 0.687647 0.103977 0.010000 0.007500 +13 0.718382 0.100682 0.010294 0.007273 +13 0.794265 0.097386 0.010294 0.007955 +13 0.748971 0.097386 0.010294 0.007955 +13 0.702206 0.097386 0.010882 0.007955 +13 0.779559 0.093977 0.010294 0.007500 +13 0.854265 0.090795 0.010294 0.007500 +13 0.809559 0.090682 0.010294 0.007273 +13 0.764118 0.090795 0.011176 0.007500 +13 0.839265 0.087500 0.010882 0.008182 +13 0.869853 0.084091 0.010882 0.007727 +13 0.824118 0.084205 0.010588 0.007955 +4 0.676912 0.103750 0.008529 0.018864 +1 0.118676 0.202386 0.022647 0.046136 +1 0.118382 0.278068 0.023235 0.046591 +4 0.308676 0.513750 0.009706 0.018864 +1 0.118676 0.353977 0.022647 0.045682 +5 0.552500 0.879205 0.009118 0.016136 +4 0.374559 0.146023 0.009706 0.017955 +4 0.516029 0.740114 0.009118 0.018864 +4 0.333971 0.847386 0.009706 0.018864 +4 0.306912 0.704432 0.009706 0.018409 +3 0.504853 0.882386 0.007941 0.020682 +4 0.718088 0.869659 0.009706 0.018864 +1 0.118382 0.525795 0.023235 0.045682 +3 0.595735 0.492159 0.007353 0.020227 +1 0.117794 0.806023 0.023235 0.046136 +1 0.118088 0.730114 0.022647 0.046136 +1 0.118088 0.662386 0.022647 0.046136 +1 0.118676 0.430341 0.022647 0.046591 +1 0.118676 0.595341 0.022647 0.045682 +1 0.117794 0.881932 0.023235 0.046136 +3 0.756618 0.561250 0.007941 0.020227 +1 0.119265 0.116250 0.022647 0.046591 +3 0.276176 0.818636 0.006471 0.019091 +4 0.301471 0.815909 0.008824 0.018182 +3 0.439706 0.586818 0.006471 0.019091 +4 0.464412 0.583182 0.008824 0.018182 +3 0.426471 0.796364 0.007059 0.019091 +4 0.450882 0.793636 0.008824 0.018182 +3 0.802059 0.721364 0.006471 0.019091 +4 0.823824 0.717727 0.008824 0.018182 +3 0.678529 0.743409 0.006471 0.019545 +4 0.700294 0.740000 0.007647 0.018182 +3 0.202647 0.720682 0.006471 0.019545 +4 0.223824 0.717273 0.008824 0.018182 +5 0.414412 0.717955 0.007647 0.015000 +3 0.435588 0.717727 0.006471 0.019091 +5 0.140588 0.523409 0.008235 0.015000 +5 0.147941 0.513409 0.007647 0.015000 +5 0.139118 0.879091 0.007647 0.015455 +5 0.146765 0.868636 0.007647 0.016364 +5 0.140294 0.351591 0.007647 0.015000 +5 0.147941 0.341591 0.007647 0.015000 +4 0.523529 0.126591 0.008235 0.018636 +3 0.502647 0.123636 0.006471 0.019091 +5 0.140588 0.199545 0.008235 0.015455 +5 0.148529 0.189318 0.007647 0.015000 +5 0.363824 0.695227 0.007647 0.015000 +3 0.342647 0.694318 0.006471 0.017727 +5 0.140588 0.427955 0.008235 0.015000 +5 0.147941 0.418182 0.007647 0.015455 +5 0.140294 0.275682 0.007647 0.015000 +5 0.148235 0.265909 0.008235 0.015455 +5 0.140294 0.592955 0.007647 0.015000 +5 0.148235 0.583182 0.008235 0.015455 +5 0.140294 0.659773 0.007647 0.015000 +5 0.147353 0.650682 0.007647 0.015000 +5 0.139706 0.802955 0.007647 0.015000 +5 0.147059 0.793636 0.008235 0.014545 +5 0.140588 0.113636 0.008235 0.015455 +5 0.148529 0.104091 0.007647 0.013636 +5 0.139706 0.727273 0.007647 0.015455 +5 0.147647 0.717727 0.008235 0.015455 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_4.jpg b/data_dataset/mosz/debug/debug_4.jpg new file mode 100644 index 0000000..2efb15f Binary files /dev/null and b/data_dataset/mosz/debug/debug_4.jpg differ diff --git a/data_dataset/mosz/debug/debug_4.txt b/data_dataset/mosz/debug/debug_4.txt new file mode 100644 index 0000000..e02b641 --- /dev/null +++ b/data_dataset/mosz/debug/debug_4.txt @@ -0,0 +1,487 @@ +6 0.253298 0.802972 0.010554 0.023367 +6 0.221636 0.803199 0.010554 0.023820 +6 0.274113 0.802291 0.011140 0.022913 +7 0.642627 0.675250 0.012899 0.016107 +7 0.553210 0.675363 0.012313 0.016788 +6 0.521988 0.674342 0.011434 0.023820 +6 0.730871 0.673662 0.011140 0.023367 +6 0.708883 0.673888 0.010554 0.022913 +6 0.500733 0.674115 0.010554 0.023367 +6 0.659191 0.673888 0.011434 0.023367 +6 0.680446 0.673775 0.011140 0.024047 +10 0.598651 0.620009 0.007036 0.002722 +10 0.239812 0.615472 0.010554 0.002269 +8 0.193052 0.600272 0.015538 0.034936 +9 0.310320 0.594374 0.015538 0.036298 +9 0.249927 0.600159 0.015538 0.034256 +8 0.724714 0.537999 0.014658 0.026996 +9 0.839930 0.542083 0.015245 0.026543 +8 0.782175 0.542650 0.014658 0.029038 +7 0.608619 0.476974 0.012899 0.015200 +7 0.197889 0.470395 0.012313 0.027450 +6 0.680152 0.475726 0.010554 0.023593 +6 0.624743 0.475386 0.009968 0.023820 +6 0.657285 0.474932 0.010554 0.023820 +7 0.508062 0.399841 0.012899 0.015653 +10 0.396951 0.387931 0.007622 0.002269 +7 0.657578 0.338362 0.012899 0.015653 +7 0.638816 0.339043 0.012899 0.016107 +6 0.573146 0.209505 0.010554 0.023820 +6 0.549692 0.209279 0.010554 0.023820 +6 0.514219 0.209279 0.011140 0.023820 +12 0.267224 0.899614 0.010261 0.007486 +13 0.290384 0.893149 0.009675 0.007260 +12 0.333920 0.890313 0.009968 0.007486 +11 0.653034 0.888725 0.010261 0.007033 +12 0.307095 0.886683 0.010261 0.007940 +13 0.627822 0.885776 0.010261 0.007486 +13 0.761947 0.882600 0.009968 0.007033 +13 0.600704 0.882600 0.009968 0.007486 +13 0.347992 0.877155 0.009968 0.007486 +13 0.613896 0.876021 0.010554 0.007033 +13 0.587071 0.876248 0.009675 0.007486 +13 0.774993 0.875794 0.010261 0.007033 +13 0.748021 0.875907 0.010261 0.007260 +11 0.205658 0.874319 0.010261 0.007260 +13 0.574025 0.873072 0.010554 0.007486 +12 0.724274 0.872845 0.010847 0.007486 +12 0.701114 0.872845 0.010261 0.007486 +11 0.242304 0.870803 0.009675 0.007033 +12 0.684697 0.869669 0.010261 0.007486 +13 0.560246 0.869669 0.009968 0.007486 +17 0.173410 0.868194 0.011434 0.007713 +13 0.361184 0.867514 0.010554 0.007260 +13 0.514219 0.866833 0.010554 0.007260 +13 0.788625 0.866266 0.010554 0.007033 +13 0.540751 0.863884 0.010261 0.006806 +13 0.374817 0.861162 0.010261 0.007260 +12 0.822193 0.860368 0.010261 0.007486 +12 0.805482 0.860368 0.010847 0.007486 +12 0.528144 0.860254 0.010847 0.007713 +13 0.494137 0.857418 0.010847 0.007486 +12 0.861917 0.857191 0.010554 0.007486 +12 0.839343 0.857191 0.010554 0.007486 +12 0.425535 0.854696 0.010847 0.007033 +12 0.408238 0.854809 0.010261 0.007260 +12 0.391234 0.854923 0.010261 0.007486 +13 0.466872 0.854583 0.010261 0.007260 +12 0.442099 0.854469 0.011140 0.007486 +13 0.481091 0.851180 0.010554 0.007713 +12 0.455145 0.828267 0.010261 0.007260 +13 0.314571 0.825431 0.010554 0.007033 +12 0.293023 0.825658 0.009675 0.007486 +12 0.473761 0.825204 0.009968 0.007486 +12 0.497948 0.821574 0.010261 0.007486 +12 0.515831 0.818398 0.010847 0.007486 +12 0.431545 0.812160 0.009968 0.007260 +12 0.533714 0.811819 0.010261 0.007033 +11 0.653474 0.811593 0.009968 0.007033 +13 0.763119 0.811593 0.010554 0.007486 +12 0.679713 0.811593 0.010261 0.007486 +12 0.403401 0.809437 0.009968 0.007260 +12 0.721636 0.808643 0.009675 0.007033 +12 0.625476 0.808643 0.010847 0.007486 +12 0.697889 0.808530 0.010261 0.007713 +11 0.200674 0.807055 0.010261 0.007033 +12 0.385371 0.806375 0.010261 0.007486 +12 0.607007 0.805581 0.010261 0.006806 +13 0.749927 0.805354 0.009968 0.006806 +11 0.171944 0.803879 0.010261 0.007033 +11 0.340223 0.803539 0.010261 0.007260 +12 0.367781 0.803199 0.010261 0.007486 +12 0.589710 0.802518 0.009675 0.007033 +11 0.562592 0.802632 0.010554 0.007260 +13 0.777191 0.795712 0.010554 0.007486 +13 0.791557 0.792990 0.009968 0.006579 +12 0.825711 0.789927 0.010261 0.007260 +12 0.808121 0.789927 0.010261 0.007260 +12 0.860891 0.789701 0.010261 0.007713 +12 0.843301 0.789701 0.010261 0.007713 +13 0.456758 0.758394 0.010554 0.007260 +12 0.434477 0.758280 0.010554 0.007486 +17 0.172237 0.756466 0.011434 0.007486 +11 0.554383 0.754877 0.009968 0.007486 +11 0.681179 0.754764 0.010261 0.007713 +11 0.202726 0.752609 0.010261 0.007033 +12 0.295368 0.752495 0.010261 0.007260 +11 0.410144 0.752042 0.009968 0.006806 +13 0.634125 0.751475 0.009968 0.006579 +12 0.580035 0.751701 0.010847 0.007033 +13 0.785840 0.751475 0.009675 0.007033 +12 0.707857 0.751475 0.010847 0.007033 +13 0.506889 0.751588 0.009968 0.007260 +12 0.235561 0.749773 0.010261 0.007260 +12 0.314717 0.749433 0.010261 0.007486 +13 0.281442 0.749546 0.010554 0.007713 +13 0.254764 0.749546 0.009968 0.007713 +11 0.386250 0.748866 0.010261 0.007713 +12 0.799179 0.748299 0.010554 0.007033 +13 0.772208 0.748412 0.010554 0.007260 +12 0.739226 0.748412 0.010261 0.007260 +13 0.522574 0.748525 0.010847 0.007486 +13 0.491205 0.748639 0.010261 0.007713 +13 0.650396 0.748185 0.010847 0.007260 +13 0.619613 0.748299 0.010261 0.007486 +13 0.268396 0.746370 0.010261 0.006806 +12 0.353415 0.746257 0.010261 0.007033 +13 0.758868 0.745236 0.010847 0.007260 +12 0.334066 0.743194 0.010261 0.007260 +12 0.816916 0.742173 0.010847 0.007033 +13 0.537819 0.741946 0.009675 0.007033 +13 0.665934 0.741720 0.010261 0.007033 +12 0.857666 0.738997 0.010261 0.007033 +12 0.833920 0.735708 0.010847 0.007713 +12 0.448402 0.704401 0.010261 0.007260 +12 0.430226 0.700771 0.010261 0.007713 +13 0.361038 0.697936 0.010261 0.007486 +12 0.411903 0.697482 0.009968 0.007486 +12 0.388742 0.694646 0.009968 0.007260 +13 0.287159 0.692037 0.010261 0.007033 +12 0.171211 0.692037 0.010554 0.007486 +12 0.171357 0.669691 0.010261 0.007260 +13 0.374817 0.691697 0.009675 0.007713 +11 0.478305 0.691357 0.010261 0.007486 +12 0.859425 0.690903 0.010261 0.007033 +13 0.770449 0.690789 0.010554 0.007260 +12 0.748901 0.690789 0.009675 0.007260 +12 0.336998 0.688634 0.010261 0.007033 +13 0.239959 0.685799 0.010847 0.007260 +13 0.305922 0.685345 0.010261 0.007260 +12 0.269276 0.682396 0.010847 0.007713 +12 0.841689 0.681375 0.010554 0.007033 +13 0.254031 0.679333 0.010261 0.007033 +13 0.190120 0.679333 0.010261 0.007486 +12 0.222955 0.676270 0.010261 0.007260 +12 0.823952 0.675250 0.010261 0.007486 +13 0.204485 0.672981 0.009675 0.007486 +12 0.570214 0.669011 0.009968 0.007713 +11 0.798739 0.668671 0.010261 0.007486 +12 0.624890 0.646665 0.009675 0.007486 +17 0.589123 0.646779 0.012020 0.007713 +12 0.536939 0.630445 0.009675 0.007260 +12 0.536500 0.601974 0.009968 0.007486 +12 0.536353 0.585640 0.010261 0.007486 +12 0.855614 0.620236 0.010261 0.007260 +12 0.833333 0.616946 0.010261 0.007033 +13 0.752419 0.613997 0.010261 0.007033 +12 0.812079 0.613884 0.009968 0.007260 +12 0.785547 0.611048 0.009675 0.006579 +13 0.672677 0.608099 0.010261 0.007486 +13 0.768543 0.607872 0.009675 0.007486 +12 0.724861 0.604809 0.010261 0.006806 +13 0.694225 0.601747 0.009968 0.007033 +13 0.617561 0.601747 0.010261 0.007486 +12 0.171357 0.599251 0.011434 0.007033 +11 0.409118 0.598798 0.009675 0.007033 +11 0.383612 0.599025 0.010847 0.007486 +11 0.499414 0.598798 0.010847 0.007486 +11 0.472735 0.598798 0.010261 0.007486 +12 0.650689 0.598457 0.010847 0.007260 +11 0.446643 0.598571 0.010261 0.007940 +13 0.633245 0.595508 0.010554 0.006806 +13 0.558194 0.595622 0.010554 0.007486 +12 0.596599 0.592672 0.010554 0.007486 +13 0.213574 0.592786 0.010261 0.008167 +12 0.229258 0.589496 0.011140 0.007033 +13 0.574318 0.589610 0.010554 0.007713 +13 0.266051 0.586547 0.010261 0.007486 +12 0.288332 0.583258 0.010261 0.007260 +13 0.329376 0.579628 0.010261 0.007713 +18 0.357520 0.577132 0.010261 0.007260 +18 0.409118 0.576679 0.010261 0.007260 +18 0.383758 0.576792 0.009968 0.007486 +18 0.499560 0.573843 0.010554 0.007486 +18 0.472589 0.573730 0.010554 0.007260 +18 0.446350 0.573616 0.010847 0.007033 +11 0.202287 0.562727 0.009968 0.007486 +12 0.246409 0.559778 0.010847 0.007486 +17 0.171797 0.554106 0.011727 0.007486 +13 0.269716 0.553879 0.010554 0.007486 +12 0.291703 0.547527 0.009968 0.006579 +13 0.316183 0.544351 0.010847 0.007486 +12 0.337438 0.537999 0.009968 0.007033 +13 0.746262 0.537432 0.010261 0.007260 +12 0.761800 0.534142 0.009675 0.007033 +13 0.361917 0.531420 0.010847 0.007486 +13 0.798446 0.530966 0.010261 0.007940 +12 0.819408 0.528131 0.009968 0.007260 +11 0.511140 0.525068 0.010261 0.007033 +11 0.481237 0.525068 0.010261 0.007033 +13 0.860891 0.524841 0.009675 0.007033 +11 0.668865 0.524387 0.010261 0.007033 +11 0.638669 0.524614 0.010847 0.007486 +12 0.704632 0.521665 0.010261 0.006579 +17 0.401202 0.521892 0.012020 0.007486 +17 0.556875 0.521665 0.011434 0.007486 +11 0.451334 0.515313 0.010261 0.007486 +11 0.609059 0.515200 0.010261 0.007713 +13 0.860305 0.489111 0.010261 0.007260 +12 0.834506 0.485935 0.010261 0.007260 +12 0.535327 0.467332 0.010554 0.006806 +13 0.812811 0.483099 0.010261 0.007940 +12 0.791117 0.479696 0.009088 0.007033 +13 0.769276 0.479696 0.009968 0.007033 +11 0.170771 0.479696 0.010261 0.007486 +12 0.747142 0.476860 0.010261 0.006806 +11 0.709323 0.476520 0.009675 0.007033 +11 0.566843 0.473798 0.009675 0.007486 +12 0.590589 0.470395 0.010261 0.007033 +12 0.437262 0.467105 0.010847 0.006806 +17 0.394313 0.467219 0.011727 0.007033 +13 0.362210 0.463929 0.010847 0.007713 +13 0.237027 0.463816 0.010261 0.007940 +12 0.216652 0.463702 0.009968 0.007713 +12 0.336412 0.460867 0.009675 0.007033 +13 0.463207 0.460867 0.009968 0.007486 +13 0.323219 0.457691 0.010261 0.007033 +12 0.477426 0.457577 0.010261 0.007260 +12 0.302551 0.454288 0.009968 0.007033 +13 0.497215 0.451679 0.009968 0.007260 +13 0.282175 0.451338 0.010261 0.007486 +12 0.261067 0.448162 0.010261 0.007486 +12 0.515538 0.445213 0.010261 0.007033 +13 0.546321 0.415495 0.010847 0.007486 +12 0.524333 0.415495 0.010261 0.007486 +11 0.479478 0.415495 0.009675 0.007486 +12 0.240106 0.415495 0.010554 0.007486 +12 0.448402 0.412319 0.010847 0.007486 +12 0.386250 0.412092 0.010847 0.007486 +17 0.278511 0.412092 0.011140 0.007940 +12 0.423629 0.408802 0.010554 0.007260 +12 0.367781 0.408689 0.010261 0.007033 +11 0.308854 0.405966 0.010261 0.007486 +12 0.221489 0.405966 0.010847 0.007486 +12 0.404867 0.405853 0.009968 0.007713 +12 0.344034 0.405853 0.010261 0.007713 +12 0.646878 0.402677 0.010261 0.007713 +12 0.796687 0.399841 0.010261 0.007033 +12 0.859132 0.399728 0.010847 0.007260 +17 0.685429 0.399614 0.011727 0.007486 +12 0.202726 0.399387 0.010261 0.007486 +12 0.771475 0.396665 0.010261 0.007033 +12 0.834213 0.396098 0.010261 0.008167 +12 0.815157 0.393489 0.010847 0.007486 +12 0.753152 0.393376 0.010554 0.007713 +11 0.715773 0.393262 0.010261 0.007486 +12 0.628994 0.393149 0.010261 0.007713 +11 0.171064 0.393149 0.010261 0.007713 +12 0.609938 0.387024 0.010847 0.007260 +11 0.577397 0.380445 0.010261 0.007713 +13 0.691733 0.364451 0.010261 0.007033 +13 0.670624 0.364338 0.010261 0.007260 +13 0.727792 0.360935 0.009675 0.007260 +13 0.706098 0.361162 0.009675 0.007713 +13 0.748021 0.357872 0.010847 0.007486 +13 0.860012 0.354809 0.010261 0.007260 +12 0.837145 0.354923 0.010261 0.007486 +11 0.813398 0.354923 0.010847 0.007486 +11 0.365729 0.354469 0.010261 0.007486 +13 0.339050 0.351520 0.010847 0.007033 +11 0.788772 0.351293 0.010847 0.007033 +13 0.762093 0.348117 0.010261 0.007033 +13 0.483289 0.347890 0.010847 0.006579 +13 0.310320 0.347777 0.010847 0.007260 +13 0.497361 0.341765 0.010847 0.007033 +13 0.469950 0.341311 0.009968 0.007033 +13 0.324978 0.341538 0.009675 0.007486 +13 0.296687 0.341311 0.009968 0.007033 +12 0.419378 0.338475 0.010847 0.007260 +13 0.282175 0.338362 0.010847 0.007486 +12 0.443272 0.338249 0.010554 0.007713 +12 0.400176 0.334959 0.009968 0.007486 +13 0.268690 0.335073 0.009675 0.008167 +13 0.512606 0.332010 0.010847 0.007486 +13 0.219144 0.331897 0.010261 0.007260 +13 0.247875 0.328834 0.010261 0.006579 +12 0.548080 0.325658 0.010261 0.007486 +12 0.529610 0.325658 0.010847 0.007486 +13 0.233802 0.325544 0.010261 0.007260 +12 0.592641 0.322822 0.010261 0.007713 +12 0.566843 0.322709 0.010261 0.007486 +13 0.199208 0.322255 0.010261 0.007486 +12 0.619760 0.318966 0.010554 0.007260 +13 0.170331 0.318852 0.009968 0.007033 +13 0.184990 0.315789 0.011140 0.007260 +12 0.649370 0.303085 0.010554 0.007260 +13 0.675315 0.296393 0.009675 0.007486 +13 0.727939 0.293330 0.010554 0.007260 +12 0.696130 0.290154 0.010261 0.007260 +13 0.397391 0.286751 0.010847 0.007260 +12 0.302257 0.286638 0.009968 0.007486 +11 0.273380 0.286638 0.010261 0.007486 +12 0.240838 0.283575 0.010847 0.006806 +12 0.348871 0.283689 0.009968 0.007486 +12 0.323512 0.283462 0.010847 0.007486 +13 0.743624 0.280966 0.010261 0.007033 +13 0.380827 0.280740 0.010554 0.007033 +12 0.220317 0.280513 0.010847 0.007033 +11 0.581208 0.277564 0.010261 0.007940 +11 0.170185 0.277337 0.010261 0.007486 +12 0.199062 0.276996 0.010554 0.007713 +11 0.621665 0.274387 0.010261 0.007033 +13 0.760334 0.271438 0.010847 0.007033 +17 0.543536 0.271211 0.011727 0.007486 +13 0.413662 0.270758 0.010554 0.007033 +13 0.429346 0.267582 0.010261 0.007033 +13 0.775872 0.265086 0.010261 0.007940 +12 0.468631 0.264746 0.010261 0.007260 +12 0.448402 0.264859 0.010847 0.007486 +12 0.509968 0.264519 0.010847 0.007713 +12 0.489446 0.264519 0.010847 0.007713 +12 0.857666 0.258848 0.010847 0.006806 +12 0.815743 0.258961 0.010261 0.007033 +12 0.794928 0.258734 0.010847 0.007033 +12 0.836558 0.258507 0.010847 0.007033 +12 0.769422 0.236615 0.010261 0.007260 +12 0.788772 0.233212 0.010261 0.007713 +13 0.616681 0.232872 0.010847 0.007486 +12 0.593521 0.232872 0.010261 0.007486 +12 0.815010 0.230150 0.009968 0.007486 +12 0.834799 0.226974 0.010847 0.007486 +11 0.238200 0.222663 0.010847 0.007486 +12 0.854148 0.220395 0.010261 0.007033 +12 0.744650 0.220281 0.010554 0.007260 +13 0.345500 0.219828 0.010847 0.007713 +12 0.266637 0.219487 0.010261 0.007486 +13 0.192612 0.219147 0.009968 0.007260 +12 0.713281 0.217105 0.009968 0.007260 +12 0.359132 0.216538 0.009968 0.007486 +13 0.333480 0.216538 0.010261 0.007486 +12 0.299619 0.216311 0.010554 0.007486 +13 0.207710 0.216084 0.010847 0.007486 +13 0.178393 0.216084 0.010847 0.007486 +12 0.692905 0.213929 0.010261 0.007260 +11 0.489739 0.213702 0.010847 0.006806 +13 0.319408 0.213362 0.010261 0.007033 +11 0.645412 0.210753 0.011434 0.007713 +11 0.458663 0.210526 0.010847 0.007713 +12 0.673263 0.210413 0.010847 0.007940 +12 0.379214 0.210299 0.010847 0.007713 +13 0.223248 0.209732 0.010261 0.007940 +12 0.425535 0.207010 0.010261 0.007486 +12 0.398857 0.203494 0.010847 0.007713 +13 0.714013 0.165608 0.010261 0.006806 +12 0.688508 0.165721 0.009675 0.007033 +12 0.354002 0.165495 0.010261 0.007033 +13 0.246409 0.165268 0.010847 0.007033 +12 0.220903 0.165268 0.010261 0.007033 +11 0.821900 0.162545 0.010261 0.007486 +17 0.392260 0.161865 0.011727 0.007940 +12 0.531662 0.159256 0.010261 0.006806 +12 0.853122 0.159142 0.010554 0.007033 +11 0.660657 0.159142 0.010261 0.007033 +13 0.769129 0.159029 0.010261 0.007260 +11 0.425828 0.158689 0.010847 0.007033 +12 0.553650 0.156193 0.010847 0.007033 +11 0.633539 0.156193 0.011140 0.007486 +12 0.332307 0.155966 0.010261 0.007033 +13 0.786719 0.155966 0.010261 0.007486 +13 0.751539 0.156080 0.010261 0.007713 +13 0.517297 0.155966 0.010847 0.007486 +13 0.488420 0.155966 0.010554 0.007486 +12 0.466286 0.155853 0.010847 0.007260 +12 0.597332 0.152904 0.010261 0.007260 +13 0.502639 0.152790 0.009675 0.007486 +13 0.804016 0.149841 0.009675 0.007486 +12 0.575491 0.149841 0.011140 0.007486 +12 0.310026 0.149387 0.010261 0.007033 +11 0.279244 0.142809 0.010847 0.007486 +18 0.205951 0.134642 0.009675 0.007940 +5 0.323659 0.684891 0.012899 0.017241 +1 0.153767 0.148026 0.022574 0.045599 +4 0.176781 0.136003 0.009968 0.018829 +4 0.414101 0.206783 0.009675 0.019737 +1 0.116242 0.209052 0.022574 0.046053 +4 0.802990 0.229923 0.009381 0.018829 +4 0.569774 0.277790 0.009675 0.018376 +4 0.139695 0.196801 0.009675 0.018829 +4 0.139695 0.265086 0.009088 0.019283 +4 0.610818 0.274614 0.009675 0.019283 +1 0.116535 0.276656 0.022574 0.046053 +4 0.581648 0.322482 0.009381 0.019737 +4 0.479185 0.213362 0.009675 0.019737 +4 0.257842 0.335186 0.009088 0.020191 +4 0.757989 0.236502 0.009675 0.018829 +5 0.432278 0.335186 0.008502 0.016107 +4 0.337877 0.283462 0.009088 0.018829 +5 0.424949 0.463589 0.008502 0.016107 +4 0.140575 0.386910 0.009088 0.018829 +4 0.663588 0.296393 0.009675 0.018376 +3 0.205658 0.463702 0.007329 0.019964 +3 0.388889 0.334959 0.007329 0.019283 +3 0.351656 0.464043 0.007329 0.019737 +5 0.437702 0.408916 0.009381 0.015653 +1 0.117268 0.399161 0.022867 0.046053 +4 0.208590 0.332010 0.009088 0.018376 +5 0.266784 0.409142 0.008209 0.015653 +3 0.785840 0.399387 0.007329 0.019737 +5 0.291850 0.450885 0.008502 0.015653 +3 0.598798 0.386683 0.007329 0.020191 +4 0.657432 0.523934 0.009675 0.019737 +5 0.848285 0.396665 0.007916 0.015653 +1 0.118294 0.476293 0.022574 0.046053 +5 0.673263 0.396211 0.008502 0.015653 +5 0.808707 0.524614 0.008502 0.015653 +1 0.116828 0.337908 0.022574 0.046053 +4 0.680592 0.363997 0.009088 0.018829 +3 0.317942 0.580082 0.007329 0.019964 +4 0.500293 0.525068 0.009675 0.018829 +5 0.213574 0.672754 0.010261 0.015653 +1 0.118587 0.537772 0.022574 0.046506 +4 0.139988 0.325658 0.009088 0.018829 +4 0.140868 0.464043 0.009088 0.018829 +4 0.141454 0.602427 0.010261 0.018829 +4 0.140868 0.525295 0.009675 0.018829 +5 0.850044 0.486048 0.008502 0.015653 +3 0.469804 0.525068 0.007329 0.020644 +4 0.281003 0.547074 0.009675 0.019283 +4 0.278950 0.893262 0.009088 0.018376 +5 0.698476 0.473117 0.007916 0.015653 +3 0.849751 0.524841 0.007329 0.019737 +5 0.327617 0.534710 0.009088 0.016334 +5 0.191586 0.396211 0.009088 0.015653 +4 0.189827 0.807055 0.009675 0.017922 +3 0.824245 0.486275 0.007329 0.019737 +5 0.780563 0.476747 0.007916 0.015653 +4 0.555995 0.473571 0.009088 0.019283 +4 0.850630 0.857418 0.009675 0.018829 +1 0.118587 0.743308 0.022574 0.045599 +1 0.118587 0.804106 0.023160 0.045599 +5 0.439607 0.512024 0.007916 0.016788 +5 0.597039 0.511910 0.008502 0.015653 +3 0.740985 0.614224 0.007329 0.019283 +3 0.350191 0.698162 0.007329 0.019737 +1 0.119173 0.874660 0.022574 0.046053 +5 0.234389 0.556375 0.009088 0.016107 +4 0.549985 0.869896 0.009381 0.019737 +4 0.232190 0.871711 0.009381 0.018829 +4 0.443418 0.827926 0.009088 0.018376 +5 0.585605 0.589043 0.009088 0.015653 +5 0.504691 0.441583 0.008502 0.016107 +4 0.502785 0.867173 0.009968 0.018829 +1 0.118880 0.614678 0.022574 0.046053 +5 0.277485 0.580876 0.008502 0.016107 +5 0.713134 0.869669 0.008502 0.015653 +4 0.194664 0.874206 0.009381 0.018829 +3 0.626942 0.524614 0.007329 0.020191 +5 0.800792 0.611388 0.008502 0.014519 +5 0.714013 0.601520 0.008502 0.015653 +5 0.400322 0.695213 0.007916 0.014746 +3 0.296834 0.685458 0.007916 0.020191 +3 0.673996 0.869555 0.007622 0.019510 +4 0.141747 0.791629 0.009675 0.018829 +4 0.710789 0.807963 0.009088 0.017468 +4 0.142187 0.862182 0.009968 0.018376 +4 0.486221 0.821574 0.009088 0.018376 +5 0.452213 0.457237 0.007916 0.015653 +4 0.141161 0.730830 0.009088 0.018829 +5 0.202873 0.589837 0.008795 0.016334 +4 0.847405 0.739224 0.008502 0.018376 +1 0.118734 0.675703 0.022867 0.046506 +5 0.736001 0.534369 0.008502 0.015653 +4 0.141161 0.663680 0.009675 0.018829 +3 0.683524 0.602087 0.007329 0.019056 +4 0.716212 0.360708 0.008209 0.018149 +4 0.736148 0.357759 0.010554 0.017695 +3 0.376869 0.411751 0.006743 0.019056 +3 0.357227 0.409029 0.006157 0.019056 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_5.jpg b/data_dataset/mosz/debug/debug_5.jpg new file mode 100644 index 0000000..3eb93c8 Binary files /dev/null and b/data_dataset/mosz/debug/debug_5.jpg differ diff --git a/data_dataset/mosz/debug/debug_5.txt b/data_dataset/mosz/debug/debug_5.txt new file mode 100644 index 0000000..fe0da0e --- /dev/null +++ b/data_dataset/mosz/debug/debug_5.txt @@ -0,0 +1,490 @@ +7 0.798479 0.867157 0.012869 0.015176 +7 0.740567 0.866704 0.012869 0.015629 +7 0.667739 0.866025 0.013454 0.015629 +7 0.501609 0.865459 0.013454 0.015402 +7 0.413864 0.865572 0.012284 0.015629 +7 0.276104 0.864892 0.012869 0.015176 +6 0.819245 0.866478 0.010529 0.023783 +6 0.846154 0.866025 0.010529 0.023330 +6 0.688213 0.865119 0.010529 0.023783 +6 0.435069 0.864326 0.010237 0.023556 +6 0.460953 0.863760 0.011114 0.023330 +7 0.867798 0.783805 0.012869 0.017441 +7 0.764551 0.787656 0.013454 0.023330 +6 0.663352 0.781087 0.011114 0.023330 +10 0.679438 0.712571 0.013454 0.005889 +6 0.712489 0.715855 0.010529 0.023783 +6 0.734425 0.715855 0.011114 0.023783 +6 0.637613 0.715742 0.010529 0.024009 +6 0.386078 0.714949 0.010529 0.023330 +6 0.364142 0.714609 0.011114 0.023556 +6 0.332261 0.714496 0.010529 0.022877 +9 0.558643 0.640091 0.010529 0.028086 +6 0.177830 0.456059 0.011114 0.023330 +6 0.198304 0.455606 0.011114 0.023330 +7 0.729453 0.389694 0.013454 0.015629 +7 0.822170 0.389694 0.012869 0.016082 +6 0.695964 0.388335 0.010822 0.023330 +6 0.673296 0.387882 0.011114 0.023330 +6 0.839427 0.387769 0.011114 0.023556 +10 0.781515 0.327067 0.010529 0.004983 +10 0.422053 0.324349 0.008774 0.004077 +8 0.255338 0.327180 0.015794 0.029672 +9 0.312080 0.326727 0.015794 0.025595 +8 0.198011 0.324009 0.014624 0.031031 +8 0.378766 0.307475 0.014624 0.035561 +9 0.491372 0.307022 0.014039 0.024236 +8 0.435215 0.306342 0.015209 0.034655 +6 0.197719 0.236580 0.011114 0.023783 +6 0.176367 0.236806 0.011699 0.023330 +7 0.400994 0.176784 0.012869 0.016082 +7 0.842059 0.174972 0.012869 0.015629 +7 0.210588 0.105436 0.012869 0.015176 +7 0.193916 0.105889 0.012284 0.016082 +7 0.744955 0.103171 0.013454 0.016082 +12 0.771717 0.895243 0.009652 0.007475 +12 0.772009 0.873046 0.010237 0.007475 +12 0.387686 0.893092 0.010237 0.006795 +13 0.319245 0.889921 0.010237 0.007248 +13 0.294969 0.886863 0.009652 0.007022 +12 0.250512 0.886523 0.009652 0.007248 +13 0.337233 0.886410 0.009944 0.007475 +13 0.355221 0.880634 0.009652 0.006795 +12 0.715560 0.875878 0.010822 0.007248 +12 0.715560 0.860136 0.010237 0.007475 +13 0.196549 0.873726 0.010529 0.007475 +13 0.214829 0.870895 0.010822 0.007248 +13 0.178268 0.870895 0.010237 0.007248 +12 0.524276 0.865459 0.010237 0.006795 +13 0.232378 0.864439 0.010237 0.007475 +12 0.546212 0.859230 0.010822 0.007928 +12 0.569319 0.849717 0.010237 0.007475 +12 0.590377 0.844281 0.010237 0.007475 +12 0.613483 0.838392 0.010822 0.007475 +12 0.647996 0.829558 0.010822 0.007475 +18 0.646388 0.810419 0.011114 0.007248 +11 0.521644 0.810532 0.010237 0.007475 +11 0.521644 0.798301 0.010237 0.007475 +12 0.562445 0.807814 0.009944 0.007475 +11 0.486838 0.807588 0.009652 0.007475 +18 0.681925 0.807361 0.010237 0.007475 +11 0.463732 0.803964 0.010237 0.007475 +11 0.717023 0.801925 0.010237 0.007928 +12 0.545335 0.801359 0.009652 0.007248 +12 0.598421 0.801359 0.010529 0.007701 +11 0.442088 0.800906 0.010237 0.006795 +11 0.664083 0.801359 0.010822 0.008154 +17 0.403773 0.801019 0.010822 0.007475 +11 0.357414 0.800793 0.011699 0.007475 +17 0.310471 0.800793 0.011407 0.007475 +12 0.743492 0.799207 0.010529 0.007022 +12 0.743492 0.806229 0.010529 0.007022 +11 0.699035 0.798867 0.010529 0.007248 +11 0.628400 0.798301 0.010822 0.007022 +11 0.628400 0.805323 0.010822 0.007022 +12 0.580725 0.798188 0.010237 0.007701 +12 0.272448 0.797622 0.010237 0.007022 +12 0.249049 0.790827 0.010237 0.007022 +12 0.845276 0.790487 0.010529 0.006795 +12 0.231208 0.784711 0.010822 0.007475 +13 0.802720 0.780408 0.009652 0.007022 +12 0.213513 0.778369 0.010529 0.007022 +13 0.817052 0.777576 0.010237 0.006795 +13 0.782246 0.777123 0.009652 0.006795 +12 0.178707 0.775198 0.009944 0.007022 +12 0.196110 0.772140 0.010822 0.007248 +13 0.831237 0.767724 0.010529 0.007022 +17 0.304036 0.744847 0.010822 0.007928 +12 0.253290 0.740997 0.009944 0.007022 +12 0.234718 0.737486 0.010237 0.007248 +12 0.215853 0.734768 0.009944 0.006795 +12 0.178561 0.731710 0.010237 0.007022 +12 0.272156 0.731710 0.010237 0.007475 +12 0.197280 0.728313 0.010237 0.007475 +11 0.594472 0.719819 0.010237 0.006795 +11 0.616993 0.716874 0.010822 0.007248 +13 0.779760 0.714383 0.010529 0.006342 +12 0.758263 0.714270 0.010237 0.006569 +12 0.563469 0.713703 0.010237 0.007248 +13 0.432436 0.713250 0.010237 0.007248 +12 0.410208 0.713024 0.010237 0.007248 +12 0.531588 0.710193 0.010822 0.007022 +12 0.546944 0.707361 0.010529 0.006795 +12 0.867359 0.705096 0.010237 0.007248 +12 0.515209 0.703851 0.010237 0.007022 +12 0.849225 0.698867 0.010237 0.007475 +13 0.498830 0.697961 0.010237 0.007022 +12 0.831383 0.692865 0.009652 0.006795 +12 0.482451 0.691506 0.010237 0.007248 +11 0.457736 0.691393 0.009944 0.007022 +11 0.804767 0.686070 0.010237 0.007701 +12 0.178853 0.664213 0.010237 0.007022 +12 0.865019 0.662174 0.010237 0.007475 +12 0.404212 0.661382 0.010529 0.007248 +12 0.310617 0.661268 0.010529 0.007475 +12 0.310471 0.638845 0.010822 0.007022 +11 0.271863 0.661155 0.010237 0.007701 +11 0.271571 0.638618 0.010237 0.007022 +13 0.199327 0.660815 0.010237 0.007475 +12 0.844545 0.658890 0.010237 0.007248 +12 0.425124 0.658097 0.010237 0.007022 +13 0.214536 0.657758 0.010237 0.006795 +12 0.824071 0.655832 0.010822 0.007022 +12 0.484498 0.655266 0.010237 0.007248 +12 0.458175 0.655040 0.010237 0.007701 +12 0.230331 0.654700 0.010822 0.007475 +12 0.532173 0.651982 0.009652 0.007475 +12 0.505118 0.651869 0.009944 0.007248 +12 0.802866 0.649604 0.010529 0.007248 +12 0.552647 0.649151 0.010822 0.007248 +12 0.573413 0.648924 0.010237 0.007248 +12 0.362972 0.648811 0.010529 0.007475 +12 0.251097 0.648358 0.010237 0.007475 +12 0.634835 0.646093 0.010237 0.007475 +12 0.609535 0.645866 0.010529 0.007475 +13 0.347031 0.645640 0.010237 0.007022 +12 0.383299 0.645413 0.010237 0.007022 +12 0.782685 0.643148 0.010529 0.007022 +12 0.682363 0.642922 0.009944 0.007475 +12 0.656040 0.642809 0.010529 0.007248 +13 0.331822 0.642356 0.010237 0.007701 +12 0.702983 0.639751 0.010822 0.007022 +12 0.757385 0.633522 0.010822 0.007248 +12 0.723165 0.633409 0.010237 0.007022 +12 0.637175 0.603058 0.010822 0.007475 +12 0.844399 0.600566 0.010529 0.007475 +12 0.757385 0.600453 0.010237 0.007248 +12 0.757678 0.577916 0.009652 0.006569 +11 0.721702 0.600340 0.010237 0.007022 +11 0.721702 0.577690 0.010237 0.007022 +13 0.655601 0.600227 0.010237 0.007248 +12 0.606464 0.600113 0.010237 0.007475 +12 0.863264 0.597169 0.010237 0.007022 +13 0.669494 0.596716 0.009944 0.007475 +12 0.242030 0.596036 0.010237 0.007022 +12 0.684264 0.593884 0.010237 0.007248 +12 0.569172 0.593545 0.010529 0.007928 +11 0.215268 0.593092 0.010529 0.007022 +12 0.587452 0.590374 0.010822 0.007022 +12 0.544750 0.590260 0.009652 0.007248 +12 0.341474 0.590147 0.010237 0.007475 +13 0.200790 0.589694 0.010822 0.007475 +12 0.807107 0.587656 0.010237 0.007475 +12 0.526031 0.587429 0.010822 0.007022 +12 0.702545 0.587429 0.010529 0.007475 +11 0.314566 0.586863 0.010237 0.007248 +12 0.825826 0.584485 0.010237 0.007475 +13 0.792191 0.584371 0.009652 0.007248 +12 0.437409 0.584032 0.010237 0.007022 +12 0.507166 0.583918 0.010529 0.007248 +13 0.299210 0.583579 0.010529 0.007022 +12 0.178415 0.583352 0.010529 0.006569 +13 0.777420 0.581087 0.010529 0.007022 +12 0.413717 0.580861 0.010822 0.007475 +12 0.475431 0.580861 0.010237 0.007928 +12 0.456274 0.577690 0.010529 0.007022 +12 0.394706 0.577463 0.010237 0.007022 +12 0.277128 0.577463 0.010237 0.007022 +12 0.376572 0.571121 0.010237 0.007022 +12 0.625183 0.547678 0.009652 0.007701 +11 0.598274 0.547565 0.010822 0.007475 +12 0.661158 0.547339 0.010237 0.007475 +12 0.570635 0.544168 0.010529 0.007928 +13 0.717023 0.538052 0.010822 0.007475 +11 0.326557 0.535108 0.010237 0.007022 +12 0.552647 0.535108 0.010822 0.007475 +13 0.730769 0.535108 0.010237 0.007928 +13 0.702398 0.535108 0.010822 0.007928 +12 0.643609 0.534768 0.010237 0.007701 +13 0.688505 0.531937 0.009944 0.007475 +13 0.744223 0.531710 0.010237 0.007475 +11 0.349517 0.531937 0.010529 0.007928 +12 0.375841 0.531597 0.010529 0.007701 +13 0.764697 0.528766 0.010237 0.007022 +13 0.783855 0.528539 0.009944 0.007022 +17 0.524422 0.528652 0.011699 0.007248 +12 0.290143 0.528539 0.009944 0.007022 +13 0.220679 0.528426 0.010237 0.007248 +13 0.499415 0.525821 0.010822 0.007022 +13 0.818514 0.525708 0.010237 0.007701 +13 0.797748 0.525595 0.009652 0.007475 +13 0.208979 0.525142 0.010237 0.007022 +12 0.178561 0.525142 0.010237 0.007022 +12 0.232817 0.525028 0.010529 0.007248 +13 0.831676 0.522650 0.009652 0.007022 +13 0.852442 0.522424 0.010237 0.007022 +12 0.477479 0.522537 0.010237 0.007248 +13 0.196695 0.521857 0.010237 0.006795 +13 0.865896 0.519592 0.010237 0.006795 +13 0.464025 0.519479 0.010237 0.007475 +12 0.250366 0.518913 0.009944 0.007701 +12 0.442820 0.516308 0.010529 0.006569 +13 0.428342 0.513137 0.010237 0.007475 +12 0.268061 0.512797 0.010237 0.007248 +12 0.406698 0.510079 0.010237 0.007248 +12 0.215121 0.473386 0.009652 0.006795 +13 0.236326 0.473160 0.010529 0.006795 +13 0.625475 0.473386 0.009652 0.007701 +12 0.603539 0.473499 0.010237 0.007928 +12 0.324510 0.473386 0.010237 0.007701 +11 0.836502 0.469989 0.010529 0.007248 +11 0.715853 0.469875 0.010237 0.007022 +17 0.355367 0.470328 0.011114 0.007928 +11 0.579702 0.467044 0.010529 0.006795 +12 0.471044 0.467157 0.010822 0.007022 +13 0.672858 0.466931 0.010822 0.007022 +11 0.383007 0.466818 0.010237 0.006795 +12 0.862679 0.466704 0.010237 0.007022 +12 0.742469 0.466704 0.010822 0.007022 +13 0.793361 0.466704 0.010822 0.007475 +12 0.489178 0.464100 0.010822 0.007248 +11 0.556742 0.464100 0.010237 0.007701 +12 0.415765 0.463986 0.010237 0.007475 +13 0.459345 0.463873 0.010822 0.007701 +13 0.434338 0.463873 0.009944 0.007701 +12 0.306522 0.463760 0.010529 0.007475 +13 0.808277 0.463647 0.010237 0.007701 +13 0.687189 0.463760 0.010237 0.007928 +13 0.658526 0.463647 0.010237 0.007701 +13 0.779760 0.463420 0.010529 0.008154 +12 0.524569 0.460702 0.010237 0.007248 +13 0.447207 0.460589 0.009944 0.007475 +13 0.822609 0.457305 0.010822 0.006795 +12 0.507166 0.457418 0.010529 0.007022 +12 0.288827 0.457191 0.010237 0.007475 +13 0.701521 0.457078 0.010822 0.007701 +11 0.263381 0.450963 0.010822 0.006795 +12 0.617286 0.417554 0.010237 0.007475 +12 0.597982 0.414383 0.010237 0.007475 +12 0.578970 0.411212 0.010822 0.007475 +13 0.525446 0.410985 0.010237 0.007475 +12 0.554694 0.407814 0.010237 0.007475 +12 0.325826 0.405436 0.009944 0.006795 +12 0.325680 0.383012 0.010237 0.007248 +13 0.539924 0.405210 0.010529 0.006795 +13 0.448084 0.405210 0.011114 0.007248 +11 0.649605 0.404983 0.010529 0.007248 +12 0.500292 0.401925 0.010237 0.007475 +13 0.399532 0.399094 0.009944 0.007248 +13 0.468851 0.398981 0.010529 0.007475 +12 0.429219 0.395923 0.011407 0.007701 +12 0.294238 0.395696 0.009944 0.007248 +13 0.344984 0.392865 0.010237 0.007022 +13 0.414010 0.392752 0.010237 0.007248 +12 0.275080 0.392639 0.010822 0.007022 +13 0.203715 0.389807 0.009652 0.007248 +12 0.256069 0.389581 0.010237 0.007248 +12 0.380667 0.389468 0.010237 0.007928 +13 0.359901 0.386523 0.009652 0.007022 +12 0.232085 0.386297 0.010237 0.007022 +13 0.217754 0.383239 0.010822 0.006795 +12 0.747148 0.382899 0.010822 0.007022 +12 0.178853 0.380068 0.010237 0.006795 +12 0.805060 0.360815 0.010822 0.007701 +17 0.766452 0.360702 0.011992 0.007928 +12 0.718485 0.336806 0.010237 0.007248 +12 0.718485 0.308381 0.010237 0.007475 +17 0.718192 0.292186 0.010822 0.007701 +13 0.219216 0.321744 0.009652 0.007022 +11 0.441211 0.319592 0.009067 0.005436 +12 0.450570 0.293092 0.010237 0.007701 +12 0.234425 0.318460 0.010822 0.007248 +13 0.271424 0.315176 0.009944 0.007022 +13 0.848347 0.314496 0.010237 0.007022 +12 0.292044 0.312344 0.010237 0.006795 +13 0.332992 0.308720 0.010237 0.007248 +13 0.868821 0.307928 0.010237 0.007475 +13 0.795700 0.307814 0.010237 0.007701 +12 0.359023 0.305889 0.009652 0.007022 +12 0.177684 0.305663 0.010237 0.007475 +11 0.629570 0.305323 0.010237 0.007701 +11 0.590377 0.305323 0.010237 0.007701 +11 0.564639 0.305323 0.010237 0.007701 +12 0.827289 0.304870 0.010237 0.007248 +11 0.681047 0.305096 0.010237 0.007701 +11 0.655455 0.305096 0.009944 0.007701 +13 0.739690 0.301586 0.010529 0.007475 +13 0.811202 0.301359 0.010822 0.007475 +13 0.398362 0.299547 0.009944 0.007475 +12 0.776104 0.298414 0.010822 0.007928 +12 0.413717 0.296149 0.010237 0.007928 +13 0.754753 0.295357 0.010237 0.007701 +12 0.470605 0.289694 0.011114 0.007248 +13 0.509944 0.286750 0.010237 0.008154 +18 0.538462 0.283239 0.010529 0.007475 +18 0.589792 0.283012 0.010822 0.007475 +18 0.563908 0.283126 0.010529 0.007701 +18 0.628985 0.279841 0.010822 0.007475 +18 0.680462 0.279615 0.010822 0.007475 +18 0.654724 0.279502 0.010822 0.007248 +11 0.426733 0.263307 0.010529 0.007475 +12 0.467534 0.259909 0.009652 0.007475 +17 0.397923 0.253794 0.011992 0.007475 +13 0.490641 0.253454 0.010237 0.007248 +13 0.369406 0.250396 0.009944 0.007022 +11 0.568149 0.246999 0.009652 0.007022 +12 0.577216 0.230578 0.010822 0.006795 +12 0.343814 0.246999 0.010237 0.007022 +12 0.511992 0.246772 0.009652 0.007022 +13 0.323340 0.244054 0.010237 0.007475 +13 0.534513 0.243601 0.010237 0.007022 +13 0.280638 0.241110 0.010237 0.006569 +12 0.301696 0.240883 0.010237 0.006569 +11 0.225066 0.238052 0.010822 0.007248 +12 0.258701 0.237826 0.010237 0.007248 +12 0.554694 0.237373 0.010237 0.007248 +11 0.688944 0.224122 0.010822 0.007928 +11 0.717607 0.223783 0.010822 0.007701 +11 0.862972 0.223330 0.010237 0.007701 +11 0.835478 0.223556 0.010237 0.008154 +17 0.612314 0.221065 0.011992 0.007701 +17 0.760310 0.220498 0.011992 0.007475 +11 0.660281 0.214496 0.010822 0.007701 +11 0.807985 0.214043 0.010237 0.007701 +11 0.371600 0.179728 0.010822 0.007022 +12 0.282539 0.176784 0.010529 0.007475 +12 0.342352 0.176670 0.010822 0.007701 +17 0.177830 0.176670 0.011114 0.007701 +12 0.258994 0.173613 0.010237 0.006569 +12 0.319099 0.173160 0.010529 0.007022 +11 0.799503 0.171574 0.010237 0.007022 +11 0.206932 0.170442 0.010237 0.007022 +12 0.240129 0.170328 0.010529 0.007248 +12 0.301404 0.170215 0.010822 0.007475 +12 0.823633 0.168177 0.010529 0.007475 +17 0.614653 0.166138 0.011407 0.007475 +12 0.660866 0.165912 0.010237 0.007475 +13 0.765867 0.165572 0.010822 0.007248 +12 0.423077 0.163647 0.010822 0.007475 +13 0.446476 0.163420 0.010822 0.007475 +13 0.578678 0.162967 0.010822 0.007475 +13 0.687189 0.159570 0.010237 0.006569 +12 0.552208 0.159909 0.009944 0.007248 +13 0.537145 0.156852 0.010822 0.007475 +12 0.701813 0.156172 0.010237 0.007475 +12 0.514770 0.153794 0.010529 0.007701 +13 0.494735 0.150396 0.010237 0.007701 +13 0.723750 0.149717 0.010822 0.007248 +12 0.472507 0.147452 0.010237 0.007248 +12 0.743346 0.143488 0.010237 0.007475 +13 0.221848 0.131257 0.010237 0.006569 +13 0.243200 0.130804 0.010822 0.007022 +13 0.277713 0.127520 0.009652 0.007701 +13 0.256946 0.127407 0.010237 0.007475 +13 0.298187 0.124236 0.009652 0.007928 +13 0.402311 0.120838 0.010822 0.007022 +12 0.381252 0.120838 0.009652 0.007022 +11 0.360193 0.120838 0.010822 0.007022 +12 0.492980 0.120385 0.010822 0.007475 +12 0.757385 0.118913 0.010822 0.007248 +11 0.718192 0.119026 0.010822 0.007475 +13 0.778152 0.118686 0.010237 0.007248 +11 0.338549 0.117667 0.009652 0.007475 +17 0.530126 0.117101 0.011407 0.007701 +12 0.689090 0.116195 0.009944 0.006795 +12 0.632787 0.116535 0.009652 0.007475 +13 0.311933 0.114723 0.010237 0.007022 +12 0.612021 0.113137 0.010237 0.007475 +12 0.667008 0.112911 0.010237 0.007475 +12 0.476016 0.110872 0.010822 0.007475 +11 0.557765 0.110532 0.010529 0.007248 +12 0.592132 0.110306 0.010237 0.007248 +12 0.650044 0.109740 0.010237 0.007475 +12 0.867359 0.105663 0.010822 0.007022 +12 0.459637 0.104643 0.010822 0.007701 +11 0.429219 0.098301 0.010822 0.007701 +12 0.850980 0.095810 0.010822 0.007248 +12 0.834893 0.089694 0.010237 0.007701 +12 0.176806 0.086297 0.010237 0.007248 +11 0.804767 0.083352 0.010822 0.007248 +5 0.448523 0.101586 0.008482 0.016082 +4 0.232085 0.130917 0.009652 0.019026 +5 0.649166 0.162514 0.009067 0.016082 +4 0.146680 0.092752 0.009652 0.018800 +5 0.678707 0.113137 0.007897 0.016082 +5 0.732378 0.140091 0.008774 0.016082 +4 0.788096 0.171801 0.009652 0.019253 +5 0.504680 0.150057 0.007897 0.015629 +1 0.123574 0.176104 0.022521 0.045074 +4 0.706493 0.224009 0.009652 0.019026 +3 0.824656 0.223216 0.007312 0.019706 +5 0.518719 0.113590 0.008482 0.016082 +5 0.387248 0.296829 0.008190 0.016535 +5 0.675782 0.155946 0.008482 0.015629 +3 0.823340 0.089807 0.007605 0.020159 +5 0.207809 0.318573 0.010237 0.016082 +3 0.568149 0.162741 0.007312 0.019706 +5 0.291313 0.237712 0.008774 0.016082 +3 0.271278 0.176557 0.007897 0.019706 +5 0.649166 0.211212 0.008482 0.016535 +1 0.124452 0.237486 0.023106 0.045527 +5 0.795993 0.210759 0.008482 0.016535 +4 0.842205 0.522424 0.009652 0.018800 +4 0.501462 0.246886 0.008482 0.019026 +5 0.331237 0.173160 0.008482 0.016082 +5 0.460515 0.286863 0.009652 0.015176 +4 0.808277 0.525595 0.008482 0.018347 +5 0.544457 0.233862 0.008482 0.015629 +5 0.245247 0.386297 0.008482 0.016082 +3 0.677830 0.224122 0.007312 0.019706 +4 0.147558 0.225481 0.009067 0.018800 +4 0.147850 0.309060 0.009652 0.018347 +4 0.852150 0.223443 0.009652 0.018800 +3 0.279760 0.528992 0.007897 0.020612 +3 0.858584 0.307701 0.007312 0.019706 +5 0.213659 0.234768 0.007897 0.016082 +3 0.411670 0.163647 0.007897 0.020159 +1 0.123867 0.104983 0.022521 0.045980 +4 0.671103 0.642695 0.009067 0.018800 +4 0.791898 0.780408 0.009067 0.018800 +3 0.496783 0.584032 0.007312 0.019706 +1 0.125622 0.456738 0.023106 0.045527 +3 0.322755 0.309060 0.007312 0.019706 +5 0.370137 0.386410 0.007897 0.016308 +1 0.125622 0.864213 0.021936 0.045074 +3 0.262211 0.797395 0.007312 0.020159 +4 0.558204 0.593545 0.009652 0.018347 +1 0.125622 0.715176 0.022521 0.045074 +3 0.192746 0.389694 0.007605 0.019706 +1 0.125622 0.647678 0.022521 0.045074 +5 0.455835 0.257191 0.008482 0.015629 +4 0.583358 0.719932 0.009067 0.019706 +5 0.489324 0.398981 0.008774 0.015629 +4 0.473677 0.655153 0.009067 0.017894 +4 0.624013 0.646093 0.008482 0.019706 +5 0.765136 0.295923 0.008190 0.016082 +1 0.125475 0.389015 0.022814 0.045074 +5 0.281808 0.308834 0.008482 0.016082 +1 0.124744 0.321065 0.023106 0.045980 +4 0.307546 0.889807 0.009067 0.018800 +1 0.125914 0.781087 0.022521 0.045527 +4 0.426879 0.584032 0.009067 0.019253 +4 0.315151 0.534655 0.009652 0.018800 +3 0.514332 0.411212 0.006727 0.019706 +5 0.567856 0.407701 0.008482 0.016761 +4 0.149020 0.573613 0.010237 0.018347 +4 0.148581 0.444281 0.009944 0.018800 +4 0.148728 0.702945 0.009652 0.018800 +3 0.771424 0.642922 0.007312 0.020159 +4 0.148435 0.635221 0.009652 0.018347 +1 0.125622 0.585844 0.023106 0.045527 +4 0.521644 0.651755 0.008482 0.019706 +1 0.125914 0.518347 0.023106 0.045527 +4 0.148728 0.506116 0.009067 0.018347 +3 0.498684 0.286183 0.007605 0.019253 +4 0.148143 0.852208 0.009067 0.018347 +5 0.358584 0.247339 0.007605 0.015402 +3 0.333870 0.247339 0.006727 0.019026 +5 0.166130 0.173386 0.007605 0.015176 +4 0.146827 0.163986 0.008774 0.017667 +3 0.458467 0.398641 0.007312 0.019026 +4 0.167885 0.775085 0.008774 0.018120 +4 0.147996 0.768516 0.008774 0.018120 +5 0.168178 0.376444 0.007020 0.014496 +4 0.148289 0.376670 0.009359 0.018120 +3 0.622697 0.116195 0.006435 0.019479 +3 0.602223 0.113024 0.006435 0.018573 +4 0.773911 0.528539 0.008190 0.017441 +3 0.754314 0.528879 0.006435 0.019479 +4 0.267330 0.127067 0.008190 0.018120 +4 0.287803 0.124122 0.008190 0.017667 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_6.jpg b/data_dataset/mosz/debug/debug_6.jpg new file mode 100644 index 0000000..317adec Binary files /dev/null and b/data_dataset/mosz/debug/debug_6.jpg differ diff --git a/data_dataset/mosz/debug/debug_6.txt b/data_dataset/mosz/debug/debug_6.txt new file mode 100644 index 0000000..fc1686e --- /dev/null +++ b/data_dataset/mosz/debug/debug_6.txt @@ -0,0 +1,369 @@ +10 0.788091 0.765611 0.012843 0.006335 +10 0.623759 0.765498 0.013427 0.006109 +10 0.849095 0.762896 0.013427 0.005882 +6 0.597198 0.767308 0.010508 0.023303 +6 0.756276 0.766629 0.009924 0.022398 +6 0.242995 0.167534 0.007881 0.016063 +12 0.182866 0.883145 0.010216 0.007919 +12 0.198190 0.876810 0.009340 0.007014 +12 0.333479 0.875905 0.010216 0.007466 +12 0.306042 0.869344 0.010216 0.007466 +12 0.216287 0.866403 0.010508 0.007014 +12 0.283713 0.866176 0.009924 0.007466 +12 0.349679 0.866176 0.009924 0.007919 +12 0.483946 0.865271 0.009924 0.007466 +12 0.266346 0.863009 0.009632 0.007014 +12 0.454028 0.862330 0.010216 0.007466 +12 0.249708 0.860068 0.010216 0.007466 +12 0.232779 0.860294 0.010216 0.007919 +12 0.367630 0.859615 0.010216 0.007466 +12 0.436515 0.859389 0.010216 0.007919 +12 0.499562 0.858937 0.010216 0.007466 +12 0.418418 0.855995 0.010216 0.007014 +12 0.385143 0.853507 0.010216 0.007466 +12 0.402656 0.853054 0.010216 0.007466 +12 0.518827 0.852828 0.010216 0.007919 +12 0.598803 0.846493 0.010216 0.007014 +12 0.535756 0.843552 0.010216 0.007014 +12 0.615441 0.843326 0.009632 0.007014 +12 0.557356 0.840158 0.010216 0.007466 +12 0.643462 0.837217 0.010800 0.007014 +12 0.574869 0.837217 0.010216 0.007466 +12 0.718622 0.830204 0.010508 0.007919 +12 0.660829 0.829977 0.010508 0.007919 +12 0.683742 0.824321 0.010216 0.007919 +18 0.851284 0.821380 0.014886 0.007014 +18 0.806334 0.821719 0.013719 0.007692 +12 0.736281 0.820928 0.010216 0.007014 +12 0.700088 0.820928 0.010216 0.007466 +18 0.754086 0.814593 0.010800 0.007014 +18 0.770870 0.808258 0.010508 0.007919 +18 0.683158 0.779977 0.014302 0.007014 +18 0.525686 0.780317 0.014011 0.007692 +11 0.728692 0.779751 0.009632 0.007014 +11 0.569323 0.779751 0.009632 0.007014 +12 0.449212 0.777036 0.009924 0.007014 +13 0.432574 0.774321 0.009924 0.007014 +13 0.469790 0.773869 0.010216 0.007014 +13 0.416229 0.771154 0.010508 0.007466 +13 0.485844 0.770701 0.010800 0.007466 +17 0.361646 0.768213 0.011675 0.007466 +12 0.393608 0.767986 0.010800 0.007466 +12 0.296702 0.762557 0.009632 0.007466 +13 0.272621 0.759389 0.009924 0.007014 +13 0.317280 0.759163 0.010508 0.007014 +13 0.333771 0.755995 0.010216 0.007466 +13 0.256276 0.756222 0.009924 0.007919 +11 0.181845 0.753281 0.009924 0.007014 +12 0.214682 0.753054 0.010216 0.007466 +12 0.236281 0.752828 0.010800 0.007466 +12 0.518681 0.704864 0.009924 0.007014 +13 0.502481 0.702149 0.010216 0.007014 +11 0.386311 0.702602 0.010216 0.007919 +13 0.540426 0.702149 0.010216 0.007466 +12 0.352890 0.699208 0.010508 0.007014 +13 0.484384 0.698982 0.010216 0.007014 +13 0.556772 0.698756 0.010216 0.007014 +12 0.330852 0.696493 0.010216 0.007014 +12 0.585668 0.696041 0.010800 0.007466 +13 0.468039 0.695814 0.010216 0.007466 +13 0.449942 0.692873 0.010216 0.007014 +11 0.422212 0.692986 0.010800 0.007240 +13 0.254086 0.690385 0.010800 0.007466 +12 0.308815 0.690158 0.009924 0.007466 +12 0.606830 0.689480 0.009924 0.007014 +13 0.211763 0.687670 0.010216 0.007014 +11 0.181407 0.687670 0.010216 0.007014 +13 0.229714 0.687443 0.009924 0.007014 +13 0.268973 0.687217 0.010216 0.007466 +12 0.287507 0.684050 0.010508 0.007919 +12 0.730736 0.683371 0.010216 0.007014 +12 0.709720 0.680430 0.010216 0.007014 +12 0.626678 0.680430 0.010508 0.007466 +12 0.859019 0.676810 0.010508 0.007466 +12 0.689288 0.676584 0.010216 0.007466 +12 0.838879 0.673643 0.009924 0.007466 +12 0.667396 0.672964 0.010216 0.007919 +12 0.647548 0.673190 0.010216 0.008371 +12 0.818301 0.670701 0.010800 0.007466 +12 0.797577 0.667081 0.010216 0.007466 +17 0.761092 0.667081 0.011967 0.007919 +12 0.525102 0.628167 0.009924 0.007014 +12 0.562901 0.625000 0.010800 0.007014 +12 0.504378 0.625000 0.010508 0.007466 +12 0.347198 0.622285 0.010216 0.007014 +12 0.482925 0.622059 0.010800 0.007014 +12 0.388938 0.622285 0.010800 0.007466 +12 0.255984 0.619570 0.010508 0.007014 +11 0.419148 0.619118 0.009924 0.007466 +12 0.320198 0.619118 0.010508 0.007466 +12 0.454028 0.618665 0.010216 0.007014 +12 0.584939 0.618665 0.009924 0.007466 +12 0.236281 0.616629 0.010216 0.007466 +12 0.299329 0.616403 0.010216 0.007466 +12 0.279480 0.613235 0.010216 0.007466 +12 0.208844 0.613009 0.010216 0.007014 +12 0.721395 0.612557 0.010216 0.007014 +12 0.180531 0.610294 0.010800 0.007014 +12 0.691331 0.609389 0.010800 0.007014 +12 0.605809 0.609615 0.010216 0.007466 +12 0.858144 0.606448 0.010508 0.007014 +12 0.670899 0.605995 0.009632 0.007014 +12 0.836544 0.603281 0.011092 0.007014 +12 0.627992 0.603507 0.010216 0.007466 +12 0.648570 0.603054 0.009924 0.007466 +12 0.815236 0.599434 0.009924 0.007014 +17 0.757005 0.596267 0.010800 0.007466 +12 0.793783 0.596267 0.009632 0.007919 +11 0.181115 0.553959 0.010800 0.007466 +12 0.315674 0.550566 0.010216 0.007014 +12 0.210012 0.550566 0.010216 0.007014 +12 0.229860 0.547851 0.010216 0.007466 +12 0.295826 0.547624 0.010216 0.007466 +11 0.348365 0.547398 0.010216 0.007466 +12 0.488762 0.544231 0.010800 0.007014 +12 0.376386 0.544457 0.010216 0.007466 +12 0.857998 0.544005 0.010216 0.007014 +12 0.274810 0.544570 0.010216 0.008145 +12 0.255254 0.544457 0.010800 0.007919 +12 0.396235 0.541290 0.010216 0.007466 +12 0.831728 0.541063 0.010216 0.007466 +12 0.526416 0.541176 0.010216 0.007692 +12 0.462785 0.541063 0.010216 0.007466 +12 0.773497 0.540724 0.010508 0.007240 +12 0.435931 0.538122 0.010216 0.007014 +12 0.811442 0.537896 0.009924 0.007014 +12 0.416667 0.537896 0.010216 0.007014 +12 0.748249 0.537896 0.010216 0.007466 +12 0.545972 0.534955 0.010800 0.007014 +12 0.728984 0.534502 0.010216 0.007014 +12 0.792177 0.534502 0.009924 0.007466 +12 0.679072 0.528167 0.010800 0.007466 +12 0.653970 0.525226 0.009632 0.007466 +12 0.564507 0.525452 0.010508 0.007919 +12 0.707968 0.524887 0.010216 0.008145 +12 0.634997 0.521380 0.010216 0.007014 +12 0.610771 0.518439 0.010216 0.007919 +12 0.589901 0.518439 0.009924 0.007919 +12 0.863835 0.478846 0.010216 0.007014 +12 0.844571 0.475905 0.010216 0.007466 +12 0.824723 0.472511 0.010216 0.007014 +12 0.733946 0.472511 0.010800 0.007014 +12 0.798015 0.469344 0.010508 0.007466 +12 0.708698 0.469344 0.010508 0.007466 +12 0.602306 0.469344 0.010216 0.007466 +17 0.767075 0.469118 0.011092 0.007466 +13 0.692790 0.466403 0.010216 0.007014 +13 0.660683 0.466176 0.010216 0.007014 +12 0.621570 0.463235 0.010216 0.007014 +13 0.640981 0.463009 0.010508 0.007014 +12 0.552685 0.463462 0.010800 0.007919 +12 0.513573 0.460520 0.010216 0.007014 +13 0.571950 0.460294 0.010216 0.007014 +13 0.677029 0.460294 0.010216 0.007466 +12 0.180531 0.457579 0.010800 0.007466 +13 0.586544 0.457127 0.010216 0.007466 +12 0.469206 0.450339 0.010216 0.007919 +11 0.417834 0.448303 0.010216 0.007919 +12 0.199504 0.448190 0.010216 0.007692 +12 0.443374 0.448077 0.010508 0.007919 +12 0.329685 0.445362 0.010216 0.007919 +12 0.494600 0.444683 0.010800 0.007014 +12 0.366754 0.442195 0.010800 0.007919 +12 0.226795 0.442195 0.011092 0.007919 +12 0.303707 0.441742 0.010800 0.008371 +13 0.387186 0.439027 0.010216 0.007466 +12 0.284734 0.439027 0.010800 0.007466 +12 0.245914 0.436312 0.010216 0.007919 +12 0.265178 0.435860 0.010216 0.007919 +13 0.402072 0.435860 0.010800 0.008371 +13 0.377992 0.402376 0.010508 0.006561 +12 0.455342 0.401923 0.010508 0.007014 +13 0.510800 0.398982 0.010508 0.007014 +11 0.484092 0.399208 0.010800 0.007466 +13 0.392148 0.399208 0.010216 0.007466 +13 0.363689 0.399208 0.009924 0.007919 +13 0.406159 0.396041 0.010216 0.007466 +13 0.573263 0.395814 0.009924 0.007466 +13 0.526124 0.393100 0.009632 0.007466 +13 0.421337 0.392873 0.010216 0.007466 +13 0.553561 0.392873 0.010800 0.007919 +13 0.587712 0.389932 0.010216 0.007014 +13 0.538675 0.389706 0.010216 0.007014 +12 0.437682 0.389706 0.010216 0.007014 +12 0.707093 0.386765 0.009632 0.007014 +13 0.675569 0.383597 0.010800 0.007466 +12 0.726065 0.380656 0.010216 0.007014 +13 0.659515 0.379977 0.010216 0.007466 +13 0.645505 0.377262 0.010216 0.007466 +13 0.334939 0.377489 0.010216 0.007919 +13 0.321220 0.377376 0.010800 0.007692 +11 0.294950 0.377262 0.010800 0.007919 +12 0.861792 0.374548 0.010800 0.007466 +13 0.632224 0.374321 0.010508 0.007919 +12 0.266637 0.373643 0.010216 0.007466 +12 0.835085 0.371606 0.010508 0.007919 +12 0.746060 0.371154 0.010508 0.007919 +13 0.616316 0.370701 0.010216 0.007466 +13 0.348949 0.370701 0.010216 0.007919 +12 0.247811 0.370249 0.009924 0.007919 +12 0.817717 0.367986 0.010216 0.007466 +13 0.602014 0.367760 0.010216 0.007014 +12 0.228984 0.367534 0.009632 0.007919 +12 0.771745 0.364819 0.010508 0.007919 +12 0.792032 0.364819 0.010800 0.008371 +12 0.210741 0.364140 0.010508 0.007919 +17 0.180677 0.364140 0.011092 0.007919 +12 0.636602 0.325000 0.010508 0.007014 +13 0.658932 0.321833 0.010216 0.007014 +13 0.621133 0.321606 0.010508 0.007014 +11 0.507005 0.321833 0.011092 0.007466 +13 0.675569 0.318665 0.010800 0.007014 +13 0.603473 0.318439 0.010216 0.007014 +12 0.473147 0.318439 0.010508 0.007466 +12 0.709720 0.315724 0.010216 0.007919 +13 0.586252 0.315724 0.009632 0.007919 +12 0.451839 0.315498 0.009924 0.007919 +13 0.569907 0.312557 0.010800 0.006561 +11 0.540426 0.312330 0.010216 0.007014 +13 0.378138 0.309615 0.010216 0.007466 +12 0.730152 0.309163 0.010216 0.007014 +12 0.430677 0.309389 0.010216 0.007466 +13 0.355954 0.306448 0.010216 0.007014 +13 0.338733 0.306448 0.010800 0.007014 +13 0.393316 0.306448 0.010216 0.007466 +11 0.309545 0.306222 0.010800 0.007014 +12 0.855954 0.303959 0.010800 0.007466 +12 0.276999 0.303507 0.010508 0.007014 +12 0.409661 0.303054 0.010216 0.007014 +12 0.834063 0.300792 0.010216 0.007466 +12 0.750584 0.300339 0.010216 0.007466 +12 0.257005 0.299887 0.010800 0.007466 +12 0.813631 0.297398 0.010216 0.007466 +12 0.235989 0.296493 0.009632 0.007919 +12 0.793053 0.294005 0.010508 0.007919 +12 0.772767 0.293778 0.010216 0.007919 +12 0.214974 0.293552 0.009632 0.007919 +17 0.179656 0.293326 0.011384 0.007466 +17 0.688704 0.253733 0.011967 0.007014 +12 0.626970 0.253507 0.009924 0.007014 +13 0.549912 0.253507 0.009924 0.007014 +12 0.729860 0.250792 0.010216 0.007014 +17 0.658056 0.250566 0.011384 0.007466 +13 0.564653 0.250566 0.010216 0.007466 +13 0.534880 0.250566 0.010216 0.007466 +13 0.578225 0.247398 0.010508 0.007014 +12 0.749124 0.244683 0.009632 0.007466 +13 0.593549 0.244231 0.010216 0.007014 +12 0.179656 0.244231 0.010216 0.007014 +12 0.608435 0.240837 0.009632 0.007466 +12 0.862668 0.238348 0.011384 0.007466 +12 0.199796 0.237670 0.010800 0.007466 +12 0.837566 0.235633 0.010216 0.007466 +12 0.766346 0.234955 0.010216 0.007919 +12 0.818301 0.231787 0.010216 0.007466 +12 0.313339 0.231787 0.010216 0.007466 +12 0.800934 0.228846 0.009924 0.007014 +12 0.783713 0.228846 0.009924 0.007014 +13 0.490660 0.228620 0.010508 0.007466 +12 0.293783 0.228620 0.010800 0.007466 +11 0.465412 0.228394 0.010800 0.007466 +13 0.506276 0.228394 0.009632 0.007919 +12 0.217601 0.228167 0.010216 0.007466 +12 0.433012 0.224774 0.010216 0.007466 +12 0.274810 0.224774 0.010216 0.007466 +12 0.256276 0.222511 0.009924 0.007466 +12 0.413164 0.222285 0.010216 0.007466 +13 0.520578 0.221833 0.010216 0.007466 +12 0.237449 0.221833 0.010216 0.007919 +12 0.394191 0.219570 0.009632 0.007466 +17 0.344863 0.216403 0.011384 0.007919 +12 0.375219 0.215837 0.010216 0.008145 +12 0.831290 0.176357 0.009924 0.007466 +12 0.279189 0.173869 0.010216 0.007466 +13 0.848949 0.173416 0.010216 0.007014 +13 0.816988 0.173190 0.010508 0.007014 +11 0.718330 0.173190 0.010508 0.007014 +13 0.865149 0.170249 0.010508 0.007014 +13 0.803123 0.170023 0.010216 0.007014 +12 0.687536 0.170249 0.010216 0.007466 +12 0.297285 0.167534 0.009632 0.007466 +12 0.670169 0.167081 0.010508 0.007919 +13 0.790280 0.166855 0.010216 0.007919 +13 0.775686 0.163914 0.010216 0.007014 +11 0.750000 0.163688 0.010216 0.007466 +13 0.606976 0.160973 0.010216 0.007919 +12 0.407764 0.160973 0.009924 0.007919 +12 0.651926 0.160973 0.010216 0.008371 +12 0.385727 0.158258 0.010216 0.007014 +13 0.572388 0.158032 0.010508 0.007014 +11 0.544513 0.158032 0.010216 0.007014 +13 0.619527 0.157805 0.010216 0.007014 +13 0.586252 0.158032 0.009632 0.007466 +12 0.314945 0.158258 0.010508 0.007919 +12 0.514594 0.154864 0.010508 0.007466 +12 0.633246 0.154864 0.010216 0.007919 +12 0.368651 0.154864 0.010508 0.007919 +12 0.351138 0.151923 0.010508 0.007466 +12 0.332604 0.151923 0.010216 0.007466 +12 0.496351 0.151471 0.010800 0.007919 +12 0.479130 0.148303 0.010216 0.007919 +12 0.462347 0.145362 0.011092 0.007919 +17 0.435055 0.145023 0.011967 0.008145 +11 0.384267 0.132692 0.007297 0.005656 +1 0.171483 0.166403 0.023059 0.045928 +4 0.397110 0.161199 0.009048 0.018778 +4 0.193374 0.154864 0.009048 0.018778 +1 0.130181 0.242421 0.023351 0.045928 +4 0.806480 0.368665 0.009340 0.018326 +4 0.596468 0.161199 0.008465 0.018778 +4 0.152802 0.457353 0.009632 0.018778 +4 0.851284 0.238801 0.009048 0.018778 +4 0.367338 0.309389 0.009048 0.018778 +4 0.849825 0.374774 0.009632 0.019231 +4 0.153678 0.380430 0.009048 0.018778 +1 0.129743 0.313914 0.023059 0.045928 +4 0.152218 0.231335 0.009632 0.018326 +3 0.813339 0.472511 0.006713 0.018778 +4 0.578517 0.517760 0.008757 0.018778 +4 0.215120 0.442647 0.009340 0.017873 +4 0.540134 0.463462 0.009048 0.018326 +4 0.759486 0.364819 0.008757 0.018326 +1 0.130619 0.391742 0.022475 0.045928 +4 0.623759 0.521833 0.009340 0.018778 +4 0.318155 0.446041 0.008757 0.018326 +1 0.131786 0.546041 0.022475 0.045928 +4 0.451109 0.541063 0.008465 0.018778 +1 0.130619 0.618665 0.022475 0.045475 +4 0.354641 0.441968 0.009340 0.018778 +4 0.152218 0.303281 0.009632 0.018326 +1 0.131786 0.468439 0.022475 0.046380 +3 0.472417 0.621946 0.007881 0.019457 +1 0.131494 0.853281 0.023059 0.045928 +4 0.285902 0.762557 0.008465 0.018778 +4 0.672212 0.823190 0.009340 0.019231 +4 0.587712 0.846719 0.008465 0.018778 +4 0.196877 0.613235 0.009048 0.018778 +4 0.846322 0.544005 0.008465 0.019231 +4 0.650759 0.466403 0.008465 0.018778 +4 0.668564 0.528394 0.009048 0.018778 +4 0.722563 0.472738 0.008465 0.019231 +4 0.694250 0.386765 0.009048 0.018326 +4 0.514740 0.540837 0.008465 0.018778 +4 0.242703 0.690385 0.008465 0.018778 +4 0.709428 0.612557 0.009048 0.018326 +4 0.294804 0.869796 0.009340 0.018778 +4 0.334939 0.622738 0.008465 0.019231 +4 0.224898 0.616176 0.009048 0.019231 +1 0.131203 0.768213 0.022475 0.045928 +4 0.153386 0.756448 0.009632 0.018778 +4 0.153970 0.841968 0.009632 0.018778 +4 0.153678 0.684502 0.009048 0.018778 +4 0.152802 0.607127 0.008465 0.018778 +4 0.761967 0.541063 0.009048 0.018778 +4 0.477087 0.544683 0.009048 0.019231 +4 0.457823 0.451471 0.009048 0.018778 +4 0.483071 0.445588 0.009340 0.019231 +4 0.376095 0.622511 0.009048 0.019231 +4 0.153386 0.534955 0.008465 0.018326 +1 0.131203 0.695814 0.022475 0.045928 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_7.jpg b/data_dataset/mosz/debug/debug_7.jpg new file mode 100644 index 0000000..dab8bcd Binary files /dev/null and b/data_dataset/mosz/debug/debug_7.jpg differ diff --git a/data_dataset/mosz/debug/debug_7.txt b/data_dataset/mosz/debug/debug_7.txt new file mode 100644 index 0000000..404ec2c --- /dev/null +++ b/data_dataset/mosz/debug/debug_7.txt @@ -0,0 +1,422 @@ +7 0.557597 0.859453 0.012832 0.016508 +7 0.539516 0.859227 0.012832 0.016056 +7 0.752989 0.859000 0.012832 0.016056 +7 0.769612 0.858774 0.012248 0.016508 +7 0.810732 0.858322 0.012832 0.016056 +10 0.849810 0.853912 0.013998 0.005880 +6 0.785943 0.857757 0.011082 0.023519 +7 0.617964 0.660674 0.012248 0.016056 +7 0.565763 0.660787 0.012832 0.016282 +7 0.740157 0.659882 0.012832 0.016282 +7 0.189851 0.658186 0.012248 0.020127 +7 0.685331 0.659995 0.012832 0.016056 +7 0.333333 0.661692 0.012248 0.018544 +7 0.255468 0.660222 0.012832 0.015604 +9 0.719306 0.660448 0.004958 0.028268 +7 0.838728 0.588535 0.012832 0.023293 +7 0.783902 0.591927 0.012832 0.015604 +7 0.766113 0.514134 0.012248 0.016508 +10 0.846603 0.509724 0.013415 0.005880 +7 0.807816 0.513682 0.012832 0.016056 +6 0.783319 0.513229 0.010499 0.023745 +7 0.370079 0.449231 0.012248 0.015604 +7 0.246719 0.449231 0.011665 0.015152 +7 0.440070 0.449231 0.012248 0.016508 +7 0.188393 0.449005 0.012832 0.015152 +7 0.498688 0.448553 0.012832 0.016508 +7 0.310295 0.449005 0.012832 0.015604 +7 0.644503 0.448779 0.012832 0.016508 +7 0.424614 0.375735 0.012832 0.016508 +7 0.308836 0.375961 0.012248 0.016056 +7 0.360163 0.376187 0.013415 0.016056 +7 0.662584 0.376187 0.012832 0.016508 +7 0.241178 0.375961 0.012248 0.015152 +7 0.545932 0.375961 0.012832 0.015604 +7 0.476815 0.375735 0.012248 0.016056 +7 0.841353 0.375735 0.013415 0.016508 +7 0.783902 0.375509 0.012832 0.016056 +7 0.597842 0.372569 0.012832 0.022840 +7 0.720910 0.375735 0.012832 0.016056 +7 0.189268 0.375735 0.012248 0.016056 +6 0.508895 0.375735 0.005249 0.027363 +9 0.733887 0.362393 0.004958 0.034600 +7 0.417323 0.298394 0.012248 0.027363 +7 0.473316 0.303822 0.012248 0.015152 +7 0.542432 0.303596 0.012832 0.015604 +7 0.356080 0.303822 0.012248 0.016056 +7 0.188101 0.303370 0.012248 0.016056 +7 0.841645 0.303370 0.012832 0.016508 +7 0.594051 0.303596 0.012248 0.016056 +7 0.239428 0.300882 0.012248 0.020579 +7 0.306795 0.303709 0.012832 0.016735 +7 0.789735 0.302804 0.012832 0.016282 +7 0.456110 0.237110 0.012832 0.015604 +7 0.258676 0.236771 0.012248 0.015378 +7 0.384369 0.237110 0.012832 0.016508 +7 0.331292 0.236884 0.012832 0.015604 +7 0.652085 0.236205 0.012832 0.015604 +7 0.193351 0.236658 0.012248 0.015604 +7 0.613007 0.236545 0.012832 0.015830 +7 0.594634 0.236431 0.012248 0.015604 +7 0.519685 0.236658 0.012832 0.016056 +7 0.839603 0.235753 0.012248 0.016056 +7 0.669583 0.236205 0.012832 0.016056 +7 0.780402 0.233265 0.012832 0.020579 +6 0.418927 0.236884 0.004958 0.028268 +7 0.485273 0.165423 0.012832 0.015604 +6 0.236512 0.165197 0.007582 0.016056 +10 0.275882 0.161239 0.012832 0.005880 +7 0.538933 0.164744 0.012832 0.015604 +7 0.618839 0.164518 0.012832 0.016056 +7 0.685477 0.164066 0.013123 0.015604 +7 0.764800 0.167006 0.013123 0.022388 +7 0.834208 0.163727 0.013123 0.016282 +9 0.349519 0.165084 0.004958 0.028494 +12 0.517206 0.877996 0.010790 0.007010 +12 0.479294 0.875170 0.010790 0.007689 +12 0.426363 0.874830 0.011082 0.007915 +11 0.403908 0.874830 0.010499 0.007915 +12 0.316856 0.871664 0.010790 0.007915 +12 0.369058 0.871212 0.010207 0.007463 +11 0.293088 0.871212 0.010499 0.007463 +12 0.254739 0.868046 0.010207 0.007010 +12 0.196559 0.865559 0.010499 0.007010 +11 0.172791 0.865559 0.009624 0.007915 +12 0.610819 0.862619 0.009624 0.007463 +12 0.610236 0.840231 0.010207 0.007915 +12 0.684019 0.862393 0.010207 0.007463 +12 0.684310 0.839778 0.010207 0.007463 +12 0.669437 0.862393 0.009041 0.007463 +12 0.669729 0.840457 0.010207 0.007915 +12 0.574949 0.862393 0.010207 0.007463 +12 0.574949 0.840005 0.010790 0.007915 +12 0.736512 0.861940 0.010207 0.007010 +12 0.736804 0.839326 0.011374 0.007915 +12 0.712015 0.862166 0.009041 0.007463 +12 0.711724 0.839552 0.010207 0.007463 +12 0.635900 0.862393 0.009624 0.007915 +12 0.635608 0.840005 0.010790 0.007463 +11 0.457130 0.859227 0.010207 0.007010 +12 0.655293 0.859340 0.010499 0.007689 +12 0.655147 0.836839 0.010207 0.007915 +12 0.594780 0.859227 0.010207 0.007463 +12 0.594488 0.836839 0.010207 0.007915 +12 0.696850 0.859114 0.010207 0.007689 +12 0.696705 0.836725 0.010499 0.007689 +11 0.347477 0.859000 0.010207 0.007463 +11 0.227326 0.859000 0.010790 0.007915 +12 0.680227 0.795681 0.010790 0.007010 +12 0.852581 0.795455 0.010207 0.007463 +12 0.563138 0.792967 0.010499 0.007463 +12 0.451006 0.792967 0.010790 0.007463 +11 0.178624 0.792967 0.010207 0.007463 +11 0.715806 0.792289 0.010790 0.007010 +11 0.780548 0.792062 0.010790 0.007010 +12 0.806212 0.792062 0.010790 0.007463 +12 0.263196 0.790027 0.010790 0.007010 +11 0.584281 0.790027 0.010207 0.007463 +12 0.332313 0.789801 0.010207 0.007010 +11 0.535871 0.789801 0.010207 0.007463 +11 0.474045 0.789801 0.010207 0.007463 +12 0.206328 0.789575 0.010207 0.007010 +12 0.740595 0.789123 0.010207 0.007010 +11 0.352727 0.786861 0.010207 0.007010 +12 0.498833 0.786635 0.010790 0.007010 +11 0.300233 0.786635 0.010207 0.007463 +11 0.653543 0.786409 0.010499 0.007463 +11 0.826626 0.786070 0.010790 0.007689 +12 0.615631 0.783695 0.010499 0.007010 +11 0.421843 0.783695 0.010790 0.007463 +12 0.383931 0.780529 0.010790 0.007010 +11 0.232283 0.780303 0.010790 0.007010 +17 0.177311 0.745703 0.010499 0.007010 +11 0.177311 0.726142 0.010499 0.006784 +11 0.177311 0.732926 0.010499 0.006784 +11 0.177311 0.717209 0.009915 0.007010 +12 0.401137 0.733265 0.010207 0.007010 +12 0.806795 0.732587 0.010790 0.007915 +11 0.379703 0.729873 0.010499 0.007010 +11 0.423155 0.729873 0.010499 0.007463 +11 0.829834 0.729195 0.010207 0.007010 +11 0.783465 0.729195 0.010790 0.007010 +11 0.488043 0.727160 0.010207 0.007463 +12 0.454214 0.726934 0.010207 0.007463 +12 0.348206 0.726934 0.009915 0.007463 +12 0.858705 0.726481 0.010790 0.007010 +12 0.751094 0.726481 0.011374 0.007915 +12 0.653397 0.723768 0.010790 0.007010 +12 0.511082 0.723768 0.010790 0.007010 +12 0.251531 0.723315 0.010790 0.007010 +12 0.555993 0.720602 0.010790 0.007463 +11 0.280111 0.720602 0.010790 0.007463 +11 0.682998 0.720375 0.010499 0.007463 +11 0.320502 0.720602 0.010499 0.007915 +11 0.722514 0.720149 0.010207 0.007463 +11 0.584281 0.717662 0.010207 0.007463 +12 0.302421 0.717436 0.009915 0.007010 +12 0.704579 0.717209 0.010499 0.007010 +11 0.630505 0.717436 0.009915 0.007463 +11 0.228201 0.717209 0.010790 0.007463 +12 0.613444 0.714270 0.010207 0.007463 +11 0.534412 0.714270 0.010790 0.007463 +12 0.210120 0.714270 0.010790 0.007463 +11 0.386264 0.673112 0.010207 0.007463 +12 0.410907 0.669946 0.011665 0.007010 +11 0.358122 0.669720 0.011082 0.007010 +12 0.274570 0.666780 0.010207 0.007463 +12 0.309128 0.666780 0.010499 0.007915 +11 0.445757 0.663840 0.010790 0.007010 +12 0.230825 0.663388 0.010207 0.006558 +12 0.214786 0.660900 0.010790 0.007915 +12 0.172208 0.660674 0.010790 0.007915 +12 0.474482 0.654116 0.010499 0.007463 +12 0.600612 0.651402 0.010207 0.007010 +12 0.583115 0.651402 0.010207 0.007010 +12 0.636191 0.651176 0.010207 0.007010 +17 0.846165 0.651176 0.011374 0.007463 +12 0.758384 0.650950 0.010790 0.007010 +12 0.667687 0.651176 0.010207 0.007463 +17 0.796442 0.650950 0.011665 0.007463 +12 0.723389 0.650950 0.010790 0.007463 +12 0.704141 0.650950 0.010790 0.007463 +11 0.493001 0.648010 0.010790 0.007463 +12 0.516915 0.641904 0.011374 0.007010 +12 0.548411 0.632858 0.010207 0.007463 +11 0.172791 0.601425 0.010790 0.007010 +11 0.623943 0.598485 0.010207 0.007463 +12 0.541703 0.598485 0.010207 0.007463 +11 0.473316 0.595545 0.009915 0.007010 +12 0.645669 0.595093 0.010499 0.007010 +12 0.199621 0.595093 0.010790 0.007010 +12 0.595946 0.595093 0.010207 0.007463 +12 0.441091 0.592605 0.010790 0.007463 +11 0.574657 0.592379 0.010790 0.007463 +12 0.500000 0.592379 0.010790 0.007463 +11 0.378536 0.589439 0.009915 0.007463 +12 0.861621 0.588987 0.010790 0.007010 +11 0.677603 0.588987 0.010207 0.007010 +11 0.516915 0.589213 0.010790 0.007463 +11 0.418052 0.589213 0.010207 0.007463 +12 0.823126 0.588761 0.009624 0.007010 +12 0.353893 0.586273 0.010207 0.007463 +11 0.222805 0.586047 0.010499 0.007463 +12 0.800817 0.585595 0.010499 0.007010 +12 0.702683 0.582881 0.010207 0.007010 +12 0.400846 0.582881 0.009624 0.007463 +11 0.332313 0.579941 0.010207 0.007915 +12 0.251823 0.579715 0.010207 0.007463 +11 0.285652 0.576323 0.010207 0.007463 +12 0.308982 0.572931 0.010207 0.007463 +11 0.720181 0.572252 0.010207 0.007463 +12 0.740595 0.566373 0.010790 0.007463 +12 0.766550 0.566147 0.010207 0.007463 +11 0.528871 0.543080 0.010790 0.007915 +12 0.709390 0.540140 0.010207 0.007463 +12 0.660397 0.539914 0.010207 0.007463 +12 0.600904 0.539914 0.010207 0.007463 +12 0.552785 0.539009 0.010790 0.007010 +12 0.484252 0.536522 0.010207 0.007915 +12 0.370808 0.535844 0.010790 0.007915 +11 0.455381 0.534034 0.010207 0.007010 +11 0.405220 0.533356 0.010790 0.007010 +11 0.744678 0.533130 0.010207 0.007463 +11 0.685185 0.533130 0.010207 0.007463 +11 0.576553 0.533130 0.010499 0.007463 +11 0.636191 0.532904 0.010207 0.007463 +11 0.341936 0.532451 0.010790 0.007010 +12 0.431467 0.526798 0.010207 0.007463 +11 0.314232 0.526572 0.010207 0.007915 +11 0.274570 0.523632 0.010207 0.007010 +11 0.205453 0.514134 0.010790 0.007010 +11 0.242782 0.513908 0.010790 0.007010 +11 0.172353 0.511194 0.010499 0.007463 +11 0.679936 0.467775 0.010790 0.007010 +12 0.703995 0.460764 0.010499 0.007915 +11 0.733450 0.457372 0.009915 0.007463 +12 0.852289 0.451493 0.010790 0.007010 +12 0.754739 0.451266 0.010499 0.007463 +11 0.828667 0.445047 0.010207 0.006784 +11 0.788714 0.445047 0.010790 0.007237 +12 0.812773 0.441995 0.010499 0.007463 +12 0.516623 0.439281 0.010207 0.007010 +12 0.457714 0.436341 0.010207 0.007915 +12 0.482794 0.433175 0.010207 0.007463 +12 0.394721 0.429783 0.010790 0.007010 +11 0.621027 0.429557 0.009624 0.007915 +17 0.553077 0.429331 0.011374 0.007463 +11 0.592738 0.429331 0.010207 0.007915 +12 0.421843 0.426617 0.010207 0.007915 +12 0.335229 0.423677 0.009624 0.007463 +12 0.212161 0.423451 0.010790 0.007463 +12 0.230242 0.420737 0.010790 0.007915 +12 0.352435 0.420511 0.010207 0.007915 +12 0.171916 0.420285 0.010790 0.008367 +12 0.264946 0.417797 0.010207 0.007915 +12 0.293234 0.413727 0.010790 0.007915 +12 0.520706 0.379127 0.010207 0.007010 +12 0.493730 0.375961 0.010499 0.007010 +12 0.563867 0.369629 0.010207 0.007463 +12 0.460192 0.369855 0.011082 0.007915 +12 0.406095 0.367142 0.010790 0.006558 +12 0.581948 0.363523 0.010790 0.007463 +12 0.441528 0.363523 0.010499 0.007915 +12 0.378973 0.363523 0.010790 0.007915 +12 0.616506 0.357417 0.011082 0.007463 +12 0.345873 0.356965 0.011082 0.007010 +12 0.290610 0.356965 0.011374 0.007463 +12 0.325605 0.353799 0.010790 0.007915 +12 0.260134 0.353573 0.010499 0.007915 +12 0.859143 0.350407 0.010499 0.007463 +12 0.739137 0.350181 0.010207 0.007463 +12 0.686060 0.349729 0.010207 0.007010 +12 0.807670 0.349729 0.010790 0.007463 +12 0.224847 0.347919 0.010499 0.007010 +12 0.824730 0.347015 0.010499 0.007463 +12 0.704724 0.347241 0.010207 0.007915 +12 0.171916 0.347241 0.010790 0.007915 +12 0.767717 0.347015 0.010207 0.007915 +12 0.646107 0.347015 0.010790 0.008367 +12 0.206766 0.344301 0.009915 0.007463 +12 0.672645 0.331637 0.010207 0.007915 +12 0.690143 0.324853 0.010790 0.007915 +12 0.707641 0.318747 0.010790 0.007010 +12 0.724264 0.312189 0.010207 0.007463 +12 0.651210 0.309475 0.010499 0.007463 +12 0.741178 0.309023 0.010207 0.007463 +12 0.611403 0.306309 0.010207 0.007463 +12 0.765967 0.305857 0.010790 0.007010 +12 0.321814 0.302917 0.010207 0.007463 +12 0.262759 0.300430 0.010499 0.007463 +12 0.491543 0.297490 0.010207 0.007463 +12 0.289443 0.297038 0.010790 0.007010 +12 0.339895 0.297038 0.010207 0.007463 +12 0.560076 0.297038 0.010790 0.007915 +12 0.808545 0.296359 0.010790 0.007463 +12 0.440507 0.294324 0.010207 0.007010 +12 0.525080 0.291158 0.010207 0.007010 +12 0.373141 0.291158 0.010790 0.007915 +12 0.577136 0.290706 0.010499 0.007463 +12 0.222368 0.290932 0.010207 0.007915 +12 0.171187 0.290706 0.010499 0.007915 +12 0.825168 0.290027 0.010790 0.007463 +12 0.206037 0.287313 0.010207 0.007463 +12 0.858268 0.283921 0.010499 0.007463 +12 0.401429 0.281886 0.010207 0.007915 +12 0.458005 0.281434 0.010207 0.008367 +12 0.171187 0.259272 0.010499 0.008367 +12 0.629046 0.252488 0.010499 0.007463 +12 0.210994 0.252261 0.010207 0.007010 +12 0.537037 0.249095 0.010207 0.007010 +12 0.473170 0.246156 0.010790 0.007463 +12 0.235054 0.242990 0.010499 0.007010 +12 0.495917 0.242990 0.010790 0.007915 +12 0.433217 0.239937 0.010207 0.006784 +12 0.570866 0.239824 0.010207 0.007010 +12 0.756926 0.238693 0.010207 0.007463 +12 0.403033 0.237336 0.010499 0.007463 +12 0.277486 0.236884 0.010207 0.007915 +12 0.804316 0.232587 0.009915 0.006558 +12 0.368183 0.231004 0.010790 0.007010 +12 0.314232 0.231004 0.011374 0.007463 +12 0.823126 0.229421 0.010790 0.007463 +12 0.350831 0.228064 0.011082 0.007463 +12 0.858705 0.226481 0.010207 0.007463 +12 0.807962 0.188489 0.010790 0.007010 +12 0.853164 0.182384 0.010207 0.007010 +17 0.320064 0.181253 0.011374 0.007463 +11 0.365267 0.181027 0.009624 0.007463 +12 0.742491 0.179557 0.010499 0.007689 +12 0.702683 0.176730 0.010207 0.007915 +12 0.785214 0.175825 0.010790 0.007463 +12 0.386993 0.174469 0.010499 0.007010 +12 0.556722 0.174016 0.010499 0.007010 +11 0.410470 0.171303 0.010207 0.007463 +12 0.595801 0.171076 0.010499 0.007915 +12 0.660980 0.170624 0.010790 0.007915 +12 0.432342 0.168137 0.010790 0.007463 +12 0.638816 0.167458 0.010790 0.006558 +12 0.521726 0.164858 0.010499 0.007689 +12 0.467629 0.164971 0.011374 0.007915 +12 0.504083 0.162031 0.010790 0.007010 +1 0.167250 0.163614 0.022456 0.045907 +4 0.187810 0.152759 0.009915 0.018318 +4 0.792943 0.232813 0.009332 0.019222 +4 0.513269 0.291158 0.009915 0.018770 +1 0.122922 0.235075 0.022456 0.046359 +4 0.144649 0.290706 0.009915 0.018770 +4 0.143774 0.223994 0.009332 0.018318 +4 0.428696 0.295002 0.008749 0.019222 +4 0.201079 0.424129 0.009041 0.018318 +4 0.251823 0.300204 0.008457 0.019674 +4 0.639399 0.309475 0.009041 0.018770 +3 0.722805 0.458051 0.007874 0.020127 +1 0.124380 0.373700 0.023039 0.045907 +4 0.471566 0.433627 0.009332 0.019222 +4 0.662292 0.332090 0.008749 0.018318 +4 0.813211 0.588761 0.009041 0.019222 +1 0.122339 0.301787 0.022456 0.045907 +4 0.144940 0.363071 0.009332 0.018770 +1 0.123505 0.512551 0.022456 0.045907 +3 0.360455 0.536522 0.006999 0.019674 +4 0.531059 0.598711 0.008749 0.018318 +5 0.194372 0.510968 0.009041 0.015604 +4 0.613882 0.598485 0.008749 0.018770 +4 0.382765 0.430461 0.009624 0.018318 +4 0.796296 0.351085 0.009624 0.018770 +3 0.667833 0.468001 0.007582 0.019674 +5 0.472733 0.533808 0.008166 0.015152 +1 0.123797 0.724446 0.021872 0.045907 +4 0.272528 0.577001 0.009041 0.019222 +3 0.240741 0.579715 0.007291 0.019674 +5 0.442840 0.723994 0.007874 0.015604 +4 0.322689 0.423903 0.008457 0.019222 +4 0.674395 0.351764 0.008457 0.018770 +4 0.461213 0.595545 0.008457 0.019222 +4 0.145669 0.647784 0.009624 0.018318 +4 0.144794 0.579715 0.009041 0.018770 +4 0.144794 0.436115 0.009041 0.018318 +1 0.124089 0.658639 0.022456 0.045907 +3 0.222076 0.780755 0.007291 0.020127 +5 0.337270 0.723768 0.007874 0.015604 +3 0.263488 0.524084 0.007291 0.020127 +1 0.123797 0.590344 0.023039 0.045907 +5 0.203412 0.657508 0.008457 0.015604 +3 0.523622 0.714609 0.007291 0.019900 +3 0.602362 0.714270 0.007291 0.020127 +5 0.769175 0.788896 0.008457 0.015604 +3 0.322397 0.580167 0.007291 0.019674 +3 0.199329 0.714270 0.007291 0.019674 +5 0.705016 0.789123 0.008457 0.015604 +4 0.505687 0.878675 0.009332 0.018770 +3 0.447507 0.858096 0.006707 0.018770 +1 0.124380 0.446970 0.023039 0.045907 +5 0.282444 0.868498 0.007874 0.016056 +5 0.847623 0.723089 0.007874 0.016056 +4 0.320647 0.789801 0.008457 0.019222 +4 0.516040 0.543758 0.009041 0.017413 +3 0.162146 0.601877 0.006999 0.019674 +3 0.168416 0.792628 0.007291 0.020353 +1 0.124672 0.858548 0.022456 0.046359 +3 0.851414 0.588987 0.007291 0.019222 +3 0.477544 0.726820 0.007291 0.020353 +3 0.243949 0.868272 0.006707 0.019674 +5 0.583990 0.834125 0.008457 0.015604 +4 0.250948 0.789801 0.009041 0.019222 +5 0.645232 0.856287 0.009041 0.016056 +4 0.375911 0.673338 0.008749 0.018318 +5 0.584573 0.856061 0.007874 0.016056 +5 0.336979 0.855834 0.008457 0.016508 +1 0.123505 0.791949 0.022456 0.045681 +5 0.215077 0.856400 0.008457 0.016282 +4 0.145669 0.846563 0.009624 0.018770 +4 0.145086 0.780755 0.009624 0.018318 +3 0.372558 0.780529 0.007291 0.020127 +5 0.740595 0.723315 0.008457 0.016056 +4 0.347040 0.670398 0.009332 0.018770 +5 0.645232 0.833446 0.008457 0.015604 +4 0.145523 0.501696 0.009332 0.018318 +5 0.604695 0.780077 0.008457 0.016056 +5 0.166812 0.723202 0.006999 0.014925 +4 0.145523 0.714156 0.008749 0.017639 +3 0.440653 0.793080 0.006416 0.019448 +3 0.464567 0.789914 0.006416 0.017639 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_8.jpg b/data_dataset/mosz/debug/debug_8.jpg new file mode 100644 index 0000000..f3e5429 Binary files /dev/null and b/data_dataset/mosz/debug/debug_8.jpg differ diff --git a/data_dataset/mosz/debug/debug_8.txt b/data_dataset/mosz/debug/debug_8.txt new file mode 100644 index 0000000..504e2a3 --- /dev/null +++ b/data_dataset/mosz/debug/debug_8.txt @@ -0,0 +1,465 @@ +10 0.449412 0.883636 0.014118 0.006364 +10 0.369118 0.877500 0.013529 0.005909 +10 0.307647 0.865227 0.012941 0.005909 +6 0.278529 0.869205 0.007647 0.015682 +7 0.246471 0.869205 0.012941 0.015682 +7 0.202647 0.869432 0.012353 0.016136 +6 0.220882 0.868977 0.010000 0.024318 +7 0.307647 0.808068 0.012941 0.016136 +7 0.368235 0.808068 0.012941 0.016136 +7 0.546176 0.736932 0.012353 0.015682 +7 0.219706 0.737159 0.012353 0.016136 +7 0.488824 0.736932 0.012941 0.015682 +10 0.310588 0.732955 0.012941 0.005909 +7 0.269412 0.737159 0.012941 0.016136 +6 0.240882 0.736705 0.011176 0.023409 +6 0.687647 0.606932 0.010588 0.023864 +6 0.174412 0.605341 0.011176 0.023409 +6 0.378824 0.532159 0.010588 0.023409 +6 0.564706 0.459205 0.010588 0.022955 +6 0.174706 0.385568 0.010588 0.023864 +7 0.259412 0.318295 0.012941 0.016591 +7 0.219706 0.318068 0.012353 0.016136 +7 0.202647 0.317614 0.012353 0.017045 +10 0.314118 0.314091 0.014118 0.006364 +6 0.421176 0.317614 0.010588 0.023409 +6 0.237059 0.316932 0.010588 0.023864 +7 0.861471 0.249886 0.013529 0.017045 +7 0.843529 0.249659 0.012941 0.016591 +7 0.797941 0.254205 0.012353 0.024773 +7 0.779118 0.249886 0.012353 0.016136 +7 0.705000 0.249659 0.012353 0.015682 +7 0.657941 0.249886 0.012353 0.016136 +7 0.563235 0.250114 0.012353 0.016591 +7 0.437059 0.250114 0.012941 0.016591 +7 0.418529 0.250114 0.012353 0.015682 +7 0.370588 0.254205 0.012941 0.024773 +7 0.350882 0.250341 0.012353 0.016136 +7 0.291471 0.250341 0.012353 0.016136 +7 0.272059 0.250341 0.012353 0.016136 +7 0.223824 0.250114 0.012353 0.015682 +7 0.205294 0.248068 0.012941 0.019773 +7 0.723529 0.249659 0.012941 0.015682 +7 0.638824 0.249659 0.011765 0.015682 +7 0.582353 0.249886 0.012941 0.016136 +7 0.515294 0.254205 0.012941 0.024773 +7 0.496176 0.249659 0.012353 0.015682 +10 0.539706 0.202500 0.007647 0.005000 +7 0.722353 0.182386 0.012941 0.015682 +7 0.582353 0.182159 0.012941 0.016136 +7 0.563235 0.182386 0.012353 0.015682 +7 0.354412 0.182386 0.012353 0.015682 +7 0.272647 0.182159 0.012353 0.016136 +7 0.224118 0.182386 0.012941 0.016591 +7 0.861176 0.181705 0.012941 0.017045 +7 0.841765 0.182159 0.012941 0.016136 +7 0.795882 0.182159 0.012941 0.017045 +7 0.776471 0.181932 0.012941 0.015682 +7 0.702941 0.180114 0.012941 0.019318 +7 0.657353 0.179886 0.012353 0.020682 +7 0.638529 0.181932 0.012353 0.015682 +7 0.517059 0.181932 0.012941 0.015682 +7 0.498235 0.182159 0.012941 0.016136 +7 0.441176 0.182159 0.012941 0.016136 +7 0.422941 0.182159 0.012941 0.016136 +7 0.372059 0.182159 0.012353 0.016136 +7 0.293529 0.182386 0.012941 0.016591 +7 0.205294 0.182159 0.012941 0.016136 +7 0.859706 0.114432 0.013529 0.017045 +7 0.840882 0.114432 0.013529 0.017045 +7 0.788529 0.114659 0.012353 0.015682 +7 0.770000 0.114886 0.012941 0.016136 +7 0.707353 0.114659 0.012353 0.015682 +7 0.689412 0.114205 0.012941 0.016591 +7 0.641765 0.114659 0.012941 0.015682 +7 0.622059 0.114659 0.012353 0.015682 +7 0.512353 0.114659 0.012941 0.016591 +7 0.467941 0.114432 0.012353 0.016136 +7 0.448824 0.114886 0.012941 0.016136 +10 0.552647 0.110227 0.013529 0.005909 +6 0.486176 0.114432 0.011176 0.023409 +11 0.513382 0.888523 0.010294 0.007045 +12 0.544559 0.881932 0.010294 0.008409 +12 0.852500 0.879886 0.010882 0.007045 +12 0.718088 0.876250 0.010294 0.007045 +11 0.176912 0.875341 0.010294 0.007045 +12 0.791618 0.873523 0.010294 0.007045 +11 0.575147 0.872614 0.010294 0.007045 +11 0.761029 0.870114 0.010294 0.007500 +11 0.692794 0.869659 0.010294 0.007500 +11 0.820441 0.867614 0.010294 0.007045 +12 0.602059 0.866250 0.010588 0.006136 +12 0.668676 0.863864 0.010294 0.007727 +11 0.638088 0.860795 0.010294 0.007045 +12 0.453382 0.823295 0.010294 0.007500 +11 0.664412 0.820568 0.011176 0.007500 +12 0.624265 0.820114 0.010882 0.007500 +12 0.855882 0.817841 0.010000 0.007500 +11 0.478088 0.816705 0.010294 0.007045 +12 0.696324 0.814205 0.010294 0.007500 +11 0.592059 0.813977 0.010000 0.007955 +11 0.829706 0.811477 0.010588 0.006591 +12 0.504265 0.810568 0.010294 0.006591 +11 0.727500 0.808295 0.010294 0.007500 +12 0.570588 0.807841 0.011176 0.007500 +12 0.809853 0.805341 0.010294 0.007045 +11 0.784265 0.802386 0.010882 0.007500 +12 0.753088 0.802159 0.010882 0.007045 +11 0.541912 0.801477 0.010882 0.007500 +11 0.426471 0.801250 0.010000 0.007045 +12 0.425735 0.778977 0.010294 0.007955 +11 0.176324 0.798068 0.011471 0.007045 +12 0.204412 0.794886 0.010588 0.007955 +11 0.224559 0.791705 0.010294 0.007045 +12 0.250441 0.785568 0.010294 0.008409 +12 0.393971 0.782159 0.010294 0.007045 +12 0.348235 0.776250 0.010000 0.007045 +12 0.285735 0.776250 0.010294 0.007045 +12 0.326324 0.772614 0.010294 0.007955 +11 0.195294 0.762159 0.010588 0.007045 +12 0.771618 0.753068 0.010294 0.007045 +11 0.353088 0.749659 0.010882 0.007500 +12 0.792206 0.746705 0.010294 0.007045 +12 0.378088 0.746250 0.010294 0.007045 +11 0.403971 0.743295 0.010294 0.007500 +12 0.816324 0.740795 0.010294 0.007045 +12 0.747500 0.740568 0.010294 0.007500 +12 0.602941 0.740114 0.010000 0.007500 +12 0.718676 0.737386 0.010294 0.007500 +12 0.692794 0.737159 0.010294 0.007045 +12 0.430147 0.737159 0.010882 0.007045 +12 0.835441 0.734659 0.010882 0.006591 +12 0.673088 0.734205 0.009706 0.006591 +12 0.648382 0.734205 0.010882 0.006591 +12 0.572794 0.734205 0.010294 0.006591 +12 0.861618 0.731477 0.010294 0.007500 +12 0.623676 0.731023 0.010882 0.007500 +12 0.527206 0.728068 0.010294 0.007045 +12 0.470147 0.728068 0.010882 0.007045 +12 0.509265 0.724659 0.010294 0.007500 +11 0.797059 0.699886 0.010588 0.007955 +11 0.797059 0.686705 0.010000 0.007955 +11 0.725735 0.699205 0.010294 0.007500 +11 0.725735 0.682841 0.010294 0.007500 +11 0.682500 0.696023 0.010882 0.007500 +11 0.682206 0.679432 0.010294 0.007045 +11 0.580000 0.692159 0.010000 0.007955 +11 0.580147 0.676250 0.009706 0.007045 +11 0.538088 0.688977 0.010294 0.007045 +11 0.537794 0.672841 0.010294 0.007500 +11 0.825735 0.686477 0.010294 0.007500 +11 0.825441 0.664432 0.009706 0.007045 +11 0.503971 0.685795 0.010294 0.007955 +11 0.503529 0.669659 0.010000 0.007500 +11 0.418382 0.685568 0.010882 0.007500 +11 0.418382 0.669659 0.010882 0.007500 +11 0.753971 0.683068 0.010294 0.007045 +11 0.753971 0.661023 0.010294 0.006591 +11 0.376176 0.682386 0.011176 0.007500 +11 0.376029 0.667159 0.009706 0.007045 +11 0.343971 0.679432 0.010294 0.007045 +11 0.343676 0.663750 0.009706 0.007500 +11 0.246912 0.679432 0.010882 0.007045 +11 0.246618 0.663750 0.010882 0.007500 +11 0.205735 0.676250 0.010294 0.007045 +11 0.205441 0.660795 0.010882 0.007045 +12 0.465441 0.676023 0.010882 0.007500 +11 0.658088 0.673523 0.010294 0.007045 +11 0.657794 0.657614 0.010882 0.007045 +11 0.176912 0.673295 0.010294 0.007500 +12 0.176618 0.657159 0.010882 0.007045 +12 0.446176 0.672614 0.010588 0.007955 +11 0.614265 0.670341 0.009706 0.007045 +11 0.613971 0.654432 0.010294 0.007045 +12 0.305735 0.670114 0.011471 0.007500 +12 0.285147 0.667159 0.010294 0.007045 +17 0.646324 0.623295 0.011471 0.007500 +17 0.646176 0.601023 0.011176 0.007500 +17 0.593382 0.623295 0.011471 0.007500 +17 0.593088 0.601023 0.010882 0.007500 +12 0.861029 0.601250 0.010294 0.007045 +12 0.841324 0.598295 0.010882 0.007500 +17 0.540882 0.598068 0.011765 0.007045 +17 0.488088 0.598068 0.011471 0.007045 +12 0.374265 0.597841 0.009706 0.006591 +11 0.816912 0.594886 0.010882 0.007955 +11 0.719706 0.594659 0.010588 0.007500 +11 0.439118 0.594432 0.010000 0.007045 +12 0.351029 0.594659 0.010294 0.007500 +11 0.780147 0.591705 0.010882 0.007045 +11 0.409265 0.591250 0.010294 0.007955 +11 0.318676 0.591250 0.010294 0.007955 +11 0.203971 0.591250 0.010294 0.007955 +11 0.754559 0.588068 0.010294 0.007045 +11 0.279265 0.587386 0.010294 0.007500 +11 0.248382 0.584659 0.010882 0.007500 +12 0.567500 0.548750 0.010294 0.007500 +17 0.176618 0.548750 0.012059 0.007500 +17 0.793529 0.545795 0.011765 0.007955 +17 0.737500 0.545568 0.011471 0.007500 +11 0.633676 0.545568 0.009706 0.007500 +12 0.549412 0.545568 0.010000 0.007500 +17 0.336029 0.544886 0.012059 0.007045 +17 0.336029 0.551932 0.012059 0.007045 +17 0.286765 0.545000 0.011765 0.007273 +17 0.286765 0.552273 0.011765 0.007273 +17 0.231765 0.545000 0.011765 0.007273 +11 0.231765 0.552273 0.011765 0.007273 +17 0.848088 0.542614 0.011471 0.007045 +17 0.682206 0.542045 0.011471 0.006818 +17 0.682206 0.548864 0.011471 0.006818 +11 0.603235 0.542386 0.010000 0.007500 +11 0.517059 0.542159 0.010588 0.007045 +11 0.411912 0.542159 0.010882 0.007045 +11 0.476618 0.538977 0.010882 0.007045 +11 0.451029 0.535795 0.010294 0.007045 +11 0.273382 0.485568 0.010294 0.007500 +17 0.512941 0.484659 0.011765 0.007500 +11 0.372500 0.484886 0.009706 0.007955 +17 0.321471 0.484886 0.011765 0.007955 +17 0.175588 0.484659 0.010588 0.007500 +11 0.245735 0.481136 0.010294 0.007273 +11 0.206029 0.481477 0.010882 0.008409 +12 0.775735 0.475341 0.010294 0.007045 +11 0.402794 0.475341 0.010294 0.007045 +11 0.850441 0.471932 0.010294 0.007500 +12 0.754853 0.471932 0.009706 0.007500 +17 0.456176 0.472159 0.011765 0.007955 +11 0.814559 0.468977 0.010294 0.007955 +11 0.719265 0.468750 0.010294 0.007500 +11 0.600588 0.468750 0.010588 0.007500 +11 0.671471 0.465568 0.010588 0.007500 +11 0.640735 0.462386 0.010882 0.006591 +17 0.844118 0.411705 0.010588 0.007045 +11 0.736324 0.411705 0.010294 0.007045 +17 0.307647 0.411705 0.010588 0.007045 +17 0.678676 0.411477 0.011471 0.007500 +17 0.615147 0.411477 0.011471 0.007500 +17 0.338529 0.411477 0.010000 0.007500 +17 0.206618 0.411250 0.010882 0.007045 +17 0.256176 0.411250 0.011176 0.007955 +11 0.815441 0.408295 0.010294 0.007500 +11 0.767500 0.408523 0.010294 0.007955 +11 0.524853 0.408523 0.010294 0.007955 +11 0.562206 0.408068 0.010294 0.007955 +11 0.480441 0.405114 0.010294 0.007500 +17 0.390441 0.402159 0.011471 0.007045 +11 0.443088 0.401932 0.010882 0.007500 +17 0.725882 0.343295 0.012353 0.007500 +12 0.671029 0.340568 0.010294 0.007500 +12 0.689265 0.337386 0.010294 0.007500 +12 0.180294 0.337386 0.010588 0.007500 +12 0.180000 0.321250 0.010000 0.007045 +12 0.635441 0.337159 0.010882 0.007955 +12 0.653382 0.330795 0.010294 0.007045 +12 0.600147 0.330795 0.010882 0.007045 +12 0.581618 0.324432 0.010294 0.007045 +12 0.544265 0.321477 0.010294 0.006591 +11 0.508088 0.321250 0.010294 0.007045 +11 0.482941 0.321250 0.010588 0.007045 +11 0.447206 0.321250 0.010882 0.007045 +12 0.564265 0.318295 0.010882 0.007500 +11 0.354118 0.288977 0.008235 0.005227 +11 0.182500 0.275568 0.010882 0.007500 +12 0.181912 0.262614 0.010882 0.007045 +12 0.182206 0.247159 0.010294 0.007045 +11 0.756912 0.269205 0.010294 0.007500 +12 0.756176 0.253295 0.010000 0.007500 +12 0.614412 0.268750 0.010000 0.007500 +12 0.613824 0.253295 0.010000 0.007500 +12 0.471618 0.268977 0.010294 0.007955 +12 0.471176 0.252841 0.010588 0.006591 +12 0.247206 0.266023 0.010882 0.007500 +12 0.247500 0.249659 0.010294 0.006591 +12 0.247500 0.256250 0.010294 0.006591 +12 0.820882 0.265795 0.010588 0.007955 +12 0.820735 0.255795 0.009706 0.007045 +12 0.682353 0.265568 0.010588 0.007500 +12 0.682206 0.255795 0.010294 0.007045 +12 0.537794 0.265568 0.010882 0.007500 +12 0.537794 0.255795 0.009706 0.007045 +12 0.392647 0.265568 0.010588 0.007500 +12 0.392794 0.255795 0.010294 0.007045 +12 0.326912 0.262500 0.010294 0.006818 +12 0.326912 0.269318 0.010294 0.006818 +12 0.326029 0.253068 0.010882 0.007045 +17 0.615882 0.207614 0.010588 0.007045 +12 0.615294 0.194659 0.010000 0.007500 +12 0.615588 0.178977 0.010000 0.007045 +17 0.328971 0.207841 0.010882 0.007500 +12 0.328676 0.194886 0.011471 0.007045 +12 0.328676 0.178977 0.010294 0.007045 +12 0.249559 0.204432 0.009706 0.007045 +12 0.249706 0.194886 0.010000 0.007955 +12 0.249265 0.176023 0.010294 0.007500 +12 0.818382 0.204432 0.010882 0.007955 +12 0.818382 0.194432 0.010882 0.007045 +12 0.818088 0.176023 0.010882 0.007500 +11 0.540735 0.197955 0.010882 0.006818 +11 0.540735 0.204773 0.010882 0.006818 +12 0.540147 0.176023 0.010882 0.007500 +12 0.679853 0.197841 0.010294 0.007500 +12 0.679853 0.181477 0.010294 0.006591 +12 0.679853 0.188068 0.010294 0.006591 +12 0.397647 0.197841 0.010588 0.007500 +12 0.397500 0.181136 0.010294 0.006818 +12 0.397500 0.187955 0.010294 0.006818 +11 0.754118 0.194318 0.010588 0.006818 +11 0.754118 0.201136 0.010588 0.006818 +12 0.753676 0.185114 0.010882 0.007500 +12 0.753676 0.172159 0.010882 0.007045 +12 0.474559 0.194318 0.010294 0.006818 +11 0.474559 0.201136 0.010294 0.006818 +12 0.474265 0.184886 0.009706 0.007045 +12 0.181324 0.194318 0.010882 0.006818 +11 0.181324 0.201136 0.010882 0.006818 +12 0.181029 0.185341 0.010294 0.007045 +12 0.180882 0.172614 0.010000 0.007045 +12 0.744559 0.140114 0.010294 0.007500 +12 0.744559 0.127159 0.010294 0.007955 +12 0.744559 0.111705 0.010294 0.007045 +12 0.814118 0.130568 0.010588 0.007500 +12 0.814265 0.114205 0.009706 0.006591 +12 0.814265 0.120795 0.009706 0.006591 +12 0.665588 0.130000 0.010588 0.007273 +12 0.665588 0.137273 0.010588 0.007273 +12 0.665588 0.108295 0.010588 0.007500 +12 0.598235 0.126591 0.010588 0.006818 +12 0.598235 0.133409 0.010588 0.006818 +12 0.431324 0.117614 0.009706 0.007045 +12 0.431471 0.095114 0.010588 0.007500 +12 0.404265 0.117614 0.009706 0.007045 +12 0.404265 0.094659 0.010882 0.007500 +12 0.344853 0.117614 0.009706 0.007045 +12 0.345147 0.095114 0.010294 0.007500 +12 0.303382 0.117614 0.010294 0.007045 +12 0.303088 0.095341 0.010882 0.007955 +12 0.274265 0.117614 0.009706 0.007045 +12 0.274265 0.095341 0.010882 0.007955 +12 0.364559 0.117386 0.010294 0.007500 +12 0.364412 0.095114 0.011176 0.007500 +12 0.236618 0.117159 0.009706 0.007045 +12 0.236912 0.095114 0.010294 0.007500 +12 0.217500 0.117386 0.010294 0.007500 +12 0.217206 0.095114 0.010882 0.007500 +12 0.175147 0.117159 0.010294 0.007045 +12 0.174853 0.095114 0.010882 0.007500 +12 0.327353 0.114659 0.010588 0.007500 +12 0.326912 0.092159 0.010294 0.007955 +12 0.384265 0.114432 0.009706 0.007955 +12 0.383529 0.091932 0.010588 0.008409 +12 0.254412 0.114432 0.010000 0.007955 +12 0.254559 0.092159 0.010294 0.007955 +12 0.198382 0.113977 0.010882 0.007955 +12 0.198382 0.092159 0.010882 0.007955 +4 0.145735 0.101477 0.009706 0.018864 +5 0.803676 0.111477 0.007941 0.015227 +1 0.124265 0.113295 0.023235 0.046136 +4 0.168971 0.201932 0.009118 0.018864 +5 0.316324 0.089205 0.008529 0.016136 +5 0.187500 0.089432 0.008529 0.015682 +4 0.731912 0.111477 0.009118 0.018864 +5 0.386618 0.178977 0.007941 0.015682 +4 0.586029 0.133523 0.009118 0.018409 +4 0.463088 0.201250 0.009118 0.018409 +5 0.237500 0.201250 0.008529 0.015682 +4 0.604559 0.178977 0.009706 0.019318 +4 0.810147 0.256023 0.009118 0.018864 +4 0.671324 0.256250 0.009118 0.018409 +1 0.123382 0.181023 0.022647 0.046136 +4 0.527206 0.256023 0.009118 0.018864 +5 0.188088 0.111250 0.008529 0.015682 +4 0.145735 0.169205 0.009706 0.018864 +5 0.653971 0.133977 0.008529 0.015682 +4 0.145735 0.237841 0.009706 0.018864 +4 0.467500 0.405341 0.008529 0.018409 +4 0.743088 0.201250 0.009118 0.018409 +5 0.550735 0.405341 0.007941 0.015682 +1 0.124559 0.458295 0.022647 0.046136 +4 0.602206 0.268977 0.008529 0.018409 +4 0.313676 0.269432 0.009118 0.018409 +4 0.744853 0.268750 0.009118 0.018864 +5 0.529265 0.201705 0.008529 0.015682 +1 0.125147 0.384886 0.022647 0.045682 +5 0.669559 0.178977 0.007941 0.015682 +5 0.726618 0.542614 0.007941 0.015682 +3 0.708676 0.468977 0.007353 0.019318 +4 0.168382 0.336932 0.009118 0.018864 +5 0.444853 0.468977 0.007941 0.016591 +4 0.170735 0.246932 0.009118 0.018864 +5 0.743971 0.469205 0.008529 0.016136 +5 0.538676 0.542614 0.008529 0.015682 +5 0.267794 0.585341 0.007941 0.015682 +4 0.622794 0.337841 0.009706 0.018864 +5 0.317206 0.111477 0.007941 0.015227 +4 0.147500 0.446932 0.009706 0.018864 +4 0.381912 0.256250 0.009118 0.018409 +3 0.836618 0.542614 0.007941 0.020227 +1 0.125441 0.531477 0.022059 0.046136 +4 0.146029 0.305568 0.009118 0.018864 +4 0.147206 0.657159 0.010294 0.018409 +3 0.662500 0.734205 0.007941 0.018864 +4 0.364265 0.667159 0.009118 0.019318 +5 0.559853 0.804659 0.008529 0.016136 +3 0.716324 0.808295 0.007353 0.019773 +4 0.849265 0.731705 0.008529 0.018409 +4 0.708382 0.594886 0.007941 0.018409 +3 0.592206 0.542614 0.007353 0.020227 +1 0.124853 0.605568 0.022059 0.046136 +5 0.749559 0.867159 0.007941 0.015682 +1 0.124559 0.735795 0.022647 0.045682 +5 0.613382 0.817159 0.008529 0.015682 +4 0.561029 0.734659 0.008529 0.017955 +4 0.460735 0.268977 0.009118 0.018409 +3 0.670147 0.542614 0.007941 0.020227 +5 0.657500 0.860795 0.008529 0.015682 +5 0.807500 0.201932 0.008529 0.015227 +4 0.273971 0.667159 0.008529 0.019318 +5 0.564265 0.869432 0.009118 0.015682 +5 0.237794 0.246932 0.007941 0.016136 +4 0.760735 0.752841 0.009118 0.018864 +3 0.428676 0.594432 0.007353 0.020227 +1 0.125441 0.667841 0.022059 0.046136 +3 0.391912 0.856705 0.005588 0.013864 +3 0.782206 0.545795 0.007353 0.019318 +3 0.803088 0.468977 0.006765 0.020227 +5 0.626912 0.857159 0.008529 0.015682 +5 0.475147 0.594205 0.008529 0.016136 +1 0.124559 0.316705 0.022647 0.045682 +3 0.653971 0.820568 0.007353 0.020682 +5 0.839559 0.469205 0.007941 0.016136 +1 0.125147 0.806023 0.022647 0.046136 +5 0.533382 0.878977 0.008529 0.015682 +4 0.637206 0.734432 0.009118 0.019318 +4 0.685147 0.813977 0.008529 0.018409 +5 0.707794 0.734205 0.007941 0.015227 +5 0.623676 0.542614 0.007941 0.015682 +5 0.780735 0.869886 0.007941 0.015682 +3 0.505735 0.542386 0.007353 0.019773 +1 0.123971 0.248750 0.022647 0.046136 +5 0.236618 0.581705 0.007941 0.015682 +4 0.147500 0.856932 0.009706 0.017955 +3 0.589853 0.469432 0.007353 0.020227 +4 0.147500 0.373295 0.009706 0.018864 +4 0.147500 0.594659 0.009706 0.018864 +4 0.146912 0.724659 0.009706 0.018864 +4 0.381912 0.782614 0.009118 0.018409 +4 0.147206 0.520341 0.009118 0.018409 +1 0.124559 0.868068 0.022647 0.046591 +3 0.401912 0.542159 0.007941 0.019318 +3 0.526912 0.688523 0.007353 0.018409 +4 0.146912 0.795341 0.009706 0.019318 +3 0.842206 0.880341 0.007353 0.020227 +5 0.681912 0.866932 0.007941 0.016136 +5 0.363529 0.594545 0.007059 0.015455 +3 0.339706 0.594545 0.006471 0.019091 +5 0.474706 0.867045 0.005882 0.011364 +5 0.454706 0.860455 0.005882 0.011818 +5 0.354706 0.848409 0.004706 0.011364 +5 0.334412 0.845227 0.005294 0.011364 +3 0.268235 0.551591 0.007059 0.018636 +5 0.276176 0.542273 0.007647 0.014545 +4 0.213235 0.552273 0.008824 0.018182 +3 0.221176 0.545227 0.007059 0.018636 +3 0.312206 0.179205 0.008529 0.018409 +4 0.317647 0.179205 0.008235 0.018409 \ No newline at end of file diff --git a/data_dataset/mosz/debug/debug_9.jpg b/data_dataset/mosz/debug/debug_9.jpg new file mode 100644 index 0000000..4b32fd8 Binary files /dev/null and b/data_dataset/mosz/debug/debug_9.jpg differ diff --git a/data_dataset/mosz/debug/debug_9.txt b/data_dataset/mosz/debug/debug_9.txt new file mode 100644 index 0000000..36dedeb --- /dev/null +++ b/data_dataset/mosz/debug/debug_9.txt @@ -0,0 +1,374 @@ +7 0.706107 0.871396 0.012918 0.015664 +7 0.682032 0.871169 0.012918 0.016118 +10 0.844392 0.867196 0.013506 0.005902 +6 0.809160 0.867991 0.007634 0.010216 +7 0.763652 0.871169 0.012918 0.016572 +6 0.730476 0.871169 0.011157 0.023837 +7 0.232237 0.809421 0.011744 0.015210 +6 0.268056 0.808967 0.010570 0.023383 +6 0.498238 0.808854 0.009395 0.024064 +7 0.535819 0.738593 0.012331 0.016118 +6 0.573693 0.738593 0.010570 0.023383 +7 0.485320 0.532463 0.012918 0.015664 +7 0.403699 0.532690 0.012918 0.015210 +7 0.334703 0.532463 0.012331 0.015664 +7 0.553435 0.532236 0.012918 0.015664 +7 0.259248 0.532463 0.012918 0.015210 +7 0.191427 0.532009 0.012331 0.016118 +7 0.727246 0.531555 0.012918 0.015664 +7 0.253376 0.454824 0.012918 0.015210 +7 0.485614 0.454824 0.012331 0.015664 +7 0.692014 0.454597 0.012918 0.015664 +7 0.623605 0.454370 0.012331 0.016118 +7 0.547270 0.454597 0.012331 0.015664 +7 0.191427 0.454370 0.012331 0.015210 +7 0.833823 0.453916 0.012331 0.016572 +7 0.766588 0.454370 0.012918 0.015664 +7 0.384615 0.388990 0.012918 0.015664 +7 0.680564 0.388763 0.012918 0.016572 +7 0.250440 0.388990 0.012331 0.015210 +7 0.828244 0.388763 0.012331 0.017026 +7 0.758074 0.388990 0.012918 0.015664 +7 0.460070 0.388990 0.012331 0.015664 +7 0.606577 0.388763 0.012918 0.015664 +7 0.525837 0.388763 0.012331 0.015664 +7 0.189078 0.388536 0.012918 0.015210 +7 0.324134 0.388536 0.011744 0.015664 +7 0.825015 0.317253 0.011744 0.017480 +7 0.405755 0.317934 0.011744 0.016118 +7 0.687317 0.317480 0.012331 0.016572 +7 0.627422 0.317707 0.012331 0.016118 +7 0.270992 0.317707 0.012331 0.016118 +7 0.764827 0.317253 0.012331 0.016572 +7 0.485907 0.317707 0.012331 0.016572 +7 0.344686 0.317480 0.012918 0.016118 +7 0.553729 0.317253 0.012918 0.017026 +7 0.195537 0.317253 0.012918 0.016118 +7 0.659425 0.245289 0.012331 0.015664 +7 0.584263 0.245743 0.012331 0.015664 +7 0.216383 0.245289 0.012918 0.015664 +7 0.195537 0.245516 0.012331 0.015210 +7 0.824134 0.245289 0.012918 0.016118 +7 0.492073 0.245743 0.012331 0.016118 +7 0.432766 0.245970 0.012331 0.016572 +7 0.749266 0.245062 0.012331 0.015664 +7 0.261304 0.181952 0.012331 0.015210 +7 0.341163 0.181271 0.012331 0.015210 +7 0.192308 0.181271 0.012918 0.015664 +7 0.491779 0.181271 0.012918 0.016118 +7 0.410159 0.181271 0.012918 0.016118 +7 0.688491 0.181044 0.012918 0.016118 +7 0.629184 0.181271 0.012918 0.016572 +7 0.560188 0.181044 0.013506 0.016118 +7 0.830299 0.181044 0.012331 0.016572 +7 0.762772 0.180817 0.013506 0.016118 +6 0.304756 0.181271 0.005285 0.028831 +7 0.530828 0.117480 0.012331 0.016118 +7 0.508808 0.117821 0.012918 0.016799 +7 0.816794 0.117480 0.013506 0.016572 +7 0.750147 0.117253 0.012918 0.016118 +12 0.616706 0.883655 0.010276 0.007491 +12 0.314298 0.880250 0.010276 0.007491 +12 0.271433 0.877526 0.010276 0.007037 +12 0.593805 0.877299 0.010276 0.007491 +12 0.568555 0.873893 0.010276 0.007037 +12 0.203611 0.873893 0.009689 0.007037 +12 0.339841 0.873893 0.010863 0.007491 +12 0.657369 0.871169 0.010570 0.007037 +11 0.171609 0.870942 0.010276 0.007491 +12 0.365238 0.867991 0.009982 0.006583 +12 0.538168 0.867764 0.009982 0.007491 +12 0.394891 0.861862 0.009982 0.007037 +12 0.508074 0.861862 0.010276 0.007491 +11 0.239430 0.861635 0.009689 0.007037 +12 0.418233 0.858683 0.010276 0.007037 +12 0.484586 0.855505 0.010276 0.007946 +12 0.442895 0.852554 0.010276 0.007491 +12 0.529213 0.812372 0.010276 0.006583 +12 0.850264 0.809875 0.010570 0.007491 +12 0.795802 0.806697 0.010276 0.006583 +11 0.764680 0.803292 0.011450 0.007037 +12 0.665737 0.803292 0.010863 0.007491 +11 0.632267 0.800568 0.010863 0.007491 +11 0.818409 0.800114 0.010863 0.007037 +12 0.717704 0.800114 0.010276 0.007037 +12 0.415297 0.799886 0.010276 0.007491 +12 0.298150 0.799659 0.009689 0.007037 +12 0.465208 0.796935 0.011450 0.007037 +11 0.689518 0.796935 0.010276 0.007491 +12 0.592924 0.796935 0.009689 0.007491 +11 0.388285 0.796708 0.010276 0.007491 +11 0.436289 0.793757 0.009982 0.007037 +11 0.559748 0.793757 0.010276 0.007491 +12 0.346007 0.793530 0.010276 0.007491 +11 0.320170 0.789671 0.010276 0.007037 +11 0.208015 0.778320 0.010276 0.007491 +11 0.170875 0.778320 0.010570 0.007491 +12 0.735026 0.732690 0.010863 0.006583 +12 0.607311 0.732690 0.010863 0.007037 +12 0.205666 0.732690 0.010863 0.007037 +12 0.322519 0.732690 0.010863 0.007491 +12 0.370669 0.730193 0.009689 0.007037 +12 0.657223 0.729966 0.010863 0.007037 +12 0.252936 0.729966 0.010276 0.007037 +11 0.171022 0.729966 0.010863 0.007037 +12 0.787581 0.729739 0.010863 0.007037 +11 0.757634 0.726788 0.010863 0.007491 +11 0.344099 0.726788 0.010570 0.007491 +11 0.629331 0.726561 0.010276 0.007491 +11 0.225338 0.726561 0.010276 0.007491 +11 0.698326 0.723610 0.010863 0.007037 +11 0.289783 0.723383 0.009982 0.007037 +11 0.470200 0.717026 0.010276 0.007946 +17 0.417058 0.717026 0.012038 0.007946 +11 0.506312 0.716572 0.010863 0.008400 +17 0.833235 0.707264 0.011744 0.007491 +12 0.527745 0.674120 0.010276 0.007037 +11 0.209924 0.670942 0.009982 0.007037 +11 0.171462 0.670942 0.009982 0.007037 +11 0.495009 0.671169 0.010570 0.007946 +12 0.459336 0.667991 0.010863 0.007037 +11 0.557986 0.667764 0.010863 0.007037 +11 0.261010 0.667991 0.010570 0.007491 +12 0.584410 0.661862 0.010863 0.007946 +11 0.839401 0.658683 0.010570 0.006583 +12 0.414416 0.658910 0.010276 0.007037 +11 0.434087 0.655732 0.010863 0.007037 +11 0.624046 0.655505 0.010276 0.007037 +12 0.655167 0.652100 0.010276 0.007491 +12 0.344392 0.649376 0.011157 0.007037 +11 0.381679 0.646652 0.010570 0.007946 +11 0.675426 0.646198 0.010863 0.007491 +12 0.290957 0.642565 0.010570 0.007037 +11 0.312390 0.639387 0.009982 0.007946 +11 0.804610 0.636209 0.009689 0.007037 +17 0.751762 0.636436 0.011450 0.007491 +12 0.707428 0.633485 0.010276 0.008400 +12 0.626101 0.606697 0.010863 0.007491 +11 0.650470 0.603292 0.010276 0.007037 +12 0.681591 0.600568 0.010276 0.007037 +11 0.600558 0.600341 0.010276 0.006583 +12 0.563564 0.600795 0.010276 0.007491 +11 0.843365 0.600341 0.010863 0.007037 +11 0.717851 0.596935 0.009982 0.007491 +12 0.513946 0.591260 0.010863 0.007491 +11 0.176307 0.591260 0.010863 0.007491 +11 0.486054 0.588309 0.010276 0.007491 +12 0.743247 0.587855 0.010276 0.007491 +12 0.454052 0.584904 0.009689 0.007037 +11 0.541544 0.584677 0.010863 0.007037 +12 0.200822 0.584904 0.010570 0.007491 +11 0.807546 0.581725 0.010276 0.007037 +11 0.762331 0.581271 0.010276 0.007037 +11 0.219025 0.578547 0.010570 0.007491 +12 0.402965 0.578547 0.010276 0.007946 +11 0.378303 0.575369 0.010276 0.007946 +17 0.336025 0.575255 0.011450 0.007719 +17 0.283764 0.575142 0.011450 0.007946 +12 0.245302 0.572872 0.009689 0.007037 +11 0.423517 0.572191 0.010276 0.007037 +11 0.767029 0.547673 0.010276 0.007037 +12 0.792278 0.541317 0.010276 0.007037 +11 0.818996 0.534960 0.010863 0.007037 +12 0.852026 0.528604 0.010570 0.007037 +12 0.575602 0.522928 0.010276 0.007037 +12 0.508074 0.519523 0.010276 0.007491 +12 0.533617 0.516345 0.009689 0.007491 +11 0.666618 0.513167 0.010276 0.007491 +17 0.619348 0.513167 0.010863 0.007491 +12 0.431738 0.512713 0.010276 0.007037 +11 0.698620 0.512486 0.010863 0.007037 +12 0.464768 0.509989 0.010570 0.007946 +12 0.361274 0.507264 0.010276 0.007037 +12 0.216823 0.506810 0.010276 0.006583 +12 0.237522 0.503859 0.009982 0.007037 +12 0.383735 0.503859 0.009982 0.007491 +12 0.170141 0.503178 0.010863 0.008400 +12 0.281562 0.500454 0.009982 0.007491 +12 0.314592 0.497503 0.010863 0.007491 +12 0.342777 0.482293 0.009689 0.007946 +12 0.362449 0.475936 0.010276 0.007946 +12 0.383881 0.470034 0.009689 0.007037 +12 0.402965 0.463678 0.010276 0.007037 +12 0.423811 0.460499 0.009689 0.007037 +12 0.317234 0.460045 0.010276 0.007037 +12 0.457722 0.457548 0.010570 0.006583 +12 0.274956 0.457548 0.010276 0.007037 +12 0.508074 0.448014 0.010276 0.007037 +12 0.211979 0.448014 0.010570 0.007037 +12 0.529507 0.441657 0.010863 0.007037 +12 0.232678 0.441430 0.010276 0.007491 +12 0.169701 0.441430 0.010570 0.007491 +12 0.569730 0.435301 0.010276 0.007946 +12 0.854228 0.429171 0.010863 0.007037 +12 0.790517 0.429171 0.010276 0.007037 +12 0.650470 0.428944 0.010863 0.007037 +12 0.712860 0.428831 0.009982 0.007264 +12 0.602466 0.426220 0.010570 0.007946 +12 0.812096 0.425993 0.011157 0.007946 +12 0.744715 0.425993 0.010276 0.007946 +12 0.671315 0.425539 0.010276 0.008400 +12 0.578831 0.404767 0.010276 0.007719 +12 0.578244 0.392168 0.010276 0.007037 +12 0.627716 0.398297 0.009982 0.007491 +12 0.652819 0.392168 0.010276 0.007037 +12 0.543893 0.388536 0.010863 0.007946 +12 0.849237 0.382633 0.010863 0.006583 +12 0.703024 0.382633 0.010863 0.007037 +12 0.503670 0.382179 0.010276 0.007037 +12 0.439078 0.379909 0.010276 0.007491 +12 0.785526 0.379455 0.010276 0.007491 +12 0.481797 0.376277 0.010570 0.007491 +12 0.405021 0.376277 0.010276 0.007491 +12 0.365385 0.369921 0.009689 0.007491 +12 0.304756 0.369467 0.009982 0.007491 +12 0.270552 0.366742 0.010276 0.007946 +12 0.805197 0.366288 0.010863 0.007491 +12 0.343952 0.366515 0.010276 0.007946 +12 0.737522 0.366061 0.010570 0.007946 +12 0.169260 0.360613 0.010863 0.007491 +12 0.230769 0.360386 0.010570 0.007946 +12 0.210511 0.356527 0.009982 0.007491 +12 0.168967 0.339047 0.011450 0.007946 +12 0.217264 0.333371 0.010570 0.007491 +12 0.243834 0.323837 0.010863 0.007491 +12 0.459630 0.321112 0.010276 0.007037 +12 0.427921 0.318161 0.010863 0.007491 +12 0.291838 0.317480 0.009982 0.007037 +12 0.713300 0.314415 0.010276 0.007264 +12 0.513946 0.314302 0.009689 0.007491 +12 0.387111 0.311805 0.010863 0.007491 +12 0.325308 0.311351 0.010570 0.007491 +12 0.533764 0.311351 0.010570 0.007946 +12 0.744275 0.311124 0.010570 0.007946 +12 0.365972 0.308627 0.009689 0.006583 +12 0.574134 0.308400 0.010276 0.006583 +12 0.668379 0.305221 0.010863 0.007491 +12 0.608191 0.305221 0.010863 0.007491 +12 0.785526 0.304994 0.010276 0.007491 +12 0.648121 0.302043 0.010276 0.007491 +12 0.804316 0.296368 0.010276 0.007491 +12 0.851879 0.292281 0.010276 0.007491 +12 0.797857 0.270261 0.010276 0.007037 +12 0.846007 0.264359 0.010276 0.007037 +11 0.287287 0.261748 0.009689 0.007264 +11 0.236935 0.261407 0.009982 0.007037 +12 0.723870 0.261407 0.010276 0.007491 +12 0.679830 0.258456 0.010276 0.007491 +12 0.769671 0.258002 0.010276 0.007037 +12 0.515414 0.255278 0.010276 0.007491 +12 0.314005 0.255051 0.010276 0.007491 +11 0.341456 0.252100 0.009982 0.007037 +12 0.632560 0.251873 0.010276 0.007037 +12 0.558426 0.251873 0.010570 0.007037 +12 0.368908 0.249149 0.010276 0.006583 +12 0.605549 0.248695 0.010276 0.007037 +12 0.168086 0.248468 0.010276 0.006583 +12 0.472989 0.245743 0.010570 0.007946 +12 0.412948 0.245516 0.010276 0.007491 +12 0.452877 0.242792 0.010276 0.006583 +12 0.385056 0.207151 0.010863 0.007037 +12 0.467998 0.203519 0.010570 0.007946 +12 0.429389 0.200341 0.010276 0.007037 +12 0.317821 0.197389 0.010276 0.007491 +12 0.512772 0.197162 0.010276 0.007491 +12 0.281268 0.194211 0.010570 0.007037 +12 0.360393 0.194211 0.010863 0.007491 +12 0.847769 0.193530 0.010863 0.007037 +12 0.782149 0.190352 0.010570 0.007037 +12 0.235907 0.187855 0.010863 0.007037 +12 0.167939 0.187855 0.010570 0.007037 +12 0.535379 0.187628 0.010863 0.007491 +12 0.805490 0.187174 0.010863 0.007037 +12 0.212126 0.184449 0.010276 0.007491 +12 0.736494 0.183995 0.010276 0.007037 +12 0.706547 0.181498 0.010276 0.007946 +12 0.580887 0.181498 0.010276 0.007946 +12 0.668086 0.175142 0.010863 0.007037 +12 0.609072 0.175369 0.010276 0.007491 +12 0.649295 0.171964 0.010863 0.007037 +12 0.265854 0.139274 0.010863 0.007946 +17 0.432766 0.136776 0.011744 0.007037 +17 0.432619 0.127242 0.010863 0.007037 +12 0.482824 0.136322 0.010276 0.007037 +12 0.482237 0.126788 0.010276 0.007037 +11 0.371257 0.135868 0.010863 0.007037 +17 0.314592 0.136095 0.010863 0.007491 +11 0.602319 0.133371 0.010863 0.007037 +11 0.553582 0.133371 0.010863 0.007037 +11 0.233852 0.133144 0.010276 0.006583 +12 0.200969 0.132917 0.010276 0.007037 +11 0.173958 0.129739 0.010276 0.007037 +12 0.630358 0.127015 0.010570 0.007037 +12 0.839841 0.126788 0.010276 0.007037 +11 0.657223 0.124064 0.010276 0.007491 +12 0.685115 0.120658 0.010863 0.007037 +12 0.796389 0.117253 0.010276 0.007037 +12 0.726659 0.117253 0.010570 0.007037 +12 0.771726 0.114302 0.010276 0.006583 +1 0.116999 0.116345 0.022607 0.046084 +4 0.419113 0.126788 0.009102 0.019296 +4 0.139900 0.104767 0.009689 0.018388 +1 0.116412 0.180136 0.022607 0.045630 +5 0.162801 0.126788 0.008514 0.016118 +5 0.254991 0.136776 0.008514 0.015210 +4 0.139313 0.168785 0.009689 0.018388 +4 0.140194 0.441657 0.009102 0.018388 +4 0.839841 0.292963 0.009102 0.018388 +5 0.222989 0.129739 0.007927 0.015664 +4 0.778479 0.429171 0.009102 0.018388 +4 0.774075 0.379909 0.009102 0.018842 +4 0.139900 0.233031 0.009689 0.018842 +1 0.116265 0.244381 0.023488 0.046084 +4 0.139900 0.304994 0.009102 0.018388 +4 0.521873 0.516799 0.009102 0.018842 +4 0.277892 0.643246 0.009102 0.018388 +4 0.832795 0.600795 0.009102 0.018388 +4 0.205079 0.507264 0.008514 0.018842 +1 0.117293 0.316118 0.022607 0.046084 +4 0.306371 0.460045 0.009102 0.018388 +4 0.638139 0.429625 0.009102 0.018842 +4 0.529360 0.584904 0.009982 0.017934 +3 0.841309 0.528604 0.007927 0.019296 +4 0.349824 0.507719 0.009102 0.018388 +3 0.612302 0.655959 0.007340 0.020204 +4 0.701556 0.314983 0.008514 0.019296 +1 0.116999 0.386493 0.023194 0.046084 +4 0.331621 0.482066 0.009102 0.018842 +4 0.501615 0.314869 0.009102 0.019069 +1 0.118467 0.452781 0.022020 0.046084 +4 0.140194 0.519523 0.009102 0.018842 +4 0.165150 0.591260 0.009102 0.018842 +1 0.118614 0.737684 0.022901 0.045630 +4 0.525984 0.868218 0.009102 0.018842 +1 0.118761 0.869580 0.022607 0.046084 +3 0.752349 0.803519 0.007340 0.019750 +1 0.118174 0.808059 0.022607 0.045630 +4 0.755578 0.547446 0.007927 0.018842 +3 0.443629 0.585131 0.007634 0.019750 +4 0.653699 0.803292 0.008514 0.018842 +4 0.581180 0.796935 0.009102 0.018842 +4 0.193042 0.732690 0.009689 0.018388 +4 0.140928 0.584449 0.009395 0.018842 +4 0.331914 0.649149 0.009102 0.018842 +3 0.695097 0.633712 0.007340 0.019296 +4 0.669847 0.599659 0.008514 0.021112 +1 0.118174 0.595800 0.022020 0.046084 +4 0.161039 0.671169 0.009102 0.018842 +4 0.419407 0.513621 0.008514 0.018388 +1 0.117880 0.530420 0.022020 0.046084 +4 0.310188 0.732690 0.009102 0.018842 +4 0.556518 0.874120 0.009102 0.019750 +4 0.142249 0.796935 0.009689 0.018842 +4 0.516588 0.674120 0.008514 0.018388 +4 0.502936 0.591373 0.008808 0.019069 +4 0.140781 0.375596 0.009689 0.018842 +4 0.142249 0.858456 0.009689 0.018388 +1 0.118761 0.666402 0.022020 0.045630 +4 0.402085 0.659364 0.008514 0.018388 +4 0.141955 0.655278 0.009689 0.018842 +4 0.141662 0.726561 0.009102 0.018842 +4 0.643423 0.652100 0.009689 0.018842 +3 0.377129 0.796708 0.007340 0.019750 +4 0.722402 0.732804 0.009102 0.019069 +4 0.595567 0.732690 0.009102 0.018388 \ No newline at end of file diff --git a/data_dataset/mosz/mosz.pdf b/data_dataset/mosz/mosz.pdf new file mode 100644 index 0000000..9d78ad7 Binary files /dev/null and b/data_dataset/mosz/mosz.pdf differ diff --git a/data_dataset/tch/debug/debug_1.jpg b/data_dataset/tch/debug/debug_1.jpg new file mode 100644 index 0000000..16e18f6 Binary files /dev/null and b/data_dataset/tch/debug/debug_1.jpg differ diff --git a/data_dataset/tch/debug/debug_1.txt b/data_dataset/tch/debug/debug_1.txt new file mode 100644 index 0000000..689e67e --- /dev/null +++ b/data_dataset/tch/debug/debug_1.txt @@ -0,0 +1,525 @@ +10 0.917939 0.961966 0.007340 0.003860 +10 0.691280 0.951067 0.008514 0.006131 +9 0.932325 0.953792 0.016148 0.034741 +9 0.864797 0.949705 0.016148 0.042007 +10 0.811803 0.944028 0.008808 0.006585 +9 0.795068 0.955381 0.016442 0.042916 +10 0.869055 0.932675 0.012918 0.002498 +10 0.455520 0.932902 0.008514 0.005677 +10 0.170581 0.932221 0.007634 0.006585 +9 0.489430 0.933810 0.013506 0.038374 +9 0.244275 0.935173 0.017616 0.045186 +8 0.881679 0.939260 0.011157 0.037466 +9 0.416911 0.936989 0.014093 0.032016 +9 0.570757 0.941757 0.016442 0.042461 +10 0.882413 0.856608 0.019084 0.002952 +7 0.381826 0.855245 0.012625 0.017030 +9 0.124046 0.857516 0.012625 0.036558 +10 0.125220 0.842075 0.007927 0.002952 +9 0.158984 0.856267 0.010863 0.040418 +9 0.896506 0.844573 0.008514 0.034287 +9 0.701850 0.841848 0.011450 0.032016 +9 0.727686 0.839464 0.011450 0.032698 +10 0.284351 0.828451 0.007927 0.002498 +9 0.941720 0.840486 0.008514 0.039737 +9 0.523928 0.834469 0.017322 0.029519 +9 0.750587 0.837761 0.016148 0.036558 +10 0.550352 0.820050 0.007927 0.006131 +9 0.814298 0.834128 0.009689 0.049273 +10 0.606283 0.770209 0.008221 0.002725 +10 0.140047 0.764192 0.010570 0.003406 +10 0.191574 0.754201 0.007340 0.002952 +10 0.218585 0.754428 0.013212 0.005223 +7 0.740605 0.756017 0.013212 0.016576 +10 0.363329 0.749432 0.012625 0.002498 +9 0.851439 0.753633 0.007634 0.025431 +9 0.854815 0.752498 0.007927 0.023161 +10 0.631679 0.744210 0.010276 0.004768 +10 0.662801 0.744437 0.011450 0.006131 +10 0.355696 0.740690 0.013799 0.003179 +8 0.441133 0.746026 0.016735 0.035195 +9 0.466089 0.744437 0.017322 0.033833 +10 0.487816 0.730813 0.012625 0.005677 +9 0.183353 0.678134 0.015561 0.029746 +9 0.479008 0.677452 0.016148 0.028837 +9 0.383588 0.677452 0.016735 0.029292 +9 0.700675 0.676544 0.015561 0.030200 +9 0.600264 0.675409 0.013212 0.028383 +9 0.289930 0.676317 0.014974 0.029746 +10 0.297270 0.657470 0.010863 0.004768 +10 0.182766 0.657925 0.029654 0.005677 +10 0.054756 0.656789 0.008514 0.006585 +10 0.490458 0.651567 0.016735 0.006131 +10 0.715942 0.596390 0.007340 0.006131 +10 0.183059 0.594573 0.018497 0.006131 +9 0.915150 0.588442 0.015854 0.034287 +9 0.579859 0.588669 0.015854 0.030200 +10 0.587933 0.570731 0.017322 0.003406 +10 0.568555 0.570504 0.018497 0.003860 +9 0.447446 0.581857 0.016442 0.030200 +10 0.928509 0.567552 0.010276 0.002498 +10 0.659865 0.567552 0.021433 0.002952 +9 0.338961 0.575954 0.016148 0.029746 +10 0.161039 0.563806 0.007927 0.004995 +10 0.580006 0.563011 0.012038 0.005223 +9 0.188050 0.570958 0.016148 0.031562 +10 0.402085 0.555404 0.008514 0.002725 +10 0.353934 0.552112 0.013212 0.004768 +10 0.618761 0.500341 0.008514 0.004768 +10 0.658397 0.487398 0.009102 0.004314 +10 0.769671 0.486490 0.008514 0.003406 +10 0.320757 0.485581 0.009102 0.002498 +9 0.562977 0.500114 0.010863 0.035649 +10 0.239137 0.484673 0.012625 0.005223 +9 0.254404 0.496026 0.007927 0.031562 +9 0.837493 0.488874 0.012625 0.032698 +10 0.715942 0.438806 0.012625 0.005223 +7 0.150029 0.418597 0.012918 0.017030 +7 0.453024 0.417916 0.012918 0.016576 +10 0.924545 0.412693 0.008221 0.005223 +6 0.372578 0.417688 0.014093 0.030200 +10 0.593071 0.405200 0.008808 0.003860 +10 0.725044 0.319823 0.009102 0.004314 +9 0.530094 0.314373 0.007927 0.032925 +9 0.798738 0.322321 0.008514 0.031108 +10 0.785232 0.309605 0.016735 0.002952 +10 0.204198 0.330268 0.007927 0.004314 +9 0.314592 0.313011 0.010276 0.035195 +9 0.264093 0.303020 0.017322 0.045186 +10 0.232678 0.296889 0.007340 0.005677 +10 0.742954 0.266008 0.010863 0.006585 +10 0.605843 0.258856 0.013799 0.006358 +10 0.330446 0.258742 0.014974 0.006585 +10 0.464621 0.258288 0.012038 0.006131 +7 0.177628 0.244437 0.011157 0.016122 +12 0.896359 0.969346 0.011157 0.008174 +12 0.827217 0.965486 0.010863 0.007266 +14 0.947739 0.959923 0.011157 0.007493 +13 0.917058 0.959355 0.010863 0.006358 +16 0.712126 0.961853 0.013212 0.011807 +12 0.709777 0.934264 0.009102 0.008401 +15 0.628743 0.961399 0.015561 0.010899 +12 0.625954 0.931880 0.009982 0.008174 +12 0.758221 0.958674 0.009689 0.007266 +11 0.285085 0.953792 0.008808 0.004314 +13 0.288755 0.920981 0.009102 0.008174 +14 0.879477 0.952657 0.010863 0.007039 +13 0.848062 0.952543 0.010276 0.007266 +12 0.688344 0.952316 0.010276 0.007266 +11 0.732384 0.951862 0.006753 0.007266 +13 0.741486 0.934151 0.010276 0.008174 +13 0.426013 0.949932 0.006459 0.004768 +12 0.604375 0.949024 0.011450 0.008401 +13 0.778186 0.945277 0.009102 0.005904 +14 0.811069 0.945391 0.010276 0.007039 +12 0.534351 0.938011 0.011157 0.008174 +12 0.453464 0.934605 0.009689 0.007720 +13 0.224016 0.934037 0.008221 0.007947 +18 0.225631 0.954814 0.009689 0.004087 +13 0.199207 0.934037 0.009102 0.007947 +11 0.168820 0.933810 0.010570 0.008401 +14 0.658397 0.931426 0.009689 0.008174 +13 0.238550 0.930064 0.009689 0.008174 +14 0.588080 0.927452 0.009395 0.007947 +13 0.554903 0.927452 0.009395 0.007947 +13 0.255725 0.926431 0.009982 0.008174 +13 0.272020 0.923819 0.010863 0.007493 +12 0.126101 0.920186 0.010276 0.007947 +14 0.508514 0.917234 0.010570 0.007493 +13 0.475191 0.917461 0.010863 0.007947 +13 0.337639 0.917234 0.009982 0.008856 +13 0.313417 0.917007 0.009102 0.008401 +12 0.374193 0.913715 0.009689 0.008174 +12 0.146947 0.913147 0.010863 0.008401 +12 0.435849 0.910082 0.009689 0.007720 +12 0.401204 0.909855 0.009689 0.007266 +11 0.272314 0.872275 0.007927 0.007039 +12 0.270992 0.852180 0.009982 0.006812 +12 0.271873 0.842075 0.010570 0.007493 +17 0.407076 0.872275 0.010863 0.007493 +11 0.407223 0.855586 0.011157 0.007720 +11 0.407223 0.838329 0.009982 0.006812 +17 0.354521 0.872048 0.010276 0.007493 +12 0.354962 0.855132 0.009982 0.007266 +12 0.354521 0.837761 0.010276 0.006131 +12 0.220493 0.856835 0.008221 0.006585 +12 0.222548 0.848206 0.008808 0.006131 +12 0.442601 0.855699 0.010276 0.007947 +12 0.441427 0.839010 0.010276 0.007266 +12 0.240898 0.848320 0.009689 0.011807 +12 0.186583 0.845595 0.010276 0.006358 +12 0.186583 0.851953 0.010276 0.006358 +12 0.289930 0.845595 0.010276 0.007266 +11 0.124633 0.845027 0.009689 0.007039 +11 0.124633 0.852066 0.009689 0.007039 +12 0.309894 0.842075 0.010276 0.007493 +12 0.159865 0.841962 0.009689 0.007266 +12 0.159865 0.849228 0.009689 0.007266 +12 0.874046 0.836512 0.010570 0.007720 +11 0.840869 0.835945 0.009982 0.007947 +12 0.682472 0.835831 0.009689 0.007720 +11 0.587052 0.835263 0.009102 0.007947 +13 0.468585 0.834809 0.009982 0.007947 +12 0.898855 0.833106 0.010276 0.007266 +12 0.705079 0.831971 0.010276 0.008174 +13 0.660746 0.831744 0.009689 0.007720 +13 0.620816 0.831744 0.009689 0.007720 +13 0.489724 0.831517 0.010570 0.007720 +12 0.921169 0.830041 0.009102 0.007493 +12 0.729448 0.829246 0.010863 0.008174 +13 0.510129 0.828678 0.010276 0.007493 +12 0.944069 0.826521 0.010276 0.007720 +12 0.753523 0.825840 0.010276 0.007720 +13 0.529213 0.825613 0.009689 0.007720 +13 0.642249 0.825272 0.010276 0.007493 +12 0.792278 0.822434 0.009689 0.008174 +13 0.549472 0.821526 0.009102 0.007720 +12 0.816060 0.815622 0.009102 0.008174 +13 0.125807 0.786331 0.009689 0.008174 +13 0.147827 0.782698 0.011450 0.008174 +13 0.227686 0.779632 0.010276 0.007947 +13 0.173077 0.779746 0.007927 0.008174 +13 0.199207 0.778951 0.010863 0.009310 +13 0.247945 0.775999 0.010863 0.007947 +11 0.705666 0.773615 0.010276 0.005904 +12 0.705813 0.758856 0.009982 0.005450 +12 0.706107 0.743074 0.011157 0.007493 +17 0.777158 0.773728 0.011157 0.007039 +17 0.777011 0.759877 0.011450 0.007493 +11 0.777011 0.743074 0.011450 0.008401 +13 0.298150 0.772025 0.011450 0.007720 +17 0.310041 0.748638 0.011157 0.004087 +12 0.269084 0.772139 0.009689 0.007947 +12 0.282736 0.749546 0.014093 0.004087 +13 0.345713 0.768733 0.010276 0.007947 +13 0.317675 0.768506 0.011744 0.008401 +13 0.366265 0.765100 0.011450 0.006585 +13 0.420581 0.762262 0.010863 0.008174 +13 0.393423 0.762148 0.011744 0.008401 +13 0.441867 0.758515 0.010570 0.007039 +18 0.439812 0.773388 0.008221 0.004995 +13 0.495743 0.755563 0.010276 0.008401 +13 0.467557 0.755563 0.011450 0.008401 +13 0.547123 0.752157 0.009689 0.007039 +13 0.521580 0.751930 0.010276 0.006585 +13 0.883294 0.750341 0.010276 0.007947 +13 0.603200 0.749092 0.010276 0.008174 +13 0.575602 0.748978 0.010276 0.007947 +12 0.823987 0.746253 0.006753 0.005677 +13 0.854228 0.746821 0.009689 0.007266 +13 0.661039 0.745913 0.009689 0.006812 +13 0.631679 0.746140 0.009689 0.007266 +11 0.835291 0.743529 0.007046 0.005677 +13 0.910305 0.743983 0.011450 0.007947 +13 0.939078 0.736262 0.010276 0.007947 +12 0.905608 0.688465 0.009102 0.007720 +12 0.916471 0.658265 0.009689 0.003633 +13 0.922783 0.684037 0.009982 0.007947 +13 0.851439 0.688465 0.009982 0.007720 +13 0.795802 0.687330 0.010276 0.008629 +12 0.644451 0.687216 0.010570 0.008401 +12 0.231356 0.687103 0.009395 0.008174 +13 0.741045 0.687103 0.009982 0.009083 +12 0.421756 0.686421 0.009102 0.008174 +12 0.542132 0.686194 0.010276 0.008629 +13 0.869789 0.683810 0.010276 0.007493 +13 0.814592 0.683810 0.010276 0.007947 +13 0.677628 0.683583 0.011157 0.007493 +11 0.689225 0.659060 0.011450 0.007947 +12 0.329565 0.683583 0.010276 0.007493 +13 0.576189 0.683356 0.010276 0.007493 +13 0.455226 0.683356 0.010276 0.007493 +17 0.468291 0.659628 0.013506 0.004541 +12 0.127863 0.683470 0.009689 0.007720 +13 0.760570 0.683470 0.010276 0.008174 +13 0.941867 0.680858 0.009982 0.007039 +14 0.625073 0.680745 0.009395 0.007266 +13 0.159718 0.680631 0.009982 0.007493 +13 0.264386 0.680631 0.010276 0.007947 +14 0.200969 0.680858 0.009102 0.008401 +13 0.832648 0.680064 0.009982 0.007720 +14 0.721227 0.680177 0.010276 0.007947 +13 0.358632 0.679950 0.010276 0.007493 +13 0.887405 0.680177 0.010276 0.008401 +18 0.886964 0.658379 0.006459 0.003860 +14 0.308720 0.680064 0.009689 0.008174 +13 0.778479 0.680064 0.010863 0.008629 +14 0.496330 0.679496 0.009102 0.007947 +16 0.401497 0.662693 0.006166 0.004314 +13 0.402672 0.680631 0.010276 0.008401 +15 0.706694 0.658379 0.007634 0.003860 +14 0.696271 0.656562 0.011450 0.007947 +16 0.708015 0.652134 0.005578 0.004541 +12 0.852173 0.607175 0.010276 0.008174 +12 0.738256 0.602634 0.010276 0.008174 +14 0.934821 0.600704 0.010570 0.007493 +13 0.888579 0.600704 0.010276 0.007493 +14 0.820464 0.600477 0.010276 0.007493 +13 0.774956 0.600023 0.010863 0.006585 +12 0.631679 0.600136 0.010863 0.006812 +12 0.510570 0.599342 0.010570 0.007493 +13 0.669113 0.595822 0.009982 0.008174 +11 0.679977 0.571526 0.008808 0.008629 +12 0.382854 0.595708 0.009982 0.007947 +14 0.717117 0.595254 0.010276 0.007947 +12 0.715208 0.571526 0.008808 0.008629 +14 0.600411 0.588442 0.010570 0.007493 +13 0.551233 0.588556 0.010863 0.007720 +11 0.197739 0.583674 0.006753 0.005677 +13 0.207134 0.566076 0.010276 0.006812 +12 0.274369 0.582312 0.010863 0.007493 +11 0.230769 0.582425 0.011157 0.007720 +14 0.469319 0.582084 0.010863 0.007493 +13 0.420141 0.582084 0.011744 0.007493 +14 0.361568 0.575500 0.011450 0.007493 +13 0.312243 0.575613 0.011450 0.007720 +12 0.126688 0.572321 0.009102 0.007039 +18 0.688784 0.571526 0.008808 0.008629 +12 0.697592 0.571526 0.008808 0.008629 +16 0.706400 0.571526 0.008808 0.008629 +13 0.160305 0.566076 0.009395 0.007266 +13 0.535085 0.516008 0.009689 0.007947 +13 0.555344 0.512489 0.011450 0.008174 +13 0.575015 0.508856 0.010863 0.007266 +12 0.247651 0.506471 0.010863 0.007493 +13 0.597328 0.506017 0.010863 0.007947 +13 0.505285 0.505904 0.011157 0.007720 +11 0.466383 0.505904 0.010863 0.007720 +12 0.329272 0.505790 0.011450 0.007947 +11 0.178802 0.502725 0.009982 0.006358 +12 0.217117 0.502498 0.010276 0.006358 +13 0.617880 0.502498 0.009689 0.006812 +12 0.349530 0.502611 0.010863 0.007039 +12 0.299472 0.502611 0.010570 0.007039 +12 0.268644 0.502611 0.010570 0.007039 +13 0.639019 0.499432 0.010863 0.007947 +12 0.387698 0.499319 0.010863 0.007720 +11 0.926160 0.496821 0.009689 0.006812 +11 0.895772 0.496367 0.011744 0.008629 +13 0.906342 0.475590 0.009395 0.007947 +12 0.409425 0.492734 0.012038 0.007720 +12 0.126101 0.489896 0.009102 0.006585 +13 0.657957 0.489668 0.009982 0.007039 +13 0.768790 0.489101 0.009689 0.006358 +13 0.739430 0.489328 0.009689 0.006812 +11 0.700528 0.489555 0.009982 0.007266 +13 0.789196 0.486262 0.011744 0.007947 +12 0.430417 0.486035 0.010570 0.007947 +13 0.817381 0.482856 0.010570 0.007493 +12 0.151351 0.482970 0.011450 0.008174 +12 0.838080 0.478996 0.009689 0.007947 +13 0.866265 0.475477 0.009689 0.006812 +12 0.104962 0.445731 0.007340 0.005450 +12 0.407369 0.441076 0.006753 0.006131 +13 0.220934 0.435059 0.010863 0.007266 +12 0.231063 0.409514 0.009982 0.004768 +11 0.665737 0.432107 0.007340 0.004087 +12 0.675573 0.411331 0.010570 0.007947 +13 0.674839 0.431880 0.009102 0.004087 +11 0.288755 0.431426 0.011450 0.007266 +13 0.203905 0.431767 0.010863 0.007947 +11 0.342924 0.431085 0.010570 0.007493 +11 0.372431 0.428361 0.010863 0.006131 +12 0.125367 0.428701 0.011157 0.006812 +13 0.238990 0.428588 0.010570 0.007039 +18 0.243100 0.405313 0.007634 0.005904 +12 0.169554 0.428815 0.011450 0.007493 +12 0.319877 0.427906 0.010276 0.007039 +12 0.500294 0.424500 0.011744 0.007493 +11 0.472255 0.424500 0.010863 0.007493 +12 0.428215 0.424614 0.010863 0.007720 +13 0.255285 0.421549 0.010276 0.006585 +11 0.850851 0.421435 0.010570 0.006812 +11 0.624927 0.421208 0.010863 0.006812 +12 0.882707 0.420981 0.009689 0.006812 +12 0.524516 0.420754 0.010863 0.006358 +18 0.524516 0.404405 0.006753 0.004541 +12 0.711832 0.420981 0.010863 0.007266 +13 0.543600 0.418143 0.011450 0.007493 +12 0.903846 0.418143 0.011450 0.008401 +12 0.733558 0.417802 0.012038 0.008174 +13 0.692454 0.417802 0.011450 0.008174 +13 0.656929 0.417802 0.011450 0.008174 +12 0.923224 0.414623 0.009689 0.006812 +12 0.755138 0.414282 0.010570 0.006585 +13 0.560482 0.414396 0.009982 0.007266 +12 0.943188 0.411558 0.010276 0.007947 +13 0.577070 0.411331 0.009689 0.007493 +12 0.775984 0.411331 0.009982 0.007947 +12 0.809014 0.407811 0.009689 0.007266 +13 0.592777 0.407698 0.009982 0.007493 +12 0.829272 0.400886 0.011450 0.007947 +11 0.277892 0.386240 0.006166 0.004995 +12 0.144891 0.338896 0.007340 0.004314 +12 0.144011 0.329587 0.010276 0.006585 +18 0.141809 0.344346 0.007046 0.004314 +12 0.935555 0.332879 0.011450 0.007720 +12 0.126395 0.333106 0.010276 0.008174 +12 0.791985 0.332539 0.010863 0.007493 +13 0.199501 0.332425 0.009102 0.008629 +13 0.197886 0.309264 0.009982 0.007266 +11 0.894451 0.329133 0.010276 0.005677 +12 0.810482 0.329133 0.010276 0.006131 +12 0.839548 0.329246 0.010863 0.006812 +12 0.762478 0.329133 0.010570 0.007039 +12 0.863036 0.326181 0.010863 0.007947 +12 0.160746 0.323229 0.010863 0.007493 +12 0.723870 0.322661 0.009689 0.006812 +11 0.570023 0.322321 0.009689 0.007493 +12 0.600411 0.319142 0.008221 0.007493 +12 0.626541 0.319255 0.011157 0.008174 +13 0.180711 0.316530 0.009689 0.006812 +11 0.677921 0.315849 0.007046 0.005904 +12 0.960658 0.316417 0.005285 0.007493 +12 0.705226 0.315849 0.009982 0.007720 +11 0.688050 0.312897 0.007340 0.005450 +11 0.647827 0.312784 0.010863 0.007947 +12 0.379477 0.309491 0.011450 0.007720 +12 0.536847 0.309378 0.011450 0.007947 +11 0.484880 0.305404 0.007340 0.005450 +12 0.425719 0.305858 0.009982 0.007266 +12 0.399149 0.305518 0.010863 0.007493 +12 0.351585 0.305291 0.009689 0.007493 +13 0.214181 0.305631 0.009689 0.008174 +12 0.509836 0.305177 0.010276 0.007720 +12 0.496036 0.301885 0.006166 0.004768 +12 0.316647 0.302225 0.010276 0.007720 +11 0.451116 0.301998 0.010276 0.007720 +12 0.289636 0.298479 0.009102 0.007493 +13 0.230182 0.298592 0.009395 0.007720 +12 0.269084 0.295640 0.009102 0.008174 +12 0.247504 0.292348 0.009395 0.007947 +12 0.844245 0.270436 0.010863 0.007720 +13 0.915003 0.270322 0.010276 0.007947 +12 0.900323 0.266803 0.010276 0.007720 +11 0.872725 0.266462 0.009102 0.008401 +12 0.929977 0.263283 0.010863 0.007493 +12 0.944216 0.256812 0.009982 0.008174 +12 0.767322 0.253520 0.007340 0.006585 +11 0.706107 0.253065 0.007634 0.006585 +12 0.518790 0.250114 0.007046 0.005677 +12 0.798738 0.250000 0.006753 0.005904 +12 0.742073 0.249886 0.007340 0.005677 +18 0.740898 0.265895 0.006166 0.004087 +12 0.658837 0.250000 0.007046 0.005904 +12 0.754991 0.246821 0.007340 0.006812 +12 0.685702 0.246594 0.007340 0.006358 +12 0.547123 0.245913 0.007340 0.005450 +12 0.826042 0.246480 0.007340 0.007039 +12 0.781709 0.243529 0.007927 0.005677 +12 0.723870 0.243074 0.007340 0.005677 +18 0.151351 0.241939 0.006166 0.004768 +12 0.290517 0.237171 0.007340 0.005677 +12 0.623165 0.230359 0.007340 0.005677 +12 0.306665 0.230245 0.006166 0.005450 +12 0.483999 0.230018 0.007340 0.005450 +12 0.324281 0.226839 0.007340 0.005904 +12 0.454198 0.223206 0.007046 0.005450 +12 0.591750 0.222979 0.007927 0.005904 +12 0.639607 0.219460 0.007340 0.005677 +12 0.337199 0.219460 0.007340 0.005677 +12 0.500881 0.219233 0.007046 0.005677 +12 0.276718 0.213556 0.007340 0.005677 +12 0.350705 0.213215 0.007340 0.005904 +12 0.604962 0.212875 0.007340 0.005677 +12 0.466383 0.212761 0.007340 0.005450 +12 0.427481 0.210150 0.007634 0.005677 +12 0.564592 0.209242 0.007634 0.005677 +12 0.367440 0.206857 0.006753 0.005904 +18 0.386524 0.203111 0.007340 0.005677 +18 0.440252 0.200159 0.007927 0.005677 +12 0.412948 0.200272 0.007340 0.005904 +12 0.577657 0.199591 0.007927 0.006358 +11 0.333969 0.191644 0.006753 0.005450 +1 0.048004 0.851385 0.022020 0.042916 +4 0.314592 0.226045 0.007927 0.014305 +4 0.732090 0.249886 0.007340 0.013851 +3 0.697446 0.253747 0.006166 0.012489 +5 0.859806 0.264192 0.009102 0.014759 +4 0.365972 0.309605 0.010276 0.020663 +4 0.453464 0.505790 0.010863 0.021117 +4 0.235320 0.506244 0.010276 0.021571 +4 0.648708 0.250341 0.007340 0.012943 +3 0.523928 0.309378 0.007927 0.020663 +4 0.508661 0.250114 0.007927 0.012943 +4 0.789930 0.250114 0.007927 0.013397 +1 0.090429 0.240577 0.024075 0.043824 +1 0.052114 0.499659 0.023194 0.050636 +4 0.613183 0.319369 0.010276 0.021571 +0 0.052261 0.588442 0.021726 0.025658 +5 0.612008 0.676544 0.009102 0.016576 +4 0.286406 0.504201 0.010276 0.022934 +1 0.051380 0.415191 0.024075 0.044278 +4 0.825455 0.329587 0.010863 0.020663 +4 0.111127 0.785763 0.010863 0.021571 +4 0.521433 0.938351 0.011157 0.021571 +4 0.217410 0.687443 0.010276 0.021571 +4 0.521873 0.515327 0.010276 0.021117 +4 0.804903 0.483084 0.010276 0.020663 +4 0.215062 0.779632 0.010863 0.021571 +5 0.454639 0.752157 0.009102 0.017938 +4 0.332942 0.768506 0.010570 0.022025 +3 0.563271 0.749205 0.007927 0.022025 +4 0.837493 0.605132 0.010276 0.022252 +4 0.755872 0.489441 0.010863 0.020663 +4 0.329565 0.916099 0.017910 0.022934 +3 0.880065 0.329133 0.007340 0.018392 +4 0.777011 0.332539 0.010276 0.021117 +5 0.160452 0.774977 0.008514 0.017257 +3 0.474897 0.305518 0.006166 0.014759 +1 0.048884 0.954473 0.024369 0.051090 +4 0.534498 0.752157 0.010276 0.020663 +1 0.050059 0.755109 0.024369 0.051090 +3 0.922343 0.332993 0.007340 0.021571 +5 0.617293 0.595822 0.009102 0.017711 +5 0.217851 0.933810 0.022901 0.022025 +3 0.257634 0.872275 0.007927 0.020663 +4 0.646947 0.746253 0.010863 0.021117 +3 0.388873 0.910309 0.007340 0.022252 +4 0.360100 0.913374 0.010863 0.022025 +3 0.301086 0.917916 0.007927 0.022025 +3 0.619055 0.746367 0.007927 0.020890 +3 0.187463 0.779859 0.007340 0.020209 +4 0.526571 0.686081 0.010863 0.021117 +4 0.590282 0.748978 0.010276 0.021571 +5 0.146359 0.676771 0.009102 0.017030 +4 0.407369 0.762035 0.009689 0.021798 +3 0.381239 0.761921 0.006753 0.022025 +4 0.412801 0.305177 0.009395 0.020890 +3 0.438344 0.302452 0.006459 0.020890 +3 0.613770 0.230359 0.004991 0.012943 +5 0.629477 0.217530 0.007634 0.011353 +4 0.091603 0.653724 0.010570 0.020436 +4 0.081033 0.643506 0.010570 0.020890 +4 0.091309 0.572434 0.009395 0.019528 +4 0.081033 0.562443 0.009982 0.020436 +4 0.090575 0.752271 0.010276 0.020436 +4 0.080153 0.742053 0.009982 0.020890 +4 0.088961 0.852180 0.010570 0.020436 +4 0.078391 0.841735 0.009395 0.021344 +4 0.090722 0.496821 0.009395 0.019982 +4 0.079565 0.486376 0.009395 0.020890 +3 0.485026 0.755450 0.007046 0.021344 +3 0.509102 0.752271 0.007046 0.019528 +4 0.091309 0.322888 0.009982 0.019982 +4 0.081033 0.313124 0.010570 0.021344 +4 0.090722 0.951181 0.009982 0.020436 +4 0.080153 0.940736 0.009982 0.021344 +4 0.089695 0.415304 0.010863 0.020436 +4 0.081180 0.405313 0.010276 0.021344 +5 0.477246 0.226272 0.010276 0.020663 +5 0.361568 0.204587 0.010276 0.017711 +4 0.374633 0.204587 0.009982 0.017711 +3 0.258955 0.851839 0.009982 0.020663 +3 0.103787 0.851272 0.010276 0.018165 +5 0.113183 0.851272 0.010276 0.018165 +3 0.196858 0.855926 0.010276 0.020663 +4 0.208015 0.849569 0.010276 0.020663 +4 0.120229 0.230586 0.010276 0.020663 +4 0.130358 0.240804 0.009982 0.020663 +4 0.059014 0.311876 0.009982 0.020663 +4 0.052408 0.334696 0.010276 0.018619 +4 0.059014 0.334696 0.009982 0.018619 +4 0.057546 0.561194 0.009982 0.020663 +4 0.043600 0.658606 0.010276 0.020663 +4 0.057252 0.642030 0.009982 0.020663 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_10.jpg b/data_dataset/tch/debug/debug_10.jpg new file mode 100644 index 0000000..cb9b132 Binary files /dev/null and b/data_dataset/tch/debug/debug_10.jpg differ diff --git a/data_dataset/tch/debug/debug_10.txt b/data_dataset/tch/debug/debug_10.txt new file mode 100644 index 0000000..4fda7dc --- /dev/null +++ b/data_dataset/tch/debug/debug_10.txt @@ -0,0 +1,539 @@ +10 0.700029 0.984237 0.008499 0.003856 +10 0.464537 0.973350 0.009379 0.002949 +10 0.449590 0.971309 0.009379 0.005217 +10 0.253370 0.966546 0.009086 0.002949 +10 0.330158 0.965865 0.007913 0.003856 +10 0.272128 0.965525 0.023154 0.004990 +10 0.166911 0.964845 0.007327 0.004990 +10 0.358294 0.960875 0.007913 0.004763 +10 0.218787 0.952710 0.014947 0.005217 +10 0.900498 0.950442 0.009086 0.003402 +9 0.472304 0.948514 0.010844 0.024949 +10 0.904894 0.944545 0.014361 0.005217 +8 0.923652 0.958607 0.014361 0.046042 +10 0.905481 0.938875 0.009672 0.004763 +8 0.887603 0.952937 0.014947 0.037423 +10 0.887896 0.941824 0.007327 0.003402 +9 0.448564 0.949081 0.014947 0.039692 +9 0.871483 0.955886 0.014361 0.043320 +10 0.832210 0.935473 0.007327 0.004763 +10 0.376612 0.958834 0.010551 0.006124 +10 0.109760 0.878544 0.012016 0.005217 +10 0.235492 0.873554 0.009086 0.003856 +10 0.327227 0.870606 0.007327 0.002949 +10 0.447392 0.866750 0.008499 0.005670 +10 0.326934 0.864482 0.007913 0.002495 +10 0.805832 0.859946 0.007913 0.003402 +10 0.483148 0.859038 0.010844 0.004763 +10 0.894050 0.853368 0.030774 0.005217 +9 0.180686 0.856317 0.009672 0.023815 +10 0.634672 0.847017 0.009086 0.004309 +10 0.146102 0.882626 0.007327 0.003402 +10 0.133792 0.880358 0.012016 0.003402 +9 0.796161 0.839986 0.010844 0.027897 +10 0.174238 0.784985 0.018464 0.005443 +10 0.530920 0.781697 0.007327 0.003856 +10 0.765094 0.781243 0.011430 0.004763 +10 0.802608 0.779655 0.011430 0.005217 +10 0.484027 0.779202 0.012016 0.004763 +10 0.239302 0.779428 0.017292 0.005217 +10 0.605070 0.778975 0.012603 0.004763 +10 0.756887 0.769902 0.009086 0.003856 +10 0.520662 0.769676 0.010258 0.003402 +9 0.102140 0.748696 0.010258 0.074847 +9 0.290592 0.747902 0.010844 0.074166 +9 0.475821 0.746314 0.013189 0.072352 +9 0.185961 0.746881 0.009086 0.078929 +10 0.114742 0.678725 0.021981 0.002949 +10 0.307005 0.677591 0.031360 0.004309 +10 0.509818 0.661715 0.007913 0.003402 +10 0.883792 0.662168 0.007913 0.004763 +10 0.788834 0.660581 0.007913 0.004763 +10 0.523886 0.656725 0.007913 0.004309 +10 0.890240 0.649467 0.011430 0.005670 +10 0.232562 0.647653 0.007913 0.002949 +10 0.333382 0.648333 0.007913 0.004763 +10 0.544402 0.661488 0.007913 0.002949 +9 0.103165 0.636085 0.009379 0.076435 +10 0.592761 0.546949 0.007913 0.002495 +10 0.838804 0.546723 0.008206 0.003402 +7 0.335141 0.532434 0.011430 0.011567 +8 0.137896 0.531073 0.012016 0.009753 +7 0.779162 0.534021 0.012016 0.016557 +7 0.566090 0.534021 0.012603 0.015650 +10 0.942409 0.528691 0.016120 0.004990 +10 0.275059 0.501814 0.007327 0.006124 +10 0.327227 0.444432 0.009086 0.005217 +10 0.751612 0.440803 0.007913 0.005217 +10 0.827814 0.440689 0.029015 0.006351 +10 0.383499 0.440689 0.024326 0.006351 +10 0.917204 0.436267 0.007327 0.004763 +10 0.395223 0.434906 0.010258 0.003856 +7 0.135551 0.429916 0.012603 0.016103 +9 0.252491 0.429803 0.010844 0.038104 +6 0.160463 0.428328 0.013189 0.024722 +6 0.598329 0.427194 0.013189 0.024269 +9 0.375586 0.420844 0.009672 0.036063 +9 0.460287 0.408256 0.007913 0.031300 +10 0.734027 0.366863 0.010844 0.005217 +9 0.726993 0.350646 0.006155 0.023588 +10 0.306419 0.346450 0.010258 0.006124 +9 0.572538 0.335450 0.016120 0.033114 +10 0.690064 0.331935 0.009672 0.002949 +9 0.117966 0.332842 0.008499 0.038784 +10 0.220838 0.317646 0.011430 0.003402 +9 0.479631 0.325584 0.009672 0.049218 +10 0.899326 0.264572 0.011430 0.005217 +10 0.481096 0.252778 0.009672 0.003402 +10 0.586020 0.250964 0.012016 0.004763 +10 0.513628 0.231005 0.009086 0.004763 +8 0.687427 0.223066 0.008499 0.019279 +10 0.462925 0.167385 0.009086 0.002722 +10 0.700909 0.163529 0.011430 0.003175 +10 0.670721 0.164550 0.016706 0.006577 +10 0.303195 0.162962 0.007327 0.005670 +9 0.596864 0.141869 0.015533 0.031526 +9 0.481389 0.142096 0.016706 0.032434 +10 0.736958 0.082899 0.016120 0.002495 +10 0.839537 0.081424 0.010258 0.003629 +10 0.715856 0.081651 0.016120 0.005443 +10 0.139361 0.075868 0.009672 0.006577 +10 0.578107 0.067929 0.007913 0.006124 +9 0.782093 0.061805 0.016120 0.031980 +10 0.179807 0.047516 0.010844 0.005670 +9 0.589244 0.051032 0.006741 0.029485 +9 0.349502 0.051372 0.010258 0.030166 +9 0.558763 0.041960 0.016120 0.038557 +14 0.939185 0.976525 0.010258 0.007485 +14 0.913247 0.973237 0.011137 0.007711 +13 0.861225 0.972670 0.011430 0.007485 +17 0.874121 0.948288 0.013189 0.004083 +17 0.417644 0.970175 0.009379 0.004309 +14 0.428634 0.938421 0.010844 0.007938 +14 0.834555 0.969041 0.011430 0.007485 +14 0.886870 0.966546 0.011723 0.007938 +14 0.809203 0.965865 0.011137 0.007938 +14 0.756301 0.962236 0.010844 0.007031 +14 0.783265 0.959061 0.010844 0.007938 +14 0.723036 0.959061 0.011723 0.007938 +13 0.697245 0.955432 0.011137 0.007485 +14 0.644490 0.955205 0.011137 0.007938 +14 0.618845 0.951917 0.011430 0.007711 +14 0.539127 0.949081 0.011430 0.007031 +14 0.670868 0.948968 0.011137 0.007258 +14 0.592175 0.948741 0.010844 0.007258 +14 0.507474 0.945679 0.011430 0.007485 +13 0.480217 0.942277 0.009672 0.007485 +14 0.566383 0.942164 0.010844 0.007711 +13 0.454426 0.935133 0.010844 0.007711 +14 0.401524 0.935133 0.011137 0.008619 +14 0.374560 0.932184 0.011137 0.007711 +14 0.321952 0.932071 0.010258 0.007485 +14 0.290006 0.928328 0.009086 0.008165 +14 0.210580 0.925607 0.010844 0.007711 +14 0.347743 0.925153 0.009672 0.007258 +14 0.263042 0.924813 0.009086 0.007938 +14 0.184203 0.921978 0.009672 0.007711 +18 0.236958 0.918802 0.010844 0.007711 +18 0.158998 0.918689 0.010844 0.007938 +12 0.132767 0.915400 0.009965 0.007711 +12 0.105950 0.912112 0.009086 0.007485 +11 0.377345 0.867997 0.017878 0.005443 +14 0.371630 0.839306 0.010551 0.007938 +14 0.395809 0.835564 0.010258 0.008165 +14 0.805100 0.831821 0.011137 0.007485 +17 0.786049 0.865956 0.018757 0.004083 +14 0.778576 0.835223 0.010258 0.007938 +18 0.859027 0.865729 0.013482 0.004083 +17 0.840123 0.865729 0.013775 0.004083 +12 0.853898 0.825471 0.009672 0.007031 +14 0.830305 0.828759 0.011137 0.008165 +14 0.204132 0.856884 0.010258 0.007258 +14 0.229045 0.850079 0.009672 0.007258 +14 0.180100 0.850079 0.009086 0.007258 +14 0.633206 0.849172 0.009086 0.006351 +14 0.254689 0.846904 0.011723 0.008165 +14 0.290299 0.843275 0.010258 0.007711 +14 0.345399 0.843048 0.011430 0.008165 +14 0.670428 0.842595 0.010844 0.007711 +14 0.155920 0.839873 0.009965 0.008165 +14 0.321073 0.839079 0.010844 0.008392 +14 0.695487 0.838626 0.010551 0.007938 +14 0.608294 0.838626 0.010844 0.007938 +14 0.721131 0.834656 0.010258 0.007711 +14 0.130715 0.833522 0.011137 0.008165 +14 0.753957 0.832048 0.011430 0.007938 +14 0.583968 0.832048 0.011430 0.007938 +14 0.421307 0.831935 0.012016 0.008165 +14 0.445926 0.828306 0.009672 0.008165 +14 0.104484 0.826831 0.009086 0.007485 +14 0.469812 0.825244 0.010551 0.007485 +14 0.558470 0.824904 0.009672 0.007258 +14 0.879689 0.822182 0.009672 0.007711 +12 0.495164 0.821842 0.009672 0.007938 +18 0.916911 0.819574 0.010258 0.007031 +18 0.534144 0.818666 0.011430 0.007485 +18 0.942849 0.815718 0.010551 0.007938 +11 0.869725 0.766387 0.013189 0.006804 +14 0.880862 0.735995 0.010258 0.007711 +14 0.233148 0.764232 0.010258 0.006124 +13 0.147128 0.764459 0.011137 0.007031 +13 0.333382 0.763552 0.010258 0.006124 +14 0.415739 0.763665 0.009672 0.006804 +14 0.657825 0.763212 0.010844 0.006804 +14 0.689185 0.760377 0.011430 0.007485 +14 0.719080 0.757201 0.011430 0.007031 +14 0.750440 0.753799 0.012016 0.007485 +14 0.779748 0.750737 0.009672 0.007258 +14 0.628224 0.750284 0.011430 0.007258 +14 0.820926 0.743819 0.009965 0.007485 +14 0.850967 0.739510 0.011430 0.007485 +14 0.566970 0.739056 0.010844 0.007938 +14 0.596864 0.738716 0.010844 0.008165 +14 0.909877 0.732706 0.009672 0.007485 +14 0.940064 0.729871 0.010258 0.007711 +14 0.537661 0.729190 0.009672 0.007258 +14 0.507767 0.726128 0.010844 0.007485 +12 0.104191 0.717169 0.009086 0.007711 +12 0.292790 0.716716 0.009965 0.007711 +18 0.476993 0.716489 0.010258 0.007711 +18 0.190944 0.713314 0.010844 0.007711 +18 0.263042 0.712747 0.010844 0.007485 +18 0.374414 0.712520 0.010844 0.007485 +18 0.445047 0.712293 0.010258 0.007485 +14 0.880862 0.622930 0.010258 0.007485 +14 0.537515 0.659673 0.008792 0.007485 +14 0.536489 0.616580 0.009672 0.007031 +13 0.146102 0.651055 0.009672 0.007031 +13 0.332796 0.650488 0.009672 0.006804 +14 0.231829 0.650601 0.009379 0.007031 +13 0.416032 0.650374 0.009672 0.007031 +14 0.657093 0.649921 0.009965 0.007031 +14 0.688892 0.646972 0.010258 0.007485 +14 0.719373 0.643683 0.011430 0.007711 +14 0.749707 0.640395 0.011137 0.007485 +13 0.780334 0.637219 0.011430 0.007485 +14 0.627784 0.636766 0.011137 0.007031 +14 0.821366 0.630415 0.010258 0.007485 +14 0.850967 0.626559 0.011430 0.007485 +14 0.597450 0.626106 0.010844 0.007938 +14 0.567263 0.626106 0.011430 0.007938 +14 0.909877 0.620549 0.010844 0.007258 +14 0.939918 0.613518 0.011137 0.007258 +14 0.508060 0.612951 0.011430 0.007938 +12 0.105217 0.603538 0.009379 0.007258 +12 0.292644 0.603085 0.009672 0.007258 +18 0.477579 0.602971 0.010258 0.007485 +18 0.374707 0.600136 0.010844 0.006804 +18 0.445633 0.599796 0.010844 0.007485 +18 0.262456 0.599796 0.011430 0.007485 +18 0.191823 0.599796 0.010844 0.007485 +14 0.254543 0.510433 0.009086 0.008392 +14 0.163101 0.541052 0.011430 0.007938 +13 0.361811 0.537650 0.011430 0.007031 +14 0.182005 0.534248 0.011723 0.007938 +14 0.387163 0.531073 0.009379 0.007031 +14 0.198564 0.527784 0.010844 0.007711 +14 0.591002 0.524042 0.011430 0.007031 +14 0.669842 0.523928 0.010844 0.007258 +14 0.813159 0.520866 0.011430 0.007938 +14 0.404601 0.517691 0.010258 0.007485 +14 0.235932 0.517804 0.009965 0.007711 +14 0.854484 0.517237 0.010844 0.007485 +13 0.829279 0.517578 0.010844 0.008165 +14 0.687427 0.517124 0.009672 0.007258 +14 0.217028 0.517578 0.010258 0.008165 +14 0.610199 0.516897 0.011137 0.007711 +14 0.440651 0.513382 0.009672 0.007938 +14 0.422186 0.513268 0.010258 0.007711 +14 0.709994 0.509639 0.009086 0.008619 +14 0.633206 0.509072 0.010258 0.008392 +12 0.752784 0.506577 0.011430 0.007485 +11 0.467468 0.506464 0.011137 0.007711 +14 0.734906 0.506237 0.010844 0.007711 +14 0.272128 0.503969 0.009086 0.008165 +14 0.888042 0.503516 0.008792 0.008165 +14 0.870897 0.503742 0.010844 0.008619 +18 0.906653 0.500000 0.010844 0.007485 +14 0.650645 0.499206 0.009965 0.007711 +11 0.112251 0.497959 0.010551 0.008392 +11 0.932151 0.497165 0.009086 0.008165 +18 0.958236 0.493423 0.010844 0.007485 +18 0.308470 0.493536 0.010258 0.007711 +18 0.290006 0.493309 0.010844 0.008165 +18 0.486079 0.492969 0.011430 0.007938 +18 0.506008 0.489567 0.011430 0.007938 +12 0.540006 0.489227 0.010258 0.008165 +11 0.390387 0.440463 0.008206 0.004990 +14 0.402257 0.404967 0.010844 0.008846 +13 0.193581 0.439555 0.009672 0.007258 +14 0.636870 0.438195 0.011137 0.007258 +14 0.208822 0.432978 0.009672 0.006804 +14 0.654601 0.431617 0.011430 0.006804 +13 0.232268 0.429803 0.009672 0.007711 +14 0.671747 0.428895 0.010551 0.007711 +14 0.253370 0.426174 0.009672 0.006804 +14 0.697392 0.425267 0.010258 0.006804 +14 0.275645 0.422772 0.010844 0.007711 +14 0.720545 0.422205 0.010844 0.007485 +14 0.765387 0.419029 0.010258 0.007485 +14 0.741794 0.418916 0.010551 0.007258 +14 0.318581 0.419029 0.011137 0.007485 +14 0.296454 0.419029 0.010258 0.007485 +14 0.789273 0.415854 0.011137 0.007485 +14 0.340709 0.415627 0.010844 0.007938 +14 0.812280 0.412452 0.010258 0.007031 +14 0.365621 0.412225 0.010258 0.007485 +14 0.827960 0.408483 0.011137 0.007258 +13 0.380275 0.408483 0.010258 0.007258 +14 0.844080 0.405194 0.010551 0.008392 +14 0.894930 0.402019 0.011430 0.007485 +14 0.868406 0.402019 0.011137 0.007485 +14 0.448417 0.401678 0.009965 0.007711 +14 0.423505 0.401678 0.009379 0.007711 +14 0.909877 0.398843 0.009672 0.008392 +14 0.462925 0.398730 0.010258 0.008165 +14 0.956917 0.395555 0.009965 0.007711 +12 0.932737 0.395214 0.009672 0.007485 +14 0.484760 0.395214 0.009379 0.007485 +14 0.508353 0.394988 0.010844 0.007485 +12 0.112691 0.392833 0.010844 0.008619 +11 0.540299 0.391245 0.010258 0.008165 +11 0.942116 0.350533 0.009086 0.004763 +14 0.955012 0.304604 0.010258 0.007258 +14 0.936841 0.308460 0.009086 0.008165 +13 0.137016 0.351554 0.010844 0.007711 +13 0.163394 0.347584 0.010844 0.006577 +13 0.183617 0.344976 0.011430 0.007711 +12 0.733441 0.344863 0.011430 0.007938 +13 0.202960 0.341687 0.010258 0.006577 +13 0.110785 0.338739 0.011137 0.007485 +13 0.224648 0.338512 0.010258 0.007485 +13 0.754250 0.338512 0.010844 0.007938 +13 0.661635 0.338285 0.010844 0.007938 +13 0.689185 0.335223 0.009672 0.007258 +13 0.774472 0.331935 0.011430 0.007485 +13 0.709115 0.331821 0.010844 0.007711 +13 0.251026 0.331821 0.011430 0.007711 +13 0.579719 0.331481 0.011137 0.008392 +13 0.796454 0.328759 0.010844 0.007485 +13 0.506594 0.328192 0.011430 0.007258 +13 0.277696 0.328079 0.009672 0.007031 +13 0.608148 0.328079 0.011723 0.007938 +13 0.636430 0.327852 0.010844 0.007938 +13 0.300557 0.324790 0.010844 0.007711 +14 0.901964 0.322182 0.010844 0.007485 +13 0.816676 0.321615 0.010258 0.007711 +13 0.321366 0.321275 0.011430 0.007938 +13 0.532386 0.317192 0.011430 0.007938 +14 0.920428 0.314811 0.009086 0.008165 +13 0.426583 0.314244 0.009672 0.007938 +13 0.345399 0.314130 0.010258 0.008165 +13 0.837632 0.314017 0.009965 0.008392 +13 0.552902 0.313677 0.010258 0.008165 +13 0.452814 0.310615 0.009379 0.007938 +13 0.855363 0.307326 0.010258 0.008619 +13 0.481243 0.307099 0.009965 0.008165 +13 0.880422 0.304151 0.010551 0.007711 +13 0.366354 0.303810 0.011137 0.007485 +13 0.401377 0.303357 0.010844 0.007938 +13 0.935668 0.244500 0.010844 0.007258 +13 0.105070 0.240871 0.009672 0.006804 +13 0.250440 0.240644 0.009672 0.006804 +13 0.953839 0.240758 0.010844 0.007485 +13 0.376465 0.239850 0.009672 0.007485 +13 0.134965 0.237582 0.010844 0.007485 +13 0.868113 0.237355 0.011137 0.007485 +13 0.435082 0.236902 0.010844 0.007485 +13 0.406360 0.236562 0.009672 0.007711 +13 0.454426 0.233386 0.009672 0.006804 +13 0.269930 0.233613 0.009965 0.007258 +13 0.163101 0.233726 0.009672 0.007485 +13 0.513042 0.233386 0.009672 0.007258 +13 0.887896 0.230665 0.011430 0.007711 +13 0.290592 0.230324 0.011430 0.007485 +13 0.533851 0.229984 0.011430 0.007711 +13 0.916032 0.227489 0.009086 0.006804 +13 0.475381 0.227149 0.011137 0.007031 +13 0.183617 0.227376 0.010844 0.007485 +13 0.777550 0.227149 0.011137 0.007485 +13 0.553195 0.226695 0.011430 0.007485 +13 0.807737 0.223860 0.009965 0.007258 +13 0.319314 0.223633 0.011430 0.007711 +13 0.582503 0.223293 0.011430 0.007938 +13 0.212339 0.220458 0.010844 0.007258 +13 0.690064 0.219891 0.009672 0.007031 +13 0.338072 0.220005 0.010258 0.007711 +13 0.837778 0.220118 0.009672 0.008392 +13 0.232268 0.216262 0.010844 0.007938 +13 0.601846 0.215922 0.011430 0.007711 +13 0.493992 0.216035 0.011430 0.007938 +13 0.357122 0.215922 0.010844 0.007711 +13 0.719959 0.215695 0.010844 0.008165 +13 0.748974 0.212633 0.010258 0.008392 +13 0.621776 0.205489 0.010258 0.008165 +13 0.670428 0.201633 0.010258 0.007711 +13 0.105803 0.153890 0.011723 0.007938 +13 0.254836 0.147086 0.010844 0.007485 +13 0.135258 0.147086 0.010844 0.007938 +12 0.526524 0.143457 0.011430 0.007031 +13 0.273593 0.143683 0.009672 0.007485 +13 0.645223 0.143457 0.010844 0.007485 +12 0.405334 0.143457 0.011137 0.007485 +13 0.154308 0.140281 0.011430 0.007938 +13 0.452081 0.140054 0.011430 0.007938 +13 0.569607 0.139828 0.012016 0.007938 +14 0.502491 0.139941 0.011430 0.008165 +14 0.620750 0.139714 0.011723 0.008165 +13 0.292937 0.136539 0.010844 0.007711 +13 0.677755 0.136425 0.010258 0.007938 +13 0.205598 0.133023 0.010844 0.007485 +13 0.809349 0.132910 0.010844 0.007711 +13 0.174238 0.132797 0.010258 0.007938 +13 0.830158 0.129621 0.010258 0.007938 +13 0.696952 0.129508 0.009379 0.007711 +13 0.224795 0.129848 0.011137 0.008392 +13 0.313159 0.129508 0.010258 0.008165 +13 0.863570 0.126219 0.011430 0.007485 +13 0.763335 0.123157 0.010258 0.008165 +13 0.342468 0.122930 0.009672 0.007711 +13 0.730070 0.122930 0.009965 0.008619 +13 0.888189 0.119868 0.010258 0.007485 +13 0.784437 0.119868 0.010258 0.007938 +13 0.361811 0.119528 0.010258 0.007258 +18 0.921307 0.113064 0.011430 0.007485 +12 0.944461 0.110569 0.010844 0.008392 +13 0.105363 0.066228 0.011430 0.007711 +12 0.837192 0.059991 0.010844 0.007485 +12 0.701495 0.059424 0.011430 0.007258 +13 0.129689 0.059537 0.010844 0.007938 +13 0.241940 0.059197 0.011430 0.007711 +14 0.947245 0.057269 0.009965 0.007031 +13 0.889361 0.057042 0.010844 0.007031 +14 0.809642 0.056929 0.009672 0.007258 +13 0.752784 0.056362 0.010844 0.007031 +13 0.152257 0.053073 0.011430 0.007711 +13 0.377931 0.052620 0.011430 0.007711 +13 0.646395 0.052506 0.011430 0.007938 +13 0.265094 0.052506 0.012016 0.007938 +13 0.622655 0.049331 0.010844 0.007031 +12 0.177755 0.049444 0.009672 0.007258 +13 0.288101 0.049104 0.010551 0.007031 +12 0.313892 0.045815 0.011137 0.007711 +13 0.216589 0.045702 0.011137 0.007938 +13 0.402550 0.041960 0.010258 0.006804 +13 0.595399 0.042186 0.010258 0.007711 +13 0.352140 0.042186 0.010258 0.007711 +13 0.427755 0.038331 0.010258 0.007711 +13 0.569168 0.035382 0.011137 0.008619 +13 0.496923 0.034815 0.010258 0.007485 +12 0.456770 0.034929 0.010844 0.008165 +13 0.546161 0.028578 0.010258 0.007711 +13 0.523007 0.024949 0.011430 0.007711 +5 0.444314 0.031640 0.008792 0.017011 +5 0.734906 0.209231 0.007913 0.015196 +3 0.388189 0.303924 0.006741 0.019959 +3 0.483001 0.035722 0.007620 0.020640 +3 0.715416 0.122363 0.007620 0.021547 +4 0.748388 0.122363 0.009672 0.021093 +3 0.304660 0.223066 0.006741 0.019279 +3 0.739302 0.056362 0.007327 0.020640 +4 0.191237 0.133477 0.010258 0.021093 +4 0.555246 0.139601 0.010258 0.021093 +4 0.874414 0.056816 0.010258 0.021093 +4 0.329572 0.122363 0.010258 0.021093 +4 0.199150 0.221025 0.009086 0.020186 +3 0.848329 0.126219 0.007913 0.020186 +5 0.472011 0.391359 0.008499 0.015196 +5 0.853898 0.233953 0.009086 0.017011 +3 0.622655 0.327852 0.006741 0.019732 +3 0.493699 0.328533 0.007913 0.020186 +1 0.037075 0.060445 0.023740 0.051032 +4 0.945047 0.493763 0.009086 0.019959 +1 0.038101 0.534702 0.025205 0.050578 +1 0.039420 0.154117 0.024326 0.050578 +1 0.038540 0.237582 0.024326 0.050578 +3 0.785317 0.328986 0.007327 0.019732 +5 0.763335 0.223066 0.008499 0.016557 +4 0.421893 0.236448 0.009086 0.020186 +5 0.649033 0.335110 0.007913 0.016103 +5 0.593933 0.324904 0.007913 0.015196 +3 0.437134 0.140054 0.007327 0.021547 +3 0.569314 0.223066 0.007327 0.020186 +4 0.793816 0.223293 0.009672 0.019732 +1 0.038540 0.430370 0.024326 0.050578 +3 0.867087 0.304264 0.006741 0.020640 +5 0.466735 0.303130 0.007913 0.014743 +4 0.374121 0.530846 0.009086 0.020640 +4 0.663980 0.137106 0.010844 0.021093 +3 0.799091 0.520413 0.006741 0.019732 +3 0.393171 0.236448 0.006741 0.020186 +3 0.099795 0.394080 0.007327 0.016557 +4 0.121483 0.146859 0.010258 0.021093 +5 0.654455 0.199025 0.009379 0.017011 +3 0.096571 0.497505 0.006155 0.019279 +5 0.902550 0.223974 0.009086 0.017011 +4 0.806419 0.743819 0.010258 0.021093 +5 0.927755 0.302450 0.007327 0.013382 +4 0.805100 0.630642 0.011137 0.020640 +4 0.721131 0.506918 0.009086 0.019959 +3 0.518025 0.818213 0.007327 0.021093 +1 0.038247 0.338739 0.024326 0.050578 +3 0.675410 0.334656 0.006741 0.021547 +3 0.175996 0.600249 0.007327 0.020186 +3 0.181272 0.438762 0.007327 0.019279 +4 0.906800 0.113291 0.010551 0.020640 +4 0.149033 0.234180 0.009672 0.020640 +1 0.039713 0.960195 0.024326 0.050578 +1 0.039127 0.761737 0.024326 0.050125 +4 0.656946 0.842708 0.010844 0.021547 +1 0.040006 0.861306 0.024326 0.050578 +3 0.220252 0.429236 0.006741 0.020186 +5 0.098036 0.335790 0.007913 0.016103 +3 0.903722 0.819120 0.007327 0.020640 +1 0.039127 0.648106 0.023740 0.050578 +3 0.684789 0.425834 0.007327 0.019732 +4 0.120311 0.237355 0.009672 0.019732 +3 0.526817 0.391812 0.006741 0.020186 +5 0.566090 0.328533 0.008499 0.016103 +4 0.276524 0.843956 0.010844 0.021774 +3 0.680246 0.220458 0.007034 0.019506 +3 0.706624 0.215695 0.005862 0.018145 +5 0.264361 0.324563 0.007034 0.015423 +4 0.289859 0.325017 0.008792 0.018598 +3 0.439039 0.312769 0.005862 0.015423 +5 0.413834 0.310728 0.007034 0.014969 +3 0.776671 0.415060 0.006448 0.019052 +4 0.800410 0.411885 0.008206 0.019052 +5 0.124853 0.348605 0.007034 0.014969 +4 0.150059 0.347925 0.008206 0.019052 +5 0.332356 0.310501 0.007034 0.014969 +5 0.353458 0.300975 0.007034 0.014969 +3 0.329426 0.414606 0.006448 0.019959 +4 0.352286 0.411885 0.008792 0.019052 +4 0.074443 0.955999 0.009965 0.020413 +4 0.065064 0.946020 0.009965 0.020413 +4 0.072392 0.335223 0.009965 0.020866 +4 0.063013 0.325244 0.009965 0.019959 +4 0.072098 0.150374 0.009379 0.020413 +4 0.063306 0.139941 0.009379 0.020413 +4 0.072392 0.056249 0.009379 0.019959 +4 0.063306 0.046042 0.009965 0.020413 +3 0.944314 0.395214 0.006448 0.019279 +5 0.920574 0.391926 0.007034 0.014969 +4 0.071805 0.234067 0.009379 0.019959 +4 0.062134 0.223860 0.009965 0.020413 +4 0.435522 0.401452 0.008792 0.019506 +3 0.413834 0.400544 0.006448 0.018598 +4 0.072978 0.757768 0.009379 0.019506 +4 0.064185 0.748015 0.009379 0.020866 +4 0.073564 0.857791 0.009965 0.020866 +4 0.064185 0.847584 0.009965 0.020413 +4 0.072098 0.531413 0.009379 0.019506 +4 0.063306 0.521093 0.009379 0.020640 +4 0.071512 0.426174 0.009965 0.020413 +4 0.062720 0.415967 0.009965 0.019959 +3 0.284730 0.417215 0.007913 0.020186 +3 0.305979 0.417668 0.007620 0.020186 +4 0.061987 0.634044 0.007913 0.020186 +4 0.073564 0.644477 0.007620 0.020186 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_11.jpg b/data_dataset/tch/debug/debug_11.jpg new file mode 100644 index 0000000..71ee19b Binary files /dev/null and b/data_dataset/tch/debug/debug_11.jpg differ diff --git a/data_dataset/tch/debug/debug_11.txt b/data_dataset/tch/debug/debug_11.txt new file mode 100644 index 0000000..ebd8fec --- /dev/null +++ b/data_dataset/tch/debug/debug_11.txt @@ -0,0 +1,572 @@ +10 0.540147 0.981023 0.008529 0.002955 +10 0.114265 0.981250 0.008529 0.006136 +10 0.138382 0.974205 0.008529 0.004773 +10 0.240735 0.972614 0.007353 0.005227 +10 0.751618 0.970114 0.019706 0.005682 +9 0.259559 0.970568 0.009706 0.007500 +10 0.240441 0.965795 0.007941 0.002500 +10 0.857794 0.956932 0.014412 0.003864 +9 0.538676 0.957386 0.012647 0.037500 +10 0.906618 0.954886 0.017941 0.005227 +10 0.425147 0.952614 0.022059 0.004318 +10 0.593676 0.948750 0.009706 0.004773 +10 0.201618 0.941705 0.012647 0.006136 +10 0.285147 0.961250 0.012647 0.003409 +9 0.844265 0.934205 0.010882 0.043864 +9 0.400147 0.932045 0.009706 0.045000 +10 0.114265 0.866932 0.008529 0.004773 +10 0.543971 0.850568 0.010294 0.003864 +10 0.353676 0.851250 0.012059 0.005227 +10 0.108971 0.850795 0.007353 0.006136 +10 0.473971 0.847386 0.007941 0.002955 +10 0.639559 0.839432 0.010882 0.006136 +9 0.273676 0.843750 0.009706 0.042955 +10 0.283676 0.826705 0.007353 0.006136 +10 0.751324 0.864432 0.007353 0.003409 +10 0.736324 0.858068 0.009118 0.002500 +9 0.920735 0.826250 0.015588 0.050682 +10 0.288971 0.762386 0.007353 0.004773 +10 0.300147 0.762159 0.008529 0.005227 +10 0.156029 0.756023 0.007353 0.002955 +10 0.188676 0.749205 0.009118 0.005682 +10 0.900735 0.744886 0.017941 0.005227 +9 0.224559 0.751250 0.007941 0.032500 +9 0.240147 0.747614 0.012059 0.033409 +6 0.947794 0.745114 0.013235 0.025682 +6 0.503676 0.743068 0.013235 0.025227 +9 0.277794 0.746023 0.014412 0.043864 +10 0.581912 0.723295 0.009706 0.004773 +10 0.121618 0.723750 0.012647 0.005682 +10 0.150735 0.726023 0.009706 0.005682 +9 0.630735 0.743750 0.006176 0.026591 +10 0.325735 0.751023 0.009118 0.003864 +9 0.860735 0.725568 0.017941 0.048409 +9 0.471029 0.718409 0.009118 0.050455 +10 0.731029 0.661477 0.011471 0.004773 +10 0.959265 0.627614 0.011471 0.005227 +10 0.829853 0.620114 0.009118 0.005682 +9 0.448676 0.628068 0.009118 0.040682 +9 0.426324 0.619773 0.016176 0.038636 +9 0.372500 0.625795 0.010882 0.034318 +9 0.190735 0.619091 0.008529 0.040909 +10 0.497206 0.546932 0.010882 0.004773 +10 0.298676 0.534886 0.007941 0.005227 +10 0.962794 0.528523 0.007941 0.002500 +10 0.897794 0.529886 0.008529 0.006136 +10 0.918971 0.528068 0.008529 0.003409 +10 0.745441 0.528750 0.009706 0.004773 +9 0.488676 0.530795 0.011471 0.025227 +9 0.600147 0.528295 0.013235 0.028409 +9 0.491912 0.530568 0.007353 0.024773 +9 0.206324 0.521818 0.006765 0.029091 +9 0.442500 0.518523 0.012059 0.033409 +9 0.271618 0.522955 0.009118 0.026818 +9 0.246324 0.521591 0.010294 0.029545 +9 0.453088 0.522159 0.007353 0.024318 +10 0.255735 0.510568 0.007941 0.004773 +10 0.612794 0.442159 0.007941 0.005227 +9 0.852206 0.434886 0.009118 0.037045 +9 0.540147 0.426705 0.012059 0.022500 +9 0.729853 0.427727 0.006765 0.030909 +9 0.780441 0.427955 0.009118 0.031364 +9 0.582794 0.427955 0.009118 0.031364 +9 0.517500 0.424773 0.010294 0.025909 +9 0.698382 0.423523 0.012059 0.041591 +9 0.123676 0.425341 0.014412 0.039773 +9 0.556029 0.426023 0.007353 0.034773 +10 0.127794 0.334545 0.008529 0.002727 +9 0.613382 0.329432 0.011471 0.027045 +9 0.951912 0.325227 0.006176 0.024091 +8 0.761618 0.326250 0.013824 0.027045 +9 0.785147 0.323068 0.016176 0.029773 +9 0.908382 0.321023 0.010882 0.032045 +9 0.530735 0.318523 0.014412 0.037045 +9 0.157500 0.317614 0.009118 0.038864 +9 0.832206 0.317841 0.013824 0.040227 +10 0.313088 0.240000 0.007353 0.002727 +10 0.656912 0.234886 0.009118 0.005227 +9 0.495441 0.232159 0.014412 0.028864 +8 0.262206 0.231023 0.009118 0.024773 +10 0.206324 0.209886 0.009118 0.002500 +10 0.176618 0.209432 0.009706 0.005227 +9 0.962794 0.215568 0.009118 0.036591 +9 0.900735 0.215568 0.008529 0.037500 +9 0.878971 0.210568 0.016765 0.034773 +9 0.864559 0.209659 0.011471 0.036591 +10 0.282206 0.147614 0.007941 0.003409 +10 0.925441 0.147159 0.007353 0.004318 +10 0.172794 0.147841 0.011471 0.005682 +10 0.945147 0.146250 0.007941 0.005227 +10 0.218971 0.126023 0.013235 0.005682 +10 0.662500 0.123068 0.007353 0.005227 +10 0.523382 0.121023 0.010294 0.002955 +9 0.934265 0.133750 0.013235 0.032045 +10 0.760441 0.115341 0.009118 0.002500 +10 0.515441 0.041932 0.020294 0.002955 +14 0.181324 0.970909 0.007353 0.004091 +11 0.286618 0.967386 0.017353 0.008409 +14 0.282500 0.932841 0.011471 0.007955 +14 0.738088 0.960795 0.008529 0.007500 +14 0.740294 0.931591 0.010000 0.008182 +14 0.537794 0.957500 0.011471 0.007273 +14 0.109853 0.955682 0.009706 0.007273 +14 0.565735 0.954432 0.012059 0.008409 +14 0.134265 0.952727 0.011471 0.007727 +14 0.592647 0.951023 0.010588 0.007045 +14 0.155882 0.949318 0.008824 0.006364 +14 0.613088 0.948295 0.011471 0.007955 +14 0.176912 0.946364 0.010882 0.007727 +14 0.632206 0.944773 0.009706 0.007273 +12 0.200588 0.943295 0.010588 0.007045 +14 0.662794 0.941932 0.010882 0.007955 +14 0.230441 0.940114 0.012059 0.007955 +14 0.690882 0.938182 0.010588 0.007727 +14 0.260147 0.936818 0.011471 0.007727 +14 0.711029 0.934545 0.009706 0.007727 +14 0.303971 0.929205 0.009706 0.007955 +14 0.303529 0.962273 0.016471 0.011364 +14 0.770735 0.927386 0.011471 0.007955 +14 0.326912 0.926023 0.012059 0.007955 +14 0.792206 0.923864 0.010882 0.007273 +14 0.349853 0.922614 0.010882 0.007500 +14 0.812206 0.921364 0.009706 0.007727 +14 0.372059 0.919545 0.009412 0.007727 +12 0.846324 0.918182 0.009706 0.007727 +12 0.401618 0.915795 0.009706 0.008409 +18 0.893088 0.915000 0.011471 0.007727 +18 0.447206 0.912841 0.011471 0.007955 +12 0.938382 0.911818 0.010294 0.007727 +18 0.492500 0.909318 0.011471 0.007273 +14 0.180735 0.864659 0.006765 0.004773 +14 0.182059 0.842614 0.011765 0.008409 +14 0.732647 0.864318 0.008235 0.008182 +14 0.735441 0.854886 0.007941 0.003864 +14 0.734559 0.826364 0.009706 0.007727 +14 0.749265 0.861705 0.006176 0.008409 +14 0.324559 0.855682 0.009706 0.008182 +14 0.326618 0.822386 0.010294 0.007955 +14 0.544118 0.852841 0.009412 0.007045 +14 0.107500 0.852045 0.009706 0.006364 +14 0.568088 0.850455 0.010882 0.007727 +14 0.133382 0.848977 0.010882 0.008409 +14 0.591912 0.847045 0.011471 0.007273 +14 0.156912 0.845455 0.009706 0.006818 +14 0.615735 0.843864 0.010882 0.008182 +14 0.639265 0.840455 0.010882 0.006818 +14 0.203971 0.838977 0.009706 0.006591 +14 0.665147 0.837614 0.010882 0.007500 +14 0.229559 0.836136 0.011471 0.008182 +14 0.689559 0.834091 0.011471 0.007727 +13 0.259853 0.832500 0.010882 0.008182 +14 0.712794 0.830227 0.009706 0.008182 +13 0.281029 0.828523 0.009706 0.008409 +14 0.302647 0.825000 0.010000 0.007727 +14 0.761324 0.823068 0.010294 0.007500 +14 0.813088 0.820795 0.011471 0.007500 +14 0.782353 0.820227 0.010000 0.007273 +14 0.350735 0.819091 0.010294 0.008636 +12 0.841618 0.817500 0.010882 0.007273 +14 0.373235 0.815909 0.010588 0.007727 +12 0.396765 0.811705 0.010588 0.006591 +12 0.884853 0.810795 0.010294 0.007500 +18 0.449559 0.809205 0.011471 0.007955 +12 0.931029 0.807045 0.009706 0.008182 +12 0.497206 0.805682 0.010294 0.008182 +18 0.666618 0.761136 0.007353 0.005455 +12 0.556912 0.761136 0.010882 0.007273 +12 0.106912 0.760114 0.010882 0.007045 +11 0.771618 0.758864 0.016765 0.009091 +14 0.784853 0.751818 0.010294 0.008636 +14 0.785147 0.720455 0.009706 0.007727 +14 0.768971 0.724091 0.010294 0.007727 +14 0.589412 0.757841 0.011765 0.007955 +14 0.267647 0.757955 0.014706 0.008182 +14 0.266324 0.733409 0.009706 0.007273 +14 0.138824 0.757045 0.010588 0.008182 +11 0.148676 0.733523 0.006765 0.004773 +11 0.329853 0.756818 0.012059 0.008636 +14 0.336912 0.748864 0.008529 0.003636 +14 0.336912 0.719545 0.009706 0.007727 +14 0.607794 0.754091 0.011471 0.005909 +14 0.155735 0.753068 0.010882 0.006591 +11 0.162059 0.728636 0.011176 0.007727 +14 0.626618 0.751705 0.011471 0.007500 +11 0.346471 0.750455 0.011765 0.007727 +14 0.355147 0.716136 0.010882 0.008182 +14 0.171912 0.750455 0.010294 0.007727 +14 0.643971 0.747841 0.010882 0.007045 +14 0.188971 0.747045 0.010882 0.007273 +14 0.665735 0.745114 0.010882 0.007955 +14 0.215000 0.743864 0.011176 0.008182 +14 0.682206 0.741250 0.009706 0.007500 +14 0.231029 0.740568 0.009706 0.007955 +14 0.698824 0.738068 0.011176 0.008409 +12 0.701029 0.759318 0.014412 0.007273 +14 0.714559 0.734318 0.009706 0.006364 +14 0.248676 0.737159 0.010882 0.008409 +14 0.734559 0.731250 0.012059 0.008409 +14 0.284412 0.730227 0.011176 0.008182 +14 0.751912 0.727841 0.011471 0.007955 +14 0.300882 0.726705 0.010588 0.008409 +14 0.319559 0.722614 0.010294 0.008409 +14 0.804559 0.717159 0.009706 0.007500 +14 0.821471 0.714205 0.010588 0.007955 +14 0.371029 0.712727 0.009706 0.006818 +14 0.838676 0.710455 0.009706 0.007727 +14 0.388382 0.709432 0.010294 0.007500 +12 0.858382 0.707386 0.010294 0.007955 +12 0.408971 0.706023 0.010294 0.007045 +18 0.892794 0.704205 0.010882 0.007955 +18 0.441029 0.702727 0.010882 0.007727 +12 0.921618 0.700568 0.010882 0.007045 +12 0.473088 0.699318 0.010294 0.007273 +13 0.939265 0.659773 0.010882 0.007273 +13 0.917353 0.656250 0.010588 0.007500 +13 0.967206 0.653068 0.011471 0.007500 +13 0.859118 0.652727 0.010588 0.007727 +13 0.898382 0.648864 0.011471 0.006364 +13 0.830441 0.649205 0.010882 0.007045 +13 0.878382 0.646136 0.009118 0.007273 +13 0.775588 0.646023 0.010588 0.007955 +13 0.814412 0.642614 0.010588 0.006591 +13 0.746324 0.642273 0.009706 0.006818 +13 0.794265 0.639432 0.011471 0.008409 +13 0.680147 0.635455 0.010294 0.007727 +13 0.727794 0.632500 0.011471 0.008182 +13 0.661029 0.632614 0.010882 0.008409 +13 0.705294 0.629091 0.009412 0.006818 +13 0.578676 0.628977 0.009706 0.007500 +13 0.642059 0.625795 0.011765 0.008409 +13 0.552794 0.625682 0.012059 0.008182 +13 0.496471 0.622045 0.009412 0.007273 +13 0.605735 0.622045 0.010882 0.008182 +13 0.470147 0.618295 0.010294 0.007955 +13 0.535147 0.618182 0.010882 0.008636 +13 0.374559 0.614545 0.010882 0.007727 +13 0.514853 0.614432 0.010294 0.009318 +13 0.452059 0.614091 0.010588 0.008636 +13 0.431324 0.614318 0.010294 0.009091 +11 0.344265 0.611136 0.011471 0.008182 +13 0.215441 0.611136 0.011471 0.008182 +11 0.145441 0.611250 0.011471 0.008409 +13 0.393676 0.610909 0.010294 0.008636 +13 0.312059 0.608068 0.010588 0.007500 +13 0.272941 0.607841 0.009412 0.007500 +13 0.252647 0.607727 0.010000 0.007727 +13 0.197500 0.607955 0.009706 0.008182 +11 0.107500 0.607955 0.009706 0.008182 +13 0.412500 0.606818 0.010294 0.008636 +13 0.180294 0.604659 0.011765 0.007955 +13 0.234559 0.604318 0.010882 0.008182 +13 0.292206 0.600682 0.010882 0.008182 +12 0.026912 0.537500 0.007353 0.005455 +13 0.856912 0.534773 0.012059 0.008182 +11 0.779853 0.534205 0.012059 0.007955 +13 0.961618 0.531705 0.009706 0.007500 +13 0.897059 0.531477 0.010000 0.007045 +13 0.837941 0.531591 0.010588 0.007273 +13 0.918088 0.531136 0.009706 0.007273 +11 0.745147 0.530795 0.009706 0.006591 +13 0.648088 0.530795 0.009706 0.006591 +13 0.667500 0.531023 0.012059 0.007955 +13 0.876912 0.528182 0.010882 0.007727 +13 0.818382 0.527841 0.010294 0.007955 +13 0.707794 0.527727 0.011471 0.007727 +13 0.561029 0.527727 0.010882 0.007727 +13 0.579853 0.527386 0.010882 0.007955 +13 0.940441 0.524773 0.010882 0.007273 +13 0.688971 0.523864 0.010294 0.007273 +13 0.620735 0.523977 0.010294 0.007500 +13 0.490441 0.523864 0.009706 0.007273 +13 0.469853 0.523864 0.010882 0.008182 +13 0.532794 0.520341 0.010882 0.007500 +13 0.601471 0.520114 0.011176 0.007955 +13 0.233088 0.520341 0.011471 0.008409 +13 0.399265 0.519773 0.010882 0.008182 +13 0.378382 0.519659 0.011471 0.007955 +11 0.154853 0.519886 0.011471 0.008409 +13 0.511618 0.516364 0.009706 0.007727 +13 0.451029 0.516136 0.009706 0.008182 +13 0.294559 0.515795 0.009706 0.007500 +13 0.274412 0.516250 0.010000 0.008409 +13 0.212500 0.516364 0.010294 0.008636 +11 0.108971 0.516250 0.010294 0.008409 +13 0.424559 0.513068 0.009706 0.007500 +13 0.338676 0.512955 0.009706 0.007273 +13 0.254853 0.512841 0.010294 0.007955 +13 0.194265 0.513068 0.010294 0.008409 +13 0.321029 0.509545 0.009706 0.007727 +12 0.232500 0.436477 0.011471 0.007955 +12 0.913676 0.433636 0.010294 0.007727 +12 0.960735 0.430341 0.011471 0.008409 +12 0.837794 0.429773 0.011471 0.008182 +12 0.211618 0.429773 0.012059 0.008182 +12 0.937206 0.426364 0.011471 0.007727 +12 0.879853 0.426364 0.010882 0.007727 +12 0.187206 0.426364 0.010294 0.007727 +12 0.760441 0.426136 0.010882 0.008182 +12 0.287794 0.425682 0.010294 0.007273 +12 0.859118 0.422386 0.009412 0.007955 +11 0.463382 0.422159 0.010882 0.007500 +12 0.804853 0.421932 0.010294 0.007955 +12 0.677206 0.421932 0.010294 0.007955 +13 0.541324 0.421477 0.010294 0.007955 +12 0.736765 0.419318 0.010588 0.008182 +12 0.783088 0.418864 0.010294 0.008182 +13 0.519706 0.418636 0.010000 0.007727 +11 0.429853 0.418068 0.010882 0.007500 +12 0.258382 0.418295 0.010294 0.007955 +12 0.158382 0.418409 0.010294 0.008182 +12 0.585441 0.418068 0.010294 0.008409 +12 0.308971 0.417727 0.009118 0.007727 +12 0.134559 0.415568 0.012059 0.007955 +12 0.633088 0.415114 0.011471 0.007955 +12 0.707794 0.414886 0.011471 0.008409 +13 0.563529 0.414659 0.011765 0.007955 +13 0.500147 0.414432 0.011471 0.008409 +12 0.611618 0.411477 0.009706 0.007045 +12 0.339412 0.411705 0.010000 0.007500 +12 0.108529 0.411591 0.010000 0.008182 +12 0.362206 0.405341 0.009706 0.008409 +12 0.384265 0.397841 0.009118 0.007955 +12 0.636471 0.325795 0.011176 0.007500 +12 0.614853 0.321932 0.011471 0.007955 +12 0.437941 0.322045 0.011765 0.008182 +12 0.958088 0.319091 0.010882 0.007727 +12 0.761324 0.318182 0.010294 0.006818 +12 0.736029 0.318409 0.010294 0.007273 +12 0.591029 0.318409 0.009706 0.007273 +12 0.461618 0.318636 0.009706 0.007727 +12 0.412059 0.318182 0.010000 0.007727 +12 0.932500 0.314659 0.010294 0.007955 +12 0.708088 0.314432 0.009706 0.007500 +12 0.566324 0.314545 0.010882 0.007727 +12 0.486324 0.314545 0.010882 0.007727 +12 0.388676 0.314545 0.010882 0.007727 +12 0.784265 0.314091 0.010294 0.007727 +12 0.884853 0.311591 0.010294 0.008182 +12 0.686324 0.311591 0.010882 0.008182 +12 0.365735 0.311818 0.010882 0.008636 +12 0.109853 0.311591 0.010882 0.008182 +12 0.909853 0.310795 0.010882 0.007500 +12 0.807500 0.310795 0.010882 0.007500 +12 0.540588 0.310568 0.010588 0.007045 +12 0.143676 0.307841 0.011471 0.007955 +12 0.863971 0.307386 0.010882 0.007955 +12 0.516912 0.307386 0.010882 0.007955 +12 0.831912 0.304091 0.010294 0.007727 +12 0.164853 0.303977 0.011471 0.007500 +12 0.191618 0.301477 0.010882 0.007955 +12 0.259265 0.300909 0.010882 0.007727 +12 0.236912 0.300909 0.009706 0.007727 +12 0.215735 0.298182 0.010882 0.008636 +12 0.319853 0.291364 0.009706 0.008636 +12 0.282794 0.290909 0.009706 0.007727 +12 0.110441 0.235114 0.012059 0.007955 +12 0.192206 0.231477 0.010882 0.007045 +12 0.163235 0.231364 0.011176 0.006818 +12 0.135441 0.231591 0.011471 0.007273 +12 0.243088 0.228182 0.010294 0.007727 +12 0.212941 0.228295 0.012353 0.007955 +12 0.261765 0.224773 0.010000 0.007273 +13 0.494559 0.223977 0.009706 0.007500 +11 0.423088 0.223750 0.010294 0.007045 +12 0.388088 0.221023 0.012059 0.007955 +12 0.311912 0.221136 0.011471 0.008182 +12 0.282500 0.221136 0.011471 0.008182 +13 0.686912 0.220568 0.012059 0.007955 +11 0.618971 0.220568 0.011471 0.007955 +11 0.532794 0.220568 0.012059 0.007955 +13 0.476618 0.220682 0.011471 0.008182 +12 0.347794 0.217614 0.010294 0.007500 +11 0.723971 0.217159 0.010882 0.007500 +13 0.669559 0.217045 0.011471 0.007273 +11 0.582500 0.217159 0.011471 0.007500 +13 0.512500 0.216932 0.010294 0.007045 +13 0.456618 0.217386 0.010294 0.007955 +12 0.329118 0.214432 0.011765 0.007500 +12 0.773971 0.213636 0.012059 0.007727 +13 0.703971 0.213750 0.010882 0.007955 +13 0.650588 0.213750 0.011176 0.007955 +12 0.794706 0.210455 0.009412 0.006818 +12 0.816324 0.205568 0.009706 0.007955 +12 0.965000 0.203182 0.010588 0.007727 +12 0.902794 0.202727 0.009706 0.007727 +12 0.883088 0.202273 0.009118 0.007273 +12 0.837206 0.202500 0.009118 0.008182 +12 0.865441 0.199091 0.010294 0.007727 +11 0.924853 0.192386 0.011471 0.007955 +13 0.205735 0.152500 0.010882 0.007273 +11 0.145147 0.152614 0.010882 0.007500 +18 0.592500 0.150341 0.007941 0.004773 +12 0.594853 0.134773 0.011471 0.008182 +12 0.823676 0.151477 0.011471 0.007955 +11 0.240588 0.148977 0.010588 0.007500 +13 0.190441 0.149205 0.010882 0.007955 +11 0.109559 0.149318 0.011471 0.008182 +12 0.872500 0.147727 0.010294 0.007727 +12 0.843235 0.147727 0.010588 0.007727 +12 0.280441 0.145455 0.010882 0.006818 +13 0.222794 0.145568 0.010882 0.007045 +13 0.173676 0.145795 0.010294 0.007500 +12 0.943971 0.144545 0.010882 0.006818 +12 0.924559 0.144659 0.010882 0.007045 +12 0.897500 0.144205 0.010882 0.007045 +12 0.298824 0.142045 0.011176 0.008182 +12 0.963971 0.141477 0.010882 0.007955 +12 0.532353 0.141477 0.011765 0.007955 +12 0.478235 0.137727 0.007059 0.005909 +12 0.316912 0.138409 0.010882 0.007273 +12 0.611324 0.137727 0.010294 0.006818 +12 0.549265 0.137841 0.010882 0.007045 +12 0.504706 0.138068 0.011176 0.007500 +12 0.766324 0.137614 0.010882 0.007500 +11 0.489559 0.134773 0.006765 0.005455 +12 0.401912 0.134773 0.010294 0.007273 +12 0.383235 0.135114 0.010588 0.007955 +12 0.338676 0.135227 0.009706 0.008182 +12 0.634853 0.134659 0.010294 0.007955 +12 0.452059 0.134659 0.010588 0.007955 +12 0.785000 0.134318 0.010588 0.008182 +12 0.747794 0.134318 0.011471 0.008182 +12 0.688235 0.134318 0.010588 0.008182 +12 0.364412 0.131932 0.009412 0.007045 +12 0.733235 0.130795 0.007059 0.006591 +12 0.577059 0.130909 0.011176 0.006818 +12 0.806029 0.127727 0.011471 0.007727 +11 0.658971 0.124432 0.010294 0.006591 +11 0.422941 0.124318 0.010000 0.006364 +13 0.523676 0.070114 0.011471 0.007955 +13 0.464559 0.070000 0.010882 0.007727 +13 0.546618 0.069659 0.010294 0.007955 +12 0.216324 0.067955 0.009706 0.006364 +12 0.577206 0.066705 0.010294 0.008409 +11 0.667794 0.066136 0.010294 0.008182 +13 0.607500 0.065682 0.009706 0.008636 +12 0.630735 0.065455 0.010294 0.008636 +12 0.494559 0.065795 0.010882 0.009318 +13 0.186471 0.064091 0.011176 0.007727 +12 0.163382 0.064205 0.010882 0.007955 +13 0.109853 0.064205 0.010882 0.007955 +13 0.271176 0.063295 0.011765 0.007955 +13 0.248676 0.063523 0.012059 0.008409 +13 0.895735 0.062614 0.010882 0.007500 +11 0.803971 0.062614 0.010882 0.007500 +12 0.710441 0.062614 0.010882 0.007500 +12 0.133235 0.060114 0.010588 0.007500 +13 0.290441 0.059091 0.008529 0.006818 +11 0.941471 0.058864 0.009412 0.007273 +13 0.317059 0.058977 0.010000 0.007500 +13 0.873971 0.058409 0.010882 0.007273 +11 0.759559 0.058295 0.010294 0.007045 +13 0.363971 0.055682 0.010882 0.007273 +13 0.336471 0.055909 0.011176 0.007727 +13 0.918235 0.055227 0.011176 0.007273 +13 0.851324 0.055000 0.011471 0.007727 +13 0.383382 0.052273 0.010882 0.006818 +13 0.403382 0.049091 0.010882 0.007727 +13 0.429118 0.042273 0.010588 0.007727 +1 0.033088 0.228295 0.024412 0.050682 +1 0.035147 0.041477 0.025000 0.046136 +4 0.652500 0.066023 0.011471 0.022500 +4 0.131029 0.153068 0.010882 0.021136 +3 0.375147 0.221023 0.007353 0.021591 +1 0.033088 0.438750 0.025588 0.043409 +4 0.303971 0.059432 0.010882 0.021136 +3 0.723382 0.128977 0.009706 0.019318 +3 0.141029 0.519886 0.008529 0.021136 +1 0.033382 0.133295 0.025000 0.044318 +5 0.094559 0.308068 0.009706 0.017500 +3 0.352206 0.131932 0.008529 0.020682 +3 0.564265 0.131705 0.007941 0.021136 +4 0.483676 0.622614 0.010294 0.021136 +3 0.416029 0.042386 0.007941 0.021591 +4 0.129265 0.307614 0.010882 0.022045 +5 0.635735 0.526477 0.009706 0.017045 +5 0.899265 0.428750 0.009706 0.017045 +3 0.804853 0.527841 0.007941 0.021591 +4 0.351029 0.055568 0.010882 0.021591 +3 0.852794 0.198977 0.007353 0.022045 +3 0.594265 0.066250 0.007941 0.021136 +4 0.326618 0.411477 0.010294 0.021591 +4 0.202794 0.067159 0.010882 0.022955 +4 0.298382 0.221023 0.010294 0.021591 +4 0.520147 0.141477 0.010294 0.021591 +4 0.096324 0.234886 0.010882 0.021136 +1 0.030735 0.846477 0.024412 0.046136 +1 0.031912 0.639205 0.024412 0.050682 +4 0.229559 0.227841 0.010294 0.021591 +4 0.603971 0.220568 0.010882 0.021591 +4 0.173382 0.426477 0.010882 0.021591 +3 0.351618 0.310341 0.008529 0.021136 +4 0.723382 0.318750 0.010882 0.021591 +3 0.486029 0.414659 0.007941 0.021591 +3 0.580147 0.951477 0.007941 0.020682 +5 0.597794 0.408068 0.009118 0.017500 +3 0.954265 0.653068 0.007941 0.021136 +3 0.693971 0.629659 0.007353 0.021591 +3 0.755735 0.927386 0.007353 0.021591 +4 0.849853 0.307614 0.010882 0.022045 +4 0.876912 0.914659 0.010882 0.021591 +3 0.246618 0.936932 0.007941 0.020682 +4 0.878676 0.703750 0.010882 0.021591 +3 0.167206 0.604205 0.007941 0.021591 +3 0.548088 0.527614 0.007353 0.021136 +5 0.309559 0.506023 0.009118 0.017045 +4 0.796912 0.820568 0.010882 0.021591 +5 0.732794 0.527386 0.009706 0.017955 +4 0.762206 0.645795 0.010882 0.021136 +5 0.415441 0.415114 0.009118 0.017955 +4 0.871618 0.811023 0.015588 0.020682 +1 0.030735 0.743523 0.024412 0.051136 +5 0.096324 0.512386 0.009706 0.017955 +3 0.822500 0.430114 0.007941 0.021591 +5 0.364265 0.516023 0.009118 0.017955 +4 0.275147 0.426250 0.010882 0.022045 +5 0.661912 0.418977 0.009118 0.017500 +4 0.179265 0.231705 0.010882 0.021136 +5 0.829559 0.915114 0.006765 0.017045 +3 0.592794 0.622614 0.007353 0.022045 +4 0.858676 0.147386 0.010882 0.021591 +3 0.387206 0.915795 0.007941 0.021136 +3 0.502794 0.307386 0.007353 0.021591 +1 0.031912 0.335795 0.025588 0.051136 +1 0.031912 0.948977 0.024412 0.043864 +4 0.431618 0.913068 0.010882 0.022045 +4 0.245147 0.833068 0.010882 0.021136 +4 0.432500 0.808523 0.010294 0.021136 +3 0.677500 0.938523 0.007353 0.021136 +4 0.129853 0.611250 0.010882 0.022045 +3 0.693382 0.415568 0.007353 0.021591 +3 0.179853 0.514205 0.007353 0.021591 +3 0.216029 0.939886 0.007941 0.021136 +5 0.722794 0.415114 0.008529 0.017955 +5 0.551618 0.951023 0.009706 0.017955 +3 0.649265 0.941705 0.007353 0.021136 +4 0.565735 0.629205 0.010882 0.021591 +5 0.438529 0.512273 0.008824 0.017273 +3 0.411765 0.512500 0.007059 0.021364 +4 0.071765 0.949545 0.009412 0.020000 +4 0.061471 0.939091 0.010000 0.020909 +4 0.845588 0.652727 0.010000 0.021818 +4 0.071176 0.133182 0.009412 0.020909 +4 0.061471 0.122727 0.010000 0.020909 +4 0.069706 0.635682 0.010000 0.020455 +4 0.060000 0.625682 0.010588 0.021364 +4 0.070294 0.225227 0.010000 0.020455 +4 0.060882 0.214773 0.010000 0.020455 +4 0.070588 0.332955 0.009412 0.020455 +4 0.060882 0.322500 0.010000 0.021364 +4 0.070882 0.040227 0.010000 0.020455 +4 0.061471 0.030000 0.010000 0.020909 +4 0.070000 0.537500 0.010588 0.020455 +4 0.060294 0.527500 0.010000 0.020455 +4 0.069706 0.845455 0.010000 0.020000 +4 0.060294 0.835682 0.010000 0.020455 +5 0.873529 0.641023 0.009412 0.021136 +4 0.060441 0.429432 0.009706 0.021136 +4 0.070588 0.439432 0.009412 0.021136 +3 0.029853 0.527614 0.009706 0.021136 +4 0.039412 0.525795 0.009412 0.021136 +4 0.059853 0.729659 0.009706 0.021136 +4 0.071176 0.739886 0.009412 0.021136 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_12.jpg b/data_dataset/tch/debug/debug_12.jpg new file mode 100644 index 0000000..43939ad Binary files /dev/null and b/data_dataset/tch/debug/debug_12.jpg differ diff --git a/data_dataset/tch/debug/debug_12.txt b/data_dataset/tch/debug/debug_12.txt new file mode 100644 index 0000000..b3d2c2d --- /dev/null +++ b/data_dataset/tch/debug/debug_12.txt @@ -0,0 +1,583 @@ +10 0.618971 0.981477 0.008529 0.004773 +10 0.909265 0.967614 0.007941 0.004318 +9 0.368676 0.966705 0.016176 0.051591 +7 0.337500 0.947386 0.010294 0.027500 +9 0.279853 0.944659 0.016176 0.049318 +10 0.775441 0.878068 0.010882 0.004318 +10 0.105735 0.873750 0.012647 0.003864 +10 0.321618 0.873295 0.009118 0.004773 +10 0.181029 0.872841 0.015000 0.005682 +9 0.246618 0.851932 0.012059 0.061136 +9 0.721324 0.850795 0.013235 0.059773 +9 0.771324 0.851136 0.014412 0.067727 +10 0.425735 0.787159 0.013824 0.003409 +10 0.638676 0.774432 0.017353 0.006136 +9 0.860147 0.766705 0.010882 0.034318 +10 0.513088 0.752614 0.012059 0.004318 +9 0.466618 0.761818 0.010882 0.038182 +9 0.418382 0.761023 0.010882 0.036591 +9 0.696912 0.757614 0.010294 0.042500 +9 0.298088 0.741932 0.013824 0.030227 +7 0.158676 0.727614 0.007941 0.025227 +9 0.189853 0.734205 0.010294 0.032955 +10 0.795441 0.663295 0.008529 0.004773 +10 0.512206 0.654205 0.007941 0.004773 +10 0.627794 0.628295 0.008529 0.003864 +10 0.348676 0.628295 0.007941 0.003864 +10 0.923382 0.626250 0.007941 0.003409 +10 0.552206 0.627386 0.017353 0.005682 +9 0.496912 0.646932 0.016176 0.052955 +9 0.355147 0.646250 0.015000 0.049773 +9 0.637206 0.646250 0.016765 0.057045 +9 0.939853 0.643977 0.016176 0.055227 +10 0.804559 0.573977 0.012647 0.003409 +10 0.138382 0.573523 0.012059 0.005227 +10 0.740147 0.565568 0.008529 0.002955 +10 0.278971 0.548750 0.007353 0.004773 +10 0.587500 0.547614 0.007941 0.005227 +9 0.291912 0.553068 0.012059 0.031591 +10 0.119853 0.571705 0.011471 0.003409 +10 0.105147 0.571023 0.012647 0.004773 +9 0.678382 0.547841 0.015588 0.038409 +10 0.754265 0.493068 0.012059 0.006136 +10 0.769559 0.486250 0.008529 0.004318 +10 0.920147 0.474886 0.009706 0.005227 +9 0.413382 0.467955 0.011471 0.026818 +10 0.720441 0.462386 0.009118 0.004773 +9 0.854559 0.464318 0.006765 0.023182 +10 0.860441 0.456705 0.007941 0.006136 +10 0.696029 0.456250 0.007353 0.006136 +10 0.301029 0.453295 0.007941 0.004773 +9 0.218971 0.454659 0.010882 0.041136 +8 0.102206 0.369659 0.015000 0.022955 +8 0.250441 0.369432 0.015000 0.023409 +10 0.574559 0.353977 0.007941 0.005227 +9 0.808382 0.353864 0.009706 0.036818 +9 0.478971 0.353864 0.009706 0.036818 +9 0.611618 0.352727 0.010294 0.040000 +10 0.489853 0.284205 0.020882 0.004773 +10 0.885147 0.265568 0.007941 0.003864 +9 0.472206 0.270909 0.017353 0.027273 +10 0.341029 0.261932 0.009118 0.005682 +9 0.273382 0.270000 0.013824 0.024545 +8 0.100735 0.263750 0.014412 0.023864 +8 0.832206 0.263068 0.015000 0.023409 +8 0.529265 0.262614 0.015000 0.023409 +8 0.692794 0.262841 0.015000 0.023864 +8 0.390441 0.262841 0.015000 0.023864 +8 0.250147 0.263068 0.014412 0.023409 +9 0.603971 0.233068 0.007941 0.022500 +10 0.264559 0.207159 0.010294 0.002500 +10 0.667500 0.198750 0.016176 0.004773 +10 0.885147 0.187841 0.010294 0.004773 +10 0.713088 0.176705 0.010882 0.004318 +10 0.816029 0.175795 0.009706 0.003409 +9 0.312500 0.160114 0.008529 0.067500 +10 0.226029 0.204432 0.013235 0.003409 +10 0.838676 0.098068 0.007941 0.005227 +10 0.368088 0.096023 0.029118 0.002955 +10 0.383676 0.094432 0.007353 0.005227 +10 0.695147 0.091250 0.007941 0.005227 +10 0.668382 0.067386 0.012059 0.005682 +10 0.588971 0.067386 0.012059 0.005682 +10 0.885147 0.061250 0.009118 0.003409 +7 0.723088 0.068523 0.006176 0.024318 +10 0.246618 0.061023 0.009706 0.005682 +10 0.322500 0.053977 0.007353 0.004318 +10 0.748088 0.053295 0.009118 0.003864 +10 0.443088 0.064432 0.021471 0.003409 +13 0.368971 0.986932 0.010294 0.007955 +13 0.341618 0.978750 0.010882 0.007955 +12 0.312500 0.972273 0.010294 0.007273 +13 0.293824 0.962386 0.010588 0.007955 +13 0.228088 0.962273 0.009706 0.007727 +11 0.731176 0.962273 0.011176 0.009545 +12 0.739853 0.932159 0.009706 0.008409 +11 0.705588 0.959205 0.010588 0.005682 +13 0.712206 0.925795 0.010882 0.007500 +18 0.938971 0.958409 0.012647 0.005455 +13 0.270000 0.956023 0.011176 0.007955 +13 0.206471 0.955682 0.011176 0.008182 +13 0.637500 0.955114 0.010882 0.007955 +13 0.596618 0.955227 0.011471 0.008182 +13 0.550147 0.955341 0.011471 0.008409 +13 0.508382 0.955455 0.011471 0.008636 +13 0.463676 0.955455 0.011471 0.008636 +13 0.417941 0.955455 0.011176 0.008636 +14 0.846618 0.954773 0.011471 0.008182 +13 0.821029 0.954773 0.010882 0.008182 +12 0.947353 0.950795 0.005882 0.004773 +12 0.955735 0.917955 0.010882 0.008182 +13 0.176029 0.949545 0.010294 0.007727 +13 0.250441 0.949091 0.010882 0.007727 +13 0.868529 0.948523 0.010000 0.007500 +13 0.793382 0.948182 0.010882 0.007727 +13 0.890147 0.942159 0.011471 0.007500 +13 0.772500 0.941818 0.011471 0.007727 +13 0.155882 0.939318 0.010588 0.007273 +14 0.662794 0.938409 0.008529 0.007273 +14 0.662941 0.922273 0.010588 0.007727 +13 0.616618 0.938182 0.009118 0.006818 +13 0.616029 0.921250 0.009118 0.007500 +13 0.571912 0.938068 0.009118 0.006591 +13 0.571765 0.924659 0.011176 0.007955 +13 0.528971 0.938409 0.007941 0.007273 +13 0.528971 0.921932 0.010294 0.007955 +13 0.485147 0.938182 0.008529 0.006818 +13 0.484853 0.921932 0.010294 0.007955 +13 0.441176 0.938409 0.008824 0.007273 +13 0.441324 0.925227 0.010882 0.008182 +13 0.133971 0.932727 0.009706 0.007727 +12 0.912794 0.931591 0.009706 0.008182 +12 0.913382 0.961818 0.012059 0.011364 +13 0.101618 0.925795 0.010882 0.008409 +13 0.934559 0.925000 0.010882 0.007727 +12 0.691912 0.918636 0.010294 0.008636 +13 0.653529 0.881250 0.010000 0.007955 +14 0.627794 0.874318 0.010294 0.008182 +14 0.605147 0.867386 0.010882 0.007955 +13 0.935441 0.857841 0.011471 0.007955 +13 0.890147 0.857727 0.011471 0.007727 +13 0.507794 0.857727 0.011471 0.007727 +13 0.343676 0.857955 0.011471 0.008182 +13 0.272500 0.857955 0.011471 0.008182 +13 0.202500 0.857955 0.011471 0.008182 +12 0.842794 0.857500 0.010882 0.008182 +13 0.794706 0.857500 0.011176 0.008182 +12 0.745882 0.857500 0.011176 0.008182 +12 0.699559 0.857386 0.011471 0.007955 +13 0.579706 0.857614 0.010588 0.008409 +13 0.130735 0.851364 0.011471 0.007727 +13 0.485441 0.851023 0.011471 0.007955 +13 0.558676 0.850795 0.010882 0.008409 +13 0.533088 0.844432 0.010294 0.007500 +13 0.460441 0.844659 0.012059 0.007955 +13 0.227206 0.841818 0.009118 0.005909 +13 0.226618 0.823977 0.010294 0.007500 +13 0.175735 0.841818 0.008529 0.005909 +13 0.175441 0.824659 0.010294 0.007045 +13 0.957941 0.841591 0.008235 0.006364 +13 0.957794 0.824091 0.010294 0.007727 +13 0.911029 0.841591 0.007353 0.006364 +13 0.911471 0.823864 0.010000 0.007273 +13 0.296618 0.841591 0.007941 0.006364 +13 0.295735 0.826705 0.009706 0.007500 +12 0.319559 0.841477 0.007941 0.006591 +13 0.319412 0.824886 0.010588 0.007500 +13 0.366029 0.840909 0.009118 0.005909 +13 0.365294 0.824318 0.010000 0.007273 +12 0.247794 0.841364 0.009118 0.006818 +12 0.247059 0.827500 0.009412 0.007273 +13 0.817794 0.840455 0.009118 0.006364 +13 0.817500 0.823977 0.010882 0.007500 +13 0.771912 0.840341 0.009118 0.006136 +13 0.771029 0.822955 0.009706 0.007273 +13 0.721912 0.840682 0.007941 0.006818 +17 0.721471 0.826818 0.009412 0.007727 +13 0.863529 0.840114 0.008235 0.006136 +13 0.863088 0.827045 0.010294 0.007273 +13 0.153676 0.834545 0.010294 0.006818 +13 0.438971 0.834659 0.011471 0.007955 +13 0.101618 0.834432 0.010882 0.007500 +13 0.413676 0.827500 0.009118 0.007273 +13 0.390000 0.820682 0.011176 0.008182 +13 0.270735 0.768295 0.011471 0.007045 +13 0.133676 0.765114 0.010294 0.007955 +13 0.444853 0.764773 0.011471 0.008182 +13 0.203382 0.761136 0.010882 0.006364 +13 0.583382 0.761023 0.009706 0.007045 +13 0.722794 0.758068 0.010882 0.007500 +13 0.349265 0.758182 0.010882 0.007727 +13 0.511618 0.754659 0.009706 0.006591 +13 0.861176 0.754432 0.008824 0.006591 +13 0.295147 0.751818 0.012059 0.007727 +13 0.250735 0.751818 0.011471 0.007727 +13 0.654265 0.751477 0.011471 0.007955 +13 0.156324 0.748636 0.010882 0.005909 +13 0.792647 0.748182 0.009412 0.006818 +13 0.467500 0.748182 0.009706 0.006818 +11 0.419265 0.748295 0.009706 0.007045 +13 0.103382 0.748182 0.010882 0.006818 +13 0.181912 0.745455 0.011471 0.007727 +13 0.933382 0.745114 0.010882 0.007955 +13 0.608088 0.745000 0.010882 0.007727 +13 0.560294 0.745000 0.011176 0.007727 +13 0.227794 0.745114 0.010294 0.007955 +13 0.698088 0.741818 0.007353 0.005455 +13 0.370882 0.742159 0.011176 0.006591 +13 0.747059 0.741818 0.010588 0.006818 +13 0.321324 0.741932 0.011471 0.007045 +13 0.839265 0.738636 0.010882 0.007727 +13 0.886029 0.738409 0.011471 0.008182 +13 0.535147 0.738409 0.010882 0.008182 +13 0.490441 0.738409 0.012059 0.008182 +13 0.675441 0.734773 0.010294 0.007273 +13 0.631618 0.735000 0.009706 0.007727 +13 0.771471 0.731250 0.010000 0.007500 +13 0.817206 0.730909 0.010294 0.007727 +13 0.956618 0.727727 0.010294 0.007727 +13 0.910147 0.727955 0.010294 0.008182 +13 0.491324 0.668636 0.010294 0.006818 +13 0.206029 0.668750 0.011471 0.007045 +13 0.864265 0.667955 0.010294 0.007273 +13 0.274853 0.665909 0.011471 0.007727 +13 0.634853 0.665114 0.010294 0.007045 +13 0.560000 0.665341 0.009412 0.007500 +13 0.350147 0.665568 0.010294 0.007955 +13 0.793971 0.661591 0.010882 0.006364 +13 0.416176 0.661818 0.010588 0.006818 +13 0.725735 0.661591 0.010882 0.007273 +13 0.296912 0.659205 0.010882 0.007955 +13 0.252794 0.659205 0.010882 0.007955 +13 0.939412 0.658636 0.011176 0.007727 +13 0.583235 0.658750 0.010588 0.007955 +13 0.536324 0.658750 0.010882 0.007955 +13 0.157206 0.655909 0.010294 0.006818 +13 0.749853 0.655000 0.010882 0.005909 +13 0.701176 0.655000 0.010000 0.005909 +13 0.438824 0.655114 0.011176 0.006136 +13 0.393382 0.655227 0.010882 0.006364 +13 0.227794 0.652614 0.011471 0.007500 +13 0.180441 0.652955 0.010882 0.008182 +13 0.889559 0.652159 0.010294 0.007500 +13 0.841029 0.652045 0.010882 0.007273 +11 0.850147 0.628182 0.006765 0.004091 +13 0.513971 0.652273 0.010882 0.007727 +13 0.463088 0.652386 0.011471 0.007955 +13 0.134265 0.649318 0.010294 0.006364 +13 0.371618 0.649318 0.010882 0.007273 +13 0.319559 0.649318 0.011471 0.007273 +13 0.656029 0.648636 0.010294 0.006818 +13 0.605147 0.648636 0.010882 0.006818 +13 0.818382 0.645341 0.011471 0.007500 +13 0.773235 0.645568 0.011765 0.007955 +13 0.101912 0.642841 0.010294 0.006136 +13 0.959265 0.642045 0.010882 0.006364 +13 0.912500 0.641932 0.009706 0.006136 +13 0.871912 0.559432 0.010882 0.007500 +13 0.939412 0.552727 0.010588 0.007727 +13 0.894265 0.552727 0.011471 0.007727 +13 0.729853 0.552841 0.012059 0.007955 +13 0.843235 0.552500 0.011176 0.008182 +13 0.276029 0.550227 0.010294 0.007273 +13 0.586912 0.549545 0.009706 0.006818 +13 0.200441 0.547045 0.010882 0.008182 +13 0.131912 0.547159 0.011471 0.008409 +13 0.917500 0.545795 0.009706 0.007500 +13 0.752500 0.545909 0.010294 0.007727 +13 0.709412 0.546136 0.011176 0.008182 +13 0.438824 0.546250 0.011176 0.008409 +13 0.961912 0.545568 0.010294 0.007955 +13 0.801029 0.545682 0.010882 0.008182 +13 0.350441 0.543182 0.010882 0.007727 +13 0.300441 0.542955 0.010882 0.007273 +13 0.253088 0.543295 0.011471 0.007955 +13 0.660882 0.542727 0.011176 0.007727 +13 0.613088 0.542500 0.011471 0.007273 +13 0.563529 0.542614 0.010588 0.007500 +13 0.101912 0.540341 0.010294 0.008409 +13 0.512206 0.538750 0.010882 0.007955 +13 0.156471 0.538523 0.011176 0.008409 +13 0.822794 0.537841 0.009706 0.007955 +13 0.776618 0.537614 0.010294 0.007500 +13 0.461324 0.537955 0.010294 0.008182 +13 0.413971 0.537841 0.009706 0.007955 +13 0.177206 0.535909 0.010294 0.008636 +13 0.223382 0.534773 0.010882 0.007273 +13 0.683676 0.534773 0.010294 0.008182 +13 0.638382 0.534318 0.009118 0.008182 +13 0.375441 0.532955 0.010882 0.007273 +13 0.321324 0.531932 0.011471 0.007955 +13 0.489412 0.531136 0.011176 0.007273 +13 0.535735 0.530795 0.010882 0.007500 +13 0.742206 0.470455 0.009706 0.006818 +13 0.562941 0.467045 0.011176 0.008182 +13 0.719559 0.464205 0.010294 0.007045 +13 0.633088 0.460795 0.011471 0.008409 +13 0.585588 0.460682 0.011765 0.008182 +13 0.535735 0.460568 0.010882 0.007955 +13 0.421176 0.460568 0.011176 0.007955 +13 0.859265 0.458295 0.010294 0.007045 +13 0.695147 0.457727 0.009706 0.006818 +13 0.276471 0.457614 0.010000 0.006591 +13 0.790441 0.454659 0.009706 0.007955 +13 0.653235 0.454432 0.010000 0.007500 +13 0.125000 0.454545 0.010000 0.007727 +13 0.608676 0.454205 0.010882 0.007955 +13 0.491176 0.454091 0.010000 0.007727 +13 0.441029 0.454205 0.009706 0.007955 +13 0.395588 0.454205 0.010588 0.007955 +13 0.932500 0.451818 0.010294 0.007727 +13 0.881618 0.451818 0.010882 0.007727 +13 0.836912 0.451591 0.010882 0.008182 +13 0.351324 0.451250 0.010294 0.007500 +13 0.300147 0.451136 0.010882 0.007273 +13 0.253382 0.450909 0.010882 0.007727 +13 0.201618 0.447841 0.010882 0.007955 +13 0.150441 0.447727 0.010882 0.007727 +12 0.100147 0.447841 0.010294 0.007955 +13 0.512500 0.446136 0.011471 0.008182 +13 0.468382 0.445227 0.011471 0.008182 +13 0.811765 0.443750 0.009412 0.007955 +13 0.766471 0.443636 0.010000 0.007727 +13 0.329265 0.443636 0.009706 0.007727 +13 0.372500 0.442841 0.010294 0.007045 +13 0.953529 0.440682 0.009412 0.007273 +13 0.225588 0.440341 0.010000 0.007500 +13 0.904412 0.440114 0.010588 0.007955 +13 0.181912 0.440114 0.011471 0.007955 +13 0.205882 0.383068 0.008824 0.006591 +12 0.205000 0.359659 0.010588 0.007955 +13 0.273676 0.382955 0.009118 0.007273 +12 0.273382 0.359659 0.010294 0.007955 +11 0.132500 0.383295 0.007941 0.007955 +12 0.132206 0.360227 0.010882 0.008182 +13 0.340735 0.382614 0.010294 0.007500 +12 0.340147 0.359432 0.011471 0.007500 +11 0.158676 0.360000 0.009706 0.007727 +17 0.157794 0.334886 0.010294 0.008409 +11 0.363088 0.359318 0.009118 0.007273 +17 0.363088 0.334432 0.010294 0.007500 +11 0.318529 0.359545 0.009412 0.007727 +17 0.317206 0.335455 0.009118 0.007727 +11 0.296029 0.359545 0.009118 0.007727 +17 0.296029 0.334432 0.010294 0.008409 +11 0.227500 0.359659 0.008529 0.007955 +17 0.226912 0.334886 0.009706 0.008409 +11 0.182647 0.359659 0.008824 0.007955 +17 0.182206 0.334773 0.009706 0.007273 +13 0.862500 0.356477 0.010294 0.007045 +13 0.573676 0.355909 0.010294 0.006818 +13 0.785147 0.352841 0.010882 0.007955 +13 0.719265 0.352955 0.010882 0.008182 +13 0.507206 0.352955 0.010294 0.008182 +13 0.435882 0.352841 0.011176 0.007955 +13 0.937206 0.349773 0.010294 0.007273 +13 0.884559 0.349545 0.009706 0.006818 +13 0.840735 0.349659 0.010294 0.007045 +13 0.649265 0.349318 0.009706 0.007273 +13 0.597206 0.349205 0.010294 0.007045 +13 0.551765 0.349318 0.009412 0.007273 +13 0.698529 0.345795 0.010588 0.007500 +13 0.742206 0.345227 0.010882 0.007273 +13 0.413971 0.345455 0.010882 0.007727 +13 0.459853 0.344545 0.010882 0.007727 +13 0.810441 0.341364 0.010294 0.007727 +13 0.764265 0.341477 0.010294 0.007955 +13 0.481029 0.341705 0.009706 0.008409 +13 0.530147 0.341023 0.010294 0.007955 +13 0.959412 0.338977 0.011176 0.007500 +13 0.909853 0.338977 0.010882 0.007500 +13 0.672500 0.338636 0.011471 0.007727 +13 0.619265 0.338750 0.010882 0.007955 +13 0.927206 0.276477 0.010294 0.007045 +13 0.854853 0.276477 0.010294 0.007045 +12 0.624412 0.276477 0.009412 0.007045 +12 0.551176 0.276023 0.009412 0.007045 +13 0.131618 0.273864 0.010882 0.008182 +18 0.118088 0.273182 0.007353 0.006818 +13 0.716618 0.273182 0.011471 0.007727 +13 0.206765 0.273295 0.009412 0.007955 +13 0.783382 0.272386 0.010882 0.007955 +13 0.952206 0.263182 0.009706 0.006818 +13 0.951765 0.246818 0.010000 0.007727 +13 0.903971 0.263068 0.009706 0.006591 +13 0.903971 0.246705 0.009706 0.007500 +13 0.738088 0.263409 0.010882 0.007273 +13 0.738088 0.249886 0.009706 0.006591 +13 0.480735 0.263182 0.009118 0.006818 +13 0.341029 0.263182 0.009706 0.006818 +13 0.273382 0.263409 0.009706 0.007273 +13 0.760147 0.263295 0.010294 0.007500 +13 0.759853 0.249659 0.008529 0.006136 +13 0.411618 0.263068 0.009706 0.007045 +13 0.883088 0.263182 0.010294 0.007727 +13 0.882500 0.246705 0.010294 0.007500 +13 0.805147 0.262841 0.009706 0.007045 +13 0.805000 0.249545 0.009412 0.005909 +13 0.227353 0.260455 0.010588 0.007727 +13 0.226324 0.250455 0.009706 0.005909 +13 0.181029 0.260227 0.009706 0.008182 +13 0.179559 0.250227 0.009118 0.005455 +12 0.180735 0.225909 0.007353 0.004091 +18 0.158088 0.250455 0.007353 0.005000 +12 0.159118 0.261023 0.010588 0.007955 +14 0.167794 0.226591 0.006765 0.004545 +11 0.649559 0.246364 0.009118 0.007727 +11 0.648676 0.228523 0.009706 0.007500 +12 0.603088 0.246364 0.010294 0.007727 +17 0.602353 0.227955 0.009412 0.008182 +17 0.580735 0.246477 0.011471 0.007955 +17 0.580147 0.228409 0.011471 0.009091 +13 0.458382 0.239091 0.010294 0.007727 +13 0.436471 0.239091 0.010588 0.007727 +13 0.365735 0.239091 0.009706 0.007727 +13 0.318088 0.239091 0.009706 0.007727 +13 0.298382 0.239205 0.010294 0.007955 +13 0.507353 0.238636 0.010588 0.007727 +13 0.103088 0.203523 0.013824 0.007045 +18 0.269706 0.199773 0.008824 0.003636 +18 0.608088 0.199318 0.009118 0.003636 +17 0.621176 0.199091 0.016471 0.004091 +11 0.636324 0.156023 0.010882 0.007955 +11 0.594706 0.199091 0.010000 0.004091 +11 0.605441 0.179091 0.009118 0.006818 +17 0.382206 0.198864 0.009706 0.003636 +11 0.394559 0.156364 0.010882 0.007727 +18 0.343824 0.198295 0.012941 0.006591 +12 0.767500 0.197045 0.006176 0.008182 +17 0.768088 0.130909 0.009706 0.007727 +11 0.157647 0.180227 0.010000 0.007273 +11 0.260441 0.179773 0.009706 0.007273 +11 0.368971 0.179432 0.010294 0.007500 +14 0.816029 0.178523 0.009118 0.007500 +13 0.713235 0.178523 0.009412 0.007500 +11 0.946176 0.171591 0.005882 0.004545 +13 0.953676 0.146250 0.010294 0.006591 +11 0.497059 0.171932 0.007647 0.005227 +13 0.504559 0.146364 0.009706 0.007727 +13 0.421324 0.169545 0.011471 0.007727 +13 0.874265 0.169091 0.010294 0.007727 +14 0.905735 0.162841 0.010882 0.007955 +14 0.451618 0.162841 0.009706 0.007955 +11 0.131029 0.157500 0.010882 0.008182 +11 0.341765 0.156705 0.009412 0.007500 +12 0.290147 0.156932 0.009118 0.007955 +12 0.238382 0.156932 0.011471 0.007955 +12 0.184853 0.157159 0.011471 0.008409 +14 0.931618 0.156250 0.010882 0.007500 +14 0.477794 0.156364 0.011471 0.007727 +12 0.845441 0.155909 0.010294 0.007727 +11 0.793382 0.156023 0.010882 0.007955 +12 0.739559 0.155795 0.010294 0.007500 +11 0.686029 0.156023 0.011471 0.007955 +11 0.580735 0.156023 0.011471 0.007955 +17 0.099265 0.133182 0.010882 0.007727 +17 0.314559 0.132045 0.009706 0.007273 +17 0.210441 0.132045 0.009706 0.007273 +17 0.660735 0.131364 0.010294 0.008636 +17 0.550441 0.131023 0.009706 0.008864 +13 0.833529 0.095227 0.007059 0.003636 +12 0.112059 0.094773 0.005882 0.007273 +12 0.776324 0.091705 0.009706 0.011136 +12 0.776324 0.059205 0.009706 0.007955 +12 0.246029 0.092159 0.011471 0.007955 +14 0.246029 0.063409 0.010294 0.006364 +11 0.259559 0.090114 0.011471 0.007955 +14 0.270147 0.059659 0.011471 0.007955 +12 0.399706 0.084091 0.007059 0.005000 +12 0.407500 0.041136 0.009706 0.008182 +12 0.611324 0.079205 0.010294 0.007955 +12 0.142794 0.077159 0.009706 0.006591 +11 0.293971 0.077159 0.008529 0.007500 +13 0.300735 0.052955 0.010294 0.008182 +13 0.167500 0.073523 0.012059 0.008409 +11 0.641618 0.072500 0.010882 0.008182 +12 0.189412 0.069545 0.011765 0.006818 +13 0.587794 0.068864 0.010294 0.006364 +14 0.667794 0.068636 0.010294 0.006364 +14 0.802206 0.068295 0.009706 0.006136 +17 0.938824 0.066477 0.012941 0.003864 +18 0.951765 0.022159 0.010000 0.007500 +14 0.216618 0.066591 0.010294 0.008182 +13 0.691912 0.065909 0.010294 0.007727 +14 0.355441 0.066136 0.011471 0.008182 +14 0.438971 0.063750 0.017353 0.005682 +12 0.720441 0.062614 0.009706 0.007045 +14 0.825735 0.059432 0.010882 0.007500 +14 0.377206 0.055682 0.005588 0.005455 +14 0.747206 0.055568 0.009118 0.006136 +13 0.321176 0.055568 0.008824 0.006136 +13 0.851176 0.045455 0.010588 0.007727 +14 0.879853 0.035682 0.009706 0.007273 +14 0.905441 0.032159 0.010294 0.007500 +12 0.430000 0.032045 0.010588 0.008182 +14 0.928088 0.028750 0.009706 0.007955 +14 0.458971 0.028636 0.009118 0.007727 +18 0.486618 0.025341 0.010294 0.007500 +12 0.564118 0.022045 0.010588 0.008182 +12 0.112647 0.019659 0.010000 0.007955 +18 0.517500 0.017386 0.010882 0.007955 +1 0.036618 0.463523 0.024412 0.042955 +4 0.445441 0.030341 0.011471 0.022045 +3 0.826029 0.349432 0.007941 0.021136 +1 0.034265 0.255795 0.024412 0.043864 +1 0.035147 0.066705 0.025000 0.051136 +5 0.203971 0.063523 0.009706 0.019318 +3 0.289853 0.052841 0.008529 0.021591 +4 0.866029 0.246477 0.015000 0.021591 +5 0.146029 0.257159 0.010294 0.018409 +4 0.923382 0.349886 0.010882 0.021136 +3 0.394265 0.042614 0.007941 0.020227 +3 0.130735 0.076932 0.007941 0.020682 +5 0.099853 0.016250 0.009706 0.018409 +3 0.551912 0.543068 0.007941 0.021136 +3 0.168088 0.439432 0.007353 0.022045 +3 0.341912 0.065795 0.007941 0.022045 +3 0.503088 0.017386 0.007941 0.021591 +4 0.916912 0.451705 0.012059 0.022045 +5 0.627206 0.529432 0.009118 0.017500 +3 0.233382 0.063295 0.008529 0.020682 +1 0.034853 0.160114 0.024412 0.042500 +3 0.566912 0.246477 0.007353 0.021591 +4 0.708676 0.062614 0.010882 0.020227 +4 0.335735 0.758523 0.010882 0.021136 +5 0.119559 0.928977 0.009118 0.017500 +5 0.808088 0.951932 0.009706 0.018864 +3 0.858088 0.558523 0.007353 0.022045 +3 0.475441 0.531477 0.007941 0.021591 +4 0.335147 0.665795 0.012059 0.022045 +4 0.336324 0.542841 0.010882 0.021591 +3 0.240441 0.543068 0.008529 0.021136 +3 0.621324 0.735114 0.007941 0.021591 +5 0.439265 0.159432 0.009706 0.018409 +4 0.625735 0.071932 0.010882 0.021591 +5 0.192794 0.952386 0.009706 0.017955 +3 0.678088 0.917841 0.008529 0.021591 +3 0.549559 0.665114 0.007941 0.020682 +5 0.328382 0.975568 0.009118 0.017045 +3 0.240441 0.450568 0.008529 0.020682 +4 0.478382 0.668750 0.011471 0.020682 +4 0.621912 0.665341 0.011471 0.022045 +4 0.191912 0.669432 0.011471 0.021136 +4 0.472500 0.025341 0.011471 0.021136 +5 0.403382 0.951932 0.009706 0.017045 +3 0.550147 0.467386 0.007941 0.020682 +3 0.758088 0.941250 0.008529 0.021136 +5 0.726618 0.928295 0.009118 0.017955 +1 0.036618 0.748977 0.024412 0.044773 +4 0.635147 0.349432 0.010882 0.021136 +4 0.927206 0.658523 0.011471 0.021136 +5 0.316029 0.439659 0.009118 0.017955 +5 0.891029 0.158977 0.009706 0.017500 +4 0.070294 0.362955 0.010000 0.020455 +4 0.059412 0.353182 0.010588 0.020909 +4 0.070294 0.463864 0.010000 0.019545 +4 0.060000 0.453864 0.010588 0.020455 +4 0.070588 0.649545 0.010588 0.020000 +4 0.060000 0.639773 0.010588 0.020455 +4 0.069706 0.257273 0.011176 0.020000 +4 0.060294 0.246818 0.011176 0.020909 +4 0.069118 0.160909 0.011176 0.020000 +4 0.059118 0.150909 0.011176 0.020909 +4 0.069412 0.848409 0.010588 0.019545 +4 0.060000 0.838182 0.010588 0.020909 +4 0.071176 0.748409 0.010588 0.019545 +4 0.061176 0.738409 0.010588 0.021364 +4 0.070000 0.557273 0.010588 0.020000 +4 0.061176 0.546818 0.010588 0.020909 +4 0.068529 0.063409 0.011176 0.020455 +4 0.058235 0.053636 0.010588 0.020909 +4 0.072353 0.952045 0.010588 0.019545 +4 0.062647 0.942273 0.010000 0.020909 +4 0.036324 0.354432 0.009118 0.021136 +4 0.043824 0.352159 0.008824 0.021136 +4 0.037206 0.943068 0.009118 0.021136 +3 0.045000 0.940795 0.008824 0.021136 +4 0.027794 0.654886 0.009118 0.021136 +4 0.035441 0.647841 0.009118 0.021136 +4 0.043235 0.638523 0.008824 0.021136 +4 0.036912 0.547614 0.009118 0.021136 +4 0.044412 0.545341 0.008824 0.021136 +4 0.036324 0.838523 0.009118 0.021136 +4 0.043824 0.835795 0.008824 0.021136 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_13.jpg b/data_dataset/tch/debug/debug_13.jpg new file mode 100644 index 0000000..0fd5ee4 Binary files /dev/null and b/data_dataset/tch/debug/debug_13.jpg differ diff --git a/data_dataset/tch/debug/debug_13.txt b/data_dataset/tch/debug/debug_13.txt new file mode 100644 index 0000000..968b6dc --- /dev/null +++ b/data_dataset/tch/debug/debug_13.txt @@ -0,0 +1,657 @@ +10 0.471684 0.969473 0.013791 0.006582 +10 0.194396 0.964480 0.015552 0.005674 +8 0.107688 0.961303 0.014671 0.022923 +9 0.936913 0.941897 0.017019 0.037222 +9 0.536385 0.942692 0.010563 0.040172 +10 0.218750 0.892760 0.013204 0.005674 +10 0.327612 0.886178 0.007923 0.004766 +9 0.943222 0.876532 0.009096 0.024512 +9 0.283011 0.875624 0.010270 0.024512 +10 0.846391 0.865978 0.009096 0.005674 +9 0.785065 0.875170 0.012031 0.026782 +9 0.685886 0.874716 0.010857 0.026328 +7 0.545041 0.851453 0.012031 0.016568 +9 0.419014 0.840899 0.012324 0.076714 +10 0.473445 0.772015 0.019660 0.004766 +10 0.443809 0.769292 0.013204 0.003858 +10 0.923562 0.756809 0.014965 0.005220 +9 0.456426 0.753064 0.011444 0.024058 +10 0.809126 0.742056 0.007923 0.005674 +9 0.829372 0.743759 0.010857 0.039038 +10 0.253374 0.764980 0.007923 0.005674 +9 0.642165 0.740921 0.007336 0.033818 +9 0.229020 0.742964 0.012031 0.048343 +10 0.139818 0.674648 0.016138 0.002497 +10 0.661532 0.671244 0.011444 0.002497 +10 0.163879 0.668293 0.007923 0.002497 +10 0.118104 0.667839 0.014965 0.004312 +10 0.602846 0.665343 0.007923 0.002497 +10 0.831133 0.659215 0.007923 0.003404 +9 0.958187 0.657059 0.009683 0.020427 +9 0.942635 0.648207 0.011444 0.038130 +9 0.110769 0.648661 0.010857 0.049478 +10 0.496332 0.592261 0.007336 0.003858 +8 0.588468 0.590104 0.009683 0.010440 +10 0.597711 0.563663 0.008216 0.003404 +10 0.662705 0.558443 0.007336 0.005674 +9 0.641138 0.569451 0.011737 0.030413 +10 0.742371 0.575125 0.008803 0.004085 +9 0.906837 0.543917 0.010857 0.043350 +10 0.289466 0.486723 0.008509 0.004766 +10 0.158304 0.482637 0.012617 0.005220 +10 0.867811 0.466750 0.016138 0.005220 +10 0.786532 0.466750 0.012031 0.005220 +10 0.809712 0.455402 0.010270 0.003404 +10 0.785358 0.453359 0.007336 0.002951 +9 0.831279 0.432251 0.013498 0.076033 +10 0.954665 0.373014 0.007336 0.006128 +10 0.951144 0.365524 0.007336 0.005674 +10 0.875734 0.356900 0.007923 0.004312 +10 0.875147 0.351453 0.007923 0.003404 +9 0.314701 0.353268 0.012617 0.031094 +10 0.969043 0.341012 0.007923 0.006582 +9 0.365464 0.350885 0.010857 0.039946 +10 0.517459 0.333296 0.008509 0.006128 +9 0.470804 0.344871 0.011444 0.039265 +10 0.631309 0.353041 0.014378 0.005220 +10 0.250734 0.320018 0.013791 0.005901 +7 0.181778 0.324671 0.009683 0.025193 +8 0.157717 0.324671 0.009683 0.027009 +10 0.613703 0.272015 0.009096 0.004766 +10 0.131896 0.248411 0.007923 0.002497 +10 0.221978 0.245915 0.009683 0.004766 +9 0.629255 0.253518 0.012031 0.037676 +10 0.782717 0.227758 0.014965 0.004766 +10 0.715229 0.217317 0.010270 0.003404 +8 0.957306 0.219360 0.007336 0.027463 +10 0.187353 0.196664 0.010857 0.004312 +10 0.164759 0.188266 0.007923 0.003858 +10 0.176790 0.160123 0.011444 0.005674 +9 0.639525 0.148774 0.009683 0.046074 +10 0.921215 0.141625 0.007336 0.006809 +10 0.849325 0.100658 0.007923 0.002951 +10 0.922095 0.097821 0.009096 0.002724 +10 0.849912 0.093622 0.007923 0.003404 +10 0.217870 0.081366 0.010270 0.003404 +9 0.886590 0.083182 0.007336 0.024285 +10 0.849325 0.074784 0.010270 0.005674 +10 0.220217 0.074103 0.010270 0.005220 +9 0.756015 0.081934 0.007923 0.024058 +9 0.163879 0.065025 0.010270 0.020654 +9 0.868691 0.070359 0.013791 0.058557 +9 0.633950 0.047549 0.009683 0.046981 +9 0.231808 0.048684 0.012324 0.055152 +9 0.324090 0.051294 0.013791 0.059918 +9 0.369131 0.044031 0.013498 0.061734 +13 0.145687 0.982864 0.010270 0.007490 +13 0.175616 0.980141 0.009096 0.007490 +13 0.205399 0.977531 0.011150 0.007717 +13 0.230194 0.974240 0.010270 0.007490 +18 0.403903 0.971289 0.011444 0.007944 +11 0.413292 0.972424 0.011444 0.007944 +13 0.425910 0.948479 0.010270 0.006809 +13 0.260417 0.967771 0.009683 0.007717 +13 0.283597 0.964253 0.011444 0.007944 +13 0.310886 0.961076 0.010857 0.006582 +13 0.342870 0.958012 0.011444 0.008171 +18 0.516285 0.955969 0.006749 0.004539 +13 0.373386 0.955288 0.011444 0.007263 +13 0.396567 0.951997 0.011444 0.007944 +13 0.456573 0.945529 0.011737 0.008171 +13 0.849032 0.939628 0.009096 0.007263 +13 0.654196 0.938720 0.010270 0.007717 +13 0.943809 0.937926 0.009683 0.007944 +13 0.753374 0.936110 0.010270 0.007944 +13 0.484302 0.935315 0.009683 0.007717 +13 0.868398 0.933046 0.010270 0.007717 +13 0.828932 0.932932 0.011150 0.007490 +13 0.673122 0.932478 0.010563 0.007944 +13 0.513351 0.932365 0.011444 0.008171 +13 0.627494 0.931457 0.010857 0.007717 +13 0.964055 0.930890 0.010270 0.008398 +12 0.888498 0.930322 0.009977 0.007717 +13 0.925616 0.930322 0.009683 0.008625 +13 0.774795 0.929414 0.009683 0.007717 +12 0.692488 0.928847 0.010563 0.007036 +13 0.726966 0.928507 0.009096 0.007263 +13 0.539026 0.928507 0.009977 0.007717 +12 0.792987 0.925670 0.009683 0.007490 +12 0.585534 0.925329 0.010270 0.007717 +12 0.910798 0.893327 0.010563 0.003631 +11 0.923269 0.845892 0.009683 0.007717 +17 0.922829 0.822855 0.009977 0.006128 +11 0.951438 0.869383 0.010857 0.007036 +11 0.897741 0.868588 0.010270 0.007717 +11 0.498386 0.868361 0.010857 0.007263 +11 0.444982 0.868475 0.010857 0.007490 +11 0.238263 0.868475 0.009977 0.007490 +11 0.191315 0.868475 0.009977 0.007490 +11 0.137177 0.868588 0.009096 0.007717 +11 0.396860 0.868248 0.010270 0.007490 +11 0.342576 0.868248 0.010270 0.007490 +11 0.291080 0.868248 0.009977 0.007490 +13 0.846684 0.867907 0.009096 0.007263 +11 0.786385 0.868021 0.008803 0.007490 +13 0.570863 0.867907 0.010270 0.007263 +13 0.738850 0.867794 0.010563 0.007490 +13 0.687353 0.867794 0.008509 0.007490 +13 0.621039 0.867680 0.009683 0.007263 +13 0.163292 0.845778 0.010857 0.007490 +11 0.470511 0.845438 0.010270 0.007717 +17 0.470804 0.821947 0.011444 0.007944 +13 0.106367 0.845438 0.008509 0.007717 +17 0.106661 0.822969 0.010857 0.008171 +13 0.597565 0.844984 0.010857 0.007263 +17 0.370158 0.838743 0.010270 0.007490 +17 0.370745 0.815706 0.010857 0.007717 +11 0.317195 0.838743 0.009977 0.007490 +11 0.316755 0.822061 0.010857 0.007717 +11 0.821743 0.838516 0.010857 0.007490 +17 0.821743 0.815365 0.010270 0.008398 +11 0.762764 0.838516 0.011444 0.007490 +11 0.762471 0.822061 0.011444 0.007263 +17 0.214055 0.838629 0.011444 0.007717 +17 0.664319 0.838289 0.011737 0.007490 +11 0.872799 0.832501 0.009683 0.007263 +11 0.420481 0.832047 0.008803 0.006809 +13 0.263498 0.832615 0.010563 0.007944 +17 0.710974 0.831593 0.009390 0.006809 +12 0.872506 0.808783 0.010270 0.007944 +12 0.420921 0.808897 0.010270 0.008625 +14 0.357541 0.774285 0.006749 0.004312 +13 0.359595 0.747503 0.010857 0.007490 +18 0.367811 0.771108 0.013791 0.006128 +11 0.401115 0.766341 0.009977 0.006582 +12 0.412705 0.733659 0.011444 0.008852 +13 0.333040 0.757603 0.009977 0.007717 +13 0.465376 0.747390 0.011150 0.006809 +13 0.308685 0.747617 0.011150 0.007717 +13 0.518633 0.747163 0.010857 0.007263 +13 0.939407 0.744326 0.009683 0.007490 +13 0.281543 0.741148 0.010857 0.007490 +13 0.807952 0.740127 0.009683 0.006809 +13 0.915053 0.739787 0.010270 0.007036 +13 0.725792 0.740127 0.009683 0.008171 +13 0.386004 0.739560 0.009683 0.008852 +13 0.965816 0.737177 0.010857 0.007717 +13 0.595511 0.736269 0.010857 0.007717 +13 0.699677 0.735815 0.011444 0.007717 +13 0.837588 0.735815 0.011444 0.008171 +13 0.149501 0.735134 0.010857 0.007717 +13 0.253961 0.734226 0.010857 0.007263 +13 0.760417 0.733545 0.010857 0.008171 +13 0.863703 0.732864 0.010857 0.007717 +13 0.622212 0.732978 0.010270 0.008398 +13 0.175176 0.731843 0.010563 0.008398 +13 0.491637 0.730822 0.009683 0.007263 +13 0.782864 0.730368 0.009977 0.007263 +13 0.648621 0.729460 0.011444 0.007717 +13 0.888938 0.729119 0.009683 0.007490 +13 0.201731 0.728325 0.009683 0.007717 +13 0.563527 0.726736 0.009683 0.008171 +13 0.675763 0.725942 0.010563 0.007036 +12 0.438234 0.724807 0.008509 0.007036 +18 0.124853 0.725034 0.010857 0.007490 +18 0.230194 0.724694 0.010270 0.007717 +13 0.848885 0.678847 0.010563 0.011348 +13 0.847418 0.652065 0.010563 0.007717 +11 0.878961 0.673173 0.007336 0.004539 +13 0.887471 0.638675 0.009683 0.007263 +11 0.781984 0.671357 0.012911 0.008171 +13 0.789026 0.645030 0.010563 0.008171 +18 0.582746 0.666931 0.009977 0.003858 +13 0.829665 0.662165 0.010270 0.007036 +13 0.472565 0.659328 0.010857 0.007717 +13 0.964935 0.652633 0.009683 0.007490 +13 0.927377 0.652746 0.009683 0.007717 +13 0.810446 0.651725 0.009977 0.007944 +13 0.443662 0.649569 0.010563 0.008171 +13 0.493104 0.649115 0.010857 0.009079 +13 0.622066 0.648888 0.011150 0.009079 +13 0.570569 0.648094 0.010857 0.008852 +13 0.868398 0.644803 0.010270 0.007717 +13 0.415346 0.642873 0.010270 0.007944 +13 0.512471 0.642079 0.009683 0.008625 +13 0.133950 0.640036 0.009683 0.008171 +13 0.676496 0.638675 0.009096 0.007717 +13 0.770393 0.637994 0.010270 0.007717 +13 0.154489 0.636972 0.008509 0.007490 +13 0.316608 0.636405 0.009977 0.006809 +13 0.213615 0.636518 0.009977 0.007490 +13 0.704079 0.636178 0.009096 0.008171 +13 0.395687 0.635724 0.009683 0.008171 +12 0.531543 0.635724 0.009096 0.008625 +13 0.944982 0.635270 0.009683 0.008171 +12 0.175323 0.633568 0.010270 0.007944 +12 0.337295 0.633341 0.010270 0.007944 +18 0.232248 0.633114 0.010270 0.007944 +18 0.731954 0.631866 0.010857 0.007717 +18 0.595804 0.631639 0.010857 0.008171 +12 0.194396 0.630050 0.009683 0.008171 +12 0.113116 0.629936 0.010270 0.007944 +18 0.252788 0.629596 0.010270 0.007717 +12 0.656543 0.628802 0.010270 0.007036 +12 0.357688 0.629369 0.009977 0.008171 +18 0.908304 0.628461 0.010270 0.007717 +18 0.751027 0.627667 0.010270 0.007490 +18 0.378815 0.627099 0.011150 0.008171 +12 0.289466 0.625624 0.009683 0.007944 +12 0.550616 0.625057 0.009683 0.008171 +11 0.487236 0.589650 0.010857 0.007263 +12 0.492958 0.570132 0.011150 0.008171 +13 0.215082 0.590104 0.009977 0.008171 +11 0.616784 0.588970 0.006455 0.006355 +13 0.625440 0.563663 0.011444 0.008398 +13 0.509683 0.588856 0.009390 0.006128 +13 0.511737 0.566727 0.010563 0.006809 +18 0.526262 0.585225 0.009096 0.003858 +13 0.234888 0.586700 0.009683 0.007717 +13 0.157717 0.586813 0.010270 0.007944 +13 0.138058 0.586700 0.009683 0.007717 +13 0.178550 0.583296 0.010857 0.008171 +13 0.254842 0.583296 0.010857 0.008625 +13 0.389231 0.579778 0.010857 0.005674 +13 0.293721 0.579437 0.009977 0.006355 +13 0.274208 0.579437 0.010857 0.006355 +13 0.195423 0.579210 0.010563 0.006355 +13 0.762471 0.575238 0.012031 0.003404 +13 0.761004 0.547208 0.009683 0.007717 +13 0.410211 0.576827 0.010563 0.008398 +13 0.322623 0.576714 0.010270 0.008171 +13 0.431485 0.573990 0.010857 0.007717 +13 0.351526 0.573309 0.009977 0.006809 +13 0.472565 0.570586 0.012031 0.008171 +13 0.370452 0.570245 0.010857 0.007944 +13 0.577318 0.570132 0.011444 0.008171 +13 0.596538 0.566614 0.011150 0.007036 +13 0.538586 0.563436 0.011444 0.008398 +13 0.661825 0.560372 0.009683 0.007263 +13 0.558392 0.560372 0.009977 0.007263 +13 0.641872 0.560372 0.009683 0.008171 +13 0.681485 0.556854 0.010270 0.008398 +13 0.703198 0.553336 0.011444 0.006809 +13 0.741637 0.550159 0.010857 0.007717 +13 0.721684 0.550272 0.010857 0.007944 +13 0.782130 0.543236 0.010857 0.007944 +13 0.822330 0.540626 0.010270 0.007263 +13 0.929137 0.538470 0.011444 0.007490 +13 0.841989 0.537335 0.009683 0.007036 +13 0.948797 0.535293 0.010857 0.007944 +13 0.868104 0.534271 0.010270 0.007263 +13 0.967283 0.532002 0.010270 0.007717 +13 0.886590 0.531321 0.009683 0.007717 +12 0.908304 0.528484 0.009683 0.007490 +18 0.119865 0.511235 0.010270 0.007490 +13 0.240170 0.490354 0.005575 0.004312 +14 0.241637 0.463459 0.009683 0.007263 +14 0.526555 0.472310 0.016725 0.008625 +11 0.641138 0.470835 0.008803 0.013391 +11 0.649941 0.470835 0.008803 0.013391 +14 0.658744 0.470835 0.008803 0.013391 +18 0.660358 0.413527 0.010857 0.007717 +11 0.667547 0.470835 0.008803 0.013391 +14 0.154196 0.466863 0.010857 0.007717 +14 0.192635 0.463572 0.011444 0.007490 +14 0.192635 0.453473 0.009096 0.007263 +13 0.329372 0.460508 0.011444 0.008171 +13 0.284771 0.460395 0.011444 0.007944 +14 0.378961 0.456990 0.009683 0.007490 +14 0.466696 0.453926 0.011444 0.008171 +14 0.418281 0.453700 0.009683 0.008171 +14 0.509390 0.450749 0.010563 0.007263 +14 0.553550 0.450182 0.010270 0.007036 +13 0.119572 0.447004 0.010857 0.007944 +14 0.599032 0.446891 0.010857 0.008171 +14 0.687647 0.443032 0.009683 0.006809 +14 0.635857 0.443373 0.009977 0.007490 +14 0.778756 0.439287 0.009977 0.007944 +14 0.729167 0.438947 0.009390 0.007717 +14 0.172242 0.437585 0.009390 0.008171 +14 0.822330 0.437131 0.010270 0.008171 +14 0.862529 0.436791 0.009683 0.008398 +14 0.267899 0.434408 0.011737 0.007717 +14 0.217136 0.433500 0.011150 0.008171 +14 0.910651 0.433046 0.010857 0.008171 +14 0.946156 0.431457 0.011444 0.009079 +13 0.354020 0.430322 0.010857 0.008625 +12 0.305898 0.429868 0.010857 0.007717 +11 0.398621 0.426691 0.009683 0.007717 +14 0.442928 0.423740 0.010270 0.007717 +14 0.494425 0.422946 0.009390 0.007944 +18 0.580252 0.419542 0.010270 0.007490 +12 0.529783 0.419768 0.010270 0.007944 +12 0.618104 0.416251 0.010270 0.008625 +12 0.710827 0.413414 0.009683 0.007490 +12 0.753374 0.409328 0.010270 0.008398 +12 0.803550 0.408988 0.009683 0.009079 +18 0.841109 0.406605 0.010857 0.007944 +18 0.889671 0.406151 0.010563 0.007944 +12 0.929137 0.403995 0.009683 0.008625 +18 0.969924 0.400477 0.011444 0.007944 +13 0.151555 0.373808 0.010857 0.007717 +13 0.151262 0.356900 0.010270 0.007490 +14 0.928697 0.367227 0.012324 0.004993 +14 0.925763 0.348729 0.009390 0.007036 +11 0.327905 0.365865 0.013791 0.003631 +12 0.341989 0.340899 0.009096 0.006809 +12 0.341989 0.347708 0.009096 0.006809 +13 0.178257 0.367113 0.010270 0.007036 +13 0.178697 0.353268 0.008803 0.005674 +13 0.394219 0.363822 0.009096 0.009079 +13 0.392899 0.337267 0.009390 0.007717 +13 0.392899 0.344984 0.009390 0.007717 +14 0.641872 0.357921 0.006749 0.005447 +14 0.655076 0.323536 0.009683 0.007490 +18 0.639965 0.348842 0.007042 0.004539 +12 0.853873 0.357467 0.011150 0.007717 +17 0.779196 0.357467 0.011444 0.007717 +13 0.229020 0.356559 0.010857 0.008625 +13 0.228727 0.349977 0.010270 0.007263 +14 0.874266 0.354290 0.010270 0.006809 +13 0.201731 0.350318 0.010270 0.007036 +13 0.201731 0.357354 0.010270 0.007036 +13 0.256749 0.347140 0.010563 0.006582 +13 0.256749 0.353722 0.010563 0.006582 +14 0.950117 0.345665 0.011150 0.008171 +13 0.289906 0.343849 0.009977 0.007263 +13 0.289906 0.351112 0.009977 0.007263 +13 0.315434 0.343395 0.009977 0.007263 +13 0.315434 0.350658 0.009977 0.007263 +14 0.968310 0.342261 0.009390 0.006809 +13 0.128668 0.336813 0.010857 0.007263 +13 0.128668 0.344076 0.010857 0.007263 +13 0.366197 0.336700 0.008803 0.007490 +13 0.366197 0.344190 0.008803 0.007490 +12 0.903022 0.336813 0.010270 0.009986 +14 0.897154 0.351566 0.011444 0.007717 +13 0.416960 0.334203 0.010563 0.007036 +13 0.416960 0.341239 0.010563 0.007036 +11 0.515112 0.333636 0.010270 0.006355 +14 0.583333 0.333522 0.010563 0.007036 +13 0.471684 0.330912 0.010270 0.007263 +13 0.471684 0.338175 0.010270 0.007263 +14 0.605487 0.330232 0.009096 0.008171 +14 0.627494 0.327508 0.010857 0.008171 +14 0.677964 0.321039 0.009683 0.007944 +14 0.700851 0.316500 0.010857 0.007944 +13 0.733128 0.313436 0.010857 0.008171 +13 0.724178 0.278370 0.010563 0.007944 +13 0.723445 0.263504 0.009683 0.007263 +13 0.114877 0.277463 0.010857 0.007490 +13 0.115757 0.264185 0.010270 0.006355 +13 0.138644 0.276668 0.010270 0.007263 +13 0.137764 0.264185 0.009683 0.007263 +13 0.746772 0.274172 0.010563 0.007717 +13 0.745745 0.263618 0.008509 0.006582 +13 0.162705 0.273718 0.010270 0.007263 +13 0.162412 0.263618 0.008509 0.006128 +13 0.419161 0.271335 0.010270 0.007490 +13 0.418281 0.254539 0.010857 0.007490 +13 0.282130 0.271788 0.009683 0.008398 +13 0.281837 0.254085 0.010270 0.007490 +13 0.789613 0.270994 0.010563 0.007263 +13 0.790053 0.253631 0.007923 0.007036 +13 0.767606 0.270540 0.009977 0.008625 +13 0.766872 0.254085 0.009683 0.007944 +13 0.808832 0.264185 0.010270 0.006355 +18 0.807218 0.250681 0.007042 0.004312 +13 0.203345 0.264185 0.009390 0.007263 +13 0.203345 0.271448 0.009390 0.007263 +13 0.183832 0.264072 0.009096 0.007036 +13 0.183832 0.271108 0.009096 0.007036 +13 0.303257 0.263731 0.010857 0.007717 +13 0.302817 0.250681 0.009390 0.006128 +13 0.230634 0.259873 0.009977 0.006809 +13 0.230634 0.266682 0.009977 0.006809 +12 0.259830 0.257490 0.009683 0.007036 +12 0.259830 0.264526 0.009683 0.007036 +11 0.268779 0.234226 0.006455 0.008625 +13 0.484742 0.255561 0.008803 0.005447 +13 0.484888 0.246596 0.009096 0.005674 +13 0.854607 0.255334 0.009096 0.005901 +13 0.854900 0.246936 0.008509 0.007263 +13 0.834800 0.255220 0.007042 0.005674 +13 0.834067 0.246709 0.009096 0.006809 +13 0.463468 0.254539 0.009683 0.007036 +13 0.463468 0.246823 0.009683 0.007944 +13 0.439847 0.250454 0.007042 0.005220 +13 0.441461 0.263958 0.010270 0.007717 +13 0.934419 0.249660 0.009096 0.005901 +13 0.935739 0.240241 0.008216 0.005220 +13 0.912412 0.248525 0.009683 0.007263 +13 0.912705 0.241035 0.009096 0.007263 +13 0.348151 0.250794 0.008509 0.012710 +13 0.323797 0.247049 0.010857 0.007036 +13 0.323797 0.254085 0.010857 0.007036 +13 0.557805 0.247049 0.009977 0.007490 +13 0.557805 0.254539 0.009977 0.007490 +13 0.882629 0.243759 0.009977 0.006355 +13 0.882629 0.250113 0.009977 0.006355 +13 0.506602 0.243759 0.011444 0.006355 +13 0.506602 0.250113 0.011444 0.006355 +13 0.375147 0.243191 0.011444 0.006128 +13 0.375147 0.249319 0.011444 0.006128 +12 0.577318 0.243645 0.010857 0.007490 +12 0.577318 0.251135 0.010857 0.007490 +13 0.630575 0.240808 0.009977 0.007263 +13 0.630575 0.248071 0.009977 0.007263 +13 0.605781 0.240808 0.010270 0.007263 +13 0.605781 0.248071 0.010270 0.007263 +13 0.395393 0.240468 0.010857 0.007490 +13 0.395393 0.247957 0.010857 0.007490 +13 0.534918 0.240127 0.009977 0.008171 +13 0.534918 0.248298 0.009977 0.008171 +13 0.954372 0.241829 0.010270 0.012029 +13 0.653756 0.237971 0.010563 0.006582 +13 0.653756 0.244553 0.010563 0.006582 +13 0.700851 0.233999 0.010270 0.007263 +13 0.700851 0.241262 0.010270 0.007263 +12 0.246919 0.184635 0.010857 0.007944 +12 0.227846 0.177826 0.010270 0.007944 +13 0.200704 0.171471 0.011150 0.007944 +13 0.273034 0.171244 0.011444 0.007944 +11 0.350792 0.169655 0.009683 0.009305 +14 0.356074 0.138334 0.009096 0.007490 +11 0.892606 0.164775 0.011150 0.008171 +11 0.612236 0.164321 0.010857 0.007717 +11 0.750293 0.163981 0.010563 0.007944 +13 0.292400 0.161938 0.009683 0.006582 +13 0.175616 0.161371 0.009683 0.006809 +13 0.150088 0.155129 0.011444 0.007036 +13 0.316315 0.154108 0.009977 0.007263 +13 0.121626 0.148547 0.009683 0.007490 +14 0.336121 0.148094 0.010270 0.007944 +11 0.954079 0.141852 0.010857 0.007263 +12 0.921802 0.141739 0.010270 0.007490 +11 0.812207 0.141058 0.009977 0.007036 +11 0.780663 0.141739 0.010857 0.008398 +11 0.720511 0.141398 0.011444 0.008171 +12 0.672095 0.140831 0.009683 0.007036 +11 0.860475 0.140831 0.010857 0.007490 +12 0.640698 0.140717 0.009096 0.007717 +11 0.578052 0.139923 0.009977 0.007490 +12 0.381896 0.130844 0.010270 0.007944 +12 0.400968 0.124376 0.009683 0.007717 +12 0.437647 0.122220 0.010270 0.008398 +18 0.500440 0.121198 0.010270 0.007263 +12 0.469190 0.121198 0.009390 0.007263 +18 0.534184 0.120971 0.010857 0.007717 +12 0.493985 0.079437 0.005575 0.004539 +13 0.498093 0.053336 0.010270 0.007717 +13 0.936033 0.076941 0.009977 0.007263 +13 0.892312 0.076714 0.009390 0.007263 +13 0.847858 0.076146 0.010270 0.007036 +13 0.805311 0.076146 0.009683 0.007036 +13 0.754842 0.075919 0.009683 0.006582 +13 0.703198 0.076033 0.009683 0.007263 +12 0.571743 0.078870 0.011444 0.007944 +13 0.570423 0.053336 0.010563 0.007717 +17 0.579959 0.076146 0.011444 0.007944 +12 0.592136 0.045733 0.009977 0.007490 +13 0.615757 0.074557 0.011444 0.007036 +13 0.613996 0.036201 0.010270 0.007490 +13 0.109888 0.061280 0.010857 0.007263 +13 0.957600 0.061167 0.009096 0.007490 +12 0.957160 0.044485 0.009977 0.006809 +13 0.916520 0.060599 0.010270 0.007717 +12 0.915053 0.044031 0.009683 0.007263 +13 0.869572 0.060372 0.007923 0.007263 +13 0.869865 0.046868 0.009683 0.007490 +13 0.826731 0.060486 0.009096 0.007490 +12 0.826438 0.044031 0.010857 0.005447 +13 0.781543 0.060372 0.009096 0.007263 +12 0.781103 0.043010 0.010563 0.007036 +13 0.214055 0.060599 0.010270 0.007717 +13 0.171215 0.060599 0.010857 0.007717 +13 0.347418 0.060259 0.009977 0.007490 +13 0.302377 0.060486 0.009683 0.007944 +13 0.258803 0.060599 0.011150 0.008171 +13 0.547975 0.059691 0.010270 0.007717 +13 0.525088 0.059691 0.010270 0.007717 +13 0.732835 0.059691 0.010270 0.008171 +13 0.732101 0.046187 0.009977 0.007490 +13 0.471831 0.046981 0.009390 0.007717 +13 0.151555 0.044371 0.008509 0.007036 +13 0.151408 0.030413 0.011150 0.007263 +13 0.324677 0.043690 0.008509 0.007036 +13 0.279930 0.043917 0.008216 0.007490 +13 0.279783 0.030073 0.010857 0.007036 +13 0.192488 0.044031 0.008803 0.007717 +14 0.233275 0.043804 0.008803 0.007717 +13 0.369718 0.043350 0.008216 0.007263 +13 0.445569 0.037222 0.009096 0.007263 +13 0.635710 0.030640 0.009096 0.008171 +13 0.420335 0.030186 0.009096 0.008171 +18 0.191461 0.027803 0.010270 0.007490 +18 0.232394 0.027349 0.009977 0.007490 +18 0.324677 0.027236 0.010270 0.007717 +12 0.368985 0.026328 0.009683 0.007717 +18 0.658304 0.023377 0.010857 0.008171 +12 0.397154 0.023491 0.009683 0.008398 +1 0.042254 0.567295 0.024648 0.044712 +4 0.136297 0.154902 0.010857 0.021108 +3 0.107835 0.148547 0.007923 0.021108 +3 0.203638 0.433840 0.007629 0.018838 +4 0.368691 0.128802 0.010857 0.021108 +5 0.383656 0.019405 0.009683 0.017476 +3 0.163292 0.161711 0.008509 0.021108 +3 0.911532 0.348275 0.008509 0.020200 +3 0.188087 0.171017 0.008216 0.021562 +4 0.339495 0.430209 0.011737 0.020200 +4 0.766725 0.440422 0.011737 0.021108 +4 0.538292 0.450409 0.010270 0.021108 +3 0.106954 0.444961 0.007923 0.020200 +3 0.689114 0.076146 0.008509 0.020200 +4 0.252641 0.431003 0.011737 0.021335 +4 0.215962 0.177826 0.011150 0.021562 +3 0.918574 0.407399 0.007336 0.015887 +5 0.461708 0.042556 0.012617 0.017930 +4 0.790053 0.410463 0.012031 0.021108 +3 0.720511 0.315819 0.007923 0.021108 +3 0.138058 0.030980 0.007923 0.022015 +4 0.876027 0.405924 0.011444 0.022015 +3 0.457600 0.337381 0.007923 0.022015 +1 0.042987 0.249546 0.024354 0.051067 +4 0.524941 0.563209 0.011150 0.021562 +3 0.303844 0.636745 0.007923 0.021108 +3 0.640698 0.939287 0.007923 0.021562 +4 0.103727 0.510327 0.010857 0.021108 +4 0.307952 0.576827 0.011444 0.021108 +3 0.740464 0.409555 0.007923 0.021562 +3 0.428257 0.427031 0.007923 0.016114 +3 0.109888 0.724580 0.007923 0.021108 +4 0.337001 0.573196 0.010857 0.020200 +5 0.766432 0.039605 0.009390 0.017476 +4 0.822330 0.736382 0.011444 0.021108 +3 0.606367 0.415683 0.009683 0.021108 +5 0.740170 0.932025 0.008509 0.017930 +3 0.551790 0.727077 0.007923 0.021562 +5 0.276849 0.623808 0.009096 0.017930 +5 0.570863 0.921584 0.009096 0.017476 +5 0.430018 0.645824 0.009096 0.017930 +3 0.113410 0.336700 0.007336 0.021562 +3 0.499266 0.931571 0.007923 0.022015 +4 0.611942 0.932025 0.011444 0.021562 +5 0.193809 0.974694 0.014965 0.025647 +3 0.359448 0.954948 0.008216 0.020200 +4 0.673562 0.443373 0.010857 0.021108 +4 0.314114 0.459941 0.011444 0.021562 +3 0.625734 0.443827 0.009096 0.021108 +4 0.814114 0.932932 0.010857 0.021108 +4 0.849765 0.436791 0.012324 0.021108 +3 0.247212 0.257603 0.007923 0.020427 +3 0.649501 0.838289 0.007923 0.021108 +4 0.227259 0.463345 0.011444 0.020654 +4 0.582306 0.632433 0.010857 0.021108 +4 0.364583 0.457217 0.011444 0.020654 +4 0.450558 0.454040 0.010857 0.021108 +3 0.954959 0.400704 0.008509 0.022015 +3 0.699384 0.412960 0.009096 0.021108 +3 0.830252 0.405924 0.007923 0.021108 +3 0.855194 0.534158 0.007923 0.021562 +3 0.407424 0.453926 0.007923 0.021335 +3 0.805311 0.814911 0.007923 0.020200 +4 0.566168 0.419542 0.011444 0.021108 +3 0.460241 0.659442 0.008509 0.021562 +1 0.040640 0.672152 0.024941 0.050159 +3 0.935153 0.431003 0.008216 0.020427 +1 0.042107 0.459714 0.024941 0.051067 +3 0.608421 0.649455 0.007923 0.021108 +1 0.043867 0.350999 0.024354 0.050613 +4 0.719337 0.631071 0.011444 0.020654 +1 0.040640 0.958125 0.024354 0.050159 +1 0.040053 0.761348 0.024354 0.043350 +3 0.442342 0.945642 0.007923 0.021108 +3 0.581133 0.735815 0.007923 0.021788 +3 0.246772 0.967544 0.008216 0.021335 +1 0.041227 0.849410 0.024941 0.044258 +4 0.744865 0.732978 0.011444 0.021108 +5 0.133950 0.979460 0.009096 0.017930 +5 0.299883 0.957217 0.008803 0.016568 +4 0.480781 0.423627 0.010857 0.020200 +4 0.691168 0.635837 0.011444 0.021108 +5 0.471097 0.932251 0.009096 0.017930 +3 0.612383 0.563890 0.007629 0.021562 +5 0.329079 0.954494 0.010270 0.017476 +5 0.433979 0.032910 0.008803 0.017249 +3 0.409038 0.029619 0.007042 0.021108 +3 0.399648 0.576260 0.006455 0.019519 +3 0.419454 0.572742 0.009683 0.017930 +5 0.511150 0.056060 0.008803 0.017249 +3 0.486502 0.052882 0.007629 0.020881 +4 0.072330 0.954267 0.010857 0.020200 +4 0.061033 0.944167 0.009977 0.019973 +4 0.074824 0.456990 0.011150 0.020654 +4 0.064847 0.446664 0.011150 0.020881 +4 0.075411 0.064344 0.010563 0.019746 +4 0.065434 0.054471 0.010563 0.020881 +4 0.072770 0.761916 0.010563 0.020427 +4 0.062793 0.751248 0.010563 0.020881 +5 0.715376 0.056287 0.008803 0.017249 +5 0.718750 0.042442 0.009683 0.016795 +4 0.074237 0.245120 0.011150 0.019973 +4 0.064554 0.235134 0.010563 0.020881 +4 0.073797 0.567522 0.010857 0.020200 +4 0.064407 0.556968 0.010857 0.020881 +4 0.070716 0.848729 0.010563 0.019746 +4 0.061326 0.838629 0.010563 0.020427 +4 0.073650 0.669882 0.010563 0.019746 +4 0.064847 0.659782 0.010563 0.020427 +4 0.075264 0.168974 0.010857 0.020200 +4 0.066608 0.158420 0.010563 0.020881 +4 0.075998 0.347708 0.010563 0.019973 +4 0.065728 0.337267 0.009977 0.020881 +3 0.238410 0.347821 0.009096 0.021108 +4 0.248093 0.347821 0.009096 0.021108 +4 0.037999 0.068883 0.009096 0.021108 +4 0.045335 0.065706 0.009096 0.021108 +4 0.052817 0.052996 0.008803 0.021108 +3 0.363996 0.243985 0.009096 0.019973 +4 0.036532 0.186450 0.009096 0.021108 +3 0.043574 0.183500 0.009096 0.021108 +5 0.050469 0.182592 0.008803 0.021108 +4 0.042694 0.160123 0.009096 0.021108 +4 0.049883 0.156945 0.008803 0.021108 +3 0.686766 0.234453 0.009096 0.020881 +3 0.868104 0.243532 0.009096 0.019519 +5 0.145980 0.634816 0.009096 0.015887 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_14.jpg b/data_dataset/tch/debug/debug_14.jpg new file mode 100644 index 0000000..4747e18 Binary files /dev/null and b/data_dataset/tch/debug/debug_14.jpg differ diff --git a/data_dataset/tch/debug/debug_14.txt b/data_dataset/tch/debug/debug_14.txt new file mode 100644 index 0000000..348fdd7 --- /dev/null +++ b/data_dataset/tch/debug/debug_14.txt @@ -0,0 +1,675 @@ +10 0.650220 0.989914 0.013763 0.004306 +10 0.724012 0.990141 0.016105 0.005213 +9 0.382577 0.973821 0.007906 0.023345 +10 0.469839 0.988327 0.010249 0.003853 +9 0.250220 0.974161 0.009078 0.024025 +10 0.531772 0.966342 0.008199 0.005213 +10 0.515373 0.966115 0.008199 0.004760 +10 0.453587 0.966228 0.011127 0.004986 +10 0.329575 0.966568 0.009078 0.005666 +10 0.312738 0.965435 0.008199 0.003400 +10 0.142020 0.966342 0.009956 0.005213 +10 0.578917 0.966115 0.011127 0.005213 +10 0.266471 0.966568 0.010542 0.006120 +10 0.253294 0.966115 0.009956 0.005213 +10 0.207321 0.965435 0.010542 0.003853 +9 0.654173 0.977221 0.011713 0.030598 +10 0.467643 0.965888 0.011127 0.005213 +10 0.190630 0.965888 0.011127 0.005213 +8 0.692240 0.964529 0.011713 0.030598 +10 0.693851 0.951836 0.009078 0.003400 +9 0.969107 0.951723 0.013763 0.031278 +10 0.772328 0.930304 0.009078 0.006120 +9 0.431625 0.948209 0.005857 0.062783 +9 0.296779 0.947643 0.010249 0.063463 +9 0.340703 0.947303 0.009078 0.063237 +7 0.720205 0.878626 0.014348 0.025159 +10 0.820351 0.881800 0.008492 0.004760 +10 0.929575 0.863441 0.007906 0.002947 +10 0.839092 0.864574 0.012006 0.005666 +10 0.596633 0.863667 0.009663 0.004306 +10 0.856076 0.864347 0.009663 0.006120 +10 0.686823 0.864347 0.009663 0.006120 +10 0.542753 0.863554 0.008492 0.004533 +10 0.523133 0.863667 0.007906 0.004760 +10 0.618594 0.863667 0.010249 0.005213 +7 0.356223 0.849615 0.012592 0.017452 +7 0.319619 0.848935 0.012006 0.016092 +7 0.210981 0.842588 0.012592 0.030145 +9 0.395461 0.845762 0.010249 0.053717 +9 0.665447 0.844628 0.009663 0.064597 +7 0.302928 0.819470 0.006149 0.024252 +10 0.630015 0.785131 0.010249 0.002720 +9 0.316398 0.782072 0.008492 0.010199 +10 0.536018 0.783205 0.015520 0.004306 +10 0.133968 0.782752 0.014934 0.003400 +10 0.150366 0.691863 0.014934 0.002947 +10 0.122840 0.691976 0.011420 0.003173 +9 0.444949 0.689143 0.006735 0.007933 +9 0.354173 0.686763 0.007906 0.007253 +7 0.806296 0.652199 0.012592 0.016999 +7 0.940410 0.651972 0.012592 0.016999 +9 0.847438 0.637013 0.014641 0.053717 +10 0.492094 0.595988 0.007906 0.002493 +10 0.484627 0.567883 0.009956 0.003400 +10 0.339824 0.568563 0.009078 0.004760 +10 0.190922 0.555984 0.007613 0.002720 +10 0.828843 0.592135 0.021962 0.005666 +7 0.266618 0.554964 0.012006 0.016999 +7 0.108785 0.554737 0.012592 0.016546 +9 0.341874 0.547031 0.005564 0.022439 +7 0.304392 0.554510 0.012592 0.016546 +9 0.488873 0.549071 0.005564 0.026519 +6 0.558126 0.554510 0.009370 0.029692 +9 0.573939 0.550431 0.005857 0.063237 +9 0.227672 0.538191 0.011420 0.036038 +8 0.413324 0.531618 0.005564 0.024705 +7 0.797804 0.463395 0.012592 0.016999 +7 0.829429 0.463169 0.012592 0.017906 +7 0.941288 0.463622 0.012592 0.017452 +7 0.600732 0.462715 0.012006 0.016546 +7 0.685359 0.463169 0.012592 0.016999 +7 0.323719 0.463169 0.012006 0.016999 +7 0.405417 0.463169 0.012592 0.017452 +6 0.357394 0.462035 0.012592 0.025612 +6 0.632064 0.461582 0.012592 0.025612 +9 0.449927 0.443563 0.016105 0.029012 +9 0.208346 0.445716 0.009663 0.036945 +10 0.656369 0.391546 0.019619 0.002493 +10 0.696193 0.391319 0.010249 0.002947 +10 0.641142 0.391319 0.007906 0.002947 +10 0.876867 0.390866 0.033089 0.002947 +10 0.910542 0.390639 0.021962 0.002947 +10 0.567643 0.386446 0.009663 0.004986 +10 0.629136 0.383953 0.014348 0.005440 +10 0.156223 0.380893 0.012592 0.004760 +9 0.764714 0.378286 0.009078 0.014506 +7 0.596779 0.372620 0.007613 0.023119 +10 0.824890 0.364574 0.008199 0.003853 +9 0.354612 0.357774 0.007028 0.026519 +10 0.110249 0.379420 0.008492 0.003173 +10 0.127818 0.379306 0.023719 0.003400 +10 0.108199 0.342588 0.009663 0.005666 +10 0.437628 0.374093 0.022548 0.003400 +10 0.302635 0.336922 0.009663 0.004760 +10 0.812738 0.389506 0.009078 0.002947 +10 0.496486 0.282978 0.009078 0.004760 +10 0.919619 0.280712 0.020205 0.005213 +10 0.926940 0.276179 0.011420 0.003400 +10 0.913470 0.275725 0.007906 0.002493 +8 0.273353 0.270059 0.007906 0.022892 +7 0.398682 0.268019 0.009078 0.018812 +10 0.462225 0.261673 0.009663 0.004760 +8 0.336310 0.270286 0.006149 0.023799 +10 0.589312 0.260539 0.008492 0.002947 +10 0.754758 0.261673 0.009078 0.006120 +10 0.724597 0.254873 0.010835 0.005213 +10 0.314641 0.286151 0.023719 0.005666 +10 0.558565 0.286378 0.011420 0.003853 +10 0.656662 0.191183 0.007906 0.002493 +10 0.647877 0.191183 0.009078 0.002493 +9 0.659297 0.173844 0.010835 0.033998 +10 0.553880 0.171011 0.009663 0.005213 +10 0.596340 0.169651 0.007906 0.005213 +8 0.120644 0.171464 0.016398 0.009293 +10 0.577013 0.163531 0.008492 0.004760 +10 0.878038 0.157638 0.009663 0.004306 +10 0.856955 0.151292 0.010835 0.004306 +10 0.900293 0.137013 0.008492 0.003400 +10 0.285652 0.073096 0.014348 0.002493 +10 0.765593 0.062670 0.010249 0.002493 +10 0.596340 0.058137 0.007906 0.003400 +10 0.694143 0.057457 0.013763 0.005213 +9 0.274231 0.059497 0.007906 0.027879 +9 0.328111 0.060857 0.006735 0.023799 +10 0.355051 0.075816 0.016105 0.003853 +6 0.665447 0.062217 0.005564 0.029238 +9 0.758712 0.039778 0.007028 0.023799 +9 0.685359 0.041931 0.009663 0.044878 +11 0.821962 0.968722 0.008199 0.004986 +12 0.823572 0.939030 0.010249 0.007253 +17 0.823280 0.922597 0.010835 0.007933 +18 0.934553 0.968608 0.007906 0.007026 +11 0.451977 0.968495 0.010249 0.006800 +11 0.868960 0.968268 0.009078 0.006800 +12 0.869400 0.945943 0.009956 0.006573 +17 0.869253 0.915798 0.010249 0.007933 +11 0.530747 0.968382 0.009663 0.007026 +11 0.514348 0.968382 0.009663 0.007026 +11 0.403660 0.968495 0.009663 0.007253 +11 0.188873 0.968382 0.009370 0.007026 +18 0.911127 0.968608 0.011420 0.007933 +18 0.922840 0.968608 0.011420 0.007933 +11 0.751830 0.968268 0.009078 0.007253 +11 0.751537 0.954896 0.009078 0.005893 +12 0.751830 0.939030 0.012006 0.007706 +11 0.730454 0.968155 0.008492 0.007026 +12 0.730454 0.945263 0.010249 0.007480 +12 0.577452 0.968155 0.009956 0.007026 +11 0.467496 0.968268 0.009663 0.007253 +11 0.388580 0.968382 0.009370 0.007480 +13 0.252855 0.968155 0.009078 0.007026 +12 0.205124 0.968155 0.010249 0.007026 +17 0.844510 0.968155 0.009370 0.007480 +12 0.844656 0.939030 0.010249 0.007253 +17 0.844656 0.922711 0.010249 0.008160 +11 0.803075 0.967928 0.007906 0.007026 +12 0.803367 0.938917 0.010249 0.007026 +17 0.804246 0.921917 0.011420 0.008386 +11 0.655783 0.967928 0.009078 0.007026 +11 0.328551 0.968268 0.009370 0.007706 +11 0.311567 0.968268 0.009956 0.007706 +11 0.141728 0.968155 0.009370 0.007480 +12 0.124744 0.968042 0.009370 0.007253 +12 0.591508 0.967928 0.009370 0.007480 +11 0.266325 0.968042 0.009078 0.007706 +11 0.712884 0.967475 0.008492 0.007480 +12 0.713177 0.945150 0.010835 0.008160 +11 0.771157 0.961242 0.007321 0.006800 +11 0.771449 0.945376 0.007906 0.006800 +17 0.771157 0.932117 0.009663 0.007026 +11 0.675403 0.961469 0.010249 0.007706 +11 0.693558 0.954442 0.010249 0.006346 +11 0.693558 0.960789 0.010249 0.006346 +17 0.607467 0.939143 0.009078 0.007026 +17 0.607174 0.921691 0.010835 0.007480 +12 0.436750 0.939370 0.009663 0.007480 +17 0.435871 0.922711 0.010249 0.007706 +17 0.636018 0.939143 0.011127 0.007480 +17 0.635578 0.921917 0.011420 0.008386 +17 0.500000 0.939030 0.009663 0.007253 +17 0.499414 0.922711 0.010835 0.008160 +11 0.482430 0.939030 0.009663 0.007253 +17 0.482577 0.921351 0.011127 0.008160 +11 0.343338 0.939030 0.009078 0.007253 +12 0.343192 0.921804 0.009370 0.008160 +11 0.174671 0.939030 0.009078 0.007253 +11 0.174378 0.922711 0.010835 0.008160 +11 0.159151 0.938917 0.009663 0.007026 +11 0.158272 0.922257 0.010249 0.008160 +17 0.561493 0.938917 0.009663 0.007480 +17 0.561201 0.922031 0.010249 0.008160 +17 0.545681 0.939030 0.010249 0.007706 +17 0.544802 0.922597 0.010249 0.008386 +11 0.419180 0.939257 0.010835 0.008160 +17 0.418009 0.922711 0.009663 0.007706 +17 0.373499 0.938917 0.009663 0.007480 +17 0.373206 0.921917 0.010249 0.008840 +17 0.235286 0.938803 0.009663 0.007253 +17 0.234993 0.923051 0.010249 0.007480 +11 0.220205 0.938690 0.009956 0.007026 +11 0.219766 0.922371 0.009078 0.007026 +17 0.108785 0.938803 0.009663 0.007253 +17 0.108346 0.922937 0.011127 0.008160 +17 0.299414 0.938803 0.009078 0.007706 +11 0.298682 0.922711 0.009370 0.007253 +11 0.283895 0.938917 0.008492 0.007933 +12 0.283455 0.921691 0.009956 0.007933 +18 0.542313 0.883953 0.008199 0.003626 +13 0.298682 0.878740 0.009956 0.007253 +13 0.298536 0.855508 0.011420 0.007933 +13 0.279941 0.878740 0.011713 0.007706 +13 0.280527 0.855734 0.011713 0.007933 +18 0.036164 0.871034 0.006735 0.004080 +11 0.928697 0.866727 0.009078 0.007253 +11 0.855930 0.866614 0.009956 0.007480 +11 0.837921 0.866614 0.010249 0.007480 +11 0.909956 0.866614 0.010249 0.007933 +11 0.616545 0.866274 0.010249 0.007253 +11 0.448023 0.866160 0.009956 0.007026 +11 0.708199 0.866047 0.009663 0.007253 +11 0.686676 0.866047 0.008785 0.007253 +11 0.522108 0.866274 0.009370 0.007706 +11 0.468082 0.865934 0.009663 0.007026 +13 0.781991 0.866047 0.010835 0.007706 +13 0.762958 0.866047 0.010249 0.007706 +11 0.594876 0.866047 0.010249 0.007706 +11 0.541581 0.866160 0.010249 0.007933 +13 0.393411 0.865594 0.011420 0.007706 +13 0.241142 0.856074 0.011420 0.007706 +13 0.240556 0.839642 0.009078 0.006573 +13 0.241728 0.825023 0.007321 0.006346 +13 0.262225 0.855734 0.011420 0.007933 +13 0.262518 0.839642 0.010835 0.006573 +13 0.262811 0.825476 0.009663 0.007253 +11 0.818887 0.853354 0.008492 0.007253 +12 0.818302 0.836809 0.010835 0.007706 +13 0.799268 0.852448 0.010249 0.006346 +13 0.799854 0.836469 0.010249 0.007933 +17 0.504392 0.852561 0.008492 0.006573 +11 0.504685 0.836015 0.010249 0.007933 +11 0.487408 0.852561 0.009663 0.006573 +11 0.487116 0.835789 0.011420 0.008386 +11 0.875110 0.843835 0.008492 0.007253 +11 0.874524 0.830009 0.010249 0.007706 +13 0.893265 0.843722 0.009663 0.007480 +13 0.892679 0.830349 0.010249 0.007026 +13 0.746413 0.842928 0.011127 0.007706 +11 0.730161 0.842928 0.011420 0.007706 +11 0.577306 0.842928 0.007906 0.007706 +17 0.577013 0.829216 0.010249 0.007480 +11 0.559444 0.843042 0.010835 0.007933 +17 0.558272 0.829216 0.010249 0.007480 +11 0.430307 0.842815 0.011420 0.008386 +13 0.411274 0.842588 0.010835 0.007933 +17 0.948609 0.837262 0.007906 0.007253 +17 0.948023 0.820716 0.009663 0.006800 +17 0.668960 0.836355 0.010835 0.007706 +11 0.667496 0.820036 0.009663 0.007706 +17 0.635725 0.836242 0.009956 0.007480 +17 0.635286 0.819356 0.010835 0.008160 +12 0.183602 0.832616 0.010542 0.007480 +11 0.148609 0.826043 0.010835 0.007933 +12 0.108199 0.822756 0.010835 0.007706 +13 0.684041 0.764506 0.007028 0.004533 +12 0.684041 0.740481 0.011713 0.008160 +12 0.531186 0.764053 0.008199 0.004533 +12 0.531186 0.740594 0.011127 0.007480 +12 0.380234 0.763939 0.007321 0.004760 +12 0.380673 0.740141 0.011127 0.007933 +12 0.227379 0.763373 0.008492 0.006346 +12 0.227965 0.740141 0.012006 0.007933 +12 0.208346 0.763259 0.007906 0.006120 +12 0.208346 0.740254 0.010249 0.008160 +13 0.702050 0.763146 0.007906 0.006346 +12 0.702782 0.740594 0.010542 0.007480 +13 0.625183 0.763146 0.008785 0.006800 +13 0.624744 0.740367 0.010835 0.008386 +12 0.608199 0.763146 0.007613 0.006800 +12 0.608346 0.740254 0.010249 0.008160 +13 0.453294 0.763259 0.007613 0.007026 +12 0.453734 0.740254 0.011420 0.008160 +13 0.472182 0.763033 0.009663 0.007026 +12 0.472182 0.740027 0.010835 0.008160 +12 0.361493 0.762919 0.008492 0.006800 +12 0.361201 0.740254 0.010249 0.007706 +12 0.550220 0.762919 0.008785 0.007253 +12 0.550366 0.740141 0.011420 0.007933 +13 0.304539 0.762919 0.008199 0.007253 +13 0.304978 0.739687 0.011420 0.008386 +13 0.283895 0.762693 0.007906 0.007253 +13 0.284187 0.739801 0.010835 0.008613 +12 0.150073 0.762806 0.007906 0.007480 +12 0.151391 0.740027 0.009956 0.008160 +12 0.129575 0.762693 0.008492 0.007253 +12 0.129429 0.739914 0.011127 0.007933 +11 0.722840 0.740367 0.010835 0.007480 +17 0.722840 0.716908 0.010835 0.008613 +11 0.666471 0.740367 0.009370 0.007933 +17 0.666032 0.716115 0.009663 0.006573 +13 0.645827 0.740254 0.007906 0.007706 +13 0.645827 0.716908 0.010249 0.008160 +12 0.512592 0.740254 0.008492 0.007706 +17 0.512299 0.716568 0.009078 0.006573 +12 0.188726 0.740481 0.009663 0.008160 +17 0.187262 0.716908 0.009078 0.007253 +11 0.171157 0.740254 0.009663 0.007706 +17 0.170278 0.717022 0.010249 0.007480 +12 0.588141 0.740254 0.010835 0.008160 +17 0.587555 0.717135 0.010835 0.008160 +12 0.570864 0.740141 0.010249 0.007933 +17 0.569985 0.716568 0.010835 0.007933 +11 0.434407 0.740254 0.010249 0.008160 +17 0.434114 0.716455 0.010835 0.007706 +11 0.401318 0.740027 0.009663 0.007706 +17 0.400732 0.717362 0.010835 0.007706 +13 0.267057 0.740141 0.010542 0.007933 +13 0.266032 0.716682 0.010835 0.008160 +12 0.247584 0.740027 0.007906 0.007706 +17 0.247291 0.716228 0.009663 0.008160 +12 0.108492 0.740027 0.008492 0.007706 +17 0.107028 0.716568 0.009078 0.007933 +11 0.492972 0.740027 0.009078 0.008160 +17 0.492679 0.716795 0.009663 0.007933 +12 0.343338 0.739914 0.008492 0.007933 +17 0.343045 0.716908 0.009078 0.008160 +13 0.324012 0.739687 0.010835 0.008386 +12 0.323133 0.716568 0.010249 0.007480 +11 0.892679 0.721215 0.010835 0.007253 +12 0.860469 0.718722 0.009663 0.007253 +11 0.791654 0.718382 0.011420 0.007026 +12 0.937335 0.718155 0.011127 0.008386 +12 0.759883 0.717135 0.011127 0.008160 +12 0.831772 0.713849 0.010835 0.007480 +13 0.891801 0.681664 0.009663 0.007480 +13 0.892094 0.658658 0.010249 0.007253 +13 0.913909 0.681777 0.010542 0.008160 +13 0.913763 0.658658 0.010249 0.007253 +13 0.163543 0.668858 0.006735 0.004533 +12 0.164714 0.644946 0.009078 0.007480 +13 0.140996 0.668404 0.007321 0.005440 +12 0.140996 0.644606 0.009663 0.007706 +13 0.337921 0.667611 0.008785 0.006573 +12 0.337335 0.644832 0.009956 0.007253 +13 0.315666 0.667498 0.007613 0.006346 +12 0.315373 0.644832 0.009370 0.007253 +13 0.425622 0.667724 0.008492 0.007253 +12 0.424744 0.645286 0.010249 0.007706 +12 0.247438 0.667611 0.008199 0.007026 +12 0.247584 0.644946 0.010835 0.007026 +13 0.404539 0.667384 0.008492 0.007480 +12 0.404246 0.644946 0.010249 0.007933 +12 0.226061 0.667384 0.008199 0.007480 +12 0.225915 0.644832 0.010835 0.007706 +13 0.869546 0.658885 0.010835 0.007253 +13 0.868375 0.642226 0.009663 0.006573 +13 0.869400 0.627833 0.009956 0.005893 +13 0.846999 0.658772 0.011420 0.007933 +13 0.846706 0.642112 0.009663 0.006346 +13 0.846120 0.628060 0.009078 0.006346 +11 0.451098 0.645512 0.009078 0.007253 +17 0.450512 0.621827 0.010835 0.007933 +11 0.382138 0.645059 0.008199 0.007253 +17 0.381406 0.621940 0.010835 0.007253 +11 0.271596 0.645059 0.007321 0.007253 +17 0.271303 0.621940 0.010835 0.007253 +11 0.360029 0.645059 0.008492 0.007706 +12 0.360029 0.621827 0.011420 0.007480 +11 0.293558 0.644832 0.009078 0.007253 +17 0.292387 0.622393 0.009663 0.007706 +11 0.184627 0.645059 0.009078 0.007706 +17 0.183748 0.622620 0.010249 0.008160 +11 0.207174 0.644832 0.008492 0.007706 +17 0.206442 0.622507 0.009956 0.007480 +17 0.112299 0.644719 0.010249 0.007933 +17 0.110835 0.621714 0.010835 0.007253 +13 0.778184 0.635653 0.010835 0.006573 +11 0.742020 0.628626 0.009956 0.007933 +11 0.622840 0.625227 0.008785 0.007480 +12 0.708199 0.625113 0.010249 0.007706 +12 0.591654 0.622620 0.010835 0.007706 +12 0.663104 0.621374 0.010835 0.007480 +11 0.523426 0.621714 0.011420 0.008160 +12 0.491362 0.621260 0.009956 0.008160 +12 0.560469 0.618087 0.009956 0.007706 +12 0.915813 0.572076 0.007906 0.005440 +12 0.915813 0.548617 0.009663 0.007480 +13 0.821083 0.571850 0.008199 0.006800 +12 0.821230 0.548617 0.011420 0.007933 +13 0.891508 0.571623 0.007321 0.007253 +12 0.891947 0.548504 0.011127 0.008160 +11 0.797218 0.571736 0.009663 0.007480 +12 0.797072 0.548617 0.011713 0.007933 +13 0.725037 0.571510 0.008199 0.007026 +12 0.724597 0.548391 0.011420 0.007933 +13 0.603807 0.571510 0.008199 0.007026 +12 0.603367 0.548051 0.011420 0.008160 +11 0.698243 0.571510 0.009663 0.007480 +12 0.698097 0.548504 0.012299 0.007706 +13 0.628697 0.571283 0.007613 0.007026 +12 0.628697 0.548277 0.011713 0.008160 +12 0.484480 0.571056 0.009663 0.007480 +12 0.461201 0.571056 0.010542 0.007480 +12 0.338946 0.571170 0.010249 0.007706 +11 0.944217 0.548731 0.009078 0.007706 +17 0.943338 0.525045 0.009663 0.006573 +11 0.773499 0.548617 0.009663 0.007480 +17 0.772328 0.525385 0.009663 0.008160 +11 0.748316 0.548617 0.010835 0.007480 +17 0.747438 0.525272 0.009078 0.007026 +11 0.869546 0.548617 0.009663 0.007933 +17 0.868082 0.525045 0.010249 0.007933 +11 0.845827 0.548617 0.009078 0.007933 +17 0.844070 0.525612 0.010249 0.007253 +11 0.578917 0.548164 0.008785 0.007480 +17 0.578184 0.525159 0.010249 0.007706 +11 0.676574 0.548164 0.011420 0.007933 +12 0.674817 0.525612 0.009078 0.008160 +11 0.652855 0.548164 0.010249 0.007933 +17 0.652416 0.524479 0.011127 0.007706 +11 0.510688 0.548277 0.011713 0.008160 +11 0.437042 0.548051 0.011420 0.008160 +13 0.365886 0.548051 0.010835 0.008160 +13 0.180234 0.528558 0.009663 0.007706 +12 0.228697 0.525612 0.009956 0.006800 +17 0.413324 0.525159 0.009663 0.007706 +13 0.388433 0.525159 0.010249 0.007706 +17 0.531186 0.525272 0.009956 0.008386 +13 0.158858 0.522325 0.010249 0.007933 +13 0.206003 0.521306 0.009663 0.007253 +13 0.876574 0.438123 0.010249 0.007253 +13 0.256223 0.437103 0.011127 0.007480 +13 0.169107 0.437103 0.011420 0.007933 +13 0.733382 0.436650 0.010835 0.007480 +13 0.535139 0.436537 0.011420 0.007706 +13 0.449048 0.436310 0.010249 0.007706 +12 0.296047 0.434497 0.009370 0.007253 +13 0.771596 0.434270 0.009956 0.007253 +12 0.914348 0.433930 0.011420 0.007480 +12 0.574231 0.434044 0.010542 0.007706 +12 0.488287 0.433590 0.010835 0.008160 +12 0.210102 0.433250 0.009663 0.007933 +13 0.467789 0.430870 0.009663 0.007253 +13 0.857247 0.430530 0.009663 0.007480 +13 0.189165 0.430644 0.011127 0.007706 +13 0.150073 0.430870 0.011420 0.008160 +13 0.276281 0.430304 0.010835 0.007480 +13 0.238507 0.430530 0.011420 0.007933 +13 0.894436 0.429964 0.011420 0.007706 +13 0.752416 0.429964 0.009663 0.007706 +13 0.554466 0.429964 0.009663 0.007706 +13 0.516837 0.429850 0.011127 0.007933 +13 0.714056 0.429510 0.011420 0.007706 +13 0.432064 0.429624 0.010835 0.007933 +18 0.109370 0.409112 0.009663 0.007253 +11 0.812152 0.389053 0.012006 0.004760 +13 0.825329 0.367294 0.010835 0.007026 +13 0.771742 0.367520 0.010835 0.007026 +13 0.595168 0.367180 0.009663 0.006346 +13 0.647291 0.367067 0.009663 0.006573 +13 0.531625 0.366954 0.010249 0.006346 +13 0.946266 0.366954 0.009663 0.006800 +13 0.885212 0.367067 0.009956 0.007026 +13 0.713909 0.367067 0.011127 0.007026 +13 0.176428 0.356981 0.010835 0.008160 +13 0.267789 0.353808 0.010835 0.006800 +13 0.360322 0.350521 0.010835 0.007933 +13 0.146559 0.350521 0.012592 0.007933 +13 0.239239 0.347121 0.011127 0.007026 +13 0.455198 0.346895 0.010835 0.007026 +13 0.389019 0.346895 0.010835 0.007480 +17 0.388873 0.330122 0.011713 0.007480 +13 0.331918 0.344515 0.010249 0.007706 +18 0.108785 0.340095 0.010249 0.006573 +13 0.108199 0.356981 0.011420 0.008160 +13 0.427233 0.337942 0.009956 0.007706 +12 0.207760 0.337375 0.011420 0.007480 +13 0.208346 0.353581 0.010249 0.006346 +12 0.304100 0.333862 0.010835 0.007253 +13 0.303514 0.350408 0.012006 0.007706 +13 0.511713 0.327516 0.009078 0.007253 +13 0.570278 0.327856 0.010249 0.008386 +18 0.624890 0.324116 0.009370 0.007253 +12 0.683016 0.324003 0.009663 0.007480 +18 0.742460 0.321170 0.010249 0.007706 +18 0.859883 0.318450 0.010835 0.007253 +18 0.800000 0.318336 0.011713 0.007933 +18 0.916105 0.315050 0.009663 0.007253 +13 0.145681 0.264619 0.009663 0.007480 +13 0.396486 0.264166 0.010542 0.007026 +13 0.272182 0.264279 0.009663 0.007253 +13 0.208931 0.264053 0.009663 0.006800 +13 0.459883 0.264053 0.010249 0.007253 +13 0.334846 0.264053 0.009663 0.007253 +13 0.687408 0.263599 0.009663 0.007253 +11 0.686237 0.247393 0.010835 0.007480 +13 0.524597 0.263599 0.009663 0.007253 +13 0.752709 0.263259 0.010249 0.007026 +13 0.588433 0.263146 0.009663 0.006800 +13 0.839971 0.260199 0.010835 0.007706 +13 0.879649 0.257253 0.009370 0.007253 +12 0.880088 0.240594 0.009663 0.007480 +13 0.946559 0.257026 0.009078 0.007253 +13 0.723280 0.256800 0.010542 0.006800 +13 0.813324 0.253740 0.009663 0.007480 +12 0.641581 0.253626 0.008199 0.007253 +12 0.640849 0.230394 0.010835 0.008840 +13 0.912006 0.250453 0.010249 0.006800 +13 0.180234 0.248413 0.010835 0.007706 +13 0.120059 0.248187 0.009956 0.008160 +13 0.305271 0.244787 0.010249 0.006800 +13 0.243045 0.245014 0.011713 0.007706 +12 0.782870 0.243767 0.010835 0.006120 +13 0.782577 0.260426 0.011420 0.007706 +13 0.367204 0.241387 0.009956 0.007706 +13 0.433529 0.237987 0.010249 0.008160 +13 0.493997 0.236967 0.010542 0.008386 +13 0.557247 0.233908 0.011127 0.007253 +13 0.460469 0.175997 0.010835 0.007933 +13 0.418009 0.175771 0.010249 0.007933 +12 0.532211 0.175657 0.010249 0.008160 +11 0.594583 0.172824 0.009663 0.007480 +13 0.437921 0.173391 0.010249 0.008613 +18 0.913616 0.167951 0.031040 0.004533 +12 0.924158 0.146985 0.010542 0.007480 +11 0.666911 0.168971 0.009078 0.007480 +13 0.360029 0.168971 0.010249 0.007480 +11 0.513031 0.168518 0.009956 0.007480 +11 0.624744 0.168291 0.009078 0.007480 +12 0.624744 0.152879 0.010835 0.007026 +13 0.378624 0.166478 0.011127 0.007026 +13 0.329868 0.166478 0.010249 0.007480 +13 0.739092 0.166138 0.009956 0.007706 +11 0.575695 0.165798 0.009956 0.007933 +13 0.805124 0.163191 0.009663 0.007706 +13 0.288287 0.163305 0.011420 0.007933 +11 0.269546 0.159451 0.010249 0.006120 +17 0.280966 0.135653 0.013177 0.003400 +13 0.761347 0.162965 0.010542 0.007706 +12 0.761640 0.146192 0.010542 0.006800 +11 0.646706 0.162851 0.011420 0.007933 +13 0.876281 0.159905 0.010249 0.006573 +13 0.833821 0.159678 0.009663 0.007026 +12 0.834700 0.143586 0.011420 0.007480 +12 0.483309 0.159678 0.011420 0.007026 +18 0.484041 0.176111 0.011127 0.008160 +13 0.311127 0.159451 0.011420 0.006573 +13 0.719034 0.159451 0.010835 0.007026 +13 0.786969 0.156618 0.010835 0.007706 +12 0.553294 0.155938 0.010835 0.008160 +11 0.553880 0.172711 0.010249 0.008160 +13 0.219766 0.153558 0.009078 0.007026 +13 0.855344 0.153105 0.009956 0.006573 +13 0.242167 0.150272 0.011127 0.007706 +13 0.192240 0.150272 0.011420 0.007706 +12 0.689898 0.149705 0.011127 0.007933 +13 0.688873 0.166138 0.010249 0.007253 +13 0.143924 0.147212 0.009663 0.006573 +13 0.164714 0.143699 0.010249 0.007706 +13 0.110395 0.143699 0.011713 0.008613 +13 0.943924 0.140526 0.010835 0.007253 +12 0.899414 0.139846 0.009663 0.006800 +13 0.623719 0.088395 0.009370 0.007706 +13 0.601757 0.086015 0.009956 0.007480 +12 0.645534 0.085109 0.009663 0.007480 +12 0.642899 0.063577 0.012592 0.009293 +13 0.553294 0.078989 0.010249 0.007480 +13 0.533382 0.076156 0.010249 0.007706 +13 0.574378 0.075816 0.010249 0.007480 +13 0.484041 0.072416 0.010542 0.006573 +11 0.852562 0.070603 0.011420 0.007026 +13 0.861201 0.043404 0.011127 0.007480 +13 0.461640 0.070036 0.009663 0.007253 +13 0.504100 0.069583 0.010249 0.007253 +13 0.417423 0.066750 0.010249 0.006573 +13 0.416252 0.040458 0.014348 0.004760 +13 0.442167 0.063690 0.011713 0.007706 +13 0.398536 0.063690 0.010542 0.007706 +11 0.407467 0.036378 0.006735 0.003853 +13 0.349195 0.057684 0.010835 0.007933 +13 0.326647 0.054624 0.009078 0.007253 +13 0.368668 0.054057 0.009956 0.007480 +13 0.932211 0.053037 0.010249 0.007253 +13 0.280527 0.051451 0.010542 0.008160 +13 0.952123 0.049864 0.010249 0.007253 +13 0.910835 0.049524 0.010835 0.007480 +13 0.255637 0.048051 0.010542 0.007253 +13 0.299707 0.047937 0.010249 0.007480 +13 0.216691 0.044311 0.010542 0.007933 +13 0.237628 0.041251 0.011420 0.007253 +13 0.193558 0.041364 0.010542 0.008386 +13 0.832650 0.039778 0.010249 0.007480 +13 0.884187 0.039211 0.010249 0.006800 +13 0.783455 0.036038 0.010249 0.007706 +13 0.144802 0.034678 0.010249 0.007253 +13 0.756515 0.033545 0.009078 0.007253 +13 0.805271 0.032525 0.009956 0.007480 +13 0.167643 0.032072 0.010249 0.008386 +13 0.125037 0.031505 0.011713 0.008160 +13 0.714934 0.030258 0.010835 0.007933 +13 0.735432 0.027312 0.009663 0.007480 +13 0.687116 0.025612 0.010249 0.008160 +3 0.897657 0.048164 0.007906 0.021079 +4 0.769400 0.035925 0.011420 0.021079 +1 0.044070 0.065617 0.024890 0.049637 +3 0.702050 0.029352 0.008492 0.021985 +3 0.500146 0.168518 0.007613 0.021079 +5 0.418741 0.234474 0.009370 0.017452 +4 0.207467 0.153332 0.011420 0.020172 +4 0.668960 0.323776 0.010835 0.021532 +4 0.131332 0.146985 0.011420 0.020626 +3 0.819473 0.040005 0.008492 0.020626 +3 0.671889 0.025952 0.007906 0.021532 +5 0.111274 0.029238 0.009956 0.018132 +3 0.706442 0.158998 0.007906 0.021079 +5 0.700000 0.427357 0.009078 0.017452 +4 0.819473 0.159451 0.011420 0.021079 +1 0.045242 0.149705 0.025476 0.050091 +5 0.315227 0.050884 0.009663 0.017906 +4 0.847291 0.042044 0.011420 0.021079 +4 0.167643 0.248073 0.011420 0.021532 +4 0.413616 0.337375 0.010835 0.021079 +5 0.417423 0.426451 0.008492 0.014279 +5 0.145974 0.519832 0.009078 0.017452 +4 0.291215 0.244674 0.011420 0.021079 +4 0.608785 0.169651 0.011713 0.021079 +4 0.554466 0.326723 0.010249 0.020626 +3 0.134553 0.350975 0.007906 0.020626 +3 0.844656 0.319016 0.007321 0.021079 +3 0.708492 0.257366 0.008492 0.020172 +5 0.384919 0.060630 0.009663 0.019719 +5 0.180673 0.038645 0.009370 0.017906 +5 0.589312 0.081936 0.009663 0.017906 +3 0.479649 0.237421 0.008199 0.021079 +3 0.495900 0.326269 0.007906 0.018359 +3 0.105564 0.249207 0.007906 0.021532 +3 0.257247 0.160131 0.007906 0.021079 +1 0.042899 0.951383 0.024305 0.049637 +1 0.043485 0.555417 0.024305 0.050091 +1 0.044070 0.462489 0.024890 0.050091 +4 0.861054 0.257140 0.011420 0.019719 +1 0.042460 0.845308 0.024012 0.044198 +4 0.289458 0.350181 0.009663 0.019946 +1 0.045242 0.258046 0.024305 0.043744 +1 0.044656 0.358454 0.024890 0.041478 +4 0.344510 0.168744 0.011420 0.020626 +5 0.519912 0.074003 0.009078 0.015186 +5 0.828551 0.639393 0.008492 0.016772 +5 0.833382 0.625793 0.008785 0.016772 +4 0.077306 0.948323 0.010542 0.019492 +4 0.066764 0.938123 0.010542 0.019946 +5 0.225037 0.835449 0.008492 0.016772 +5 0.228697 0.822529 0.007613 0.015413 +4 0.075256 0.742974 0.010542 0.020399 +4 0.066471 0.732774 0.010542 0.020852 +4 0.076720 0.258386 0.010542 0.019492 +4 0.066764 0.247960 0.010542 0.020399 +4 0.076428 0.460109 0.010542 0.020399 +4 0.067057 0.450136 0.010542 0.020399 +4 0.077306 0.648232 0.010542 0.019492 +4 0.066471 0.638259 0.009956 0.020399 +4 0.074085 0.845875 0.010542 0.020399 +4 0.065593 0.835675 0.010542 0.020852 +4 0.075549 0.551677 0.010542 0.020399 +4 0.065593 0.541251 0.010542 0.020399 +4 0.075842 0.061650 0.010542 0.020399 +4 0.065886 0.052131 0.010542 0.020399 +4 0.076135 0.147099 0.010542 0.020852 +4 0.065593 0.137126 0.010542 0.020852 +4 0.076428 0.360381 0.010542 0.020399 +4 0.066471 0.350181 0.010542 0.019946 +4 0.034846 0.653105 0.009370 0.020626 +4 0.042460 0.648119 0.009370 0.020626 +4 0.050366 0.636786 0.009370 0.020626 +4 0.043045 0.733794 0.009370 0.020626 +4 0.050659 0.731074 0.009370 0.020626 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_15.jpg b/data_dataset/tch/debug/debug_15.jpg new file mode 100644 index 0000000..509e677 Binary files /dev/null and b/data_dataset/tch/debug/debug_15.jpg differ diff --git a/data_dataset/tch/debug/debug_15.txt b/data_dataset/tch/debug/debug_15.txt new file mode 100644 index 0000000..b5ac147 --- /dev/null +++ b/data_dataset/tch/debug/debug_15.txt @@ -0,0 +1,311 @@ +10 0.367949 0.947876 0.015570 0.006132 +7 0.716657 0.948104 0.013807 0.012491 +9 0.543038 0.937883 0.015570 0.029298 +10 0.120887 0.923348 0.020858 0.006586 +10 0.670094 0.834772 0.008813 0.004769 +10 0.572415 0.820009 0.009107 0.005224 +10 0.388807 0.819101 0.010870 0.003861 +10 0.742803 0.799341 0.007932 0.002953 +10 0.129700 0.794572 0.010870 0.006132 +10 0.928173 0.707813 0.014395 0.005678 +10 0.820065 0.695776 0.010870 0.006132 +9 0.576821 0.696684 0.010870 0.022939 +9 0.155259 0.698615 0.011457 0.038610 +9 0.947268 0.692369 0.006757 0.036566 +10 0.921122 0.682603 0.008519 0.005224 +9 0.384988 0.694867 0.011457 0.032478 +10 0.753085 0.597661 0.014982 0.005678 +10 0.605611 0.597434 0.011457 0.005224 +6 0.409959 0.581081 0.012632 0.025664 +10 0.870300 0.570861 0.008519 0.004315 +6 0.361193 0.580400 0.012632 0.026119 +10 0.569771 0.557915 0.011457 0.002498 +10 0.544800 0.472065 0.012045 0.005224 +10 0.420828 0.458892 0.009694 0.004769 +7 0.236927 0.460254 0.007344 0.023847 +10 0.152027 0.364184 0.008519 0.005678 +10 0.198443 0.357938 0.010870 0.005451 +10 0.449471 0.382012 0.011751 0.002271 +10 0.481786 0.379855 0.015276 0.004769 +10 0.404083 0.347604 0.012045 0.005678 +10 0.498678 0.347490 0.009694 0.005905 +10 0.482227 0.245628 0.012045 0.005224 +10 0.642920 0.245174 0.007932 0.004769 +10 0.169066 0.234272 0.007344 0.002953 +10 0.249853 0.269248 0.010282 0.003407 +10 0.241334 0.269021 0.007344 0.003861 +10 0.211075 0.268680 0.010282 0.004997 +10 0.760723 0.231774 0.008519 0.004315 +6 0.644389 0.150920 0.009107 0.017942 +10 0.198443 0.137406 0.038484 0.003180 +10 0.174941 0.136157 0.007932 0.005678 +7 0.287750 0.134567 0.009107 0.012946 +6 0.256904 0.132523 0.009694 0.017942 +6 0.607961 0.116852 0.011457 0.027027 +6 0.645564 0.116171 0.011457 0.026573 +11 0.435370 0.954349 0.008226 0.004088 +11 0.446533 0.933000 0.011163 0.007722 +12 0.145858 0.952646 0.011457 0.007495 +12 0.099442 0.952646 0.010282 0.007495 +12 0.203290 0.949126 0.009988 0.006814 +12 0.171563 0.949353 0.011163 0.007268 +12 0.233549 0.946060 0.010576 0.007495 +12 0.418184 0.929480 0.009694 0.007041 +12 0.574471 0.928912 0.009694 0.007268 +12 0.544800 0.929139 0.010282 0.007722 +12 0.893801 0.928571 0.010282 0.007041 +12 0.735458 0.928117 0.009694 0.006586 +12 0.390276 0.926187 0.011457 0.007722 +12 0.355905 0.922666 0.009694 0.007041 +12 0.261751 0.922212 0.010576 0.006132 +12 0.516304 0.922553 0.010282 0.007268 +11 0.313308 0.917670 0.011457 0.007949 +12 0.491334 0.914149 0.010282 0.008176 +12 0.950059 0.908244 0.010576 0.007268 +12 0.924207 0.904724 0.011163 0.007495 +11 0.766304 0.904383 0.010282 0.007268 +12 0.706962 0.904610 0.011457 0.007722 +11 0.662162 0.904610 0.011163 0.007722 +11 0.600911 0.904610 0.010870 0.007722 +12 0.869712 0.903816 0.011457 0.007495 +11 0.827409 0.903816 0.011457 0.007495 +12 0.902761 0.815580 0.009988 0.006359 +12 0.929348 0.813423 0.011457 0.007495 +11 0.769976 0.812401 0.010576 0.007722 +12 0.818449 0.808767 0.010576 0.006359 +12 0.955200 0.806836 0.010282 0.007949 +11 0.163484 0.806609 0.010870 0.007949 +12 0.875588 0.806155 0.010870 0.007495 +12 0.686105 0.806041 0.011457 0.007722 +12 0.331962 0.802862 0.009401 0.007268 +11 0.741627 0.802635 0.009694 0.007268 +12 0.848854 0.801953 0.010282 0.006359 +12 0.354730 0.799568 0.011457 0.007949 +12 0.717244 0.799228 0.011457 0.007722 +12 0.660840 0.799228 0.011457 0.007722 +12 0.591069 0.799341 0.011163 0.007949 +12 0.373825 0.796275 0.009694 0.006814 +12 0.311839 0.796162 0.010282 0.006586 +12 0.128085 0.796048 0.009988 0.006814 +12 0.562573 0.795821 0.009988 0.007268 +13 0.398942 0.792982 0.010576 0.007495 +12 0.634988 0.792755 0.011457 0.007495 +12 0.532315 0.792755 0.010576 0.007495 +12 0.422297 0.789802 0.011457 0.007495 +12 0.506610 0.789575 0.010870 0.007495 +12 0.100029 0.789462 0.010870 0.007268 +12 0.278643 0.789462 0.010870 0.007722 +11 0.465188 0.785260 0.010282 0.007495 +12 0.253085 0.781853 0.010282 0.007041 +12 0.204318 0.779014 0.011457 0.007722 +11 0.627644 0.704520 0.010870 0.007268 +12 0.674794 0.704065 0.011163 0.007268 +11 0.708137 0.701340 0.010870 0.007268 +11 0.774236 0.697479 0.010282 0.006359 +12 0.818596 0.697252 0.009694 0.006814 +12 0.489865 0.694867 0.011457 0.007495 +12 0.523649 0.694640 0.010870 0.007495 +12 0.185076 0.694867 0.011751 0.007949 +12 0.844741 0.694413 0.011457 0.007495 +11 0.337397 0.694299 0.012045 0.008176 +12 0.575353 0.691347 0.009694 0.007268 +12 0.868243 0.690893 0.011457 0.007722 +12 0.212397 0.688281 0.011163 0.007949 +12 0.552438 0.687940 0.010870 0.007722 +12 0.895711 0.687940 0.010576 0.008176 +12 0.385282 0.684988 0.007932 0.006814 +12 0.156140 0.684760 0.009107 0.006814 +12 0.920535 0.684420 0.009107 0.006586 +12 0.239571 0.684760 0.009107 0.007268 +12 0.954025 0.681808 0.011457 0.007722 +12 0.432873 0.681467 0.011457 0.007949 +12 0.286575 0.681467 0.011457 0.007949 +12 0.460194 0.678288 0.010870 0.007041 +12 0.130288 0.677947 0.011457 0.006814 +12 0.309195 0.678060 0.010870 0.007495 +12 0.099736 0.669771 0.011457 0.007722 +12 0.169800 0.598569 0.011163 0.007041 +11 0.211369 0.595390 0.010870 0.007495 +12 0.259841 0.591756 0.010282 0.006586 +12 0.109871 0.591415 0.009988 0.006359 +12 0.721945 0.589144 0.008519 0.005451 +12 0.620447 0.589371 0.007638 0.005905 +12 0.557432 0.589144 0.008519 0.005451 +17 0.313014 0.588576 0.010870 0.007495 +12 0.141157 0.588576 0.011457 0.007949 +12 0.801704 0.586759 0.008226 0.005678 +12 0.779230 0.582898 0.008519 0.005678 +12 0.741187 0.582671 0.008226 0.005224 +11 0.900852 0.583693 0.011457 0.007722 +12 0.641892 0.582444 0.008226 0.005678 +12 0.759548 0.580059 0.008519 0.005451 +12 0.700353 0.575744 0.007638 0.005905 +12 0.600911 0.575744 0.008519 0.005905 +12 0.580200 0.573018 0.008226 0.005905 +12 0.663190 0.572791 0.008519 0.006359 +13 0.869418 0.572791 0.009694 0.006814 +12 0.839747 0.566432 0.010282 0.006814 +12 0.950793 0.555871 0.010282 0.007495 +11 0.499706 0.493641 0.012926 0.004315 +12 0.952262 0.478651 0.010870 0.007495 +12 0.771005 0.477515 0.011457 0.007495 +12 0.925088 0.474676 0.009988 0.006814 +12 0.743978 0.474109 0.010282 0.007041 +12 0.543919 0.473995 0.009694 0.006814 +12 0.895123 0.471383 0.011163 0.007495 +12 0.719154 0.471156 0.011751 0.007495 +12 0.570652 0.471042 0.011457 0.007268 +12 0.515717 0.470929 0.010870 0.007949 +12 0.132932 0.470815 0.011457 0.007722 +11 0.647033 0.467863 0.010282 0.006359 +12 0.596357 0.467863 0.011163 0.006359 +11 0.826528 0.467749 0.010870 0.006586 +12 0.694918 0.464683 0.010870 0.007268 +12 0.867509 0.464683 0.009988 0.007722 +12 0.461369 0.464683 0.011457 0.007722 +12 0.155259 0.464456 0.010282 0.007722 +12 0.335047 0.464229 0.010282 0.007722 +12 0.419947 0.461276 0.009694 0.007268 +12 0.486927 0.458324 0.010870 0.007722 +12 0.393214 0.458097 0.011457 0.008176 +12 0.286575 0.457870 0.010282 0.007722 +12 0.365306 0.454009 0.010282 0.007268 +12 0.234283 0.454009 0.009694 0.007268 +12 0.100029 0.453782 0.010282 0.007268 +12 0.310664 0.449921 0.009694 0.008176 +12 0.206816 0.450034 0.009988 0.008403 +12 0.182579 0.445832 0.010870 0.007722 +11 0.570652 0.375199 0.010870 0.007268 +11 0.617068 0.365546 0.010870 0.007949 +17 0.099001 0.365546 0.011163 0.007949 +12 0.655259 0.362026 0.010870 0.006359 +12 0.151880 0.362253 0.011163 0.006814 +12 0.681404 0.358960 0.011457 0.007495 +12 0.175823 0.359187 0.010870 0.007949 +14 0.445358 0.355894 0.009401 0.007268 +12 0.199912 0.355553 0.010870 0.006586 +12 0.709166 0.355667 0.010576 0.007268 +12 0.875441 0.353395 0.007051 0.004997 +11 0.745740 0.352714 0.010870 0.007722 +11 0.811251 0.352487 0.011457 0.007722 +11 0.779230 0.352714 0.010870 0.008176 +14 0.461516 0.352373 0.010576 0.007495 +14 0.416422 0.352487 0.010282 0.007722 +14 0.390276 0.352487 0.009694 0.007722 +17 0.349442 0.352373 0.012632 0.007495 +11 0.303173 0.352373 0.009988 0.007495 +11 0.270270 0.352487 0.011751 0.007722 +11 0.238396 0.352373 0.011457 0.007495 +17 0.527468 0.352373 0.012632 0.007949 +12 0.962397 0.350102 0.007051 0.005678 +18 0.971945 0.335226 0.006169 0.004088 +12 0.885576 0.349762 0.007344 0.005905 +11 0.857667 0.349307 0.010282 0.006814 +14 0.403202 0.349307 0.009694 0.006814 +13 0.498384 0.349421 0.009694 0.007495 +11 0.934342 0.347036 0.010870 0.007722 +11 0.899971 0.346923 0.010282 0.007495 +13 0.476351 0.346014 0.010282 0.007495 +11 0.941686 0.263797 0.011457 0.007495 +11 0.907021 0.263684 0.010282 0.007268 +12 0.878378 0.263457 0.010576 0.007722 +11 0.337103 0.263570 0.011457 0.007949 +13 0.857961 0.260164 0.010870 0.008403 +13 0.837985 0.256530 0.010870 0.007495 +12 0.793038 0.253236 0.011457 0.008176 +11 0.386163 0.253123 0.010870 0.007949 +12 0.428467 0.250057 0.010870 0.006359 +13 0.767626 0.249603 0.010576 0.005905 +11 0.716069 0.249375 0.010282 0.006359 +12 0.686105 0.249375 0.010282 0.006359 +13 0.748825 0.246764 0.011163 0.007495 +12 0.455200 0.246650 0.010282 0.007722 +13 0.662015 0.246423 0.011457 0.007722 +12 0.483108 0.243470 0.010870 0.005905 +14 0.207844 0.243584 0.009107 0.007041 +13 0.641598 0.243130 0.010576 0.006586 +14 0.181257 0.240745 0.009988 0.007268 +14 0.155552 0.240404 0.009107 0.007495 +14 0.223561 0.240177 0.011163 0.007495 +11 0.593273 0.240291 0.011457 0.008176 +11 0.559342 0.240177 0.009988 0.007949 +11 0.525118 0.240177 0.011457 0.007949 +17 0.102673 0.240177 0.012632 0.007949 +17 0.297004 0.239950 0.012926 0.007949 +14 0.168184 0.237338 0.008519 0.006814 +13 0.262779 0.237111 0.009694 0.006814 +13 0.240012 0.233591 0.011163 0.007949 +18 0.426557 0.161140 0.006463 0.004315 +11 0.608989 0.152737 0.008226 0.005678 +12 0.556551 0.152055 0.007932 0.006132 +11 0.686545 0.151715 0.010576 0.007268 +12 0.576528 0.148535 0.007932 0.005451 +17 0.514395 0.142062 0.009401 0.006132 +11 0.732961 0.142403 0.011163 0.007722 +12 0.778643 0.138883 0.010282 0.007041 +12 0.421122 0.135362 0.008519 0.005905 +12 0.809489 0.135930 0.010870 0.007949 +12 0.838425 0.131728 0.009988 0.005905 +12 0.441392 0.132069 0.007932 0.006586 +12 0.396739 0.132069 0.007932 0.006586 +12 0.460194 0.129230 0.007932 0.005451 +12 0.377644 0.129003 0.008519 0.005905 +11 0.952996 0.129457 0.010576 0.007722 +11 0.911575 0.129457 0.009988 0.007722 +11 0.874266 0.129457 0.009401 0.007722 +12 0.344154 0.125369 0.007344 0.005905 +12 0.481345 0.125369 0.007932 0.006814 +12 0.326234 0.122530 0.007932 0.005678 +12 0.306698 0.119350 0.008226 0.005678 +11 0.221945 0.091529 0.006169 0.004542 +4 0.810076 0.467522 0.012045 0.020668 +1 0.035400 0.243357 0.024971 0.044288 +1 0.077115 0.135476 0.025558 0.051102 +3 0.411134 0.136384 0.007344 0.016125 +5 0.791569 0.584147 0.006757 0.012264 +3 0.939336 0.681467 0.007932 0.021576 +5 0.549794 0.792528 0.009107 0.017942 +4 0.097385 0.591756 0.012045 0.020668 +4 0.920241 0.346695 0.012045 0.021576 +4 0.432579 0.356234 0.012045 0.020668 +1 0.033931 0.358278 0.025558 0.050647 +4 0.822121 0.256984 0.012045 0.021122 +3 0.952556 0.349648 0.006169 0.014763 +4 0.195505 0.243697 0.011457 0.020895 +5 0.297444 0.914944 0.009107 0.017942 +3 0.196387 0.595390 0.007932 0.020668 +4 0.189924 0.949239 0.011457 0.021576 +3 0.510429 0.694640 0.007932 0.021122 +5 0.700206 0.795707 0.009107 0.017942 +3 0.380288 0.457983 0.007932 0.021576 +4 0.658784 0.703952 0.010870 0.020668 +5 0.835341 0.798660 0.009107 0.017942 +3 0.377350 0.926073 0.007932 0.022030 +5 0.451087 0.782535 0.009107 0.017488 +3 0.132344 0.952646 0.007932 0.021122 +1 0.033049 0.694640 0.024971 0.051102 +1 0.032756 0.581990 0.024971 0.051102 +4 0.632051 0.467749 0.012045 0.020668 +4 0.270417 0.457302 0.011457 0.022030 +1 0.033637 0.806155 0.024971 0.050647 +1 0.034224 0.939019 0.025558 0.051102 +3 0.297150 0.796162 0.009107 0.021122 +5 0.760135 0.694640 0.009107 0.017488 +5 0.804495 0.805587 0.009694 0.018169 +5 0.055817 0.936180 0.008226 0.017715 +5 0.066686 0.925732 0.008813 0.016807 +5 0.055523 0.578242 0.008813 0.017715 +5 0.066686 0.568703 0.008813 0.016807 +5 0.059048 0.243243 0.009401 0.017261 +5 0.068155 0.232569 0.008813 0.016807 +5 0.055817 0.802635 0.008813 0.017715 +5 0.065217 0.792868 0.008813 0.017261 +5 0.057873 0.355212 0.008226 0.016807 +5 0.066686 0.345673 0.008226 0.016807 +5 0.098120 0.131955 0.008226 0.017261 +5 0.108402 0.121962 0.008813 0.017261 +5 0.057579 0.691347 0.008813 0.016807 +5 0.065805 0.681127 0.008813 0.017261 +5 0.058461 0.466954 0.008813 0.016807 +5 0.066686 0.457188 0.008813 0.017261 +0 0.033490 0.463775 0.024677 0.037702 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_16.jpg b/data_dataset/tch/debug/debug_16.jpg new file mode 100644 index 0000000..522926d Binary files /dev/null and b/data_dataset/tch/debug/debug_16.jpg differ diff --git a/data_dataset/tch/debug/debug_16.txt b/data_dataset/tch/debug/debug_16.txt new file mode 100644 index 0000000..f90f90f --- /dev/null +++ b/data_dataset/tch/debug/debug_16.txt @@ -0,0 +1,406 @@ +10 0.148046 0.929331 0.010210 0.006558 +10 0.871791 0.927295 0.022462 0.005201 +7 0.717182 0.927295 0.011960 0.016508 +10 0.939761 0.922773 0.014877 0.007010 +10 0.113331 0.921642 0.008460 0.005654 +6 0.742853 0.927069 0.013127 0.025102 +6 0.773775 0.926843 0.013127 0.025102 +10 0.661173 0.913161 0.008460 0.004975 +10 0.407964 0.846563 0.007293 0.004749 +10 0.954930 0.845432 0.009043 0.003392 +10 0.939761 0.845432 0.009043 0.003392 +10 0.892649 0.838648 0.007585 0.004749 +10 0.351809 0.839326 0.008751 0.006106 +10 0.557905 0.829150 0.007876 0.003844 +10 0.548571 0.829602 0.007876 0.004749 +10 0.793903 0.825758 0.010793 0.004749 +9 0.372375 0.832768 0.013711 0.029172 +9 0.340140 0.827114 0.008751 0.032338 +10 0.113915 0.818295 0.009043 0.006106 +9 0.540403 0.816712 0.006709 0.029625 +9 0.688886 0.798281 0.010210 0.039349 +10 0.720974 0.821687 0.013127 0.003392 +10 0.640169 0.781660 0.007293 0.006558 +9 0.606768 0.801900 0.012252 0.056536 +10 0.712806 0.718340 0.012544 0.003844 +10 0.958431 0.696630 0.010210 0.003392 +9 0.191657 0.705676 0.008168 0.030981 +9 0.111289 0.705337 0.010210 0.031660 +10 0.769107 0.690751 0.007876 0.005201 +9 0.245041 0.702171 0.012835 0.030303 +7 0.570741 0.692221 0.009043 0.023519 +10 0.625875 0.623134 0.018961 0.005201 +10 0.676925 0.617933 0.009043 0.004297 +10 0.656214 0.611827 0.020128 0.005201 +10 0.915257 0.603234 0.007293 0.005201 +9 0.640169 0.598146 0.011377 0.040253 +7 0.675467 0.600294 0.009627 0.026911 +10 0.966599 0.592605 0.010793 0.005201 +10 0.388127 0.591474 0.007876 0.002940 +10 0.618436 0.615785 0.014002 0.003618 +7 0.731768 0.594188 0.010793 0.024197 +10 0.632585 0.585142 0.008460 0.003392 +10 0.935968 0.498191 0.010793 0.005427 +10 0.563156 0.487223 0.007293 0.003844 +6 0.314761 0.492424 0.005834 0.030077 +10 0.294924 0.481117 0.010502 0.005654 +10 0.192970 0.510289 0.013711 0.003844 +10 0.174300 0.509837 0.016044 0.004749 +10 0.620041 0.468001 0.008460 0.005201 +10 0.685093 0.464156 0.019545 0.006106 +9 0.959306 0.394618 0.009043 0.026232 +7 0.573950 0.393600 0.011960 0.016961 +6 0.597287 0.393374 0.011960 0.025554 +9 0.174008 0.390208 0.014877 0.032338 +9 0.367999 0.382745 0.012544 0.031886 +10 0.254230 0.370986 0.007876 0.006558 +10 0.114498 0.363749 0.007293 0.006106 +10 0.150379 0.286635 0.009043 0.005654 +10 0.931301 0.285957 0.008460 0.006558 +10 0.943845 0.284147 0.011377 0.007010 +10 0.802071 0.275554 0.010210 0.003844 +9 0.705805 0.284034 0.009043 0.024423 +9 0.172695 0.279398 0.012835 0.027815 +10 0.646295 0.265604 0.010793 0.006558 +9 0.112748 0.266395 0.012544 0.032112 +10 0.479142 0.189620 0.007876 0.007010 +7 0.717182 0.168815 0.012544 0.016508 +7 0.422258 0.168589 0.013127 0.016508 +9 0.317824 0.168137 0.009627 0.030981 +6 0.698366 0.168815 0.005834 0.029625 +10 0.636085 0.157508 0.008460 0.005654 +9 0.744020 0.167458 0.011377 0.028268 +10 0.323075 0.156829 0.009043 0.006558 +9 0.253063 0.163275 0.016044 0.033469 +10 0.927800 0.075645 0.010793 0.005654 +10 0.146295 0.064564 0.019545 0.004749 +6 0.620333 0.063433 0.005543 0.030077 +9 0.182468 0.051221 0.005543 0.030077 +9 0.391774 0.054726 0.009335 0.035730 +10 0.951721 0.043080 0.013711 0.006106 +9 0.457555 0.054726 0.010210 0.043419 +9 0.206972 0.046359 0.007876 0.039801 +9 0.161756 0.046359 0.011960 0.040253 +10 0.338827 0.033808 0.009627 0.007010 +12 0.359539 0.958729 0.010793 0.008367 +13 0.323512 0.954998 0.011085 0.007689 +13 0.305863 0.951719 0.010793 0.007463 +18 0.310239 0.928991 0.015461 0.009046 +12 0.384918 0.951153 0.011377 0.008141 +13 0.233518 0.947987 0.010793 0.008141 +13 0.289090 0.944143 0.010502 0.007237 +13 0.251604 0.944030 0.011377 0.007915 +13 0.271149 0.940977 0.010793 0.008141 +12 0.410589 0.940751 0.010793 0.008141 +13 0.190782 0.937133 0.010502 0.007689 +12 0.435385 0.933967 0.011377 0.007689 +13 0.209014 0.933514 0.012544 0.008141 +12 0.461056 0.930801 0.011377 0.005880 +13 0.148629 0.930348 0.010793 0.006332 +12 0.647170 0.928087 0.006709 0.004975 +12 0.484393 0.927521 0.011960 0.007915 +13 0.164965 0.927069 0.010793 0.008367 +12 0.664673 0.923903 0.006709 0.005201 +17 0.608372 0.924921 0.011960 0.007237 +17 0.539090 0.924808 0.012252 0.007463 +13 0.111873 0.923338 0.009627 0.006784 +12 0.696179 0.921076 0.011377 0.006784 +13 0.129667 0.920285 0.010210 0.007915 +12 0.435968 0.830280 0.011960 0.008367 +12 0.248687 0.830167 0.010793 0.008141 +12 0.403296 0.827227 0.010793 0.007237 +12 0.217765 0.826436 0.010793 0.006558 +12 0.373104 0.823948 0.010502 0.007463 +13 0.934510 0.823835 0.011377 0.007689 +12 0.187719 0.823383 0.011377 0.008141 +13 0.964557 0.820782 0.009627 0.007010 +11 0.298571 0.820104 0.010210 0.006558 +11 0.112602 0.819765 0.010502 0.006784 +12 0.343349 0.817164 0.010502 0.007463 +12 0.153734 0.816712 0.011669 0.007915 +13 0.844516 0.810267 0.011085 0.007689 +12 0.547258 0.806875 0.011085 0.006784 +13 0.866832 0.806875 0.011377 0.007237 +12 0.512544 0.802465 0.010502 0.007463 +13 0.887398 0.801221 0.009918 0.006784 +13 0.911173 0.799751 0.010793 0.007915 +13 0.736289 0.799638 0.010502 0.007689 +12 0.481768 0.799751 0.009627 0.008367 +13 0.757585 0.796246 0.010502 0.007689 +13 0.790403 0.795681 0.010793 0.007463 +13 0.814469 0.792175 0.010502 0.007237 +13 0.690636 0.786635 0.009627 0.008367 +12 0.638127 0.783017 0.009627 0.007915 +12 0.713827 0.782678 0.010502 0.008141 +18 0.607789 0.779285 0.009627 0.007237 +18 0.576867 0.775893 0.010793 0.007689 +11 0.945012 0.725237 0.010793 0.003166 +12 0.958431 0.699457 0.010793 0.006784 +12 0.898629 0.705111 0.010210 0.005880 +12 0.929405 0.702623 0.010502 0.007237 +12 0.454930 0.703076 0.010793 0.008141 +12 0.871208 0.702510 0.011377 0.007463 +12 0.278442 0.696517 0.007293 0.004975 +11 0.194720 0.696178 0.010210 0.007915 +11 0.153734 0.696291 0.011085 0.008141 +12 0.675321 0.696065 0.011669 0.008141 +12 0.483810 0.696065 0.009627 0.008141 +11 0.113477 0.695952 0.010502 0.007915 +12 0.810823 0.695839 0.011377 0.008141 +12 0.388273 0.692447 0.006418 0.005427 +12 0.287777 0.692447 0.007293 0.005880 +12 0.768232 0.692560 0.010210 0.006558 +11 0.246062 0.692673 0.011377 0.007237 +12 0.396879 0.689507 0.006126 0.004975 +12 0.841161 0.689394 0.011377 0.007463 +11 0.305572 0.689507 0.011377 0.007689 +12 0.740519 0.689394 0.011960 0.007915 +12 0.617999 0.689394 0.010793 0.007915 +11 0.351663 0.689394 0.011377 0.007915 +12 0.568991 0.686341 0.010793 0.007237 +12 0.426634 0.685663 0.010793 0.006332 +12 0.703034 0.685436 0.010502 0.006784 +12 0.646295 0.681705 0.009043 0.007010 +12 0.540986 0.681931 0.009627 0.007463 +12 0.511669 0.678200 0.011669 0.007689 +11 0.815490 0.614541 0.010210 0.007010 +11 0.187427 0.614089 0.010793 0.007463 +12 0.159131 0.614089 0.010210 0.007463 +11 0.228851 0.613976 0.011960 0.007689 +13 0.136669 0.610470 0.010793 0.007915 +13 0.113040 0.607757 0.010210 0.006558 +12 0.126021 0.587969 0.012252 0.004523 +11 0.865665 0.604478 0.011377 0.007689 +11 0.280484 0.604025 0.012544 0.008141 +12 0.913798 0.601085 0.010793 0.006784 +12 0.325992 0.600859 0.011377 0.006784 +12 0.941511 0.597580 0.011377 0.007463 +12 0.355747 0.597467 0.011377 0.007689 +14 0.675467 0.594980 0.010210 0.006784 +12 0.966015 0.594754 0.009043 0.007237 +12 0.384772 0.594414 0.010502 0.007463 +14 0.648775 0.591588 0.010502 0.007689 +17 0.557905 0.591474 0.011960 0.007463 +17 0.764148 0.591361 0.012544 0.007689 +14 0.693553 0.591474 0.011377 0.007915 +14 0.615082 0.591248 0.011960 0.007915 +11 0.466744 0.591135 0.011085 0.007689 +11 0.505688 0.591022 0.011377 0.007915 +11 0.430134 0.590909 0.010793 0.008141 +13 0.730893 0.588195 0.009627 0.006332 +14 0.631564 0.588082 0.010502 0.007010 +13 0.709452 0.584464 0.010502 0.007915 +12 0.630980 0.509837 0.010502 0.007010 +11 0.390461 0.509385 0.011377 0.006558 +12 0.720828 0.509272 0.010502 0.006784 +12 0.660735 0.509385 0.010502 0.007463 +12 0.752480 0.500905 0.008460 0.004975 +12 0.750729 0.486205 0.010793 0.008141 +12 0.961348 0.499548 0.010793 0.007689 +11 0.447637 0.499435 0.011377 0.007915 +13 0.937135 0.495703 0.011377 0.006332 +12 0.498833 0.496156 0.011085 0.007237 +12 0.840869 0.495477 0.011377 0.006332 +11 0.870770 0.495138 0.010502 0.006106 +12 0.528734 0.492877 0.012544 0.007463 +13 0.912048 0.492650 0.011377 0.007915 +13 0.816949 0.492650 0.011377 0.007915 +12 0.559072 0.489937 0.010210 0.007010 +13 0.792445 0.489145 0.010210 0.005880 +14 0.234539 0.489371 0.009918 0.006332 +12 0.691803 0.486092 0.011960 0.007010 +12 0.602246 0.486205 0.011377 0.007237 +17 0.333576 0.486545 0.011960 0.007915 +17 0.112602 0.486318 0.011669 0.007463 +14 0.252480 0.486092 0.010793 0.007463 +14 0.169049 0.486092 0.010793 0.007463 +14 0.206680 0.486092 0.012544 0.007915 +14 0.188156 0.482474 0.009918 0.006558 +13 0.294778 0.482135 0.011377 0.006332 +13 0.271441 0.479195 0.010793 0.008141 +12 0.545945 0.410448 0.010793 0.007237 +11 0.627042 0.409995 0.010793 0.007237 +12 0.491394 0.403550 0.010793 0.006558 +11 0.678676 0.400045 0.010793 0.007689 +12 0.727830 0.397105 0.011085 0.006784 +12 0.461785 0.397105 0.011085 0.006784 +12 0.512690 0.396766 0.011377 0.006558 +12 0.272316 0.396540 0.010210 0.006558 +12 0.749708 0.393826 0.011669 0.007915 +12 0.440636 0.393713 0.010793 0.008141 +12 0.773629 0.390547 0.009918 0.006784 +12 0.923279 0.387494 0.011669 0.007463 +12 0.899650 0.387381 0.011085 0.007237 +12 0.966307 0.387381 0.010793 0.007689 +12 0.946033 0.387268 0.011669 0.007463 +12 0.877625 0.387268 0.010793 0.007463 +12 0.418757 0.387494 0.011377 0.007915 +12 0.831972 0.387042 0.010502 0.007463 +12 0.808781 0.387042 0.011960 0.007463 +12 0.853705 0.387042 0.010793 0.007915 +12 0.173862 0.383311 0.009918 0.007237 +12 0.397900 0.380597 0.009918 0.007689 +12 0.204492 0.380258 0.010502 0.007915 +12 0.223600 0.376413 0.010793 0.006558 +12 0.368436 0.372682 0.009335 0.007689 +12 0.327305 0.372456 0.009918 0.007689 +12 0.295216 0.372569 0.009335 0.007915 +12 0.252188 0.372343 0.010210 0.007915 +12 0.346704 0.368611 0.010210 0.007689 +12 0.112456 0.365445 0.009627 0.007237 +12 0.133460 0.362506 0.010793 0.007689 +12 0.154317 0.359114 0.010502 0.007689 +12 0.354580 0.312076 0.010210 0.007689 +12 0.403588 0.307892 0.010210 0.007915 +12 0.434072 0.305857 0.010502 0.006558 +12 0.473162 0.305292 0.010502 0.008141 +12 0.325554 0.304839 0.011085 0.007237 +12 0.501313 0.301560 0.010210 0.007915 +12 0.534277 0.297942 0.010793 0.007010 +12 0.564177 0.294663 0.011085 0.007689 +12 0.295362 0.294211 0.011377 0.007689 +12 0.594516 0.291158 0.011085 0.007010 +12 0.624708 0.287766 0.011960 0.007915 +12 0.264877 0.287766 0.011085 0.007915 +12 0.662194 0.284261 0.011085 0.005880 +12 0.742270 0.281321 0.010210 0.007689 +12 0.234685 0.281208 0.012544 0.007915 +12 0.801779 0.277929 0.010210 0.006332 +12 0.771733 0.277702 0.009627 0.006332 +12 0.705222 0.277476 0.009627 0.005880 +12 0.204638 0.277250 0.011960 0.006332 +12 0.832410 0.274649 0.010793 0.007915 +12 0.174300 0.271370 0.009627 0.004975 +12 0.863623 0.271483 0.010210 0.007010 +12 0.892795 0.268431 0.011960 0.007237 +12 0.924883 0.265491 0.010793 0.006784 +13 0.143232 0.264021 0.010502 0.007010 +12 0.962806 0.261081 0.010793 0.007463 +12 0.113331 0.255993 0.010793 0.007237 +12 0.142940 0.199796 0.009918 0.007010 +12 0.150379 0.157395 0.007293 0.007237 +12 0.450263 0.196291 0.010210 0.007689 +12 0.184072 0.192447 0.010502 0.007237 +12 0.480747 0.188716 0.010502 0.008367 +12 0.213827 0.185097 0.011085 0.007463 +12 0.510939 0.178200 0.011377 0.006332 +12 0.241978 0.174582 0.010210 0.006784 +12 0.112165 0.174469 0.010793 0.007915 +12 0.547404 0.171868 0.010793 0.006784 +12 0.674592 0.168815 0.010793 0.007463 +12 0.378501 0.168589 0.010210 0.007463 +12 0.279755 0.168250 0.011085 0.007689 +12 0.806155 0.165423 0.010210 0.006558 +12 0.578180 0.165084 0.010502 0.006332 +12 0.777130 0.162483 0.011669 0.007463 +12 0.835035 0.162370 0.010793 0.007689 +12 0.350350 0.161805 0.011085 0.007463 +12 0.745770 0.158865 0.010210 0.007010 +12 0.635793 0.158865 0.009627 0.007010 +12 0.861289 0.158752 0.010210 0.007237 +12 0.320158 0.158299 0.010793 0.007237 +12 0.895274 0.155473 0.011085 0.007463 +12 0.606622 0.155360 0.010793 0.007689 +12 0.925467 0.152420 0.009043 0.006784 +12 0.961639 0.148462 0.010210 0.007463 +12 0.850496 0.084125 0.010793 0.007237 +12 0.876313 0.080620 0.011085 0.007463 +12 0.901254 0.077454 0.010793 0.007010 +12 0.928676 0.073496 0.010793 0.006332 +12 0.963098 0.073270 0.010793 0.006332 +18 0.298279 0.068973 0.011377 0.003166 +12 0.752042 0.063659 0.011085 0.007915 +12 0.779609 0.060267 0.010210 0.006558 +12 0.719807 0.060380 0.010210 0.007237 +12 0.695303 0.057101 0.009627 0.008367 +12 0.825700 0.053709 0.010793 0.005654 +12 0.669487 0.053143 0.010502 0.005880 +12 0.598600 0.053822 0.010502 0.007237 +12 0.566949 0.053370 0.010210 0.007237 +12 0.420508 0.050543 0.011377 0.007915 +12 0.636377 0.050317 0.011377 0.007915 +12 0.517503 0.046924 0.009918 0.007010 +12 0.313011 0.046924 0.010502 0.007010 +12 0.394545 0.042628 0.010793 0.007463 +12 0.490519 0.042289 0.010210 0.007689 +12 0.138127 0.042062 0.009043 0.007237 +12 0.188011 0.042175 0.010793 0.007915 +12 0.541424 0.039009 0.010502 0.007010 +12 0.368728 0.039575 0.009918 0.008141 +12 0.458868 0.039123 0.009918 0.008141 +12 0.287777 0.038444 0.009627 0.007689 +12 0.337952 0.035391 0.009627 0.007915 +12 0.113331 0.034939 0.010793 0.007463 +12 0.244166 0.034939 0.009918 0.007915 +12 0.162631 0.032451 0.010210 0.007463 +12 0.212806 0.032112 0.010210 0.007237 +1 0.035443 0.063207 0.024796 0.051334 +5 0.356622 0.035391 0.009627 0.017865 +5 0.477392 0.039236 0.009627 0.017413 +3 0.275525 0.040140 0.007293 0.021031 +5 0.533839 0.169041 0.009918 0.017413 +3 0.728267 0.281660 0.007876 0.021031 +5 0.305863 0.154342 0.009043 0.017413 +3 0.738769 0.064111 0.007876 0.021936 +4 0.384627 0.380597 0.010793 0.022162 +5 0.437719 0.192786 0.009627 0.017865 +5 0.947345 0.145296 0.009627 0.017413 +3 0.231476 0.036070 0.007876 0.021483 +4 0.098746 0.036070 0.011960 0.021936 +5 0.947929 0.257463 0.009043 0.017413 +5 0.658256 0.049412 0.009627 0.016961 +3 0.265169 0.168589 0.008168 0.021031 +4 0.948804 0.074062 0.011377 0.021483 +1 0.035735 0.168137 0.024796 0.051334 +3 0.458722 0.304726 0.007876 0.021936 +1 0.036610 0.277137 0.024796 0.045002 +1 0.036610 0.488354 0.024796 0.044098 +4 0.663215 0.595206 0.011377 0.021710 +3 0.170945 0.192560 0.008168 0.022840 +4 0.178384 0.937472 0.010793 0.021936 +3 0.726809 0.689394 0.007876 0.021483 +4 0.775817 0.795681 0.010793 0.021936 +3 0.638127 0.927748 0.006126 0.013342 +3 0.952013 0.820556 0.007876 0.021936 +4 0.477684 0.403890 0.011377 0.021710 +4 0.524650 0.924242 0.011377 0.020805 +5 0.648337 0.280529 0.009043 0.017865 +3 0.586931 0.053709 0.008168 0.020579 +5 0.389440 0.305292 0.009335 0.018091 +4 0.603413 0.689394 0.010793 0.021936 +4 0.830951 0.810380 0.010793 0.021031 +4 0.098454 0.607531 0.011377 0.021483 +1 0.036610 0.823270 0.025379 0.050882 +1 0.037194 0.926391 0.024796 0.050882 +4 0.190053 0.380258 0.011377 0.021936 +3 0.379959 0.692334 0.006126 0.014699 +4 0.335327 0.689620 0.011377 0.021483 +4 0.281943 0.820330 0.011960 0.021031 +4 0.220245 0.947874 0.011669 0.022388 +1 0.035443 0.702284 0.024796 0.051334 +5 0.659860 0.165423 0.009918 0.017413 +4 0.221266 0.489711 0.011377 0.020579 +1 0.036027 0.392469 0.025379 0.051334 +3 0.238915 0.373247 0.008168 0.021031 +1 0.036610 0.592831 0.024212 0.043193 +4 0.674592 0.786635 0.011377 0.022840 +4 0.097870 0.819878 0.011377 0.021031 +4 0.095828 0.923677 0.011377 0.020579 +5 0.061989 0.698779 0.009043 0.017639 +5 0.072929 0.688376 0.008751 0.017187 +5 0.062865 0.489371 0.009627 0.017639 +5 0.072345 0.478743 0.008751 0.016735 +5 0.063594 0.819765 0.008751 0.017187 +5 0.072783 0.809362 0.009043 0.016735 +5 0.063740 0.277702 0.009043 0.016735 +5 0.072491 0.266848 0.009043 0.017187 +5 0.062573 0.059928 0.009043 0.017187 +5 0.071470 0.049525 0.008168 0.016735 +5 0.063448 0.593849 0.009043 0.017639 +5 0.072054 0.583220 0.008751 0.016735 +5 0.063011 0.164631 0.008751 0.016735 +5 0.072345 0.154229 0.008168 0.017187 +5 0.063594 0.390095 0.008751 0.017187 +5 0.071908 0.379919 0.009627 0.017187 +5 0.064469 0.923338 0.008751 0.017187 +5 0.073658 0.913161 0.009043 0.017187 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_17.jpg b/data_dataset/tch/debug/debug_17.jpg new file mode 100644 index 0000000..99e7b13 Binary files /dev/null and b/data_dataset/tch/debug/debug_17.jpg differ diff --git a/data_dataset/tch/debug/debug_17.txt b/data_dataset/tch/debug/debug_17.txt new file mode 100644 index 0000000..f868152 --- /dev/null +++ b/data_dataset/tch/debug/debug_17.txt @@ -0,0 +1,541 @@ +8 0.902053 0.940676 0.009971 0.023367 +10 0.692962 0.924115 0.009384 0.003403 +10 0.212170 0.924569 0.010850 0.005218 +6 0.861290 0.930467 0.005865 0.029265 +10 0.583138 0.918897 0.009091 0.006125 +9 0.335337 0.924002 0.012023 0.026316 +8 0.243255 0.926384 0.008504 0.023367 +9 0.605718 0.908689 0.009677 0.026543 +10 0.620235 0.836547 0.009384 0.004764 +10 0.832698 0.826565 0.009091 0.004764 +10 0.470235 0.822482 0.007918 0.003403 +10 0.446188 0.817037 0.009091 0.003403 +9 0.913930 0.833371 0.010850 0.025635 +7 0.709238 0.820894 0.016716 0.042877 +10 0.267889 0.743988 0.007918 0.004310 +10 0.428299 0.734233 0.007918 0.006125 +9 0.669355 0.735821 0.009091 0.023820 +10 0.163490 0.725613 0.009677 0.003403 +10 0.560850 0.725499 0.009091 0.004991 +10 0.282845 0.719487 0.013783 0.005218 +10 0.755572 0.667763 0.007918 0.004310 +10 0.174927 0.664814 0.009091 0.005218 +9 0.910117 0.646211 0.007331 0.019737 +9 0.352053 0.649728 0.011437 0.023140 +8 0.361730 0.649728 0.006745 0.023140 +9 0.384311 0.643603 0.016129 0.034483 +10 0.800147 0.569986 0.008504 0.003857 +10 0.483431 0.561593 0.008504 0.005218 +10 0.206598 0.559324 0.007331 0.005218 +10 0.879619 0.554787 0.009091 0.005672 +10 0.608211 0.549342 0.011144 0.002949 +9 0.744721 0.563181 0.009091 0.028358 +9 0.169795 0.537886 0.009384 0.027223 +9 0.120821 0.542763 0.010557 0.032441 +9 0.147361 0.538566 0.011437 0.024955 +9 0.593402 0.471756 0.010850 0.033802 +10 0.644428 0.461547 0.010850 0.006125 +8 0.900440 0.467219 0.005572 0.022913 +9 0.939150 0.456329 0.009091 0.031534 +9 0.169355 0.402564 0.007918 0.012477 +10 0.891349 0.373525 0.007918 0.003403 +7 0.645015 0.284369 0.012023 0.016561 +6 0.493988 0.284142 0.011437 0.024728 +6 0.849707 0.283689 0.012023 0.025181 +10 0.218035 0.190676 0.009091 0.004764 +9 0.713636 0.188181 0.010264 0.038793 +6 0.758504 0.183643 0.012023 0.024274 +10 0.534751 0.121711 0.013196 0.006579 +10 0.281085 0.100613 0.011437 0.006125 +10 0.400147 0.100159 0.013783 0.006579 +10 0.805425 0.099705 0.014956 0.006125 +10 0.674633 0.099478 0.013783 0.006125 +9 0.934751 0.093353 0.012023 0.021552 +10 0.757331 0.099478 0.012610 0.006579 +10 0.862610 0.099251 0.014370 0.006579 +10 0.191935 0.086093 0.023167 0.005672 +9 0.674047 0.083825 0.013783 0.024728 +7 0.581378 0.084732 0.009091 0.012024 +10 0.967302 0.082691 0.009091 0.005672 +10 0.455572 0.063407 0.009091 0.006125 +12 0.492522 0.956329 0.010850 0.007486 +12 0.619501 0.949183 0.011437 0.007260 +12 0.373607 0.946348 0.011730 0.007033 +12 0.731378 0.946121 0.009971 0.007033 +13 0.120235 0.938861 0.011144 0.006579 +12 0.845308 0.936933 0.011437 0.007260 +13 0.555425 0.935799 0.007038 0.006352 +12 0.555865 0.916969 0.010264 0.008167 +13 0.455279 0.936479 0.011437 0.007713 +13 0.147801 0.935799 0.011730 0.007713 +12 0.900733 0.934324 0.009677 0.006125 +12 0.471261 0.933530 0.011144 0.006352 +13 0.428592 0.933530 0.010850 0.006806 +12 0.406745 0.933417 0.011730 0.006579 +13 0.174340 0.932396 0.011437 0.006352 +12 0.957625 0.931261 0.011437 0.007260 +13 0.189883 0.929446 0.011437 0.008167 +13 0.692229 0.927064 0.009677 0.007033 +13 0.210704 0.926497 0.010850 0.006806 +13 0.676100 0.923548 0.011437 0.007713 +12 0.708504 0.923321 0.010557 0.007713 +12 0.655572 0.923321 0.011437 0.008167 +12 0.226246 0.923094 0.010264 0.008167 +13 0.335630 0.921279 0.009677 0.005898 +13 0.582111 0.920599 0.008798 0.007713 +13 0.242375 0.920145 0.010850 0.006806 +13 0.807771 0.917196 0.010850 0.007713 +12 0.352933 0.917196 0.011437 0.007713 +12 0.300147 0.917083 0.011437 0.007940 +12 0.597801 0.916856 0.012023 0.007940 +12 0.536510 0.916856 0.011437 0.008394 +13 0.319941 0.916629 0.010557 0.008394 +12 0.823021 0.913907 0.010850 0.007486 +13 0.790909 0.913793 0.011144 0.007713 +12 0.767889 0.913793 0.010850 0.007713 +12 0.879032 0.910957 0.011437 0.007033 +13 0.267889 0.908462 0.011437 0.007940 +12 0.928886 0.907554 0.010264 0.007940 +13 0.307918 0.855150 0.011730 0.007486 +13 0.337537 0.850839 0.011144 0.008394 +12 0.755572 0.849478 0.010850 0.007033 +13 0.365543 0.848684 0.011437 0.007713 +13 0.834751 0.845962 0.009677 0.007713 +13 0.806305 0.844941 0.011437 0.008394 +13 0.412903 0.844714 0.010557 0.007940 +13 0.384311 0.844714 0.010850 0.007940 +13 0.148827 0.844487 0.011437 0.008394 +13 0.121848 0.843240 0.010264 0.008621 +13 0.887830 0.842219 0.011437 0.007486 +13 0.853666 0.842219 0.011730 0.007486 +13 0.431672 0.842105 0.011144 0.007713 +13 0.167009 0.841311 0.011437 0.007486 +13 0.203666 0.840744 0.012023 0.007713 +13 0.905718 0.839383 0.010850 0.007260 +13 0.870968 0.838929 0.010557 0.006806 +13 0.458798 0.838589 0.010850 0.007033 +12 0.619501 0.838475 0.009677 0.007260 +13 0.186070 0.837681 0.010850 0.007486 +13 0.221701 0.837455 0.010557 0.007486 +13 0.923607 0.836320 0.011437 0.007486 +13 0.478592 0.835186 0.010557 0.007486 +13 0.239443 0.834392 0.011437 0.007713 +13 0.954106 0.832804 0.010850 0.006352 +13 0.267009 0.831216 0.011437 0.006806 +13 0.710704 0.828834 0.010850 0.007486 +12 0.659238 0.825544 0.011144 0.006806 +12 0.731232 0.825431 0.010850 0.007033 +13 0.685337 0.825544 0.011144 0.007260 +13 0.567302 0.812954 0.010264 0.007033 +12 0.584604 0.809437 0.010850 0.007260 +13 0.548240 0.809437 0.010850 0.007713 +12 0.521114 0.808190 0.011144 0.007940 +12 0.950440 0.767355 0.010557 0.007033 +12 0.332698 0.765086 0.011437 0.007486 +13 0.400733 0.761456 0.010264 0.008394 +13 0.375660 0.761230 0.009971 0.007940 +13 0.447654 0.758507 0.011437 0.007486 +13 0.416276 0.758280 0.010850 0.007486 +12 0.815396 0.755331 0.011437 0.007033 +13 0.432405 0.755104 0.010264 0.007486 +13 0.464076 0.754764 0.010264 0.007260 +12 0.203666 0.754651 0.011437 0.007033 +13 0.481085 0.751701 0.011437 0.007486 +13 0.546334 0.748185 0.010557 0.005898 +13 0.507478 0.748185 0.011437 0.006806 +13 0.910704 0.746484 0.010850 0.007486 +13 0.573460 0.745349 0.012023 0.007940 +13 0.292522 0.745009 0.012023 0.007713 +12 0.926393 0.743308 0.010557 0.006579 +13 0.883724 0.742854 0.011437 0.006579 +12 0.857478 0.742287 0.011144 0.006352 +13 0.601173 0.742060 0.011144 0.006806 +12 0.309238 0.741833 0.011437 0.006806 +13 0.266129 0.741720 0.010850 0.006579 +12 0.241935 0.741606 0.011730 0.006352 +13 0.615103 0.738770 0.011437 0.007486 +13 0.635630 0.736048 0.010264 0.007486 +13 0.652053 0.732645 0.010264 0.007940 +13 0.769941 0.729583 0.010264 0.006806 +13 0.668915 0.729129 0.009971 0.006352 +13 0.162317 0.728448 0.010264 0.006806 +12 0.788710 0.725953 0.011437 0.007713 +13 0.752346 0.726066 0.011437 0.007940 +12 0.729179 0.725953 0.012023 0.007713 +12 0.180499 0.725159 0.011437 0.007486 +13 0.145894 0.724932 0.012610 0.007940 +12 0.122434 0.724705 0.011437 0.007486 +13 0.693109 0.718580 0.010264 0.007486 +12 0.585777 0.680240 0.011437 0.007486 +12 0.676393 0.674115 0.011437 0.007940 +13 0.608358 0.673548 0.012023 0.007713 +13 0.139150 0.672868 0.010850 0.007260 +12 0.538710 0.672981 0.011730 0.007940 +13 0.752053 0.670485 0.010850 0.007486 +12 0.506158 0.669691 0.010557 0.006806 +13 0.625513 0.669918 0.011144 0.007713 +13 0.703226 0.669691 0.010557 0.007713 +13 0.930792 0.666856 0.006452 0.004764 +13 0.932405 0.648367 0.011437 0.007713 +13 0.719501 0.666969 0.010264 0.007713 +13 0.659824 0.666402 0.011144 0.007940 +12 0.562903 0.666402 0.012610 0.007940 +13 0.157771 0.665948 0.011730 0.007033 +13 0.121554 0.665948 0.010850 0.007033 +13 0.207771 0.665948 0.010850 0.007486 +13 0.737390 0.663339 0.010850 0.006806 +13 0.174340 0.663113 0.010850 0.006806 +13 0.780792 0.660730 0.010850 0.007033 +13 0.855865 0.660730 0.010850 0.007486 +13 0.191349 0.659596 0.012023 0.007486 +13 0.872581 0.657214 0.011437 0.005898 +13 0.797947 0.657328 0.011144 0.006579 +13 0.293402 0.656874 0.010850 0.006579 +13 0.225660 0.656874 0.011437 0.006579 +13 0.890616 0.654605 0.011730 0.007940 +13 0.829179 0.654265 0.011437 0.007260 +13 0.243842 0.653244 0.011437 0.007486 +13 0.310264 0.653358 0.011730 0.008167 +13 0.908651 0.651429 0.010850 0.006125 +13 0.327419 0.650181 0.009677 0.006352 +13 0.276393 0.650295 0.010850 0.007033 +13 0.345601 0.647005 0.012023 0.008167 +13 0.948240 0.645304 0.010264 0.007033 +13 0.360117 0.643943 0.009971 0.006579 +13 0.378299 0.640540 0.009971 0.007940 +13 0.963490 0.634415 0.009677 0.007033 +13 0.465543 0.632940 0.010850 0.007713 +13 0.395161 0.632373 0.009677 0.007940 +17 0.483724 0.629877 0.009677 0.007940 +13 0.447214 0.629537 0.009971 0.007260 +12 0.425953 0.629764 0.010264 0.008167 +12 0.918035 0.584279 0.011437 0.007033 +13 0.655279 0.583144 0.010264 0.007486 +12 0.821994 0.579968 0.011730 0.008394 +13 0.674487 0.579288 0.012317 0.007940 +13 0.778152 0.577473 0.012023 0.007486 +12 0.865543 0.576679 0.010850 0.007260 +13 0.942375 0.576679 0.010850 0.007713 +13 0.693402 0.576112 0.011437 0.007486 +13 0.961437 0.573276 0.011437 0.007260 +13 0.757331 0.572822 0.011437 0.007260 +12 0.574633 0.572482 0.010850 0.007033 +12 0.796481 0.572368 0.010557 0.007260 +12 0.736950 0.572368 0.011730 0.007260 +12 0.892082 0.569760 0.011730 0.007033 +13 0.592522 0.569419 0.011437 0.007260 +13 0.611584 0.565789 0.010850 0.006352 +13 0.461144 0.562954 0.010264 0.007486 +13 0.630059 0.562954 0.011437 0.007940 +13 0.510997 0.560005 0.011437 0.007033 +13 0.481672 0.559664 0.011437 0.006352 +13 0.547067 0.556715 0.012023 0.007713 +12 0.410850 0.556375 0.011730 0.007486 +13 0.434751 0.552972 0.011437 0.007486 +12 0.350587 0.549456 0.012610 0.008167 +12 0.385484 0.546620 0.010850 0.007033 +13 0.300147 0.542877 0.011437 0.007260 +12 0.220968 0.542990 0.011437 0.007486 +12 0.318035 0.539814 0.012023 0.007033 +13 0.283578 0.539701 0.011144 0.007260 +12 0.258504 0.539587 0.011437 0.007033 +13 0.176979 0.535957 0.010264 0.007486 +12 0.195161 0.533122 0.010264 0.007713 +13 0.148534 0.532101 0.010850 0.007033 +12 0.122434 0.531987 0.010264 0.006806 +12 0.624780 0.490245 0.010850 0.007713 +12 0.552493 0.487069 0.011144 0.008167 +11 0.313930 0.486956 0.010850 0.008394 +13 0.172287 0.486615 0.010264 0.007713 +11 0.398387 0.486388 0.010850 0.008167 +11 0.351760 0.486388 0.010264 0.008167 +11 0.270088 0.486048 0.011144 0.007940 +13 0.648240 0.484120 0.012023 0.008167 +13 0.143548 0.483779 0.011437 0.007486 +12 0.123021 0.483666 0.011437 0.007260 +13 0.713930 0.483666 0.012023 0.007713 +13 0.513050 0.483779 0.012610 0.007940 +12 0.584311 0.483439 0.010850 0.007713 +11 0.232991 0.483099 0.012023 0.007486 +11 0.189589 0.483099 0.010850 0.007486 +11 0.428446 0.482985 0.010557 0.007713 +12 0.530938 0.480150 0.010850 0.007033 +13 0.496628 0.480150 0.011437 0.007033 +12 0.475806 0.480150 0.010850 0.007033 +13 0.666569 0.480036 0.011144 0.007260 +13 0.781085 0.477087 0.011437 0.007260 +13 0.697214 0.476520 0.011437 0.007033 +12 0.604692 0.476633 0.011730 0.007713 +13 0.730645 0.476520 0.011437 0.007940 +13 0.748240 0.473344 0.011437 0.006125 +13 0.766129 0.470281 0.012023 0.007260 +13 0.865249 0.467446 0.010850 0.006579 +13 0.797507 0.467332 0.010264 0.006806 +13 0.880792 0.464043 0.010264 0.007940 +13 0.815396 0.463816 0.010850 0.007486 +13 0.898387 0.461207 0.010264 0.006806 +13 0.847947 0.460753 0.009091 0.006806 +13 0.913343 0.457350 0.010850 0.008167 +13 0.930352 0.454401 0.009677 0.007713 +13 0.946188 0.450885 0.010264 0.007486 +13 0.963196 0.443058 0.010264 0.007260 +13 0.168182 0.403244 0.010850 0.007940 +13 0.457038 0.403131 0.010264 0.008167 +11 0.183724 0.400749 0.010264 0.006579 +13 0.307478 0.400408 0.010264 0.007260 +17 0.220381 0.400522 0.012023 0.007486 +13 0.429179 0.400181 0.010850 0.007260 +13 0.142669 0.400181 0.010264 0.007260 +17 0.515103 0.400181 0.011437 0.007713 +11 0.474047 0.399841 0.011437 0.007033 +12 0.409238 0.399614 0.010850 0.007033 +12 0.123314 0.399614 0.011437 0.007033 +13 0.753226 0.399501 0.011437 0.007260 +13 0.601026 0.399387 0.010850 0.007486 +17 0.658358 0.396438 0.011730 0.007940 +17 0.363196 0.396438 0.011437 0.007940 +11 0.323754 0.396438 0.011144 0.007940 +13 0.293988 0.396325 0.010264 0.008167 +13 0.894868 0.395985 0.009677 0.007940 +17 0.813490 0.395985 0.011730 0.007940 +12 0.274780 0.395758 0.010557 0.007940 +13 0.585777 0.395758 0.010850 0.008394 +13 0.728299 0.395304 0.009677 0.008394 +11 0.617742 0.395417 0.010264 0.008621 +12 0.567302 0.395417 0.010264 0.008621 +11 0.770528 0.395077 0.009677 0.008394 +12 0.710704 0.394850 0.010850 0.007940 +11 0.910117 0.392809 0.010850 0.007033 +17 0.949707 0.393035 0.011437 0.007940 +13 0.879032 0.392582 0.010850 0.007486 +12 0.861730 0.392468 0.011437 0.007260 +12 0.395455 0.311706 0.011437 0.007260 +12 0.395748 0.297868 0.011437 0.006806 +12 0.395455 0.287999 0.010850 0.007033 +12 0.395601 0.274614 0.009971 0.006579 +12 0.459091 0.311593 0.011437 0.007486 +12 0.437683 0.311706 0.012023 0.007713 +12 0.437683 0.297527 0.010850 0.007486 +12 0.437243 0.281080 0.009971 0.006352 +12 0.438270 0.264632 0.010850 0.007033 +17 0.571848 0.311252 0.011730 0.007260 +11 0.572141 0.297868 0.011144 0.006806 +11 0.571408 0.287545 0.010850 0.006125 +11 0.571408 0.274501 0.009677 0.006352 +12 0.415249 0.311366 0.011144 0.007486 +12 0.359971 0.311479 0.011437 0.007713 +12 0.338856 0.311366 0.011437 0.007486 +12 0.339003 0.297187 0.011144 0.007260 +12 0.338710 0.280626 0.009971 0.005898 +12 0.318035 0.311366 0.012023 0.007486 +12 0.789003 0.311139 0.010850 0.007486 +12 0.788856 0.297187 0.010557 0.006806 +12 0.789296 0.280966 0.010264 0.006125 +12 0.790176 0.263385 0.012023 0.007260 +12 0.767302 0.311025 0.010850 0.007260 +12 0.746481 0.310912 0.010264 0.007033 +12 0.747361 0.297641 0.010850 0.006806 +12 0.747361 0.287545 0.010850 0.006579 +12 0.748240 0.273707 0.011437 0.005218 +12 0.707038 0.311139 0.011144 0.007486 +12 0.687683 0.311025 0.011730 0.007260 +12 0.687830 0.297300 0.011437 0.007033 +12 0.687243 0.280626 0.011437 0.006352 +17 0.525660 0.311252 0.012023 0.007713 +11 0.525220 0.297868 0.012317 0.007260 +11 0.525073 0.281193 0.012023 0.006579 +12 0.297507 0.311139 0.012023 0.007486 +11 0.923607 0.310799 0.011437 0.007260 +11 0.923021 0.297981 0.011437 0.007033 +11 0.923021 0.287772 0.011437 0.006579 +11 0.922727 0.274728 0.010850 0.006806 +17 0.879326 0.310912 0.010850 0.007486 +11 0.879326 0.297641 0.010850 0.007260 +11 0.878739 0.280966 0.010850 0.006579 +12 0.810117 0.310912 0.012023 0.007486 +12 0.665249 0.311025 0.012023 0.007713 +17 0.598680 0.310912 0.011437 0.007486 +17 0.598974 0.297527 0.012023 0.007033 +11 0.598387 0.280966 0.010850 0.006579 +11 0.598974 0.263385 0.012023 0.006806 +17 0.123314 0.310912 0.012023 0.007486 +13 0.223021 0.310799 0.012023 0.007713 +12 0.184164 0.307169 0.011730 0.008167 +12 0.239443 0.306034 0.010850 0.008167 +13 0.204545 0.306375 0.011437 0.008848 +12 0.261584 0.300817 0.010557 0.007713 +12 0.948534 0.263385 0.008504 0.007260 +17 0.948974 0.311366 0.010557 0.007033 +17 0.949120 0.297868 0.010850 0.007260 +11 0.948827 0.281420 0.010264 0.006125 +11 0.786950 0.214270 0.010850 0.007940 +11 0.670088 0.214156 0.011730 0.008167 +17 0.125660 0.212568 0.011437 0.007713 +12 0.528886 0.211320 0.012023 0.007486 +12 0.469355 0.211547 0.011437 0.007940 +17 0.296628 0.211434 0.012023 0.007713 +13 0.222874 0.211434 0.011730 0.007713 +17 0.842082 0.211093 0.012023 0.007486 +12 0.606452 0.211093 0.011144 0.007486 +12 0.606891 0.197142 0.010850 0.006806 +12 0.606598 0.181148 0.010264 0.006579 +12 0.606452 0.164020 0.009384 0.006806 +12 0.586950 0.211207 0.010850 0.007713 +12 0.566716 0.211207 0.011437 0.007713 +12 0.566276 0.197709 0.010557 0.007033 +12 0.566716 0.187500 0.010264 0.005672 +12 0.567595 0.174342 0.010850 0.005672 +13 0.929472 0.210867 0.010850 0.007486 +12 0.507478 0.211093 0.011437 0.007940 +12 0.507478 0.197595 0.011437 0.007260 +12 0.506745 0.181488 0.009384 0.005898 +12 0.489883 0.211093 0.011437 0.007940 +12 0.629326 0.210867 0.011144 0.007940 +13 0.393402 0.210980 0.012023 0.008167 +12 0.184457 0.208258 0.010557 0.008167 +12 0.359091 0.207691 0.011437 0.008848 +12 0.238416 0.207237 0.010557 0.008394 +13 0.206012 0.207464 0.011437 0.008848 +12 0.408651 0.207010 0.010850 0.008394 +13 0.379912 0.207123 0.010850 0.008621 +12 0.946774 0.206783 0.011437 0.008394 +13 0.914516 0.206216 0.010264 0.008621 +12 0.895161 0.206443 0.011437 0.009074 +12 0.431818 0.200998 0.011437 0.007260 +12 0.965249 0.200544 0.010850 0.006806 +12 0.260264 0.200771 0.010850 0.007260 +11 0.716276 0.184778 0.011437 0.007033 +18 0.703226 0.177518 0.008798 0.007033 +11 0.715836 0.174229 0.009384 0.006806 +18 0.535337 0.121824 0.009091 0.004537 +12 0.581672 0.114678 0.007918 0.006125 +18 0.757185 0.099592 0.009384 0.004537 +17 0.753812 0.067718 0.009091 0.005218 +13 0.673607 0.099365 0.009971 0.004537 +12 0.682551 0.081329 0.007918 0.007033 +12 0.535044 0.094487 0.007331 0.006125 +12 0.520381 0.091652 0.008504 0.005898 +12 0.457038 0.091538 0.008504 0.005672 +18 0.556012 0.089723 0.015836 0.009301 +11 0.495455 0.089837 0.014956 0.009528 +12 0.956305 0.088022 0.007038 0.006352 +12 0.956598 0.081103 0.008211 0.007033 +12 0.956745 0.074183 0.007331 0.005445 +12 0.956158 0.064428 0.007918 0.004991 +18 0.698974 0.078153 0.007918 0.005218 +18 0.698534 0.071121 0.007625 0.004764 +12 0.659384 0.078153 0.008504 0.005672 +18 0.637830 0.077926 0.007625 0.006125 +18 0.637390 0.071574 0.007918 0.005218 +12 0.153226 0.076112 0.004985 0.005672 +13 0.416569 0.072255 0.008504 0.005672 +13 0.391789 0.068739 0.008798 0.004991 +12 0.331525 0.064769 0.007918 0.005218 +12 0.431378 0.066130 0.008211 0.012931 +11 0.371408 0.065336 0.007918 0.011797 +17 0.802346 0.061706 0.008798 0.006352 +11 0.850000 0.058643 0.007918 0.005672 +11 0.882258 0.058190 0.007918 0.005672 +11 0.919062 0.054673 0.008211 0.005898 +18 0.293988 0.046053 0.007918 0.005445 +18 0.257771 0.043557 0.008211 0.005898 +12 0.277859 0.043103 0.007331 0.005898 +11 0.371848 0.018943 0.007038 0.005218 +1 0.048974 0.734233 0.024047 0.043330 +2 0.603079 0.079968 0.016716 0.016561 +1 0.094282 0.085867 0.024340 0.050136 +5 0.170235 0.205195 0.009091 0.017468 +4 0.773167 0.213816 0.010264 0.020644 +4 0.285191 0.045939 0.007918 0.013385 +4 0.871408 0.057509 0.007331 0.014292 +4 0.627273 0.071574 0.008211 0.014292 +3 0.481965 0.090858 0.005572 0.013385 +1 0.051760 0.184778 0.024340 0.049682 +5 0.695748 0.181148 0.009091 0.017015 +4 0.445894 0.091992 0.007331 0.013838 +5 0.170821 0.303426 0.008504 0.017015 +5 0.554399 0.392809 0.009091 0.017468 +3 0.696628 0.395077 0.007331 0.020191 +1 0.050000 0.463135 0.023754 0.050136 +4 0.842962 0.660504 0.010850 0.020644 +5 0.345894 0.204741 0.008504 0.016561 +4 0.164076 0.536411 0.011437 0.021098 +4 0.690469 0.670145 0.010850 0.021325 +1 0.940616 0.081103 0.016129 0.031080 +4 0.656158 0.214043 0.010850 0.021552 +4 0.496628 0.560005 0.010850 0.020644 +5 0.261144 0.394170 0.009091 0.015653 +1 0.050880 0.283916 0.024340 0.050136 +1 0.050587 0.373299 0.024340 0.050136 +5 0.881085 0.203380 0.009091 0.016561 +1 0.049707 0.555467 0.024927 0.049682 +3 0.822141 0.845848 0.007918 0.021098 +3 0.108944 0.725159 0.007918 0.021098 +4 0.560411 0.745236 0.011144 0.021325 +4 0.108651 0.483326 0.010850 0.021098 +3 0.941056 0.833144 0.008211 0.019737 +4 0.278592 0.745123 0.010557 0.021552 +4 0.444575 0.838702 0.011144 0.020871 +4 0.154985 0.402790 0.010264 0.020644 +3 0.255865 0.486729 0.007331 0.021098 +4 0.561437 0.572822 0.011437 0.021325 +3 0.255425 0.831556 0.008211 0.020191 +3 0.255572 0.909369 0.007918 0.021552 +3 0.606158 0.838362 0.008211 0.019737 +4 0.587977 0.741946 0.009971 0.020191 +4 0.522141 0.916856 0.010850 0.021098 +4 0.336364 0.549569 0.011144 0.021098 +3 0.506305 0.809551 0.007918 0.020644 +5 0.916862 0.903698 0.008504 0.017015 +5 0.363196 0.758961 0.009091 0.016107 +4 0.768182 0.660730 0.011437 0.020644 +1 0.048827 0.653017 0.024927 0.049682 +5 0.792082 0.842219 0.009384 0.017015 +4 0.338563 0.486502 0.010850 0.021098 +4 0.159091 0.486956 0.010850 0.021098 +4 0.448240 0.562727 0.010264 0.020644 +4 0.570235 0.920259 0.010850 0.021098 +4 0.400440 0.844941 0.010264 0.021098 +4 0.740909 0.399161 0.010264 0.021098 +4 0.697947 0.828834 0.011144 0.021098 +5 0.946628 0.927745 0.008211 0.016561 +3 0.850000 0.392582 0.007918 0.020191 +1 0.047361 0.824070 0.024927 0.056034 +4 0.352639 0.849025 0.010850 0.022005 +1 0.047214 0.929333 0.025220 0.049682 +5 0.413343 0.626475 0.008504 0.017015 +3 0.494428 0.748525 0.008211 0.020191 +3 0.920235 0.648253 0.007625 0.020644 +3 0.713343 0.726066 0.007331 0.020644 +4 0.441642 0.936933 0.010557 0.021325 +3 0.286657 0.917083 0.007918 0.021552 +3 0.137097 0.846075 0.006745 0.016107 +4 0.896921 0.746030 0.010264 0.021098 +4 0.324487 0.851293 0.010850 0.022005 +5 0.109384 0.839723 0.009384 0.017015 +3 0.681965 0.719034 0.007918 0.020644 +3 0.389296 0.762137 0.007331 0.020644 +4 0.134604 0.935572 0.009971 0.020417 +4 0.159971 0.932623 0.010850 0.019964 +4 0.084018 0.925817 0.010264 0.019964 +4 0.073314 0.915948 0.009971 0.021098 +4 0.084164 0.818058 0.011144 0.019510 +4 0.074780 0.808076 0.009971 0.020417 +4 0.090616 0.370009 0.009971 0.019964 +4 0.081085 0.360254 0.010264 0.020417 +4 0.092669 0.181715 0.010557 0.019964 +4 0.082991 0.171733 0.009971 0.020871 +4 0.131378 0.082804 0.009971 0.019964 +4 0.122581 0.073049 0.009971 0.020417 +4 0.354399 0.068512 0.007331 0.013158 +5 0.361877 0.058984 0.005865 0.011343 +4 0.084897 0.734800 0.010850 0.019964 +4 0.075660 0.724365 0.009971 0.019964 +4 0.090616 0.281307 0.010557 0.020417 +4 0.081818 0.270871 0.009384 0.020417 +4 0.085337 0.649728 0.010557 0.019510 +4 0.076686 0.639859 0.011437 0.020644 +4 0.089443 0.460299 0.010557 0.019964 +4 0.080205 0.450091 0.010264 0.020417 +4 0.076686 0.542536 0.009091 0.020644 +4 0.088270 0.552064 0.008798 0.020644 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_18.jpg b/data_dataset/tch/debug/debug_18.jpg new file mode 100644 index 0000000..cdc8eeb Binary files /dev/null and b/data_dataset/tch/debug/debug_18.jpg differ diff --git a/data_dataset/tch/debug/debug_18.txt b/data_dataset/tch/debug/debug_18.txt new file mode 100644 index 0000000..2107e00 --- /dev/null +++ b/data_dataset/tch/debug/debug_18.txt @@ -0,0 +1,550 @@ +8 0.519383 0.965145 0.007342 0.023842 +8 0.554919 0.958787 0.007930 0.022934 +7 0.884141 0.954473 0.012041 0.016576 +6 0.904993 0.953678 0.012628 0.024977 +10 0.609838 0.941076 0.009692 0.006585 +9 0.749927 0.930631 0.009104 0.037920 +10 0.162261 0.861603 0.010279 0.005223 +10 0.396035 0.842757 0.011454 0.005223 +10 0.930250 0.818915 0.007342 0.002952 +8 0.920558 0.830495 0.010279 0.034287 +9 0.755800 0.815509 0.009692 0.032016 +10 0.366373 0.751135 0.007342 0.004087 +10 0.235095 0.733765 0.014978 0.006585 +9 0.793392 0.716394 0.013216 0.030881 +9 0.401468 0.719800 0.009398 0.038147 +9 0.816740 0.721276 0.009398 0.043370 +9 0.173862 0.738079 0.012335 0.069709 +9 0.118649 0.714237 0.007636 0.023842 +9 0.138032 0.720254 0.011160 0.036785 +9 0.274890 0.719914 0.011160 0.037012 +9 0.524376 0.713556 0.007930 0.023842 +9 0.460499 0.737398 0.013510 0.071526 +9 0.337739 0.736944 0.013510 0.071072 +9 0.635830 0.732516 0.011747 0.064487 +9 0.779001 0.711966 0.006167 0.023842 +8 0.433333 0.640895 0.006755 0.021117 +9 0.357856 0.642598 0.013216 0.024069 +10 0.947577 0.634537 0.014391 0.006585 +8 0.728781 0.629314 0.009104 0.010218 +9 0.147871 0.616144 0.006755 0.023842 +7 0.239501 0.541667 0.011454 0.016576 +8 0.918209 0.537807 0.012041 0.023842 +10 0.482379 0.530540 0.013216 0.006585 +10 0.443612 0.552566 0.017915 0.003406 +10 0.465345 0.552112 0.019090 0.003406 +9 0.211601 0.525772 0.012041 0.042007 +9 0.360940 0.524750 0.013510 0.040872 +9 0.288253 0.523728 0.012628 0.038828 +10 0.942291 0.449024 0.007930 0.002498 +9 0.224816 0.446639 0.012041 0.022707 +9 0.157562 0.450045 0.017327 0.029519 +8 0.206021 0.439941 0.007342 0.023842 +9 0.859765 0.430404 0.006167 0.030200 +8 0.868282 0.426998 0.005580 0.023388 +9 0.925257 0.425295 0.005580 0.039510 +10 0.924376 0.372048 0.007342 0.005677 +9 0.327313 0.352066 0.013803 0.011580 +10 0.796329 0.342075 0.008517 0.004314 +9 0.339941 0.341394 0.010866 0.036558 +10 0.351101 0.335036 0.007342 0.005677 +9 0.386050 0.339578 0.010279 0.023388 +10 0.505874 0.327316 0.007930 0.002498 +9 0.253891 0.335490 0.016153 0.030200 +10 0.497063 0.320731 0.009104 0.004768 +9 0.189574 0.331176 0.010866 0.036104 +9 0.785169 0.333674 0.010866 0.022934 +10 0.757856 0.250341 0.007342 0.003406 +7 0.946990 0.245345 0.008517 0.024750 +10 0.882673 0.239441 0.007930 0.004314 +10 0.822467 0.239441 0.008517 0.004314 +9 0.409251 0.250341 0.007930 0.032016 +10 0.361674 0.237738 0.010279 0.005450 +9 0.374302 0.254314 0.012041 0.042234 +7 0.760793 0.236717 0.010866 0.033379 +9 0.185463 0.154973 0.012628 0.029746 +7 0.736417 0.154292 0.012628 0.027475 +10 0.390162 0.138170 0.008517 0.005677 +9 0.439794 0.145777 0.012628 0.029973 +10 0.787518 0.134537 0.020852 0.003406 +9 0.121733 0.134650 0.010866 0.037239 +9 0.591630 0.135218 0.012041 0.037920 +9 0.139648 0.131926 0.011454 0.031789 +9 0.528488 0.131471 0.010279 0.056767 +10 0.843612 0.069596 0.007930 0.004314 +10 0.541410 0.069823 0.007342 0.003406 +10 0.884728 0.050522 0.011454 0.004314 +9 0.840382 0.059151 0.010866 0.024296 +10 0.621586 0.048819 0.009104 0.003179 +10 0.290896 0.049160 0.010279 0.004314 +9 0.582966 0.057448 0.015859 0.023161 +10 0.541703 0.048479 0.009104 0.003406 +10 0.638913 0.043370 0.009692 0.005904 +9 0.146109 0.037807 0.012041 0.026113 +10 0.741703 0.026453 0.007342 0.006131 +9 0.692658 0.036558 0.010279 0.037239 +9 0.716153 0.034741 0.011454 0.031789 +13 0.135830 0.980132 0.010279 0.007039 +13 0.153744 0.975704 0.010866 0.007720 +13 0.305433 0.972866 0.011160 0.007493 +13 0.172540 0.972525 0.010866 0.007720 +13 0.324376 0.969460 0.012628 0.007947 +13 0.189868 0.969460 0.011454 0.007947 +13 0.342438 0.965940 0.011160 0.006358 +13 0.209251 0.966054 0.011454 0.006585 +13 0.226579 0.963669 0.012041 0.007266 +13 0.117034 0.963215 0.011454 0.007266 +13 0.499413 0.962648 0.010279 0.007493 +13 0.373128 0.962875 0.012041 0.007947 +13 0.245228 0.959696 0.011160 0.006585 +13 0.516740 0.959128 0.010866 0.006812 +13 0.391924 0.959355 0.011454 0.007266 +13 0.287078 0.956630 0.012041 0.007720 +13 0.534655 0.956063 0.011454 0.007947 +13 0.409251 0.956176 0.012041 0.008174 +13 0.553451 0.952657 0.010279 0.006585 +13 0.428928 0.952770 0.011454 0.006812 +13 0.571072 0.949364 0.011454 0.008174 +13 0.470925 0.949251 0.012041 0.007947 +13 0.588106 0.945958 0.010279 0.006812 +13 0.608223 0.942439 0.010573 0.007947 +13 0.644787 0.938919 0.010866 0.006812 +13 0.662115 0.935513 0.010279 0.007266 +13 0.679442 0.931540 0.009692 0.007493 +13 0.698825 0.928361 0.010866 0.007493 +13 0.715859 0.924273 0.009692 0.006585 +13 0.734068 0.921549 0.010279 0.007493 +12 0.752276 0.918029 0.009692 0.008629 +18 0.783407 0.914850 0.011454 0.007720 +18 0.863877 0.911558 0.010279 0.006585 +13 0.848018 0.856835 0.010279 0.007947 +13 0.866520 0.852520 0.010866 0.007493 +13 0.867107 0.819709 0.007342 0.006358 +12 0.770191 0.849342 0.010866 0.007493 +13 0.882673 0.848433 0.010279 0.007493 +13 0.900147 0.845936 0.009985 0.007039 +13 0.264464 0.845254 0.010866 0.007493 +18 0.395888 0.843324 0.006461 0.004087 +13 0.918502 0.842870 0.010279 0.006812 +12 0.723495 0.842870 0.010279 0.007266 +11 0.195888 0.841848 0.011747 0.007947 +13 0.934214 0.839464 0.011747 0.007266 +13 0.288546 0.838215 0.010866 0.007039 +12 0.659912 0.836966 0.009985 0.007266 +13 0.961527 0.835377 0.011160 0.006358 +12 0.144934 0.835263 0.011454 0.007493 +13 0.347283 0.834696 0.012041 0.008174 +13 0.314244 0.834582 0.011747 0.007947 +13 0.825991 0.832993 0.012041 0.007493 +12 0.746990 0.826635 0.011454 0.007493 +13 0.240382 0.821866 0.012041 0.007947 +13 0.362115 0.821412 0.011160 0.007947 +12 0.530837 0.821072 0.010279 0.007720 +12 0.700294 0.820050 0.012041 0.007947 +11 0.170338 0.818915 0.010573 0.007493 +13 0.617327 0.817552 0.009985 0.007493 +13 0.388253 0.814373 0.011160 0.007039 +12 0.635977 0.814260 0.011454 0.007266 +12 0.578414 0.814260 0.011454 0.007720 +13 0.601762 0.813919 0.011160 0.007947 +12 0.119677 0.811876 0.011454 0.007039 +13 0.492070 0.811308 0.009104 0.006358 +13 0.414537 0.811194 0.010279 0.007039 +13 0.466667 0.807107 0.008811 0.007039 +12 0.508223 0.806767 0.010866 0.007266 +12 0.441850 0.806880 0.009692 0.007493 +11 0.202203 0.754655 0.009692 0.007039 +12 0.202349 0.738306 0.012335 0.007947 +11 0.484435 0.754428 0.009104 0.007039 +12 0.485316 0.738079 0.012041 0.007947 +12 0.364023 0.754201 0.010279 0.007039 +12 0.365198 0.737625 0.012628 0.007493 +11 0.549927 0.754087 0.008517 0.007266 +12 0.550514 0.737852 0.012041 0.007493 +12 0.659178 0.753520 0.008517 0.006585 +12 0.660059 0.737171 0.012628 0.007493 +11 0.598385 0.753520 0.007930 0.007039 +12 0.599266 0.737398 0.012041 0.007493 +11 0.710132 0.752952 0.009398 0.007266 +12 0.710573 0.737171 0.012628 0.007493 +12 0.963730 0.736944 0.011454 0.007493 +12 0.846990 0.720368 0.011747 0.007493 +13 0.927606 0.716054 0.009692 0.007493 +12 0.881498 0.712988 0.010866 0.007266 +12 0.943319 0.712988 0.009398 0.007720 +13 0.902056 0.712534 0.010866 0.007266 +13 0.157562 0.711853 0.010279 0.007720 +13 0.320999 0.710604 0.010573 0.007947 +13 0.441410 0.710377 0.011160 0.007947 +13 0.802349 0.709015 0.010573 0.007493 +12 0.174890 0.708674 0.009692 0.006812 +12 0.117034 0.707879 0.010279 0.007039 +17 0.338326 0.707539 0.010573 0.007266 +13 0.139501 0.707766 0.009985 0.007720 +17 0.522907 0.707312 0.010279 0.007266 +17 0.461527 0.707312 0.009692 0.007266 +12 0.276211 0.707084 0.010279 0.007266 +17 0.573421 0.707084 0.010279 0.007720 +17 0.683700 0.706290 0.010573 0.006585 +13 0.300881 0.706744 0.010279 0.007493 +17 0.637151 0.706517 0.010279 0.007493 +12 0.403818 0.706744 0.009985 0.007947 +12 0.754479 0.706403 0.009398 0.007720 +13 0.425844 0.706517 0.009985 0.008401 +12 0.818502 0.705722 0.009985 0.007266 +13 0.776652 0.706063 0.009104 0.007947 +13 0.620117 0.669959 0.010866 0.008401 +13 0.641557 0.662239 0.010279 0.007493 +13 0.553891 0.662466 0.011160 0.008401 +13 0.534655 0.658606 0.010866 0.007947 +13 0.575477 0.655427 0.010866 0.007039 +13 0.515419 0.655767 0.011160 0.007720 +11 0.899119 0.655200 0.008517 0.007039 +12 0.899559 0.639078 0.011747 0.007493 +13 0.475918 0.652702 0.012628 0.007947 +13 0.660940 0.652248 0.011454 0.007493 +12 0.662115 0.632947 0.005580 0.005677 +13 0.454038 0.649410 0.011160 0.006812 +13 0.433627 0.646117 0.011454 0.007493 +13 0.682673 0.645777 0.011454 0.007266 +13 0.496769 0.646004 0.012041 0.008174 +13 0.379001 0.639986 0.011454 0.007947 +13 0.709692 0.639192 0.011454 0.007720 +13 0.358884 0.636467 0.010573 0.005904 +13 0.400000 0.633174 0.011747 0.007947 +13 0.334802 0.632947 0.012335 0.007947 +13 0.295888 0.629768 0.010866 0.007039 +13 0.727313 0.629314 0.010279 0.006585 +13 0.277239 0.626022 0.010573 0.007720 +13 0.750220 0.623070 0.011454 0.007266 +13 0.316887 0.623070 0.010573 0.007266 +13 0.255947 0.623070 0.010866 0.007266 +12 0.211894 0.616144 0.010866 0.006131 +13 0.768135 0.615463 0.010866 0.006585 +13 0.165198 0.612965 0.011454 0.007947 +13 0.853304 0.612284 0.010866 0.007493 +12 0.186637 0.610014 0.010866 0.007039 +13 0.145521 0.609673 0.010866 0.006812 +12 0.117327 0.609787 0.010866 0.007039 +17 0.872981 0.609219 0.010279 0.007720 +13 0.832452 0.608424 0.009104 0.007039 +12 0.801028 0.608197 0.009692 0.007493 +13 0.806021 0.571753 0.011454 0.007266 +13 0.827606 0.564033 0.011160 0.007266 +13 0.740529 0.564487 0.010866 0.008174 +13 0.719971 0.560286 0.010866 0.007947 +13 0.764317 0.557561 0.011454 0.007039 +13 0.701762 0.557788 0.010866 0.007493 +13 0.660646 0.554723 0.010866 0.007720 +13 0.847724 0.554269 0.011454 0.007720 +13 0.935830 0.552906 0.017327 0.009083 +13 0.935830 0.525204 0.009104 0.006358 +13 0.639941 0.550863 0.011160 0.006358 +13 0.872394 0.547911 0.011454 0.007720 +13 0.681498 0.547797 0.010279 0.007493 +13 0.618062 0.547684 0.011454 0.007720 +13 0.561968 0.541326 0.010866 0.007720 +13 0.898091 0.541213 0.011747 0.007947 +13 0.542878 0.538034 0.010279 0.006585 +13 0.522467 0.534968 0.011747 0.007720 +13 0.584728 0.534514 0.011160 0.007720 +13 0.916887 0.531562 0.011160 0.006358 +13 0.481498 0.530881 0.009692 0.005904 +13 0.458884 0.528497 0.010279 0.007493 +13 0.502349 0.524410 0.011454 0.006585 +13 0.437739 0.524750 0.010279 0.007266 +13 0.148752 0.520550 0.011454 0.007493 +13 0.117621 0.520777 0.011454 0.007947 +13 0.956535 0.517825 0.010573 0.007039 +13 0.168135 0.517257 0.010279 0.007266 +12 0.391043 0.517257 0.010866 0.008629 +13 0.189721 0.515554 0.010573 0.007493 +13 0.340529 0.513738 0.010866 0.007493 +12 0.212482 0.510559 0.009692 0.006585 +12 0.361527 0.509650 0.010573 0.006585 +12 0.288840 0.510445 0.009692 0.008174 +13 0.319090 0.510104 0.010279 0.008401 +12 0.493539 0.467075 0.009692 0.007266 +12 0.493539 0.454360 0.009692 0.006358 +12 0.493539 0.420413 0.010866 0.006585 +13 0.695888 0.454246 0.009104 0.006585 +13 0.695301 0.430631 0.010279 0.007493 +12 0.641850 0.453565 0.009104 0.006585 +12 0.641850 0.423365 0.010279 0.007493 +13 0.139941 0.447548 0.009692 0.006812 +13 0.225991 0.440963 0.010279 0.007266 +13 0.160499 0.440963 0.010866 0.007266 +13 0.119971 0.440622 0.010866 0.007493 +13 0.183554 0.437330 0.011160 0.008174 +13 0.726725 0.434491 0.009692 0.007039 +13 0.203671 0.433697 0.010279 0.007266 +13 0.747577 0.430064 0.010279 0.007266 +13 0.245962 0.430291 0.010279 0.007720 +13 0.325551 0.429837 0.010866 0.007720 +13 0.823054 0.427566 0.010866 0.007720 +13 0.767695 0.426885 0.009985 0.006358 +12 0.596769 0.426998 0.011160 0.007039 +13 0.269163 0.426431 0.010866 0.007266 +13 0.350220 0.426203 0.009692 0.007720 +13 0.802790 0.424273 0.011454 0.007493 +13 0.545521 0.424046 0.011454 0.007493 +13 0.845374 0.423819 0.010866 0.007493 +13 0.373715 0.423138 0.010866 0.007493 +13 0.306021 0.422684 0.011747 0.007947 +13 0.866079 0.420754 0.010573 0.006812 +12 0.567254 0.420527 0.010279 0.006812 +13 0.522907 0.420413 0.010866 0.007493 +13 0.393979 0.419619 0.010279 0.007720 +13 0.886784 0.417121 0.011454 0.007720 +12 0.669750 0.417121 0.010866 0.007720 +13 0.413510 0.417007 0.011160 0.007947 +13 0.908223 0.413942 0.009692 0.006812 +13 0.433333 0.413488 0.009692 0.008174 +18 0.930690 0.411104 0.010573 0.007039 +18 0.959471 0.410309 0.009985 0.007266 +18 0.451836 0.407130 0.010866 0.007266 +12 0.925110 0.370345 0.011160 0.006358 +12 0.924376 0.357402 0.011454 0.006812 +12 0.924670 0.346844 0.010866 0.006585 +12 0.882379 0.370232 0.010866 0.006585 +12 0.882673 0.356608 0.011454 0.007493 +12 0.882379 0.339918 0.010866 0.005904 +12 0.752570 0.367280 0.010866 0.006131 +18 0.751248 0.352748 0.008223 0.006131 +12 0.752863 0.336626 0.010279 0.007493 +13 0.582819 0.356153 0.010866 0.007947 +13 0.600441 0.352407 0.010866 0.006812 +12 0.612188 0.330722 0.010866 0.006131 +13 0.467841 0.349796 0.011160 0.007947 +12 0.629222 0.349455 0.012041 0.008174 +13 0.628341 0.333674 0.009692 0.004768 +13 0.676799 0.346390 0.010866 0.006131 +13 0.660206 0.346390 0.011160 0.006585 +13 0.512628 0.346390 0.011454 0.006585 +12 0.484581 0.346049 0.010573 0.005904 +13 0.556975 0.343324 0.012041 0.007720 +12 0.410866 0.343324 0.011747 0.007720 +12 0.843025 0.343211 0.012041 0.007947 +13 0.696035 0.343211 0.011160 0.007947 +13 0.945815 0.340599 0.010866 0.006812 +13 0.795007 0.340145 0.011160 0.006358 +13 0.713216 0.339691 0.010866 0.005450 +13 0.436858 0.339805 0.011454 0.006131 +13 0.964023 0.337648 0.010866 0.007266 +12 0.816593 0.336853 0.009692 0.007039 +13 0.777533 0.336739 0.011454 0.007720 +12 0.347871 0.336172 0.010866 0.007493 +12 0.903231 0.334128 0.011454 0.007039 +12 0.385463 0.333220 0.010866 0.006585 +13 0.294714 0.329587 0.010279 0.007947 +12 0.215125 0.329700 0.010866 0.008174 +12 0.314684 0.326067 0.010279 0.007266 +13 0.276358 0.326294 0.011160 0.007720 +12 0.252863 0.326294 0.011160 0.007720 +13 0.172834 0.322775 0.010866 0.007947 +12 0.190749 0.318801 0.010279 0.007266 +13 0.146109 0.318460 0.010279 0.007493 +12 0.122320 0.318688 0.010866 0.007947 +12 0.543172 0.271798 0.010866 0.007266 +12 0.430690 0.268506 0.010279 0.007947 +13 0.122614 0.267938 0.010866 0.007720 +13 0.191043 0.267711 0.010279 0.007720 +13 0.142438 0.268052 0.011160 0.008401 +13 0.170778 0.267484 0.010866 0.008174 +13 0.571512 0.264873 0.011160 0.007947 +12 0.491043 0.264873 0.010573 0.007947 +13 0.658737 0.264646 0.011747 0.007947 +13 0.293979 0.264646 0.011747 0.007947 +13 0.224523 0.264759 0.012628 0.008174 +13 0.387812 0.264305 0.011454 0.007720 +13 0.272834 0.264305 0.011747 0.008174 +13 0.243759 0.263283 0.011160 0.007947 +13 0.594126 0.261240 0.010573 0.007039 +12 0.340822 0.260899 0.011454 0.006812 +12 0.405727 0.261013 0.010866 0.007493 +13 0.369016 0.260786 0.011454 0.007493 +13 0.736123 0.257947 0.011454 0.007266 +12 0.514097 0.257947 0.011454 0.007720 +13 0.675918 0.257834 0.012041 0.007947 +13 0.637739 0.257607 0.010866 0.007947 +13 0.694860 0.254087 0.011160 0.005904 +13 0.715272 0.251249 0.010866 0.007493 +13 0.841263 0.247956 0.010279 0.007266 +13 0.756681 0.247616 0.011454 0.006585 +13 0.860793 0.245005 0.011747 0.007720 +13 0.775184 0.244664 0.012041 0.007947 +13 0.881498 0.241599 0.009692 0.007266 +13 0.821733 0.241258 0.009985 0.006585 +13 0.900294 0.238533 0.010866 0.007493 +13 0.920852 0.235695 0.009692 0.006358 +13 0.941116 0.231948 0.011454 0.007493 +13 0.959618 0.225136 0.009692 0.007493 +13 0.939207 0.182902 0.009985 0.007493 +12 0.956094 0.179950 0.009692 0.007039 +13 0.911454 0.179723 0.010866 0.007493 +13 0.872687 0.172684 0.009692 0.007493 +13 0.857122 0.169391 0.011454 0.007266 +12 0.890896 0.169051 0.010866 0.007493 +13 0.795742 0.159514 0.010866 0.007493 +12 0.816300 0.156222 0.010866 0.006358 +13 0.769750 0.155995 0.010573 0.006812 +13 0.735095 0.150091 0.010573 0.005904 +12 0.751689 0.146458 0.012041 0.007720 +13 0.722026 0.146458 0.011454 0.007720 +13 0.195301 0.146117 0.012335 0.007947 +12 0.388546 0.139759 0.009985 0.007493 +12 0.318209 0.139646 0.010866 0.007720 +12 0.508223 0.136694 0.010279 0.007720 +12 0.441116 0.136240 0.010573 0.006812 +13 0.672687 0.136353 0.010279 0.007493 +12 0.687959 0.132947 0.010279 0.007947 +12 0.552863 0.132380 0.010279 0.008174 +13 0.648018 0.131926 0.009104 0.007720 +13 0.608664 0.125795 0.010279 0.007720 +13 0.157269 0.125681 0.010866 0.007947 +12 0.629809 0.122162 0.010279 0.006812 +12 0.123348 0.122162 0.009985 0.007266 +13 0.592805 0.121708 0.010279 0.006812 +13 0.140235 0.122048 0.009692 0.007947 +12 0.173568 0.121708 0.009398 0.008174 +13 0.272981 0.118869 0.009692 0.007039 +12 0.290162 0.116031 0.009398 0.007720 +12 0.236564 0.115690 0.009692 0.007039 +12 0.360499 0.115463 0.009692 0.007493 +13 0.258297 0.115463 0.009692 0.007493 +18 0.482379 0.112511 0.010279 0.007493 +18 0.416887 0.112284 0.009692 0.007039 +12 0.530984 0.108765 0.010573 0.007266 +13 0.638179 0.068120 0.007636 0.007266 +13 0.638620 0.045073 0.010866 0.006131 +11 0.936270 0.068460 0.016446 0.009764 +13 0.945521 0.035763 0.010279 0.007493 +13 0.931131 0.047230 0.009692 0.006812 +13 0.779883 0.061308 0.007930 0.004995 +13 0.779001 0.038828 0.009692 0.007720 +12 0.472394 0.061535 0.004993 0.005450 +13 0.477093 0.038601 0.010866 0.007720 +13 0.867988 0.055745 0.010279 0.007039 +13 0.569310 0.054609 0.010866 0.007947 +12 0.217474 0.054155 0.012041 0.007493 +13 0.914097 0.053247 0.009692 0.006585 +13 0.883554 0.052566 0.009692 0.006131 +13 0.840969 0.052452 0.009104 0.005904 +13 0.585756 0.051998 0.009692 0.006358 +13 0.620264 0.051658 0.009985 0.006585 +13 0.540822 0.051544 0.010279 0.007266 +12 0.290308 0.051090 0.009692 0.006358 +13 0.898238 0.049387 0.010866 0.007947 +13 0.810426 0.049160 0.010279 0.007493 +12 0.338767 0.048365 0.011454 0.007720 +13 0.603084 0.048252 0.010866 0.007947 +13 0.512922 0.048252 0.010866 0.007947 +13 0.793979 0.045527 0.010279 0.005677 +13 0.495742 0.044959 0.009985 0.006812 +13 0.653598 0.034855 0.010279 0.007947 +13 0.173128 0.033719 0.010279 0.007493 +12 0.193833 0.030767 0.010573 0.006131 +13 0.147283 0.030427 0.009104 0.007266 +12 0.127460 0.030313 0.010573 0.007039 +13 0.964023 0.029746 0.010866 0.007266 +13 0.739794 0.028270 0.008811 0.007493 +13 0.435389 0.028043 0.010866 0.007493 +13 0.670044 0.027929 0.010279 0.007720 +12 0.262702 0.027361 0.010866 0.007493 +13 0.755507 0.024410 0.010866 0.007039 +13 0.717621 0.024977 0.010279 0.008174 +13 0.450954 0.024296 0.010279 0.007266 +12 0.381498 0.024296 0.011160 0.007266 +12 0.693833 0.024069 0.009692 0.007266 +12 0.314244 0.023842 0.010573 0.006812 +13 0.407783 0.024069 0.010866 0.007720 +1 0.046256 0.053474 0.024376 0.051090 +4 0.555800 0.054609 0.010866 0.021571 +4 0.855653 0.055972 0.010279 0.021117 +3 0.114391 0.031449 0.007930 0.021117 +4 0.159912 0.034401 0.010866 0.021571 +3 0.277680 0.050749 0.007930 0.019755 +4 0.713803 0.434491 0.010866 0.021571 +1 0.042731 0.240350 0.023789 0.043370 +1 0.043319 0.342075 0.024376 0.050636 +3 0.224523 0.116144 0.007930 0.020663 +4 0.468282 0.112511 0.011454 0.022025 +4 0.347283 0.115690 0.011454 0.021571 +4 0.927313 0.181767 0.010866 0.020663 +4 0.945521 0.410876 0.010279 0.021117 +4 0.766373 0.038942 0.011454 0.021571 +4 0.422173 0.028043 0.011454 0.022025 +3 0.250073 0.028497 0.007930 0.021571 +4 0.646256 0.346276 0.010866 0.020890 +1 0.042144 0.151340 0.024963 0.050636 +4 0.333480 0.336172 0.011454 0.021117 +4 0.494126 0.136580 0.011454 0.021117 +1 0.040088 0.541213 0.024376 0.051090 +1 0.040088 0.639305 0.024376 0.050182 +3 0.211013 0.263738 0.007930 0.021571 +1 0.040382 0.737625 0.024376 0.050636 +4 0.497944 0.346617 0.011454 0.019755 +4 0.782232 0.159741 0.010866 0.021571 +3 0.225991 0.822094 0.007930 0.021117 +5 0.109398 0.263624 0.009104 0.018165 +4 0.915419 0.716167 0.011160 0.021798 +4 0.402496 0.811421 0.010866 0.021117 +4 0.133774 0.521458 0.010866 0.021117 +4 0.159325 0.322775 0.010866 0.021571 +4 0.832452 0.720368 0.010866 0.021117 +3 0.562261 0.814600 0.008517 0.021117 +4 0.767695 0.914964 0.011160 0.021571 +3 0.203671 0.054837 0.007930 0.020663 +4 0.568722 0.356153 0.010866 0.021571 +3 0.306167 0.139759 0.007930 0.021571 +4 0.104699 0.963556 0.011454 0.021571 +1 0.040382 0.829133 0.024376 0.051090 +4 0.333186 0.835036 0.010866 0.021571 +4 0.181645 0.842075 0.010866 0.021117 +3 0.157856 0.267598 0.007342 0.020209 +4 0.258884 0.264646 0.010866 0.021571 +4 0.466520 0.038488 0.014391 0.021117 +4 0.453891 0.349796 0.011454 0.021571 +4 0.375184 0.139986 0.010866 0.021571 +4 0.659471 0.136580 0.010866 0.020663 +4 0.479736 0.811194 0.011454 0.020663 +1 0.040382 0.449705 0.024376 0.050636 +4 0.485609 0.962421 0.010866 0.021571 +4 0.157562 0.818460 0.010866 0.021117 +4 0.740969 0.706063 0.011160 0.021571 +3 0.252129 0.845254 0.008517 0.021117 +4 0.810132 0.832539 0.010866 0.021117 +1 0.038913 0.956971 0.024376 0.050636 +4 0.948752 0.836399 0.010866 0.020209 +4 0.104993 0.812330 0.011454 0.020663 +4 0.629222 0.939146 0.011454 0.021344 +4 0.835095 0.855245 0.011454 0.022025 +3 0.647724 0.837307 0.007930 0.020663 +4 0.130837 0.835490 0.011454 0.021571 +4 0.359031 0.962761 0.010279 0.021798 +3 0.375771 0.814827 0.007930 0.021571 +3 0.276652 0.838783 0.007636 0.020436 +3 0.301615 0.834923 0.007048 0.020890 +4 0.078414 0.734787 0.010573 0.020890 +4 0.066373 0.724342 0.009985 0.020890 +4 0.819971 0.952543 0.010573 0.017257 +4 0.809104 0.941644 0.009985 0.019982 +4 0.831131 0.938465 0.010573 0.019982 +4 0.079589 0.339237 0.010573 0.019982 +4 0.069310 0.328792 0.009985 0.019982 +4 0.084875 0.051203 0.010573 0.020663 +4 0.073715 0.040418 0.010573 0.020890 +4 0.081645 0.240917 0.010573 0.020436 +4 0.070191 0.230699 0.009985 0.020890 +4 0.082819 0.149183 0.010573 0.020436 +4 0.071072 0.138510 0.010573 0.020890 +4 0.078414 0.538374 0.009985 0.020436 +4 0.067254 0.527929 0.009985 0.020436 +4 0.076358 0.953451 0.010573 0.020436 +4 0.065492 0.943233 0.009985 0.020890 +4 0.078120 0.636013 0.010573 0.020436 +4 0.066960 0.625795 0.010573 0.020890 +4 0.079295 0.446185 0.009985 0.021344 +4 0.068722 0.436421 0.009985 0.020890 +4 0.077827 0.824932 0.010573 0.020436 +4 0.067254 0.814941 0.010573 0.020436 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_19.jpg b/data_dataset/tch/debug/debug_19.jpg new file mode 100644 index 0000000..0058e7d Binary files /dev/null and b/data_dataset/tch/debug/debug_19.jpg differ diff --git a/data_dataset/tch/debug/debug_19.txt b/data_dataset/tch/debug/debug_19.txt new file mode 100644 index 0000000..808898f --- /dev/null +++ b/data_dataset/tch/debug/debug_19.txt @@ -0,0 +1,593 @@ +10 0.285441 0.877159 0.007353 0.003409 +10 0.109853 0.856023 0.009118 0.005682 +7 0.697500 0.848523 0.005588 0.020682 +9 0.688676 0.766932 0.012647 0.031136 +9 0.406029 0.766705 0.014412 0.037955 +10 0.031324 0.750341 0.007353 0.004318 +7 0.791618 0.759659 0.012647 0.026591 +9 0.495441 0.760795 0.014412 0.031591 +6 0.222206 0.756023 0.010294 0.025682 +9 0.303971 0.751932 0.013824 0.029318 +10 0.030441 0.685568 0.009118 0.005682 +10 0.482500 0.681023 0.014412 0.006591 +10 0.400147 0.681023 0.014412 0.006591 +10 0.323971 0.681023 0.013824 0.006591 +9 0.265441 0.680795 0.014412 0.008864 +7 0.140735 0.665341 0.012059 0.017045 +10 0.801029 0.659886 0.012647 0.006136 +6 0.543382 0.665341 0.010294 0.025227 +7 0.491618 0.658977 0.009118 0.016136 +6 0.763382 0.665114 0.010294 0.025682 +6 0.162500 0.665341 0.010882 0.025227 +6 0.501912 0.662614 0.006176 0.024318 +7 0.695735 0.665341 0.006765 0.029773 +6 0.782206 0.664886 0.005588 0.029773 +9 0.270441 0.658523 0.006765 0.021591 +9 0.622794 0.658068 0.013824 0.030682 +9 0.911618 0.657614 0.013824 0.030682 +6 0.800441 0.642841 0.006765 0.016591 +9 0.123676 0.642386 0.014412 0.053864 +10 0.818382 0.543523 0.007353 0.003409 +10 0.919559 0.542841 0.012059 0.002955 +8 0.198382 0.548068 0.014412 0.023409 +7 0.744265 0.528068 0.010882 0.024318 +9 0.893382 0.521932 0.016176 0.046591 +10 0.170147 0.564886 0.007353 0.002500 +10 0.848676 0.444432 0.007941 0.004318 +9 0.038382 0.444659 0.014412 0.054773 +10 0.134265 0.457159 0.015588 0.004318 +10 0.172500 0.456023 0.015588 0.005682 +10 0.153676 0.454659 0.015588 0.005682 +10 0.247500 0.455568 0.015000 0.006591 +10 0.228971 0.455568 0.015588 0.006591 +10 0.628676 0.452614 0.009118 0.004318 +10 0.605147 0.448977 0.012647 0.003409 +10 0.579559 0.446023 0.016765 0.004773 +10 0.321765 0.457159 0.015882 0.003409 +10 0.303676 0.457386 0.015588 0.003864 +10 0.341029 0.457159 0.013824 0.004318 +10 0.509265 0.443295 0.012647 0.002955 +10 0.485441 0.442614 0.022647 0.002500 +7 0.376324 0.423750 0.010294 0.023864 +10 0.773088 0.442159 0.014412 0.003409 +10 0.397500 0.443977 0.016176 0.004318 +10 0.378676 0.443977 0.015000 0.004318 +10 0.957794 0.444205 0.014412 0.003864 +10 0.939559 0.443523 0.014412 0.004318 +10 0.924853 0.443750 0.008529 0.004773 +7 0.167794 0.350795 0.015588 0.030682 +10 0.385147 0.340114 0.009118 0.002955 +10 0.267206 0.330114 0.012059 0.003864 +10 0.953676 0.356932 0.009706 0.002955 +10 0.579853 0.322841 0.010294 0.004773 +10 0.876618 0.327159 0.010882 0.004318 +10 0.791912 0.323295 0.008529 0.003864 +10 0.655441 0.323068 0.014412 0.004318 +10 0.638676 0.323068 0.011471 0.004318 +10 0.623971 0.322386 0.010294 0.005682 +9 0.145735 0.340568 0.013824 0.057500 +10 0.711618 0.318068 0.007941 0.002500 +10 0.726618 0.318068 0.008529 0.004318 +10 0.742500 0.316477 0.007353 0.004773 +10 0.613676 0.241023 0.010882 0.004773 +10 0.765735 0.228977 0.007941 0.002500 +10 0.255147 0.227614 0.009118 0.003409 +9 0.042206 0.235795 0.013824 0.050682 +7 0.601912 0.221477 0.014412 0.013864 +10 0.033971 0.161250 0.007941 0.006136 +10 0.716324 0.138523 0.011471 0.005227 +9 0.042206 0.141477 0.015000 0.053864 +7 0.841324 0.122614 0.010882 0.011591 +7 0.964559 0.117386 0.012647 0.012955 +10 0.330441 0.037386 0.011471 0.003864 +10 0.348971 0.036477 0.008529 0.004773 +10 0.700441 0.035795 0.011471 0.004318 +6 0.125147 0.040114 0.009118 0.025682 +12 0.877353 0.971477 0.010588 0.006591 +12 0.890147 0.941591 0.012647 0.003636 +11 0.672353 0.971136 0.010000 0.007273 +13 0.638824 0.971250 0.011176 0.007500 +13 0.898235 0.971023 0.010000 0.007955 +12 0.617941 0.970795 0.010588 0.007500 +12 0.835294 0.967727 0.010588 0.006818 +12 0.693088 0.967500 0.010294 0.006818 +11 0.957647 0.967386 0.010000 0.007045 +11 0.935882 0.971250 0.010000 0.006136 +12 0.950588 0.941364 0.018824 0.005455 +13 0.916324 0.967500 0.010882 0.007273 +13 0.655735 0.967500 0.009706 0.007273 +12 0.567206 0.967500 0.010294 0.007273 +12 0.499265 0.964886 0.012059 0.007045 +12 0.813676 0.964659 0.010294 0.007045 +13 0.767647 0.964091 0.010000 0.005909 +12 0.478235 0.964432 0.011765 0.007500 +12 0.745735 0.963523 0.010882 0.007045 +11 0.546176 0.963636 0.011765 0.007727 +12 0.384853 0.961250 0.010294 0.006591 +17 0.398529 0.934545 0.015294 0.004091 +12 0.407647 0.957727 0.011176 0.006818 +13 0.796765 0.960341 0.011765 0.007500 +13 0.529118 0.960682 0.010588 0.008182 +11 0.145882 0.959545 0.010000 0.006818 +17 0.161176 0.933636 0.015882 0.004091 +11 0.124265 0.956250 0.010294 0.007500 +17 0.139559 0.934545 0.018529 0.004091 +12 0.168676 0.956932 0.010882 0.007045 +12 0.363382 0.957386 0.010882 0.007045 +17 0.375735 0.935455 0.013235 0.004091 +12 0.426029 0.954659 0.011471 0.007955 +12 0.303088 0.954091 0.011471 0.006818 +12 0.189853 0.953636 0.012059 0.007727 +11 0.281912 0.950114 0.011471 0.006136 +17 0.295147 0.933295 0.014412 0.004318 +12 0.255735 0.950000 0.007353 0.005909 +11 0.262941 0.935227 0.007647 0.005455 +11 0.237206 0.946932 0.011471 0.007045 +18 0.514412 0.941591 0.013529 0.003636 +18 0.036618 0.942159 0.012647 0.004773 +12 0.806029 0.868523 0.010294 0.006591 +12 0.373676 0.867841 0.009706 0.007045 +12 0.354706 0.864886 0.011176 0.006591 +12 0.329706 0.864659 0.007059 0.006136 +12 0.824853 0.864773 0.011471 0.007273 +12 0.787206 0.864545 0.011471 0.006818 +12 0.961912 0.861591 0.010294 0.007273 +12 0.843529 0.861477 0.010588 0.007045 +12 0.729559 0.861591 0.010294 0.007273 +11 0.622059 0.861818 0.011176 0.007727 +11 0.516029 0.861818 0.011471 0.007727 +12 0.412794 0.861818 0.010882 0.007727 +11 0.295735 0.861591 0.012059 0.007273 +12 0.292500 0.840341 0.012647 0.003409 +12 0.185441 0.861250 0.011471 0.006591 +12 0.472206 0.858523 0.007353 0.005682 +12 0.601029 0.858295 0.010882 0.006136 +12 0.497647 0.858750 0.011176 0.007045 +12 0.938676 0.857955 0.010882 0.006364 +12 0.711618 0.858068 0.010882 0.006591 +12 0.685882 0.857841 0.007059 0.006136 +12 0.277500 0.857955 0.010882 0.007273 +12 0.166912 0.857273 0.010882 0.005909 +11 0.561029 0.855455 0.010882 0.006818 +11 0.671471 0.854886 0.011176 0.006591 +11 0.459118 0.855227 0.011765 0.007273 +11 0.896765 0.854773 0.010588 0.007273 +11 0.237206 0.854432 0.011471 0.007500 +11 0.124559 0.854545 0.010882 0.007727 +12 0.027206 0.846932 0.007941 0.006136 +17 0.028971 0.868750 0.006765 0.007045 +18 0.389853 0.841932 0.010882 0.004318 +12 0.393235 0.865455 0.011765 0.007727 +17 0.407647 0.783636 0.010588 0.004091 +11 0.406324 0.754205 0.010882 0.007955 +11 0.851029 0.774318 0.010882 0.006364 +12 0.848971 0.750909 0.011471 0.004091 +12 0.965000 0.771364 0.010588 0.006818 +12 0.867647 0.770795 0.011176 0.007500 +12 0.822059 0.770795 0.011176 0.007500 +11 0.948971 0.767159 0.010294 0.005682 +12 0.806324 0.767045 0.012059 0.006364 +12 0.777206 0.767045 0.006765 0.006364 +11 0.913529 0.763864 0.012353 0.006364 +12 0.751765 0.764091 0.011176 0.006818 +12 0.652794 0.764091 0.010882 0.006818 +12 0.606176 0.764091 0.011765 0.006818 +12 0.449559 0.761591 0.011471 0.006818 +12 0.724265 0.761023 0.011471 0.006136 +12 0.589118 0.760682 0.011765 0.007273 +11 0.037647 0.758409 0.011176 0.004545 +12 0.546912 0.757841 0.010882 0.007045 +12 0.466029 0.757955 0.011471 0.007273 +11 0.689706 0.757500 0.011176 0.007727 +12 0.421765 0.757273 0.011176 0.007727 +12 0.530588 0.754318 0.011176 0.007273 +12 0.141618 0.753182 0.012059 0.006818 +11 0.495441 0.751136 0.010294 0.008182 +12 0.361912 0.750682 0.009706 0.007273 +12 0.124118 0.750000 0.011176 0.007727 +12 0.343676 0.747727 0.010294 0.007727 +12 0.273382 0.747273 0.012059 0.007727 +12 0.246912 0.746818 0.012059 0.007727 +12 0.635147 0.767045 0.012059 0.006364 +11 0.304118 0.743409 0.011176 0.007273 +18 0.482647 0.681136 0.011176 0.004545 +11 0.400147 0.681136 0.010294 0.004545 +18 0.324559 0.681136 0.012059 0.004545 +11 0.882941 0.651705 0.009412 0.007500 +11 0.590588 0.652159 0.010588 0.007500 +12 0.473676 0.668409 0.007941 0.005455 +12 0.726029 0.658295 0.010882 0.007045 +12 0.745000 0.662159 0.011765 0.007500 +12 0.968235 0.655455 0.011176 0.006818 +12 0.570588 0.655568 0.011765 0.007045 +12 0.390882 0.655000 0.007647 0.005909 +12 0.863382 0.655000 0.012059 0.006818 +12 0.353088 0.652500 0.007941 0.005455 +12 0.949265 0.651818 0.009706 0.006818 +11 0.661324 0.651818 0.010882 0.007727 +11 0.665882 0.672955 0.012941 0.005455 +11 0.678382 0.655682 0.010882 0.007273 +12 0.340735 0.648409 0.007941 0.005455 +11 0.911912 0.648409 0.011471 0.007273 +11 0.623529 0.648523 0.011765 0.007500 +11 0.310735 0.645341 0.007941 0.005682 +12 0.711471 0.644091 0.008235 0.005909 +18 0.123676 0.621250 0.010882 0.007045 +13 0.249706 0.571364 0.011765 0.006818 +18 0.335882 0.565682 0.009412 0.007273 +12 0.341176 0.545227 0.010588 0.008182 +11 0.351912 0.566477 0.013235 0.004773 +12 0.363529 0.532273 0.010588 0.006818 +18 0.030294 0.564773 0.007059 0.006364 +13 0.147941 0.559773 0.011176 0.005000 +13 0.147206 0.524773 0.011471 0.007273 +11 0.394559 0.535682 0.010882 0.007273 +12 0.415147 0.532273 0.009706 0.007727 +13 0.693824 0.552159 0.014706 0.004773 +12 0.691029 0.528295 0.010882 0.006136 +18 0.491618 0.551818 0.010294 0.004091 +13 0.488971 0.528864 0.011471 0.007273 +18 0.713971 0.550455 0.008529 0.005000 +11 0.705588 0.547500 0.007059 0.008182 +12 0.711176 0.524205 0.008824 0.007045 +13 0.300147 0.551591 0.010294 0.007273 +13 0.303088 0.571364 0.012059 0.004091 +18 0.319559 0.569091 0.010294 0.005909 +13 0.319265 0.548864 0.010882 0.006364 +18 0.531029 0.549318 0.022647 0.005455 +13 0.552059 0.528864 0.010588 0.007273 +12 0.531912 0.521818 0.011471 0.007727 +13 0.215441 0.547955 0.011471 0.006364 +12 0.604706 0.521477 0.011176 0.007955 +13 0.232206 0.547841 0.012059 0.007045 +13 0.181324 0.547727 0.011471 0.006818 +12 0.761618 0.507841 0.010882 0.007955 +13 0.510147 0.525114 0.010294 0.007045 +17 0.925735 0.544545 0.026176 0.004091 +11 0.938088 0.507955 0.010882 0.009091 +11 0.898971 0.544545 0.022059 0.004091 +13 0.916471 0.512386 0.010000 0.007955 +12 0.634853 0.544432 0.019706 0.004318 +12 0.634706 0.521591 0.010588 0.007273 +17 0.805000 0.545000 0.015294 0.005909 +13 0.816765 0.508636 0.011765 0.007727 +17 0.824559 0.543523 0.010882 0.004773 +18 0.835294 0.504318 0.010588 0.007273 +11 0.733971 0.545000 0.014412 0.009545 +12 0.742059 0.521932 0.010588 0.007955 +12 0.851324 0.540568 0.007941 0.007045 +12 0.857647 0.501136 0.010588 0.008182 +12 0.435147 0.529205 0.011471 0.007955 +11 0.440000 0.552500 0.019412 0.005455 +12 0.456618 0.524773 0.009706 0.006364 +12 0.583971 0.524659 0.009706 0.007955 +11 0.164706 0.524432 0.011176 0.007500 +13 0.656765 0.517955 0.009412 0.007273 +12 0.795735 0.511023 0.009706 0.007955 +18 0.957500 0.505000 0.009706 0.006818 +18 0.893088 0.504432 0.010294 0.007500 +18 0.125735 0.501136 0.012059 0.008182 +17 0.842500 0.469205 0.007941 0.008864 +18 0.844853 0.444091 0.010882 0.006364 +13 0.674853 0.436364 0.011471 0.006818 +13 0.219118 0.457045 0.012353 0.004545 +12 0.225294 0.435455 0.012353 0.007727 +18 0.331618 0.455341 0.011471 0.007955 +12 0.337794 0.425455 0.010294 0.007727 +12 0.342500 0.455341 0.011471 0.007955 +13 0.355882 0.422159 0.010588 0.008409 +11 0.179265 0.454773 0.009118 0.009091 +12 0.187794 0.428864 0.011471 0.007273 +17 0.684412 0.453182 0.008824 0.013636 +11 0.693235 0.453182 0.008824 0.013636 +12 0.693088 0.432500 0.010882 0.007273 +11 0.702059 0.453182 0.008824 0.013636 +12 0.710882 0.453182 0.008824 0.013636 +12 0.713088 0.429318 0.011471 0.007273 +11 0.719706 0.453182 0.008824 0.013636 +12 0.731471 0.424886 0.010588 0.008409 +12 0.573676 0.422273 0.011471 0.007727 +12 0.769559 0.418977 0.010294 0.007500 +13 0.393088 0.414545 0.011471 0.007727 +12 0.607353 0.449091 0.010000 0.013182 +17 0.597353 0.449091 0.010000 0.013182 +12 0.602500 0.426136 0.011471 0.007273 +17 0.617353 0.449091 0.010000 0.013182 +12 0.621029 0.429773 0.010882 0.007273 +17 0.625441 0.447841 0.016176 0.004773 +11 0.627353 0.449091 0.010000 0.013182 +12 0.640735 0.432500 0.010294 0.007273 +18 0.920735 0.443523 0.011471 0.007955 +12 0.932794 0.443523 0.011471 0.007955 +12 0.936029 0.411591 0.009118 0.007273 +18 0.583529 0.441591 0.011765 0.004545 +17 0.587353 0.449091 0.010000 0.013182 +17 0.028971 0.442727 0.007941 0.006818 +13 0.955588 0.439886 0.014706 0.004318 +13 0.953971 0.408750 0.010882 0.007955 +11 0.953235 0.445114 0.024118 0.004773 +12 0.971471 0.405455 0.009412 0.007727 +13 0.879853 0.407727 0.010882 0.008636 +18 0.536324 0.439091 0.015588 0.004091 +13 0.318824 0.435455 0.011176 0.007727 +13 0.149706 0.435682 0.011765 0.008182 +11 0.154559 0.452500 0.014412 0.003636 +17 0.161029 0.454773 0.009118 0.009091 +12 0.168824 0.432159 0.010000 0.007500 +18 0.170147 0.454773 0.009118 0.009091 +13 0.243824 0.432045 0.011176 0.008182 +13 0.262794 0.428864 0.012059 0.007273 +13 0.506765 0.425455 0.010588 0.007727 +13 0.204853 0.425341 0.010294 0.007500 +13 0.126324 0.425455 0.010882 0.007727 +13 0.299118 0.425227 0.010000 0.008182 +13 0.750882 0.421818 0.010588 0.007727 +13 0.476912 0.421932 0.010882 0.007955 +13 0.525147 0.421705 0.012059 0.008409 +13 0.412059 0.419659 0.010588 0.007955 +13 0.554412 0.418977 0.011176 0.007500 +13 0.442647 0.418864 0.011176 0.007273 +13 0.374412 0.417727 0.010588 0.007727 +13 0.787941 0.414659 0.011765 0.007955 +12 0.860882 0.411591 0.010000 0.007273 +18 0.855735 0.444091 0.010882 0.006364 +13 0.807941 0.408409 0.011765 0.008182 +12 0.898824 0.404545 0.010000 0.007727 +18 0.842059 0.401591 0.011765 0.008182 +18 0.917794 0.400909 0.011471 0.007727 +18 0.185441 0.365227 0.010294 0.007273 +12 0.366324 0.369545 0.010882 0.005909 +13 0.273088 0.369545 0.011471 0.006818 +17 0.147206 0.318068 0.011471 0.007500 +13 0.303529 0.368636 0.011176 0.006818 +13 0.348971 0.364773 0.011471 0.007273 +12 0.387206 0.364318 0.010882 0.007273 +13 0.408235 0.362273 0.011176 0.005909 +13 0.563676 0.357955 0.010294 0.007273 +12 0.577206 0.322386 0.011471 0.007955 +11 0.549706 0.341477 0.011765 0.007045 +12 0.568088 0.322386 0.011471 0.007955 +17 0.581176 0.351818 0.011176 0.007727 +17 0.592500 0.321364 0.015588 0.008636 +17 0.597647 0.347955 0.010000 0.006364 +12 0.448382 0.357955 0.010294 0.007273 +13 0.930735 0.356705 0.009118 0.007500 +12 0.929706 0.338182 0.009412 0.007727 +12 0.943676 0.355795 0.012059 0.007955 +13 0.943971 0.335227 0.010882 0.007273 +18 0.953971 0.354432 0.011471 0.007955 +13 0.247206 0.351364 0.010294 0.006818 +12 0.227059 0.368068 0.011176 0.007500 +12 0.241765 0.331364 0.018824 0.004091 +12 0.863971 0.351477 0.010882 0.007955 +17 0.875588 0.327614 0.012353 0.010227 +12 0.879853 0.347727 0.010882 0.006818 +17 0.888529 0.324318 0.010000 0.014545 +12 0.828235 0.348409 0.010000 0.006364 +13 0.830147 0.325568 0.010882 0.012045 +13 0.487941 0.348182 0.011765 0.005909 +13 0.626618 0.344886 0.010294 0.006591 +13 0.508824 0.345227 0.011765 0.007273 +11 0.894559 0.344545 0.010882 0.006364 +12 0.898529 0.324318 0.010000 0.014545 +12 0.812500 0.344318 0.011471 0.007273 +12 0.819265 0.325568 0.010882 0.012045 +13 0.797794 0.341591 0.011471 0.007273 +17 0.808382 0.325568 0.010882 0.012045 +13 0.470588 0.341591 0.011176 0.006364 +11 0.910147 0.341364 0.011471 0.006818 +12 0.908529 0.324318 0.010000 0.014545 +13 0.669706 0.341364 0.010588 0.006818 +13 0.641029 0.341364 0.010882 0.006818 +13 0.611912 0.341364 0.010294 0.006818 +11 0.167794 0.341591 0.012647 0.007273 +12 0.124118 0.341591 0.012353 0.007273 +13 0.773235 0.338068 0.010588 0.007500 +12 0.700147 0.337955 0.011471 0.007273 +17 0.712206 0.321477 0.009706 0.004773 +13 0.727206 0.341591 0.010294 0.007273 +12 0.722500 0.314886 0.016176 0.004773 +12 0.738529 0.316477 0.011176 0.009318 +13 0.742500 0.337955 0.010294 0.007273 +13 0.757353 0.334318 0.010588 0.007273 +13 0.958382 0.331364 0.010294 0.006818 +17 0.961912 0.353295 0.011471 0.007955 +12 0.973971 0.324886 0.009706 0.007500 +13 0.856765 0.268068 0.011765 0.007045 +13 0.801471 0.268523 0.010588 0.008409 +12 0.731618 0.268068 0.010882 0.007955 +13 0.772206 0.267727 0.010882 0.008636 +11 0.873382 0.265455 0.010882 0.007727 +13 0.688971 0.265455 0.011471 0.007727 +13 0.837500 0.264773 0.010882 0.007273 +12 0.438971 0.261364 0.011471 0.007727 +13 0.891029 0.260682 0.010882 0.007273 +12 0.671324 0.261023 0.011471 0.008864 +12 0.041912 0.228409 0.008529 0.007273 +17 0.032059 0.235114 0.008235 0.007045 +11 0.419853 0.257386 0.010882 0.007045 +12 0.209265 0.257614 0.010882 0.007500 +17 0.221765 0.233409 0.013529 0.010909 +12 0.225147 0.251023 0.012059 0.007045 +17 0.235882 0.229091 0.009412 0.012273 +11 0.239118 0.247386 0.010588 0.006136 +12 0.245294 0.229091 0.009412 0.012273 +11 0.656618 0.257159 0.010294 0.007500 +13 0.641324 0.257273 0.010882 0.007727 +13 0.636029 0.242159 0.016176 0.004773 +17 0.654853 0.240000 0.014412 0.009545 +13 0.920147 0.256364 0.010294 0.007727 +12 0.930000 0.220227 0.008824 0.006364 +11 0.601618 0.256591 0.010882 0.008182 +17 0.613088 0.237159 0.012647 0.003864 +13 0.615441 0.257273 0.010294 0.007727 +12 0.563824 0.254091 0.011176 0.006818 +12 0.377059 0.254318 0.011765 0.007273 +12 0.174559 0.253977 0.012059 0.006591 +11 0.358971 0.251023 0.010294 0.007045 +12 0.544853 0.250909 0.011471 0.007727 +13 0.750000 0.250455 0.011765 0.007727 +12 0.293676 0.250341 0.011471 0.007500 +12 0.153676 0.250455 0.012647 0.007727 +13 0.952794 0.247955 0.010882 0.004545 +11 0.331471 0.247727 0.010588 0.005909 +11 0.518088 0.247614 0.012059 0.006591 +12 0.478824 0.247727 0.011176 0.006818 +12 0.459853 0.247841 0.012059 0.007045 +11 0.125294 0.247045 0.012353 0.006364 +12 0.971912 0.244318 0.010294 0.007273 +11 0.256324 0.244318 0.012059 0.007273 +12 0.254706 0.229091 0.009412 0.012273 +12 0.937647 0.240455 0.010000 0.006818 +13 0.938824 0.220227 0.008824 0.006364 +11 0.947647 0.220227 0.008824 0.006364 +12 0.275294 0.240455 0.011176 0.006818 +12 0.143676 0.166250 0.010294 0.006136 +17 0.813971 0.168636 0.008529 0.011364 +11 0.818382 0.150455 0.011471 0.006818 +12 0.923382 0.165227 0.010294 0.007273 +12 0.511324 0.164432 0.011471 0.007500 +11 0.492794 0.161023 0.008529 0.007045 +17 0.505882 0.129091 0.015294 0.004091 +11 0.125441 0.162614 0.011471 0.007500 +12 0.903676 0.161364 0.010294 0.006818 +11 0.317206 0.161591 0.011471 0.007273 +13 0.685147 0.161364 0.010882 0.007727 +13 0.718971 0.157614 0.010294 0.006591 +13 0.703382 0.161136 0.010882 0.007273 +17 0.715294 0.140909 0.012353 0.004091 +12 0.451618 0.157727 0.010882 0.006818 +12 0.862794 0.157386 0.010882 0.007045 +12 0.645147 0.157273 0.011471 0.006818 +12 0.276618 0.157727 0.011471 0.007727 +11 0.431324 0.154773 0.011471 0.007273 +12 0.365588 0.154545 0.011176 0.007727 +12 0.254706 0.154545 0.011176 0.007727 +12 0.843088 0.153864 0.011471 0.007273 +11 0.853088 0.134205 0.010294 0.004318 +13 0.735147 0.154205 0.010882 0.007955 +12 0.626176 0.153977 0.011765 0.007500 +12 0.164559 0.152045 0.012059 0.006364 +12 0.177059 0.128864 0.013529 0.003636 +12 0.753676 0.151136 0.010294 0.005455 +11 0.226912 0.151818 0.012059 0.006818 +12 0.551765 0.150909 0.011176 0.005909 +12 0.184412 0.151591 0.010588 0.007273 +12 0.964118 0.151023 0.011176 0.006591 +11 0.597794 0.150795 0.011471 0.006136 +12 0.532500 0.150795 0.011471 0.006136 +12 0.528529 0.128864 0.013529 0.003636 +12 0.942941 0.150682 0.011176 0.006364 +11 0.405588 0.150682 0.011176 0.006364 +12 0.777647 0.150455 0.010588 0.006818 +12 0.344265 0.144318 0.012647 0.007273 +12 0.031618 0.139886 0.009118 0.007955 +11 0.479265 0.065909 0.009706 0.006818 +17 0.431324 0.066477 0.012647 0.007955 +17 0.784118 0.065568 0.012353 0.007955 +11 0.834265 0.064659 0.010294 0.007045 +12 0.739265 0.061591 0.010882 0.008182 +12 0.720588 0.058068 0.010588 0.007500 +17 0.733676 0.038750 0.013824 0.003864 +11 0.366324 0.058636 0.009706 0.006818 +17 0.379853 0.039318 0.015588 0.005000 +11 0.384853 0.062273 0.011471 0.007727 +12 0.317059 0.056364 0.011176 0.007727 +12 0.297794 0.056477 0.011471 0.007955 +17 0.312353 0.032727 0.015882 0.004091 +11 0.963235 0.055682 0.010588 0.007273 +11 0.945882 0.052045 0.010588 0.006364 +17 0.958382 0.032614 0.013824 0.005227 +13 0.703088 0.055341 0.010882 0.007500 +13 0.672941 0.055341 0.011176 0.007500 +11 0.655441 0.055227 0.010294 0.007273 +12 0.174853 0.053409 0.011471 0.007273 +13 0.688676 0.052273 0.011471 0.006818 +12 0.613824 0.052500 0.011765 0.007273 +12 0.525441 0.052500 0.010882 0.007273 +13 0.333235 0.052614 0.012353 0.007500 +17 0.346176 0.032614 0.014706 0.003864 +13 0.349853 0.056364 0.011471 0.007727 +12 0.259559 0.052955 0.011471 0.008182 +12 0.238971 0.049659 0.011471 0.007045 +11 0.916029 0.049318 0.011471 0.007273 +12 0.880147 0.049091 0.010882 0.006818 +12 0.861029 0.048864 0.010882 0.007273 +12 0.591324 0.048750 0.011471 0.007045 +11 0.216471 0.046591 0.012353 0.008182 +11 0.565147 0.045682 0.010882 0.007273 +13 0.041471 0.042614 0.011765 0.004773 +12 0.153824 0.042955 0.011765 0.007273 +11 0.507794 0.042500 0.011471 0.007273 +3 0.785441 0.340568 0.007941 0.017955 +2 0.040147 0.028523 0.023235 0.027500 +3 0.760147 0.267841 0.007941 0.021591 +3 0.883088 0.853750 0.007941 0.018864 +4 0.540735 0.418977 0.011471 0.022045 +4 0.213382 0.367841 0.010882 0.021591 +4 0.492206 0.425568 0.010882 0.021591 +5 0.787794 0.763068 0.007941 0.012955 +3 0.588971 0.425114 0.007941 0.021591 +4 0.788676 0.267386 0.010882 0.021591 +3 0.628088 0.257614 0.007353 0.021136 +4 0.620735 0.521705 0.010294 0.020227 +3 0.260735 0.368295 0.007941 0.021591 +4 0.602206 0.970568 0.010882 0.021591 +3 0.514853 0.961250 0.007941 0.022045 +3 0.320735 0.864432 0.005588 0.013864 +3 0.445441 0.854205 0.007941 0.018864 +3 0.738676 0.764205 0.007353 0.021591 +4 0.717206 0.268295 0.011471 0.021591 +4 0.836618 0.776023 0.010294 0.017045 +5 0.109853 0.850114 0.007353 0.011591 +3 0.900147 0.764659 0.007941 0.021591 +3 0.316029 0.746477 0.005588 0.014318 +5 0.462794 0.961023 0.009706 0.017955 +5 0.732500 0.960795 0.009118 0.017500 +3 0.783382 0.960341 0.007353 0.022045 +3 0.428676 0.419205 0.007353 0.021591 +4 0.288676 0.368068 0.010882 0.022045 +4 0.436618 0.761705 0.011471 0.021136 +4 0.259853 0.746932 0.010882 0.020682 +3 0.222206 0.945341 0.007353 0.019318 +4 0.075882 0.037727 0.010588 0.020909 +4 0.065588 0.027273 0.010000 0.020909 +4 0.087647 0.023864 0.010588 0.020455 +4 0.074706 0.335227 0.010588 0.020455 +4 0.063235 0.324545 0.010000 0.020909 +4 0.071176 0.753864 0.010588 0.021364 +4 0.060588 0.742955 0.010588 0.021364 +4 0.080588 0.739773 0.010588 0.020455 +4 0.074412 0.442727 0.011176 0.020000 +4 0.062353 0.432045 0.010588 0.020455 +4 0.084118 0.428409 0.010588 0.020455 +4 0.075000 0.139091 0.010000 0.020909 +4 0.064706 0.128182 0.010588 0.020909 +4 0.085882 0.125000 0.010588 0.020000 +4 0.070588 0.844545 0.010588 0.020000 +4 0.061176 0.834773 0.010588 0.021364 +4 0.080294 0.831364 0.011176 0.020909 +4 0.073235 0.541591 0.010000 0.019545 +4 0.061471 0.531364 0.010000 0.020909 +4 0.082941 0.528182 0.010588 0.020000 +4 0.070882 0.662273 0.011176 0.020000 +4 0.060588 0.652273 0.010588 0.020909 +4 0.082059 0.649091 0.011176 0.020909 +4 0.070294 0.936818 0.010000 0.020000 +4 0.060882 0.926136 0.010000 0.021364 +4 0.080000 0.922955 0.010588 0.020455 +3 0.047941 0.126705 0.007647 0.021136 +4 0.062794 0.224659 0.007941 0.021136 +3 0.069559 0.229886 0.007941 0.021136 +4 0.076176 0.234432 0.007647 0.021136 +5 0.026029 0.843523 0.007941 0.021136 +3 0.033971 0.838977 0.007941 0.021136 +3 0.042059 0.833068 0.007647 0.021136 +5 0.026029 0.935341 0.007941 0.021136 +4 0.033971 0.927159 0.007941 0.021136 +3 0.042059 0.924432 0.007647 0.021136 +3 0.035441 0.656477 0.007941 0.021136 +3 0.043235 0.649886 0.007647 0.021136 +3 0.043824 0.529432 0.007647 0.021136 +4 0.037206 0.742614 0.007941 0.021136 +3 0.043824 0.741250 0.007647 0.021136 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_2.jpg b/data_dataset/tch/debug/debug_2.jpg new file mode 100644 index 0000000..09b0c57 Binary files /dev/null and b/data_dataset/tch/debug/debug_2.jpg differ diff --git a/data_dataset/tch/debug/debug_2.txt b/data_dataset/tch/debug/debug_2.txt new file mode 100644 index 0000000..3421681 --- /dev/null +++ b/data_dataset/tch/debug/debug_2.txt @@ -0,0 +1,608 @@ +10 0.126912 0.980568 0.017353 0.002955 +10 0.207206 0.979205 0.014412 0.005682 +10 0.863088 0.977614 0.026176 0.006136 +10 0.886912 0.976023 0.009118 0.004773 +10 0.797206 0.976023 0.007353 0.004773 +10 0.578676 0.976705 0.011471 0.006136 +10 0.902206 0.975114 0.009118 0.004773 +10 0.798971 0.970341 0.014412 0.005227 +10 0.414265 0.968295 0.008529 0.003864 +10 0.329559 0.951932 0.008529 0.002955 +10 0.564853 0.938068 0.007353 0.003409 +10 0.936324 0.964205 0.010294 0.005682 +10 0.423382 0.975795 0.009118 0.003409 +10 0.659559 0.875568 0.009706 0.005682 +10 0.418088 0.866477 0.016176 0.002955 +10 0.302500 0.866023 0.017941 0.004773 +9 0.406029 0.863977 0.008529 0.009773 +10 0.629265 0.860114 0.007941 0.003864 +10 0.912500 0.859659 0.010882 0.004773 +10 0.596324 0.855795 0.007941 0.003409 +9 0.147794 0.846477 0.009706 0.023864 +10 0.163382 0.863068 0.038529 0.005227 +10 0.375441 0.863977 0.014412 0.003409 +10 0.346324 0.863068 0.038529 0.005227 +10 0.251618 0.751023 0.016176 0.005682 +10 0.600441 0.740568 0.015000 0.004773 +10 0.857206 0.738750 0.008529 0.004773 +10 0.493382 0.738068 0.007941 0.003409 +7 0.192500 0.736591 0.008529 0.027727 +10 0.702794 0.730568 0.010294 0.004773 +7 0.788971 0.723523 0.013235 0.017045 +7 0.565441 0.723295 0.013235 0.017500 +7 0.134559 0.723068 0.012647 0.017955 +7 0.342206 0.722386 0.012647 0.017500 +10 0.433088 0.711250 0.008529 0.006136 +10 0.633382 0.728295 0.012647 0.006591 +10 0.467794 0.637386 0.007353 0.002955 +10 0.238971 0.636932 0.008529 0.004773 +10 0.393382 0.631023 0.009118 0.005682 +10 0.278088 0.629659 0.011471 0.005682 +7 0.132500 0.625341 0.012059 0.016136 +7 0.573088 0.624205 0.013235 0.017500 +6 0.160147 0.623750 0.013235 0.025682 +6 0.601618 0.622841 0.012647 0.025682 +10 0.840441 0.612386 0.007941 0.004773 +10 0.880147 0.606477 0.007353 0.006591 +10 0.426029 0.605795 0.007353 0.005227 +9 0.326029 0.613977 0.013235 0.046136 +10 0.452794 0.523977 0.013824 0.002500 +10 0.884559 0.520114 0.007941 0.002955 +10 0.599853 0.513977 0.029118 0.005227 +10 0.134559 0.505795 0.027941 0.003409 +10 0.203382 0.496364 0.026765 0.002727 +9 0.652206 0.494773 0.009118 0.038636 +10 0.775147 0.435568 0.007941 0.003864 +10 0.268088 0.422386 0.007941 0.005682 +10 0.795147 0.417386 0.009118 0.005682 +10 0.422206 0.409659 0.007941 0.002955 +10 0.173382 0.404432 0.011471 0.006136 +10 0.312794 0.400795 0.007941 0.002500 +10 0.214559 0.402159 0.009118 0.005227 +10 0.666324 0.395568 0.007941 0.002955 +10 0.797500 0.393523 0.009118 0.004318 +10 0.895735 0.385568 0.009118 0.002955 +9 0.497500 0.390455 0.010294 0.025455 +9 0.163382 0.389773 0.005588 0.043182 +10 0.443971 0.371705 0.007941 0.005227 +9 0.317500 0.382273 0.010294 0.052727 +10 0.108088 0.338750 0.010294 0.003864 +10 0.249559 0.332159 0.010882 0.005227 +10 0.361912 0.329659 0.009706 0.006591 +10 0.315735 0.327159 0.016176 0.006136 +10 0.397500 0.323068 0.007941 0.003409 +9 0.329853 0.315795 0.009118 0.037045 +9 0.650147 0.309886 0.009706 0.024318 +10 0.504853 0.322841 0.012059 0.006591 +9 0.780147 0.298750 0.016765 0.047500 +9 0.793088 0.296932 0.010882 0.049318 +9 0.576324 0.297614 0.012647 0.047955 +9 0.949853 0.298068 0.013824 0.048864 +10 0.929853 0.237614 0.007941 0.005227 +10 0.806029 0.235568 0.007353 0.002955 +10 0.815147 0.236250 0.010294 0.006136 +10 0.291029 0.235114 0.010294 0.004773 +10 0.212500 0.234432 0.012059 0.004318 +10 0.517206 0.223750 0.009706 0.005682 +9 0.768382 0.227955 0.009706 0.030455 +9 0.596324 0.225341 0.016176 0.037045 +9 0.680735 0.225795 0.016765 0.037045 +9 0.194853 0.229432 0.012059 0.032500 +10 0.277206 0.216932 0.012059 0.006591 +10 0.118971 0.213295 0.009706 0.006591 +10 0.801029 0.209659 0.009118 0.004773 +10 0.389265 0.208750 0.009118 0.002955 +9 0.181912 0.206250 0.008529 0.013409 +9 0.290735 0.206023 0.007353 0.012955 +10 0.131618 0.203523 0.018529 0.005227 +10 0.663971 0.201932 0.007941 0.005682 +10 0.649559 0.201932 0.020294 0.005682 +8 0.614853 0.215568 0.012059 0.037500 +10 0.686912 0.199886 0.019706 0.002500 +10 0.569265 0.200114 0.019706 0.002955 +9 0.233676 0.209659 0.015588 0.042045 +10 0.780441 0.148295 0.007941 0.006591 +9 0.560735 0.151705 0.009706 0.028864 +10 0.568971 0.140114 0.007353 0.002955 +10 0.916912 0.138750 0.010294 0.005682 +10 0.348676 0.133523 0.009118 0.003409 +9 0.668382 0.140568 0.016765 0.030227 +9 0.939265 0.140341 0.016176 0.030682 +9 0.851912 0.138977 0.015588 0.034318 +10 0.208676 0.128750 0.010294 0.006591 +10 0.296912 0.126932 0.010294 0.003864 +10 0.822206 0.121250 0.007941 0.002500 +10 0.660441 0.121250 0.009118 0.003409 +9 0.191912 0.121477 0.006176 0.013864 +10 0.419559 0.121477 0.007353 0.006591 +10 0.841912 0.120114 0.015588 0.005682 +9 0.113382 0.137386 0.017353 0.046591 +9 0.312794 0.117614 0.010294 0.012500 +10 0.630441 0.114659 0.015000 0.005682 +10 0.678088 0.112614 0.011471 0.002500 +10 0.906912 0.112159 0.017353 0.003409 +10 0.141912 0.061250 0.010882 0.004318 +10 0.507206 0.061023 0.009706 0.005682 +10 0.463676 0.060795 0.009706 0.005227 +10 0.952500 0.055341 0.008529 0.005227 +9 0.825735 0.056932 0.016176 0.029318 +9 0.609265 0.056023 0.016176 0.030227 +9 0.491029 0.056250 0.016176 0.030682 +9 0.382500 0.056023 0.016765 0.030227 +9 0.718088 0.056023 0.016176 0.030227 +9 0.274853 0.055795 0.016765 0.030682 +9 0.168676 0.055795 0.016176 0.030682 +9 0.933382 0.045795 0.015000 0.037955 +10 0.812794 0.037614 0.010294 0.003409 +10 0.705147 0.037614 0.009118 0.003409 +10 0.617794 0.036023 0.009706 0.004773 +10 0.179265 0.031250 0.015000 0.005227 +9 0.469853 0.048977 0.010294 0.029773 +12 0.547353 0.964318 0.005294 0.005000 +14 0.927500 0.965455 0.013235 0.008636 +14 0.502647 0.964318 0.010000 0.006364 +14 0.501912 0.926250 0.010294 0.008409 +13 0.654559 0.964205 0.012059 0.007955 +13 0.683676 0.961023 0.011471 0.007045 +13 0.723676 0.958068 0.011471 0.007500 +13 0.753676 0.954659 0.010294 0.007045 +14 0.411912 0.954318 0.010294 0.006364 +13 0.328971 0.954318 0.009118 0.006364 +14 0.230000 0.954318 0.010000 0.006364 +13 0.146324 0.953864 0.009706 0.006364 +13 0.782206 0.951364 0.012059 0.007727 +14 0.623971 0.951023 0.012059 0.007955 +14 0.821618 0.944659 0.010882 0.007955 +14 0.852500 0.941136 0.010294 0.007273 +14 0.592941 0.941023 0.011176 0.007045 +14 0.561912 0.940795 0.010294 0.007500 +14 0.881912 0.938182 0.011471 0.007727 +14 0.920735 0.934545 0.010294 0.007727 +14 0.949559 0.931364 0.010294 0.007727 +14 0.533382 0.929659 0.010882 0.007955 +13 0.288088 0.917273 0.010882 0.007727 +13 0.106029 0.916250 0.010294 0.007500 +14 0.473529 0.915909 0.010000 0.007727 +13 0.442941 0.912955 0.010000 0.007273 +12 0.371029 0.913068 0.009706 0.007500 +13 0.258971 0.913182 0.009118 0.007727 +12 0.189118 0.912500 0.010000 0.007273 +14 0.801324 0.854886 0.009118 0.003864 +13 0.412941 0.854773 0.007059 0.003636 +11 0.911912 0.852273 0.022059 0.005909 +12 0.920441 0.821023 0.010882 0.007955 +13 0.654559 0.850114 0.012059 0.007955 +13 0.682500 0.846591 0.010294 0.007273 +14 0.500441 0.843409 0.007353 0.006364 +14 0.501912 0.812614 0.009118 0.008409 +13 0.723676 0.843750 0.011471 0.007955 +13 0.330441 0.840455 0.011471 0.006818 +13 0.753676 0.840227 0.010294 0.007273 +13 0.412794 0.840227 0.009706 0.007273 +13 0.231765 0.840227 0.011176 0.007273 +13 0.147647 0.840114 0.010000 0.007045 +14 0.782794 0.837045 0.012059 0.008182 +14 0.624706 0.836932 0.012353 0.007955 +14 0.823088 0.830909 0.011471 0.007727 +14 0.851618 0.827500 0.009706 0.006364 +14 0.561618 0.826932 0.010882 0.007045 +14 0.594412 0.826932 0.011765 0.007955 +14 0.880735 0.824432 0.011471 0.007500 +14 0.533971 0.816250 0.010882 0.007500 +14 0.949706 0.813864 0.011176 0.008182 +13 0.288235 0.802955 0.010588 0.007273 +14 0.473971 0.801818 0.010882 0.007727 +13 0.106176 0.801818 0.011176 0.007727 +12 0.189706 0.798864 0.009412 0.006364 +13 0.259559 0.798977 0.010294 0.007500 +12 0.443529 0.798523 0.009412 0.007500 +12 0.371029 0.798409 0.009706 0.008182 +11 0.164559 0.740455 0.008529 0.007727 +14 0.489706 0.737386 0.007647 0.007955 +14 0.490000 0.692045 0.010000 0.008182 +13 0.375147 0.736477 0.010882 0.007955 +14 0.674706 0.733295 0.005882 0.004773 +12 0.676618 0.698295 0.009118 0.008409 +14 0.838971 0.735795 0.011471 0.007955 +18 0.847500 0.734659 0.011471 0.007955 +14 0.189559 0.733182 0.011471 0.006818 +11 0.933529 0.732045 0.008824 0.005000 +14 0.939412 0.696250 0.008824 0.007500 +14 0.923088 0.731364 0.007941 0.006818 +12 0.683529 0.730455 0.009412 0.007727 +13 0.689118 0.722500 0.010588 0.008182 +13 0.692353 0.692273 0.009412 0.006818 +18 0.627206 0.729318 0.010882 0.007273 +14 0.620441 0.709545 0.009706 0.007727 +14 0.400882 0.729659 0.011176 0.007955 +14 0.204853 0.726591 0.010294 0.007273 +14 0.821912 0.720227 0.010294 0.007273 +14 0.864559 0.717045 0.010882 0.008182 +14 0.838382 0.716932 0.010294 0.007955 +14 0.236176 0.716818 0.010588 0.007727 +14 0.221029 0.716818 0.010882 0.007727 +14 0.595147 0.716477 0.012059 0.007955 +14 0.416618 0.716364 0.011471 0.007727 +14 0.448088 0.713182 0.009706 0.007727 +13 0.432500 0.712955 0.010294 0.007273 +14 0.262794 0.709659 0.010882 0.007955 +14 0.474559 0.706250 0.010882 0.007500 +14 0.645441 0.706023 0.010294 0.007955 +14 0.899559 0.702841 0.011471 0.007955 +12 0.906912 0.739091 0.015588 0.006818 +14 0.915147 0.698977 0.008529 0.007500 +14 0.882206 0.702841 0.009706 0.007955 +14 0.278529 0.702159 0.010588 0.007500 +14 0.660735 0.698295 0.009118 0.007955 +12 0.105588 0.695341 0.010000 0.007500 +14 0.965147 0.692614 0.010882 0.008409 +14 0.294853 0.691364 0.010294 0.007727 +12 0.310735 0.691364 0.010294 0.008636 +12 0.535882 0.688523 0.010588 0.007500 +14 0.505147 0.687955 0.010882 0.008182 +14 0.716618 0.684886 0.009118 0.008409 +18 0.742794 0.681477 0.010882 0.007955 +18 0.761029 0.681136 0.010882 0.008182 +12 0.199853 0.645909 0.010882 0.007727 +11 0.212500 0.611023 0.013824 0.009318 +14 0.215735 0.638409 0.010882 0.008182 +14 0.646618 0.645341 0.011471 0.008409 +14 0.662794 0.637955 0.010882 0.008182 +14 0.687941 0.634432 0.010588 0.006591 +14 0.687206 0.611818 0.017353 0.006364 +14 0.241324 0.634318 0.010294 0.006364 +14 0.702794 0.631818 0.010882 0.007727 +14 0.256029 0.631818 0.010294 0.007727 +13 0.450441 0.627500 0.006176 0.004545 +13 0.450441 0.607841 0.009706 0.007955 +14 0.727206 0.627727 0.010294 0.006818 +14 0.278529 0.627727 0.010588 0.006818 +14 0.776029 0.625114 0.010294 0.007955 +14 0.751324 0.625000 0.010294 0.007727 +14 0.324265 0.625227 0.011471 0.008182 +14 0.301765 0.625114 0.012353 0.007955 +14 0.798971 0.621705 0.010294 0.007500 +14 0.346618 0.621705 0.010294 0.007500 +14 0.371912 0.618295 0.009118 0.007955 +14 0.824265 0.618068 0.010294 0.008409 +14 0.839265 0.614773 0.009706 0.007273 +14 0.386618 0.614773 0.009118 0.007273 +14 0.411324 0.611477 0.010294 0.007955 +14 0.864118 0.611250 0.011176 0.008409 +11 0.867794 0.641136 0.007353 0.004545 +14 0.878382 0.607727 0.009118 0.007727 +14 0.903676 0.607727 0.009118 0.007727 +14 0.425735 0.607727 0.008529 0.007727 +14 0.918088 0.603750 0.009706 0.007955 +14 0.465441 0.603636 0.010294 0.007727 +14 0.965294 0.600455 0.010588 0.007727 +14 0.941176 0.600114 0.009412 0.007955 +14 0.488529 0.600114 0.010000 0.007955 +14 0.510735 0.599773 0.010294 0.008182 +12 0.547206 0.596591 0.010294 0.007273 +12 0.105147 0.572955 0.009706 0.007273 +17 0.513088 0.534432 0.007941 0.004773 +13 0.511912 0.495227 0.010294 0.008182 +13 0.146324 0.530227 0.010882 0.007273 +17 0.830882 0.527841 0.005882 0.007045 +13 0.178382 0.526818 0.010294 0.007727 +13 0.251471 0.523523 0.011176 0.007500 +13 0.218824 0.523409 0.011176 0.007273 +13 0.284559 0.520341 0.010882 0.007500 +13 0.105441 0.520455 0.011471 0.007727 +13 0.330441 0.506818 0.010882 0.007727 +13 0.363382 0.506591 0.010882 0.008182 +12 0.395147 0.503068 0.010294 0.007500 +13 0.587647 0.498523 0.010588 0.007500 +13 0.470147 0.498523 0.011471 0.007500 +13 0.437059 0.498750 0.011176 0.007955 +13 0.687206 0.495114 0.010294 0.007955 +13 0.620441 0.495114 0.009706 0.007955 +13 0.719559 0.482614 0.010294 0.007500 +13 0.796029 0.481932 0.010294 0.007955 +13 0.555147 0.481591 0.010882 0.007273 +13 0.654412 0.481591 0.010588 0.008182 +18 0.908824 0.475341 0.010000 0.007500 +12 0.830735 0.475568 0.010294 0.007955 +12 0.764265 0.474886 0.010294 0.007500 +18 0.875000 0.472045 0.010000 0.007273 +12 0.941618 0.471705 0.009706 0.007500 +13 0.871618 0.433295 0.009706 0.007955 +13 0.693088 0.428636 0.006765 0.004091 +13 0.693676 0.395227 0.010294 0.008182 +13 0.902500 0.429659 0.010294 0.007955 +13 0.920588 0.425909 0.010588 0.007727 +13 0.939559 0.418750 0.010294 0.006136 +13 0.795441 0.418636 0.010294 0.006818 +13 0.814559 0.412273 0.010882 0.006818 +13 0.958382 0.409432 0.011471 0.007500 +13 0.843382 0.409205 0.012059 0.007955 +13 0.722059 0.409205 0.011765 0.007955 +12 0.750147 0.405795 0.010294 0.007500 +13 0.768971 0.402386 0.011471 0.007955 +13 0.638088 0.402045 0.011471 0.008182 +13 0.665147 0.398636 0.009706 0.007727 +13 0.573382 0.395227 0.010882 0.008182 +13 0.105147 0.392273 0.009706 0.007727 +13 0.243971 0.387614 0.010882 0.008409 +13 0.591176 0.386932 0.010588 0.007955 +13 0.123088 0.384318 0.009118 0.007273 +13 0.499118 0.383295 0.010000 0.007045 +13 0.618676 0.383295 0.009706 0.007955 +13 0.271912 0.381136 0.010294 0.007273 +13 0.526912 0.380114 0.010294 0.007955 +13 0.150441 0.377727 0.009706 0.007727 +13 0.413235 0.376932 0.010000 0.007045 +13 0.288971 0.377500 0.010294 0.008182 +13 0.543088 0.377045 0.010294 0.008182 +13 0.168382 0.374205 0.009118 0.007955 +13 0.442794 0.373636 0.009706 0.007727 +13 0.306471 0.373636 0.009412 0.007727 +13 0.196029 0.370455 0.010294 0.007727 +13 0.470735 0.370455 0.010294 0.008636 +18 0.324559 0.367500 0.009706 0.007273 +12 0.225441 0.366932 0.010294 0.007955 +12 0.342500 0.363636 0.010294 0.007727 +18 0.386618 0.360000 0.010294 0.007727 +11 0.433824 0.325909 0.006471 0.004091 +13 0.443088 0.288977 0.010294 0.008409 +11 0.840882 0.325455 0.006471 0.004091 +13 0.850147 0.296932 0.011471 0.007955 +11 0.172353 0.327386 0.009412 0.007955 +12 0.182794 0.311023 0.010882 0.007045 +13 0.518824 0.324659 0.008235 0.004773 +13 0.520441 0.296477 0.010882 0.007955 +13 0.686618 0.319886 0.011471 0.007955 +13 0.685588 0.300114 0.012353 0.007955 +18 0.694559 0.319886 0.011471 0.007955 +18 0.548676 0.315000 0.010882 0.003182 +13 0.298529 0.314091 0.011765 0.007727 +12 0.200735 0.314205 0.011471 0.007955 +12 0.105000 0.314205 0.011176 0.007955 +14 0.279265 0.311023 0.010882 0.007045 +13 0.146029 0.310909 0.010294 0.006818 +13 0.242500 0.310795 0.011471 0.007500 +13 0.332500 0.307614 0.011471 0.007500 +13 0.475735 0.307159 0.010882 0.007500 +13 0.827647 0.303864 0.011176 0.007273 +13 0.497206 0.303523 0.010294 0.006591 +13 0.649559 0.303409 0.010294 0.007273 +13 0.355000 0.300455 0.011176 0.007727 +13 0.719853 0.296591 0.010882 0.008182 +13 0.872500 0.292159 0.009118 0.007500 +13 0.419559 0.292159 0.009118 0.007500 +13 0.386765 0.292500 0.010000 0.008182 +13 0.745147 0.288864 0.009706 0.008182 +13 0.541324 0.288977 0.010294 0.008409 +13 0.907353 0.285909 0.010588 0.007727 +13 0.928088 0.282614 0.009706 0.007500 +13 0.576912 0.282500 0.009706 0.008182 +13 0.778088 0.281591 0.009706 0.007273 +13 0.951471 0.279432 0.009412 0.007500 +13 0.598382 0.278523 0.010294 0.007500 +13 0.800735 0.278295 0.010294 0.007955 +13 0.104706 0.239318 0.011176 0.008182 +11 0.186765 0.235795 0.006471 0.003864 +12 0.196029 0.218864 0.010294 0.007273 +12 0.121912 0.232159 0.010294 0.006591 +12 0.129265 0.209773 0.005000 0.005000 +12 0.725882 0.232159 0.011176 0.007500 +12 0.631618 0.231932 0.010882 0.007045 +12 0.548529 0.232045 0.010588 0.007273 +13 0.213382 0.231818 0.010882 0.006818 +13 0.664559 0.228864 0.010882 0.007273 +14 0.613382 0.228750 0.010882 0.007955 +13 0.578382 0.228636 0.012059 0.007727 +13 0.873824 0.225682 0.009412 0.007273 +13 0.754853 0.225568 0.010294 0.007045 +13 0.139706 0.225227 0.011176 0.006364 +13 0.516912 0.225114 0.009706 0.007045 +13 0.322941 0.224659 0.009412 0.006136 +13 0.231324 0.224659 0.010294 0.006136 +13 0.891029 0.222386 0.010882 0.007955 +14 0.891618 0.207614 0.008529 0.004773 +13 0.500735 0.222273 0.011471 0.007727 +13 0.250000 0.222273 0.011176 0.007727 +12 0.166912 0.222500 0.010882 0.008182 +13 0.773088 0.218864 0.010294 0.007273 +12 0.275294 0.218750 0.010000 0.007045 +13 0.905441 0.215568 0.010294 0.007955 +13 0.484559 0.215568 0.010882 0.007955 +13 0.341324 0.215455 0.010294 0.007727 +11 0.345147 0.238182 0.015588 0.005909 +12 0.358676 0.212273 0.009706 0.006818 +13 0.697353 0.213068 0.007059 0.003864 +13 0.698382 0.228750 0.011471 0.007955 +13 0.304853 0.215227 0.011471 0.008182 +13 0.828824 0.212273 0.010588 0.007727 +13 0.800735 0.212159 0.009118 0.007500 +12 0.388382 0.212045 0.010294 0.007273 +13 0.921029 0.208750 0.009706 0.007955 +13 0.846618 0.208523 0.011471 0.008409 +13 0.468382 0.208523 0.011471 0.008409 +13 0.418382 0.208523 0.011471 0.008409 +13 0.946618 0.200909 0.010294 0.007727 +13 0.452206 0.200909 0.010882 0.007727 +13 0.961912 0.196705 0.010294 0.007500 +13 0.434559 0.196364 0.010882 0.007727 +12 0.800147 0.157500 0.010294 0.008182 +12 0.709853 0.154091 0.010882 0.007727 +12 0.888382 0.153295 0.010294 0.007955 +14 0.364412 0.151364 0.005294 0.005000 +13 0.367206 0.126477 0.010294 0.007955 +13 0.104853 0.150682 0.010294 0.007273 +18 0.308235 0.146818 0.008235 0.003182 +13 0.247647 0.148295 0.011176 0.009773 +13 0.247353 0.136364 0.011176 0.006364 +14 0.869853 0.147045 0.010882 0.008182 +13 0.831912 0.146932 0.011471 0.007955 +14 0.781324 0.146818 0.011471 0.007727 +13 0.742206 0.146818 0.010882 0.007727 +12 0.615735 0.146477 0.010882 0.007955 +13 0.227794 0.143295 0.010294 0.006591 +13 0.125588 0.143409 0.010588 0.007273 +11 0.136912 0.121364 0.011471 0.007727 +13 0.567500 0.142727 0.009706 0.006818 +14 0.688971 0.140114 0.011471 0.007955 +13 0.648382 0.140000 0.011471 0.007727 +12 0.958676 0.136591 0.010882 0.006364 +13 0.918382 0.136591 0.010294 0.006364 +13 0.546471 0.136705 0.010000 0.007045 +13 0.347794 0.136364 0.010294 0.006818 +13 0.146324 0.136364 0.012059 0.006818 +13 0.265588 0.133409 0.010588 0.008182 +12 0.175441 0.133409 0.011471 0.008182 +13 0.207941 0.129773 0.010588 0.006364 +12 0.297206 0.129659 0.010294 0.007045 +13 0.527500 0.126818 0.009706 0.007273 +13 0.328676 0.126591 0.010882 0.008182 +13 0.386324 0.123068 0.009706 0.006591 +12 0.418088 0.122955 0.009706 0.007273 +18 0.192353 0.118977 0.007647 0.003864 +13 0.508088 0.120114 0.012059 0.007955 +13 0.450441 0.120000 0.012059 0.007727 +13 0.488088 0.112273 0.009706 0.007727 +13 0.468824 0.108068 0.010000 0.007500 +12 0.763382 0.073295 0.010882 0.007955 +12 0.657059 0.070227 0.011176 0.007273 +12 0.871912 0.070114 0.010294 0.007955 +12 0.321176 0.070114 0.010000 0.007955 +12 0.107059 0.070000 0.010000 0.007727 +14 0.846324 0.063068 0.012059 0.007500 +13 0.799412 0.062955 0.011176 0.007273 +14 0.738235 0.062727 0.011765 0.007727 +13 0.692941 0.062727 0.011176 0.007727 +12 0.428971 0.062614 0.011471 0.007500 +12 0.548971 0.062386 0.011471 0.007955 +12 0.214265 0.062386 0.011471 0.007955 +14 0.508971 0.058864 0.010294 0.006364 +13 0.464559 0.058636 0.010882 0.005909 +14 0.401618 0.058977 0.010882 0.006591 +13 0.357941 0.058636 0.011176 0.005909 +13 0.142353 0.058750 0.011176 0.006136 +14 0.294559 0.058409 0.010882 0.006364 +13 0.249853 0.058409 0.010882 0.006364 +14 0.187206 0.058750 0.011471 0.007045 +13 0.629559 0.056250 0.011471 0.007500 +13 0.583088 0.056250 0.011471 0.007500 +14 0.951324 0.053295 0.010294 0.007045 +13 0.906471 0.052727 0.011176 0.005909 +4 0.404559 0.123295 0.010882 0.021591 +3 0.372500 0.292386 0.007941 0.021591 +3 0.456029 0.369886 0.007941 0.022955 +4 0.816029 0.212386 0.010294 0.022500 +1 0.032794 0.049432 0.025000 0.051136 +4 0.372794 0.211932 0.010882 0.021591 +3 0.891029 0.285795 0.007353 0.021136 +3 0.788088 0.212386 0.008529 0.021591 +3 0.601912 0.146477 0.007941 0.021591 +5 0.371912 0.357159 0.010294 0.017500 +4 0.228088 0.310795 0.010882 0.021136 +4 0.933088 0.200341 0.010294 0.022045 +3 0.090735 0.573295 0.007941 0.021591 +4 0.858971 0.225568 0.011471 0.020682 +4 0.706029 0.297159 0.010294 0.021136 +1 0.029265 0.409432 0.025000 0.052045 +3 0.258382 0.382841 0.007941 0.017955 +3 0.559559 0.395114 0.007941 0.022500 +4 0.762794 0.282614 0.010882 0.022045 +3 0.631324 0.645568 0.007941 0.021591 +3 0.133088 0.311250 0.007941 0.021136 +3 0.313088 0.624886 0.007941 0.022045 +1 0.029853 0.133295 0.025000 0.051591 +3 0.679853 0.394886 0.008529 0.022955 +4 0.562794 0.282614 0.010882 0.020227 +1 0.029265 0.218295 0.023824 0.043409 +3 0.398971 0.378068 0.007941 0.021136 +4 0.512794 0.379659 0.010882 0.023409 +4 0.404265 0.292386 0.011471 0.021591 +5 0.651029 0.394659 0.010882 0.017955 +4 0.742206 0.225114 0.010882 0.020682 +3 0.315441 0.506932 0.007941 0.021591 +4 0.461618 0.306932 0.010882 0.021591 +4 0.248971 0.709659 0.010294 0.021591 +5 0.829265 0.405341 0.009706 0.018409 +4 0.807500 0.830795 0.010882 0.021136 +4 0.807794 0.944659 0.011471 0.021591 +4 0.211029 0.367159 0.010882 0.022045 +4 0.887500 0.430114 0.010882 0.022500 +4 0.650441 0.228523 0.010882 0.022045 +4 0.137794 0.377386 0.010294 0.021591 +4 0.708676 0.843295 0.010882 0.021591 +4 0.318088 0.307159 0.010882 0.021136 +4 0.905147 0.935114 0.010882 0.021591 +4 0.387206 0.729432 0.011471 0.022045 +4 0.852206 0.716932 0.010882 0.021591 +3 0.859265 0.471477 0.008529 0.022500 +5 0.606029 0.379886 0.010294 0.017500 +3 0.091029 0.695114 0.007353 0.021591 +1 0.028676 0.837159 0.025000 0.051136 +1 0.030735 0.519886 0.024412 0.051136 +5 0.201324 0.519432 0.010294 0.017500 +3 0.540147 0.482159 0.007941 0.022045 +4 0.462206 0.706477 0.010882 0.021591 +3 0.532206 0.596477 0.007353 0.021591 +3 0.782500 0.418977 0.007941 0.021136 +3 0.496029 0.495568 0.007941 0.022500 +4 0.708676 0.958068 0.010882 0.021136 +3 0.185441 0.646023 0.007941 0.021591 +3 0.808382 0.720795 0.007941 0.022045 +4 0.812206 0.618068 0.010882 0.022045 +1 0.026324 0.950795 0.025000 0.051136 +4 0.675441 0.634432 0.010294 0.021136 +1 0.029265 0.625568 0.025000 0.051591 +4 0.437500 0.608523 0.010882 0.022045 +1 0.029853 0.723068 0.026176 0.052045 +4 0.851324 0.611250 0.010294 0.022045 +4 0.891029 0.608068 0.010882 0.021136 +1 0.030441 0.313523 0.025000 0.052045 +5 0.421324 0.495341 0.009118 0.017500 +4 0.399265 0.611477 0.010882 0.021591 +3 0.131029 0.529886 0.008529 0.021136 +4 0.091618 0.392386 0.010882 0.021591 +3 0.091618 0.520114 0.008529 0.021591 +4 0.737206 0.405568 0.010294 0.021591 +5 0.858088 0.430341 0.009706 0.017500 +5 0.748971 0.472159 0.009118 0.017500 +5 0.708088 0.405795 0.009706 0.017500 +5 0.484853 0.380341 0.009118 0.017500 +3 0.607941 0.709318 0.008824 0.020455 +4 0.633235 0.705909 0.010000 0.020909 +3 0.704412 0.685455 0.006471 0.020000 +4 0.729118 0.681818 0.010000 0.021818 +3 0.953235 0.600682 0.006471 0.022273 +5 0.928824 0.595909 0.008235 0.016364 +3 0.927941 0.695682 0.006471 0.021364 +4 0.951765 0.691818 0.009412 0.020909 +3 0.153529 0.740000 0.007059 0.020909 +4 0.176765 0.733409 0.010000 0.020455 +3 0.336471 0.621364 0.007059 0.020909 +4 0.359706 0.617955 0.010000 0.021364 +3 0.715882 0.627955 0.007059 0.020455 +5 0.738529 0.620227 0.011176 0.019545 +4 0.067941 0.517045 0.010000 0.020455 +4 0.057647 0.506591 0.010588 0.021364 +4 0.067647 0.219091 0.009412 0.020000 +4 0.057941 0.208409 0.010000 0.021364 +3 0.499412 0.600455 0.007059 0.021818 +5 0.476471 0.596364 0.008235 0.016364 +4 0.069412 0.046136 0.010588 0.020455 +4 0.059706 0.035909 0.010000 0.020909 +4 0.068235 0.719773 0.010588 0.020455 +4 0.057353 0.709545 0.010000 0.020909 +3 0.763529 0.625000 0.007059 0.020909 +3 0.787059 0.621591 0.007059 0.020455 +4 0.068529 0.130227 0.010000 0.020455 +4 0.057647 0.119773 0.009412 0.020455 +4 0.067941 0.621818 0.010000 0.020909 +4 0.057941 0.611818 0.010000 0.020909 +4 0.066471 0.947727 0.010588 0.020000 +4 0.056471 0.937500 0.010588 0.021364 +4 0.068529 0.311136 0.010000 0.020455 +4 0.057353 0.300682 0.010000 0.021364 +3 0.267647 0.627727 0.007059 0.020000 +5 0.289706 0.621364 0.008824 0.017273 +4 0.067353 0.406136 0.010000 0.020455 +4 0.057647 0.395682 0.010588 0.021364 +4 0.066765 0.833409 0.010000 0.020455 +4 0.057647 0.823409 0.010588 0.020455 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_20.jpg b/data_dataset/tch/debug/debug_20.jpg new file mode 100644 index 0000000..644bd41 Binary files /dev/null and b/data_dataset/tch/debug/debug_20.jpg differ diff --git a/data_dataset/tch/debug/debug_20.txt b/data_dataset/tch/debug/debug_20.txt new file mode 100644 index 0000000..f4ffd02 --- /dev/null +++ b/data_dataset/tch/debug/debug_20.txt @@ -0,0 +1,582 @@ +9 0.765103 0.956556 0.015836 0.038339 +7 0.163783 0.952926 0.010264 0.030626 +10 0.546774 0.946121 0.010264 0.002949 +7 0.914223 0.947255 0.013196 0.017468 +8 0.426246 0.948956 0.015543 0.023140 +7 0.308065 0.945327 0.012610 0.017241 +6 0.942962 0.946348 0.012023 0.025635 +6 0.335484 0.944533 0.013490 0.025635 +6 0.390176 0.944306 0.012610 0.026089 +9 0.710704 0.942491 0.009677 0.024728 +9 0.643842 0.942037 0.009677 0.024274 +9 0.614076 0.937954 0.014663 0.046053 +10 0.737683 0.865812 0.008504 0.004764 +10 0.331525 0.860821 0.013783 0.005218 +10 0.401613 0.859687 0.008504 0.003857 +9 0.960264 0.848004 0.006745 0.037205 +10 0.634751 0.841538 0.010850 0.004764 +9 0.277859 0.850272 0.011437 0.024501 +9 0.326833 0.849932 0.009677 0.024274 +10 0.493109 0.839723 0.010264 0.005218 +8 0.745894 0.844034 0.009091 0.024728 +10 0.388416 0.834959 0.008504 0.006125 +10 0.794868 0.762591 0.009677 0.005218 +10 0.780499 0.758054 0.012610 0.007033 +9 0.490469 0.760776 0.008504 0.026089 +10 0.403812 0.753063 0.009384 0.004764 +10 0.305425 0.742060 0.009677 0.006352 +6 0.836070 0.747391 0.005865 0.029719 +6 0.668328 0.746937 0.005865 0.029719 +6 0.237830 0.746711 0.005865 0.029719 +6 0.383284 0.746484 0.005865 0.029719 +9 0.430059 0.736388 0.006745 0.024501 +9 0.725660 0.729242 0.017302 0.030172 +9 0.694282 0.732645 0.010850 0.032895 +9 0.771408 0.739678 0.010264 0.045599 +9 0.914516 0.738317 0.017889 0.056942 +10 0.187390 0.654152 0.007625 0.003403 +9 0.368768 0.656193 0.012610 0.036071 +9 0.690909 0.644850 0.012903 0.036071 +10 0.947361 0.637137 0.010850 0.006125 +6 0.240176 0.648026 0.006452 0.030172 +10 0.620674 0.636003 0.009677 0.006579 +10 0.673754 0.556602 0.007918 0.003857 +10 0.654106 0.553879 0.023754 0.003857 +10 0.486950 0.547527 0.009091 0.002495 +10 0.364956 0.537772 0.007918 0.006125 +10 0.906891 0.537319 0.009091 0.007033 +10 0.157038 0.536865 0.009677 0.007033 +10 0.240909 0.462455 0.014370 0.002949 +10 0.608651 0.452926 0.008504 0.004310 +10 0.665396 0.449524 0.007625 0.004764 +10 0.897214 0.444306 0.009091 0.006125 +10 0.192815 0.444079 0.007918 0.006125 +9 0.298680 0.444873 0.006158 0.034029 +9 0.325660 0.443058 0.009091 0.028131 +10 0.541496 0.437273 0.010850 0.005218 +10 0.937390 0.436366 0.010850 0.003857 +6 0.421701 0.448162 0.005865 0.030172 +7 0.819501 0.442831 0.014370 0.027677 +10 0.146774 0.434097 0.008504 0.004764 +9 0.519062 0.442264 0.012317 0.028811 +10 0.459677 0.428426 0.017302 0.002949 +9 0.443255 0.442831 0.014956 0.027223 +10 0.315396 0.374887 0.017302 0.002495 +10 0.287830 0.372618 0.009091 0.003857 +10 0.425367 0.356284 0.008504 0.004310 +8 0.311584 0.359120 0.007331 0.024501 +10 0.832845 0.347096 0.013490 0.005898 +9 0.288416 0.359006 0.010850 0.036525 +10 0.527713 0.341311 0.008504 0.004764 +10 0.399853 0.336547 0.008504 0.004764 +10 0.921848 0.336320 0.009677 0.003403 +9 0.538270 0.336774 0.009677 0.031987 +9 0.239883 0.341311 0.012903 0.033802 +10 0.036070 0.250794 0.008798 0.006125 +9 0.919648 0.264632 0.012903 0.039701 +10 0.860704 0.243308 0.007625 0.004310 +10 0.736364 0.247391 0.014076 0.006579 +10 0.224780 0.241493 0.007331 0.005672 +10 0.270821 0.238090 0.010264 0.006125 +9 0.179765 0.244669 0.012317 0.034710 +10 0.386364 0.227427 0.019648 0.005218 +10 0.691789 0.144964 0.008211 0.006806 +6 0.404399 0.149614 0.005865 0.030172 +10 0.577859 0.134642 0.007918 0.004764 +8 0.584457 0.139179 0.014076 0.031080 +9 0.917155 0.137364 0.013196 0.035617 +10 0.679326 0.057736 0.007918 0.002495 +10 0.254106 0.056375 0.012610 0.003857 +10 0.789883 0.054787 0.016716 0.003403 +10 0.156305 0.054787 0.015249 0.003857 +12 0.845748 0.963362 0.011144 0.007486 +13 0.243548 0.962568 0.010264 0.007260 +12 0.885777 0.960413 0.011437 0.007940 +13 0.818475 0.960186 0.010557 0.007940 +12 0.280792 0.959165 0.010850 0.007713 +13 0.216862 0.959165 0.010850 0.007713 +13 0.767889 0.949750 0.010264 0.007033 +13 0.164223 0.948730 0.008798 0.006352 +12 0.789589 0.946574 0.010850 0.007940 +13 0.739736 0.946234 0.010850 0.008167 +13 0.136804 0.946007 0.012023 0.008167 +12 0.187390 0.945667 0.012317 0.007940 +13 0.453666 0.940336 0.013490 0.006352 +12 0.450293 0.920826 0.010264 0.008167 +13 0.672727 0.939315 0.010557 0.007486 +18 0.838563 0.936933 0.007331 0.003630 +12 0.710117 0.936025 0.010264 0.006806 +12 0.107771 0.936025 0.010264 0.007260 +13 0.642669 0.935572 0.010264 0.007260 +13 0.592229 0.923548 0.009091 0.007713 +12 0.613490 0.921053 0.010557 0.007260 +13 0.562610 0.920939 0.009677 0.007940 +13 0.469355 0.916969 0.009677 0.007713 +13 0.499120 0.913339 0.009971 0.007713 +12 0.534311 0.909596 0.009384 0.007486 +13 0.028006 0.871484 0.009677 0.003857 +11 0.656158 0.865358 0.011437 0.006125 +13 0.667595 0.865358 0.011437 0.006125 +12 0.665249 0.847436 0.011437 0.007940 +13 0.635924 0.865132 0.012023 0.006579 +13 0.634604 0.843693 0.009971 0.006806 +11 0.688856 0.864451 0.017595 0.007940 +13 0.703959 0.840744 0.011437 0.007713 +13 0.684018 0.843920 0.010264 0.006352 +11 0.756012 0.861956 0.011730 0.007940 +13 0.764516 0.860594 0.011730 0.007940 +13 0.765836 0.825658 0.009677 0.007486 +12 0.381965 0.860254 0.010850 0.007260 +13 0.386950 0.836547 0.009677 0.007033 +13 0.408504 0.854242 0.007038 0.007033 +13 0.408065 0.825091 0.009677 0.007713 +13 0.205865 0.852995 0.006452 0.004537 +13 0.206598 0.830195 0.011437 0.007486 +13 0.561877 0.853562 0.009971 0.007486 +13 0.560264 0.829288 0.010264 0.007033 +13 0.306012 0.846756 0.010850 0.008394 +13 0.725073 0.843920 0.011437 0.006806 +13 0.278592 0.843466 0.009971 0.006806 +13 0.367302 0.843466 0.010264 0.007260 +13 0.326246 0.843466 0.010264 0.007260 +13 0.966422 0.842105 0.010850 0.007713 +13 0.248094 0.840404 0.011730 0.007940 +13 0.346481 0.840177 0.012023 0.007940 +13 0.603959 0.839950 0.012023 0.008394 +13 0.938856 0.838702 0.010850 0.007713 +13 0.745015 0.837341 0.010264 0.007260 +13 0.227126 0.836887 0.010264 0.007260 +13 0.581818 0.836320 0.009971 0.007486 +13 0.888123 0.826565 0.010850 0.007940 +12 0.908944 0.823389 0.009677 0.007940 +13 0.858651 0.822595 0.009384 0.007260 +13 0.156745 0.818512 0.010264 0.007260 +12 0.785777 0.818512 0.010850 0.007713 +13 0.428446 0.817264 0.009971 0.007486 +13 0.510997 0.817264 0.010264 0.007940 +13 0.130938 0.814655 0.009091 0.006806 +12 0.106598 0.814655 0.009677 0.007713 +13 0.534164 0.813861 0.009677 0.007486 +13 0.489589 0.813861 0.010850 0.007486 +12 0.460557 0.813861 0.009091 0.007486 +12 0.178739 0.814201 0.009677 0.008167 +12 0.822434 0.811933 0.010264 0.007713 +12 0.213636 0.767582 0.010264 0.007486 +12 0.355425 0.763612 0.011144 0.007260 +12 0.497507 0.753743 0.010850 0.007940 +12 0.572874 0.749773 0.010264 0.005898 +12 0.810264 0.747731 0.011144 0.007713 +12 0.640909 0.747278 0.010264 0.007260 +12 0.897654 0.745009 0.009971 0.007260 +13 0.305425 0.743308 0.010264 0.006579 +12 0.955279 0.741606 0.011437 0.008167 +12 0.256305 0.740926 0.011730 0.007713 +13 0.284897 0.740585 0.011437 0.007940 +12 0.326833 0.740245 0.010850 0.007713 +13 0.162317 0.737296 0.010264 0.007260 +12 0.184897 0.733779 0.012023 0.007940 +13 0.134604 0.733666 0.011730 0.008167 +12 0.108358 0.733666 0.011437 0.008167 +13 0.446481 0.733326 0.012023 0.007940 +13 0.427419 0.729809 0.010264 0.006806 +12 0.467302 0.729583 0.010264 0.006806 +12 0.398680 0.729809 0.010264 0.007713 +13 0.752346 0.725953 0.010264 0.007713 +12 0.542815 0.726066 0.010557 0.007940 +11 0.773167 0.722777 0.009677 0.007713 +12 0.724047 0.721756 0.010557 0.006579 +12 0.695748 0.722323 0.010850 0.007713 +12 0.606598 0.722210 0.009677 0.007940 +12 0.862023 0.718920 0.010264 0.007713 +12 0.925073 0.715971 0.009677 0.008167 +12 0.953519 0.676724 0.010264 0.007260 +12 0.215103 0.676724 0.010264 0.007260 +13 0.265396 0.672754 0.009971 0.007033 +13 0.295748 0.673208 0.010850 0.008848 +13 0.359971 0.669011 0.010264 0.007713 +13 0.315543 0.668671 0.010557 0.007940 +11 0.324194 0.648253 0.012023 0.006579 +12 0.796334 0.665381 0.010264 0.007260 +13 0.382551 0.664701 0.010850 0.007260 +13 0.404545 0.661411 0.010264 0.007940 +11 0.412757 0.640880 0.008504 0.007713 +12 0.600587 0.660957 0.009384 0.009301 +13 0.599853 0.640767 0.010850 0.007486 +11 0.609971 0.660957 0.009384 0.009301 +13 0.619355 0.660957 0.009384 0.009301 +12 0.620528 0.637591 0.009971 0.007033 +13 0.476979 0.657895 0.010850 0.006806 +12 0.485777 0.638044 0.006745 0.005672 +13 0.434457 0.658008 0.011437 0.007033 +13 0.161730 0.655626 0.010264 0.007713 +13 0.901320 0.655286 0.011437 0.007486 +13 0.505132 0.654605 0.009677 0.007486 +17 0.516129 0.635209 0.011144 0.005898 +12 0.923021 0.651770 0.012023 0.006806 +13 0.133578 0.651883 0.010850 0.007033 +12 0.108211 0.651883 0.011144 0.007033 +13 0.185924 0.651883 0.011730 0.007486 +13 0.873607 0.651543 0.011730 0.007260 +12 0.842082 0.651089 0.011437 0.006352 +13 0.533578 0.650408 0.010850 0.006352 +12 0.555132 0.647686 0.012317 0.008167 +13 0.553812 0.630331 0.009091 0.006579 +18 0.395601 0.644964 0.008798 0.004537 +13 0.336804 0.642922 0.008504 0.003630 +13 0.337977 0.664701 0.010850 0.007260 +13 0.578006 0.644283 0.010557 0.007260 +13 0.745601 0.638271 0.011437 0.007486 +12 0.765836 0.634982 0.012023 0.007260 +13 0.724194 0.634528 0.012023 0.008167 +12 0.692522 0.634528 0.012023 0.008167 +12 0.647507 0.626701 0.009384 0.007486 +13 0.634457 0.583598 0.010850 0.007486 +13 0.662610 0.580082 0.010850 0.008621 +13 0.688856 0.576906 0.010557 0.007713 +12 0.369062 0.575885 0.010264 0.007486 +13 0.739443 0.572936 0.009677 0.008394 +11 0.749267 0.550136 0.009384 0.005445 +13 0.419795 0.572936 0.009677 0.008848 +13 0.709824 0.572255 0.010264 0.007940 +13 0.450587 0.572482 0.010264 0.008394 +13 0.760850 0.569873 0.010264 0.007713 +12 0.516129 0.568852 0.011144 0.007486 +17 0.530938 0.548888 0.017889 0.008848 +13 0.538270 0.564542 0.010850 0.007033 +13 0.471408 0.568625 0.010850 0.007940 +13 0.474487 0.547527 0.007625 0.006125 +12 0.964076 0.566130 0.010850 0.007486 +13 0.790909 0.565222 0.010557 0.007486 +12 0.210704 0.565336 0.010264 0.007713 +13 0.494575 0.564542 0.011437 0.007033 +13 0.813343 0.561933 0.012023 0.008167 +13 0.561730 0.561252 0.010850 0.008167 +13 0.591935 0.557282 0.010264 0.006579 +13 0.318328 0.554900 0.010850 0.007260 +13 0.289589 0.551384 0.010850 0.007033 +12 0.256745 0.551270 0.010850 0.006806 +12 0.340762 0.551270 0.011144 0.007260 +18 0.578446 0.540381 0.008504 0.006806 +13 0.906012 0.538680 0.010264 0.006579 +13 0.156598 0.537999 0.010557 0.007033 +12 0.930059 0.535617 0.011437 0.007713 +13 0.885630 0.535163 0.009971 0.007713 +12 0.856745 0.534823 0.011437 0.007940 +13 0.137097 0.534823 0.010264 0.007940 +12 0.108358 0.534823 0.011437 0.007940 +12 0.180205 0.534596 0.010850 0.007940 +12 0.545601 0.475613 0.010850 0.007940 +13 0.625806 0.473117 0.010557 0.007940 +13 0.596628 0.472890 0.010850 0.007486 +12 0.686950 0.469487 0.010264 0.007940 +11 0.697214 0.445667 0.010850 0.008394 +13 0.646188 0.469374 0.010264 0.007713 +13 0.646041 0.449183 0.009384 0.005445 +11 0.657331 0.443966 0.008504 0.004991 +13 0.666716 0.465177 0.011437 0.007486 +12 0.396334 0.465064 0.011437 0.007260 +13 0.706305 0.464950 0.010850 0.007486 +13 0.193695 0.463816 0.010850 0.007940 +13 0.191935 0.445554 0.010264 0.006806 +13 0.899413 0.463475 0.012317 0.008621 +13 0.896628 0.445554 0.010850 0.006352 +13 0.919355 0.460980 0.010557 0.005445 +13 0.918328 0.443058 0.010850 0.007713 +13 0.935191 0.461547 0.010557 0.007033 +13 0.936657 0.439428 0.009971 0.007713 +18 0.945748 0.461547 0.010557 0.007033 +11 0.956305 0.461547 0.010557 0.007033 +13 0.966422 0.428426 0.010850 0.007940 +13 0.726100 0.461887 0.010557 0.007713 +17 0.738563 0.441583 0.013783 0.007033 +12 0.218768 0.458144 0.012903 0.004764 +12 0.217449 0.442377 0.010850 0.007713 +12 0.794282 0.458258 0.010850 0.005898 +11 0.803226 0.439769 0.007038 0.005672 +13 0.755279 0.458711 0.011437 0.006806 +12 0.752053 0.439201 0.007918 0.008621 +13 0.130792 0.456103 0.009971 0.007486 +13 0.239296 0.456103 0.011730 0.007940 +13 0.238563 0.438975 0.010850 0.007260 +11 0.248387 0.456103 0.011730 0.007940 +12 0.259384 0.427858 0.010264 0.007713 +13 0.825220 0.455649 0.011730 0.007486 +12 0.831672 0.437613 0.007038 0.004537 +13 0.495455 0.455195 0.011437 0.007033 +13 0.150293 0.452132 0.010850 0.005898 +13 0.852933 0.451906 0.010264 0.006352 +13 0.469941 0.451338 0.010850 0.006125 +12 0.515103 0.451565 0.010850 0.007033 +12 0.438563 0.451338 0.012023 0.006579 +13 0.873314 0.449297 0.011144 0.007486 +13 0.107478 0.449410 0.011437 0.007713 +13 0.169648 0.449297 0.010264 0.007940 +13 0.353226 0.438407 0.011437 0.007486 +13 0.841789 0.434891 0.012023 0.005898 +12 0.373167 0.435458 0.012610 0.007940 +13 0.332405 0.435345 0.012023 0.007713 +12 0.302933 0.435458 0.011730 0.007940 +12 0.703666 0.377382 0.009677 0.007486 +13 0.124780 0.371597 0.009677 0.007260 +12 0.132991 0.339043 0.006745 0.007486 +13 0.811437 0.370576 0.010557 0.007486 +11 0.736510 0.370123 0.010850 0.007486 +11 0.746481 0.349705 0.009091 0.006579 +12 0.641349 0.370009 0.010557 0.007713 +18 0.318622 0.367740 0.009091 0.003176 +13 0.909531 0.366493 0.010850 0.006125 +13 0.844868 0.365699 0.010557 0.007260 +11 0.853666 0.345508 0.006452 0.005445 +12 0.597801 0.365585 0.010264 0.007033 +13 0.753812 0.365699 0.010264 0.007713 +13 0.146481 0.363657 0.010850 0.007713 +13 0.146481 0.338475 0.005572 0.006352 +13 0.106598 0.363770 0.010850 0.007940 +13 0.213636 0.363090 0.011437 0.007940 +18 0.209971 0.338135 0.011730 0.007940 +13 0.865543 0.362636 0.010850 0.007486 +13 0.791056 0.362409 0.010850 0.007486 +12 0.672581 0.362296 0.012023 0.007713 +13 0.168475 0.359574 0.010264 0.005898 +13 0.886804 0.359120 0.011144 0.006806 +11 0.898827 0.339156 0.012317 0.008621 +12 0.410117 0.357191 0.006745 0.006125 +13 0.421848 0.335526 0.010850 0.007713 +12 0.190469 0.356624 0.010850 0.007713 +17 0.201173 0.338135 0.011730 0.007940 +13 0.939296 0.356284 0.010557 0.007486 +13 0.942375 0.336547 0.011437 0.005218 +13 0.962317 0.352881 0.010850 0.007486 +13 0.235044 0.352995 0.010850 0.007713 +13 0.309971 0.352314 0.010557 0.006806 +13 0.255718 0.349819 0.012317 0.007713 +13 0.333431 0.349251 0.010557 0.007940 +13 0.288856 0.346302 0.009971 0.007033 +13 0.353959 0.345735 0.010557 0.007260 +13 0.377273 0.342332 0.012023 0.007713 +13 0.399413 0.338702 0.009384 0.006806 +13 0.442229 0.327359 0.009384 0.007260 +13 0.545161 0.326679 0.009971 0.007713 +13 0.521994 0.324524 0.009971 0.007940 +12 0.488270 0.323730 0.010557 0.007260 +12 0.567742 0.324070 0.009971 0.008394 +12 0.911584 0.279265 0.009677 0.007713 +13 0.600440 0.277904 0.010264 0.007713 +12 0.796921 0.274501 0.010264 0.006806 +13 0.625367 0.274501 0.010850 0.008167 +13 0.941349 0.272005 0.009384 0.007713 +12 0.842669 0.270985 0.010264 0.007486 +13 0.651173 0.270077 0.010850 0.007486 +13 0.962610 0.267582 0.010850 0.007486 +12 0.768475 0.266561 0.010850 0.007260 +12 0.722727 0.266561 0.010850 0.007260 +17 0.736510 0.250000 0.016129 0.004083 +12 0.742962 0.270871 0.009091 0.007713 +12 0.685777 0.266447 0.010850 0.007486 +13 0.493988 0.266107 0.010850 0.007260 +12 0.875220 0.263725 0.012023 0.007486 +13 0.519795 0.262818 0.012023 0.007940 +13 0.520088 0.236502 0.009677 0.005218 +13 0.544135 0.259301 0.011437 0.006352 +13 0.369355 0.256012 0.010264 0.007486 +13 0.570088 0.256012 0.011730 0.008394 +13 0.424487 0.252495 0.011437 0.006806 +13 0.393988 0.252722 0.011437 0.007260 +12 0.302639 0.249546 0.011144 0.008167 +13 0.463196 0.249319 0.011437 0.008167 +13 0.339736 0.246030 0.011437 0.007486 +12 0.221261 0.243308 0.010264 0.007940 +18 0.536804 0.239564 0.008504 0.004083 +12 0.270381 0.239338 0.011144 0.007260 +13 0.160264 0.236729 0.011437 0.007940 +13 0.138270 0.233779 0.009677 0.007486 +12 0.107771 0.233666 0.010850 0.007260 +12 0.180938 0.233326 0.009971 0.007033 +12 0.326686 0.178766 0.009971 0.007260 +12 0.221261 0.175363 0.011437 0.007260 +13 0.163490 0.172074 0.010850 0.007486 +12 0.361144 0.171506 0.009677 0.007260 +11 0.370528 0.152450 0.007331 0.005898 +12 0.266716 0.171620 0.010850 0.007940 +13 0.441789 0.171053 0.010264 0.007713 +13 0.139296 0.168330 0.009971 0.007260 +12 0.106305 0.168217 0.010264 0.007033 +12 0.191056 0.167763 0.010850 0.007486 +13 0.384311 0.166742 0.010264 0.006806 +12 0.295015 0.164133 0.011144 0.007486 +13 0.419795 0.163566 0.010850 0.007713 +13 0.467155 0.163226 0.010557 0.007486 +17 0.482551 0.136116 0.019062 0.004083 +13 0.491056 0.159142 0.011437 0.006579 +12 0.537977 0.162999 0.011437 0.007940 +12 0.546188 0.136683 0.008504 0.005218 +13 0.718035 0.159369 0.009091 0.006125 +12 0.717889 0.142809 0.011730 0.008394 +13 0.760704 0.156193 0.009971 0.007940 +13 0.761730 0.136230 0.011437 0.007940 +13 0.514370 0.156307 0.011144 0.008167 +13 0.561290 0.152564 0.012317 0.006579 +13 0.644721 0.152904 0.010264 0.007713 +13 0.668035 0.149614 0.011144 0.007940 +13 0.583871 0.149614 0.011730 0.007940 +13 0.690616 0.146098 0.009971 0.006806 +18 0.875806 0.144283 0.011437 0.003630 +13 0.620088 0.146098 0.010850 0.007260 +13 0.737243 0.139519 0.010557 0.007260 +12 0.953519 0.137137 0.011437 0.007940 +13 0.894575 0.128630 0.010850 0.007713 +13 0.782845 0.127495 0.009677 0.007713 +12 0.917742 0.125227 0.010264 0.006352 +12 0.826246 0.125227 0.010264 0.008167 +13 0.862903 0.123979 0.009677 0.006579 +13 0.203959 0.083144 0.010264 0.007940 +13 0.614516 0.082350 0.010264 0.007260 +12 0.625073 0.052745 0.012610 0.006579 +13 0.239736 0.082804 0.010264 0.008167 +12 0.453519 0.081897 0.010850 0.007260 +12 0.459824 0.052632 0.009384 0.006806 +18 0.450440 0.052632 0.009384 0.006806 +13 0.657771 0.082123 0.009971 0.008167 +13 0.407771 0.082237 0.009677 0.008394 +17 0.421554 0.051724 0.014956 0.003630 +13 0.257038 0.079855 0.010850 0.007713 +12 0.175513 0.079515 0.010850 0.007940 +13 0.431232 0.079061 0.010850 0.007940 +11 0.441056 0.052632 0.009384 0.006806 +13 0.222727 0.079061 0.011437 0.007940 +13 0.635630 0.078721 0.010264 0.007713 +13 0.586364 0.078494 0.010264 0.007260 +13 0.381525 0.078834 0.010557 0.007940 +13 0.472581 0.078040 0.011437 0.007713 +13 0.680205 0.077926 0.010264 0.007940 +13 0.115543 0.077473 0.009384 0.007486 +13 0.159677 0.076792 0.010850 0.008394 +12 0.172874 0.055808 0.013196 0.004083 +12 0.170528 0.050363 0.007918 0.004083 +13 0.883431 0.075544 0.010850 0.007713 +13 0.801906 0.075544 0.009677 0.008167 +13 0.774047 0.075431 0.009091 0.007940 +13 0.748827 0.075318 0.010264 0.007713 +13 0.830059 0.075658 0.010850 0.008848 +13 0.359677 0.075431 0.010850 0.008394 +13 0.719062 0.075204 0.010557 0.008394 +13 0.305572 0.075091 0.010557 0.008167 +13 0.514516 0.074750 0.010850 0.007940 +13 0.565396 0.074524 0.010557 0.008394 +13 0.141496 0.072822 0.012023 0.007713 +13 0.904839 0.072255 0.010264 0.007486 +13 0.858798 0.071801 0.010850 0.007486 +13 0.336364 0.071688 0.011144 0.008167 +13 0.543255 0.071234 0.010850 0.007713 +5 0.707185 0.071801 0.009091 0.017922 +4 0.818328 0.074637 0.010850 0.023140 +4 0.481085 0.265767 0.010850 0.021098 +5 0.762610 0.071348 0.009677 0.017015 +1 0.033431 0.350726 0.025806 0.051724 +1 0.032698 0.148367 0.024927 0.044465 +5 0.293402 0.073162 0.009677 0.017922 +4 0.960264 0.047187 0.012023 0.021325 +3 0.531232 0.071574 0.007918 0.022005 +5 0.847214 0.451792 0.023460 0.021552 +3 0.422874 0.658008 0.007625 0.022005 +4 0.831525 0.365926 0.010850 0.021325 +3 0.207038 0.442264 0.008798 0.022005 +4 0.118328 0.455876 0.011437 0.021552 +4 0.547947 0.829968 0.011437 0.021552 +5 0.474633 0.320440 0.009677 0.017922 +4 0.411584 0.252382 0.011437 0.022005 +4 0.208211 0.243081 0.011144 0.022005 +4 0.144428 0.819986 0.010264 0.022005 +1 0.032991 0.052178 0.024927 0.051724 +4 0.846774 0.072936 0.010264 0.021552 +3 0.681085 0.635095 0.007918 0.020644 +4 0.925953 0.356284 0.010850 0.022005 +4 0.306158 0.555127 0.010557 0.023140 +5 0.501026 0.071801 0.009677 0.017015 +3 0.324194 0.072936 0.007918 0.022459 +3 0.791056 0.074524 0.007918 0.022459 +3 0.845601 0.534823 0.007918 0.021552 +5 0.584311 0.469941 0.009677 0.017015 +4 0.652346 0.846983 0.011437 0.021552 +4 0.149707 0.737182 0.010850 0.021552 +5 0.593695 0.718807 0.009677 0.018376 +3 0.284604 0.672074 0.007331 0.021552 +4 0.150147 0.655740 0.011144 0.022913 +3 0.798094 0.748072 0.007918 0.021098 +4 0.580499 0.923888 0.011437 0.022005 +4 0.660850 0.939088 0.011437 0.021552 +4 0.954399 0.841878 0.011437 0.021779 +3 0.639150 0.627155 0.010850 0.022005 +4 0.834164 0.963702 0.011437 0.022686 +4 0.232405 0.962908 0.011437 0.022459 +4 0.875513 0.827019 0.012023 0.022459 +4 0.727126 0.571348 0.010850 0.020644 +3 0.850880 0.719034 0.007918 0.021552 +4 0.738856 0.725839 0.011437 0.022005 +4 0.755865 0.949297 0.011437 0.020644 +4 0.193988 0.830195 0.010850 0.021098 +3 0.684018 0.723571 0.007331 0.022459 +3 0.290762 0.435458 0.007331 0.022005 +3 0.886217 0.744442 0.008211 0.021552 +4 0.486950 0.914587 0.010850 0.022005 +5 0.628886 0.743761 0.009677 0.017468 +4 0.293988 0.846983 0.011437 0.022005 +3 0.952933 0.566130 0.007331 0.021552 +3 0.438856 0.571348 0.007918 0.021552 +3 0.097214 0.534823 0.007918 0.022459 +4 0.811877 0.455649 0.010850 0.021552 +4 0.482551 0.454968 0.011437 0.022005 +4 0.094575 0.733553 0.010850 0.022459 +5 0.252053 0.670259 0.009091 0.017015 +5 0.407478 0.569306 0.009677 0.017015 +4 0.521408 0.650975 0.011144 0.021098 +4 0.889150 0.654832 0.010557 0.022005 +3 0.614516 0.472890 0.007918 0.022913 +4 0.492522 0.654378 0.010850 0.021552 +3 0.580059 0.557736 0.008211 0.021098 +4 0.882258 0.129424 0.010850 0.022005 +4 0.649560 0.578494 0.009971 0.021325 +4 0.676540 0.576906 0.009971 0.020871 +4 0.070821 0.048321 0.010264 0.019964 +4 0.060411 0.037886 0.010557 0.020871 +4 0.080938 0.034710 0.010557 0.020871 +5 0.104399 0.073276 0.008798 0.017241 +3 0.130205 0.073503 0.006452 0.021325 +4 0.071261 0.148140 0.011144 0.020871 +4 0.060704 0.137931 0.010557 0.021325 +4 0.071701 0.544918 0.010264 0.020417 +4 0.061877 0.534710 0.010557 0.021779 +4 0.071701 0.445554 0.010850 0.020417 +4 0.061584 0.435572 0.010557 0.021325 +4 0.071994 0.645191 0.010264 0.020417 +4 0.061290 0.635209 0.009971 0.021325 +4 0.071994 0.346416 0.010850 0.020871 +4 0.061584 0.336434 0.011144 0.020871 +4 0.070674 0.743421 0.010557 0.020871 +4 0.060704 0.733439 0.010557 0.021779 +4 0.071554 0.843466 0.010557 0.021325 +4 0.060997 0.833031 0.010557 0.021325 +4 0.948387 0.037092 0.010557 0.020644 +3 0.934164 0.034029 0.006745 0.020417 +4 0.071848 0.942151 0.010557 0.020871 +4 0.061877 0.932169 0.010557 0.020871 +4 0.070528 0.247051 0.010850 0.020871 +4 0.060704 0.236842 0.009971 0.021325 +4 0.024340 0.650749 0.010557 0.021552 +4 0.039296 0.634642 0.010557 0.021552 +4 0.024633 0.252382 0.010557 0.021552 +4 0.038710 0.236275 0.010557 0.021552 +5 0.781818 0.560685 0.010557 0.021552 +4 0.024927 0.451112 0.010557 0.021552 +4 0.039296 0.435005 0.010557 0.021552 +4 0.154252 0.953607 0.010557 0.021552 +4 0.024633 0.550023 0.010557 0.021552 +4 0.039589 0.533235 0.010557 0.021552 +4 0.024047 0.748299 0.010557 0.021552 +4 0.039003 0.732191 0.010557 0.021552 +4 0.357185 0.256239 0.010557 0.021552 +3 0.365103 0.255785 0.010557 0.021552 +4 0.023754 0.848571 0.010557 0.021552 +4 0.038123 0.832237 0.010557 0.021552 +4 0.024633 0.946574 0.010557 0.021552 +4 0.039003 0.931375 0.010557 0.021552 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_21.jpg b/data_dataset/tch/debug/debug_21.jpg new file mode 100644 index 0000000..8d29337 Binary files /dev/null and b/data_dataset/tch/debug/debug_21.jpg differ diff --git a/data_dataset/tch/debug/debug_21.txt b/data_dataset/tch/debug/debug_21.txt new file mode 100644 index 0000000..b091e36 --- /dev/null +++ b/data_dataset/tch/debug/debug_21.txt @@ -0,0 +1,599 @@ +10 0.795568 0.938606 0.009099 0.004766 +10 0.464485 0.962665 0.014969 0.002951 +10 0.484444 0.961757 0.018491 0.003858 +10 0.478574 0.932251 0.009099 0.005674 +7 0.402994 0.931911 0.007631 0.021335 +10 0.599501 0.960395 0.012621 0.003404 +9 0.696507 0.917726 0.011741 0.031548 +10 0.885677 0.934294 0.007338 0.002497 +10 0.802612 0.834203 0.007338 0.002951 +7 0.108453 0.834657 0.012621 0.015660 +10 0.481509 0.858715 0.007338 0.004766 +10 0.441591 0.858261 0.022601 0.005674 +10 0.433959 0.828302 0.012034 0.004766 +8 0.379072 0.826714 0.012621 0.030186 +10 0.391987 0.814911 0.012621 0.004766 +10 0.960522 0.729914 0.012621 0.002724 +10 0.948488 0.731049 0.007338 0.004993 +10 0.919137 0.729346 0.008512 0.002951 +7 0.266070 0.730708 0.012621 0.016114 +7 0.878045 0.730708 0.013208 0.016568 +7 0.531993 0.730481 0.012621 0.016114 +7 0.140446 0.730481 0.012621 0.016114 +7 0.620047 0.730481 0.012621 0.016568 +6 0.172146 0.728438 0.012621 0.024739 +6 0.578662 0.727985 0.013208 0.025647 +6 0.226152 0.727531 0.012621 0.025647 +10 0.750367 0.693940 0.009099 0.003404 +9 0.385823 0.709374 0.011447 0.045166 +9 0.732756 0.712778 0.016143 0.051975 +9 0.833138 0.700749 0.011447 0.049251 +10 0.854858 0.641966 0.019665 0.005220 +10 0.140886 0.641512 0.009979 0.005220 +10 0.232609 0.627553 0.010860 0.003177 +9 0.217053 0.619496 0.010273 0.022923 +7 0.344438 0.614503 0.012621 0.016114 +7 0.465659 0.614503 0.012034 0.016568 +6 0.426035 0.613936 0.012621 0.029051 +6 0.373202 0.611779 0.012621 0.025193 +9 0.806868 0.610304 0.012328 0.054471 +9 0.761520 0.611779 0.010860 0.059691 +9 0.200910 0.607694 0.009686 0.064685 +9 0.175961 0.606446 0.005577 0.062188 +9 0.904755 0.601226 0.010860 0.057195 +10 0.640299 0.580232 0.007925 0.004766 +9 0.582771 0.604290 0.016143 0.043350 +9 0.265189 0.603382 0.017317 0.054698 +10 0.953772 0.633908 0.014969 0.004539 +7 0.613590 0.585452 0.013208 0.027009 +9 0.917376 0.545506 0.009099 0.010213 +7 0.960816 0.545166 0.013795 0.010894 +10 0.220282 0.540740 0.012034 0.005220 +10 0.477399 0.524852 0.016730 0.005220 +7 0.700763 0.510554 0.012621 0.015207 +7 0.590255 0.510894 0.012915 0.015887 +6 0.667009 0.508057 0.012034 0.024739 +6 0.617699 0.508284 0.012034 0.025193 +9 0.113736 0.499206 0.007338 0.044712 +10 0.184180 0.475148 0.010860 0.005674 +10 0.867772 0.473786 0.010273 0.004766 +7 0.897417 0.407286 0.013208 0.016114 +7 0.774141 0.406718 0.012034 0.015887 +6 0.857793 0.404335 0.012621 0.025647 +6 0.802025 0.404335 0.012621 0.025647 +9 0.661432 0.406151 0.009686 0.037903 +10 0.227326 0.388334 0.019665 0.004993 +9 0.376724 0.411371 0.009686 0.040172 +10 0.949369 0.382660 0.009099 0.005447 +10 0.795274 0.329891 0.012621 0.004766 +10 0.519959 0.322401 0.020839 0.005220 +10 0.946140 0.319224 0.012621 0.005220 +10 0.853977 0.333976 0.010273 0.003858 +10 0.824332 0.333749 0.016730 0.004312 +10 0.841943 0.333069 0.012034 0.005674 +9 0.602730 0.309691 0.010273 0.032910 +9 0.510860 0.306060 0.012034 0.040626 +10 0.304520 0.239560 0.012621 0.005220 +9 0.413854 0.229346 0.007631 0.023377 +9 0.316994 0.223105 0.013502 0.023150 +9 0.556795 0.220835 0.007631 0.029051 +9 0.615498 0.215729 0.009979 0.024739 +9 0.391987 0.221743 0.010860 0.037676 +9 0.753889 0.214253 0.007338 0.027236 +9 0.667596 0.211076 0.007338 0.033591 +8 0.589228 0.215956 0.012034 0.024285 +10 0.455679 0.151952 0.031406 0.002951 +10 0.798503 0.144689 0.007925 0.002951 +10 0.756824 0.143327 0.011447 0.006128 +9 0.667596 0.136518 0.010273 0.032456 +10 0.523188 0.155129 0.020839 0.004766 +9 0.741268 0.126305 0.006164 0.025647 +9 0.202084 0.126192 0.010273 0.036768 +9 0.147197 0.119837 0.010860 0.037676 +9 0.934106 0.122674 0.009099 0.043350 +9 0.123716 0.119610 0.014382 0.038130 +9 0.107279 0.122674 0.009686 0.048797 +7 0.470649 0.055493 0.012621 0.016114 +8 0.324773 0.058897 0.014382 0.022469 +7 0.292780 0.055493 0.012621 0.015660 +8 0.876284 0.058897 0.014969 0.022923 +7 0.842824 0.055493 0.012621 0.016114 +8 0.497652 0.058670 0.014969 0.022469 +8 0.145729 0.058443 0.013208 0.022015 +7 0.657910 0.055039 0.012621 0.015660 +8 0.686674 0.058216 0.014969 0.022923 +10 0.203845 0.047776 0.010860 0.005220 +6 0.107866 0.053223 0.012621 0.025193 +9 0.214412 0.030527 0.013208 0.036995 +9 0.745671 0.037108 0.014382 0.039719 +13 0.147197 0.965729 0.011447 0.007717 +13 0.225565 0.965502 0.010860 0.007717 +13 0.168036 0.961303 0.010860 0.007944 +13 0.350895 0.957558 0.011447 0.007263 +11 0.361168 0.923286 0.009686 0.007717 +13 0.247285 0.957558 0.010860 0.007263 +12 0.244497 0.935996 0.008805 0.007717 +13 0.200029 0.957217 0.011447 0.007036 +13 0.270179 0.953359 0.010860 0.007036 +13 0.318902 0.950409 0.010860 0.007490 +13 0.794687 0.940763 0.010273 0.006809 +13 0.571617 0.940763 0.011447 0.006809 +13 0.453331 0.940536 0.010860 0.007263 +13 0.374963 0.940309 0.011447 0.007263 +18 0.915762 0.935429 0.006457 0.003858 +13 0.399912 0.937358 0.012034 0.007717 +11 0.959055 0.935315 0.007925 0.004085 +18 0.968741 0.895030 0.010273 0.007490 +13 0.905342 0.934748 0.006164 0.004766 +13 0.908571 0.904902 0.009686 0.006809 +13 0.477986 0.934067 0.009686 0.007036 +13 0.885970 0.931684 0.009686 0.003177 +13 0.884649 0.908420 0.009979 0.007490 +13 0.429263 0.933840 0.009686 0.007490 +13 0.501174 0.930663 0.011447 0.007490 +13 0.548136 0.927485 0.010273 0.007490 +13 0.827267 0.924308 0.012034 0.007490 +13 0.595685 0.916364 0.010860 0.007490 +13 0.674053 0.916024 0.010273 0.007717 +13 0.851923 0.915910 0.010273 0.007944 +13 0.620634 0.912733 0.011447 0.008398 +13 0.697388 0.907853 0.008805 0.007717 +13 0.650279 0.907853 0.010860 0.007717 +13 0.721896 0.904675 0.009686 0.008625 +13 0.938509 0.901271 0.010860 0.007717 +13 0.769445 0.901271 0.012034 0.007717 +18 0.110508 0.889015 0.011447 0.007717 +13 0.221309 0.862460 0.011154 0.007263 +13 0.143675 0.862460 0.010860 0.007263 +13 0.168330 0.858715 0.009686 0.007944 +13 0.351776 0.855538 0.011447 0.007490 +13 0.246698 0.854970 0.009099 0.007263 +13 0.197534 0.854744 0.010566 0.007263 +13 0.271500 0.850318 0.010566 0.007036 +13 0.322131 0.847027 0.012034 0.007717 +13 0.375844 0.837040 0.011447 0.006809 +13 0.799384 0.837040 0.010860 0.007263 +13 0.577488 0.836813 0.009686 0.006809 +13 0.459055 0.836700 0.008805 0.006582 +13 0.400646 0.833976 0.011741 0.007944 +13 0.480481 0.830912 0.009979 0.005447 +13 0.432932 0.830572 0.009979 0.007036 +13 0.506017 0.827508 0.011741 0.007263 +13 0.551658 0.823990 0.010860 0.007490 +13 0.828441 0.820586 0.011447 0.007944 +13 0.852069 0.811847 0.009979 0.007717 +13 0.679190 0.811621 0.009979 0.007717 +13 0.602436 0.811621 0.009099 0.007717 +13 0.626945 0.807762 0.010566 0.007263 +13 0.880100 0.805039 0.010273 0.007717 +13 0.657617 0.804585 0.010273 0.007263 +13 0.701644 0.803790 0.010273 0.007490 +13 0.905342 0.802315 0.010273 0.007717 +13 0.726299 0.801180 0.010273 0.007717 +13 0.934547 0.798570 0.009392 0.007490 +13 0.773995 0.797435 0.009979 0.007944 +12 0.965659 0.791534 0.009979 0.008398 +13 0.777957 0.763277 0.010860 0.006809 +13 0.777077 0.736836 0.010273 0.007490 +13 0.509686 0.763050 0.010860 0.006355 +13 0.509099 0.737177 0.010860 0.007263 +13 0.855004 0.762823 0.010566 0.006809 +13 0.854564 0.737290 0.011447 0.007490 +13 0.753449 0.763050 0.009979 0.007263 +13 0.752421 0.743532 0.010273 0.007717 +13 0.430144 0.762937 0.010273 0.007490 +13 0.429850 0.736836 0.010860 0.007490 +13 0.652333 0.762369 0.010860 0.006809 +13 0.651746 0.743418 0.012034 0.007490 +13 0.407250 0.761916 0.010273 0.007263 +13 0.406956 0.743645 0.010860 0.007490 +13 0.302466 0.762483 0.010860 0.008398 +13 0.302759 0.743305 0.010273 0.007263 +13 0.730701 0.726850 0.010273 0.006582 +13 0.730114 0.712892 0.011447 0.006355 +13 0.682272 0.726963 0.010860 0.007263 +13 0.681832 0.713118 0.011154 0.006809 +13 0.384356 0.727077 0.011447 0.007490 +13 0.383475 0.713118 0.010860 0.006809 +13 0.336807 0.726736 0.011447 0.006809 +13 0.336807 0.712892 0.010273 0.006355 +13 0.831083 0.719927 0.011447 0.007263 +13 0.831083 0.700862 0.009686 0.007263 +13 0.806721 0.719700 0.010860 0.006809 +13 0.807015 0.700635 0.011447 0.007717 +13 0.484150 0.720268 0.011447 0.007944 +13 0.484004 0.700862 0.010566 0.007263 +13 0.458321 0.720268 0.011447 0.007944 +13 0.457734 0.700635 0.010273 0.007717 +12 0.109334 0.712438 0.008512 0.007717 +12 0.109627 0.693259 0.011447 0.007490 +18 0.848254 0.686904 0.009979 0.006582 +13 0.609774 0.638788 0.010860 0.006128 +12 0.502348 0.638788 0.009686 0.007490 +17 0.511594 0.589650 0.008218 0.007717 +13 0.713531 0.627213 0.011741 0.007490 +13 0.636484 0.627213 0.011447 0.007490 +13 0.829175 0.620631 0.010566 0.007490 +13 0.579542 0.620631 0.011447 0.007490 +13 0.578515 0.603382 0.009392 0.007490 +13 0.535222 0.620744 0.012034 0.007717 +13 0.534635 0.603268 0.009686 0.007263 +13 0.130613 0.620631 0.010566 0.007490 +13 0.735251 0.620517 0.011154 0.007717 +13 0.929704 0.614389 0.012034 0.007717 +13 0.859260 0.614163 0.012034 0.007263 +13 0.949956 0.614276 0.011447 0.007944 +13 0.692545 0.613822 0.010860 0.007036 +12 0.691371 0.596800 0.012034 0.007490 +13 0.667303 0.614049 0.012034 0.007490 +13 0.667303 0.596459 0.010860 0.007717 +13 0.159231 0.613822 0.011447 0.007490 +13 0.246991 0.613709 0.012034 0.007717 +13 0.225859 0.613822 0.012034 0.007944 +13 0.109334 0.606900 0.009099 0.007263 +13 0.109627 0.588062 0.010860 0.007717 +13 0.807602 0.604063 0.008512 0.007036 +13 0.807455 0.588743 0.009979 0.007263 +11 0.763575 0.603495 0.008512 0.007717 +13 0.763575 0.588062 0.009686 0.006355 +13 0.968741 0.597140 0.009099 0.006809 +13 0.968154 0.579324 0.009099 0.007036 +13 0.906222 0.597027 0.008512 0.007490 +13 0.905929 0.578416 0.010273 0.007490 +13 0.886117 0.596573 0.008218 0.007490 +13 0.885677 0.578643 0.009686 0.007036 +13 0.204726 0.596800 0.010860 0.007944 +13 0.204285 0.580912 0.009979 0.007036 +13 0.182125 0.596800 0.009099 0.007944 +13 0.181538 0.581026 0.010273 0.007263 +12 0.315674 0.596346 0.008512 0.007490 +12 0.315380 0.577281 0.010273 0.006582 +13 0.269005 0.596346 0.009099 0.008398 +13 0.268271 0.581480 0.009979 0.006809 +13 0.734957 0.534498 0.011154 0.008171 +13 0.830203 0.534385 0.010273 0.008398 +13 0.136043 0.533704 0.010860 0.007944 +13 0.923540 0.527009 0.010273 0.007263 +13 0.852069 0.526555 0.010566 0.007263 +13 0.163193 0.526441 0.009979 0.007036 +13 0.239213 0.526214 0.009392 0.007036 +12 0.946434 0.517476 0.011447 0.007717 +13 0.365277 0.517136 0.011447 0.007036 +13 0.804080 0.516909 0.012034 0.007036 +13 0.803786 0.503631 0.011447 0.007717 +13 0.770326 0.517136 0.011447 0.007490 +13 0.770179 0.503631 0.011741 0.007717 +13 0.262841 0.516795 0.012034 0.007263 +13 0.109627 0.516455 0.012034 0.007036 +13 0.108453 0.503518 0.010860 0.006582 +13 0.902554 0.510667 0.009392 0.007263 +11 0.901820 0.494099 0.010860 0.006809 +13 0.880100 0.510667 0.010860 0.007263 +13 0.880100 0.492851 0.010860 0.006128 +12 0.217640 0.510554 0.010860 0.007036 +12 0.216760 0.493985 0.011447 0.007490 +13 0.196947 0.510554 0.011741 0.007036 +13 0.196360 0.493078 0.010566 0.005674 +12 0.393455 0.510327 0.011447 0.007036 +13 0.494130 0.510213 0.012034 0.007263 +13 0.471823 0.510327 0.012034 0.007490 +13 0.971823 0.504085 0.008805 0.007263 +13 0.971089 0.486155 0.009686 0.007717 +13 0.338861 0.503972 0.010273 0.007036 +13 0.337540 0.485588 0.009979 0.007490 +13 0.291752 0.503631 0.009392 0.007263 +13 0.291312 0.485928 0.010273 0.007263 +12 0.562225 0.497276 0.009099 0.006809 +12 0.561638 0.479119 0.010273 0.007717 +13 0.514089 0.493418 0.007925 0.007263 +13 0.514382 0.479346 0.010860 0.008171 +13 0.450103 0.493305 0.010273 0.007944 +13 0.449809 0.478665 0.011447 0.007717 +13 0.426035 0.493191 0.009099 0.007717 +13 0.426328 0.478438 0.009686 0.007263 +13 0.463164 0.433386 0.010566 0.007944 +13 0.935574 0.431117 0.010273 0.007944 +13 0.487672 0.429187 0.010273 0.008171 +13 0.560170 0.426464 0.010860 0.007717 +13 0.530232 0.426350 0.010860 0.007490 +13 0.369093 0.426123 0.011447 0.007490 +13 0.581890 0.423059 0.010860 0.007263 +13 0.422219 0.422492 0.010860 0.007036 +13 0.393455 0.422379 0.010860 0.007263 +13 0.604197 0.419315 0.010860 0.007490 +13 0.443352 0.419315 0.010860 0.007944 +13 0.632081 0.415683 0.010273 0.006582 +13 0.254623 0.415683 0.011447 0.007490 +13 0.971969 0.413867 0.011447 0.007490 +13 0.971236 0.400136 0.009979 0.007263 +13 0.683299 0.412960 0.011741 0.007490 +13 0.684913 0.393214 0.009099 0.004766 +13 0.654682 0.412846 0.012034 0.007263 +13 0.320663 0.412619 0.012034 0.007717 +13 0.275756 0.412506 0.011447 0.007490 +13 0.151600 0.409215 0.009686 0.006809 +13 0.706780 0.408988 0.010566 0.006809 +13 0.341796 0.409101 0.010860 0.007036 +13 0.210596 0.406151 0.011447 0.007036 +12 0.749340 0.406264 0.011154 0.007717 +13 0.181244 0.405924 0.011447 0.007490 +13 0.234077 0.402746 0.011447 0.007944 +13 0.110214 0.399228 0.011447 0.007717 +13 0.128999 0.395937 0.011447 0.007490 +17 0.417816 0.328302 0.006751 0.003858 +13 0.427502 0.301861 0.009099 0.007263 +13 0.945113 0.320699 0.010566 0.006809 +13 0.257118 0.319678 0.009979 0.007036 +13 0.966393 0.317635 0.011447 0.007490 +13 0.316994 0.316500 0.011741 0.007944 +13 0.275169 0.316387 0.012034 0.007717 +13 0.838861 0.313663 0.009979 0.007263 +13 0.334752 0.313436 0.010273 0.007263 +13 0.153067 0.313209 0.009686 0.007263 +13 0.895950 0.310372 0.011447 0.007944 +13 0.866305 0.310372 0.012034 0.007944 +13 0.362049 0.310145 0.012034 0.007944 +13 0.205313 0.309918 0.010860 0.007944 +13 0.178603 0.309918 0.011447 0.007944 +13 0.925594 0.307308 0.009686 0.007263 +13 0.758585 0.307081 0.010273 0.007263 +13 0.731582 0.306400 0.009099 0.006809 +13 0.382008 0.306741 0.009686 0.007490 +13 0.230261 0.306741 0.010273 0.007490 +13 0.408864 0.306514 0.009979 0.007490 +13 0.791165 0.301861 0.009686 0.007263 +13 0.109334 0.302088 0.010273 0.007717 +12 0.702231 0.301521 0.010273 0.007944 +13 0.819930 0.299365 0.010860 0.007717 +13 0.455679 0.298911 0.010273 0.006809 +12 0.604197 0.299138 0.010273 0.007717 +13 0.134282 0.298457 0.009686 0.008625 +13 0.558996 0.295393 0.010273 0.007944 +13 0.481509 0.295279 0.011447 0.007717 +12 0.647490 0.294598 0.010566 0.007717 +12 0.577928 0.292329 0.009392 0.007263 +13 0.539037 0.291875 0.010273 0.007263 +12 0.511154 0.291875 0.009686 0.008171 +12 0.674640 0.287222 0.010273 0.007490 +13 0.416495 0.223672 0.009392 0.007944 +13 0.490461 0.220608 0.010566 0.007263 +13 0.443058 0.220268 0.011447 0.007490 +13 0.968007 0.217885 0.009392 0.006809 +13 0.942618 0.218112 0.010860 0.007263 +13 0.345025 0.217431 0.010273 0.006809 +13 0.543440 0.217431 0.010273 0.007263 +13 0.516143 0.217544 0.010860 0.007490 +13 0.317435 0.217204 0.010273 0.007263 +12 0.911799 0.213005 0.009686 0.007490 +13 0.365864 0.212892 0.009686 0.007717 +13 0.562812 0.212211 0.009686 0.007717 +12 0.808483 0.210054 0.010860 0.007036 +13 0.211623 0.210168 0.009392 0.007263 +13 0.590402 0.209941 0.010273 0.007263 +13 0.393455 0.210281 0.009686 0.007944 +13 0.618433 0.209487 0.009979 0.008171 +12 0.858086 0.206990 0.010273 0.007263 +13 0.759613 0.206537 0.010566 0.007717 +12 0.176108 0.206196 0.011741 0.007490 +13 0.277223 0.206083 0.010860 0.007717 +13 0.674347 0.205629 0.011447 0.007717 +13 0.646463 0.205515 0.010860 0.007490 +13 0.234370 0.205742 0.010860 0.007944 +12 0.781186 0.203246 0.010273 0.007036 +13 0.740681 0.202905 0.011447 0.007717 +12 0.708101 0.202905 0.009686 0.007717 +13 0.296302 0.202678 0.010273 0.007263 +12 0.884356 0.200295 0.009392 0.007490 +12 0.109334 0.199841 0.010860 0.007490 +18 0.138392 0.191670 0.010273 0.007490 +12 0.705166 0.144462 0.009686 0.004766 +13 0.714558 0.119610 0.009686 0.007263 +11 0.683152 0.145030 0.009686 0.008171 +13 0.689316 0.123128 0.009686 0.007944 +13 0.564279 0.134703 0.010860 0.006128 +13 0.638538 0.130844 0.010273 0.007944 +13 0.593190 0.130844 0.009979 0.007944 +13 0.490608 0.128121 0.010273 0.007490 +13 0.461697 0.127667 0.011741 0.007490 +13 0.669210 0.127553 0.010566 0.007717 +13 0.514676 0.123355 0.009686 0.007944 +13 0.542853 0.120517 0.010273 0.007717 +13 0.352950 0.120064 0.009686 0.007263 +13 0.744937 0.119156 0.009392 0.006355 +13 0.372909 0.116319 0.010860 0.007944 +13 0.771500 0.116092 0.010860 0.007944 +12 0.417523 0.116092 0.010860 0.007944 +12 0.313913 0.115751 0.011447 0.007717 +12 0.204139 0.113482 0.010273 0.007263 +13 0.793807 0.113028 0.009686 0.007263 +12 0.961109 0.112914 0.009686 0.007490 +13 0.438802 0.112574 0.009392 0.007263 +13 0.912680 0.109850 0.009099 0.007263 +12 0.248312 0.109510 0.009392 0.007036 +13 0.155122 0.109510 0.009686 0.007490 +13 0.815674 0.108829 0.009979 0.007036 +12 0.935574 0.107013 0.009099 0.007944 +12 0.177282 0.106446 0.010566 0.006809 +12 0.889786 0.106219 0.010273 0.007263 +12 0.133549 0.106105 0.009979 0.007036 +18 0.109627 0.105992 0.010273 0.006809 +12 0.859114 0.106219 0.010566 0.008171 +18 0.275169 0.102814 0.011447 0.007263 +17 0.391694 0.053109 0.007925 0.003177 +11 0.403287 0.024852 0.009979 0.008398 +12 0.947168 0.052996 0.006457 0.003858 +13 0.958174 0.020540 0.010273 0.007944 +13 0.777370 0.024512 0.009099 0.007263 +18 0.727473 0.051975 0.012034 0.004539 +13 0.348841 0.031434 0.010273 0.007036 +13 0.168917 0.031775 0.009686 0.008171 +12 0.717053 0.031094 0.008805 0.007263 +12 0.905342 0.028257 0.010273 0.007490 +13 0.193279 0.027803 0.009099 0.007490 +13 0.372909 0.027576 0.010273 0.007490 +13 0.530819 0.027236 0.010273 0.007263 +13 0.936161 0.024966 0.009686 0.007263 +13 0.223217 0.024852 0.010273 0.007944 +13 0.590842 0.024399 0.009979 0.007490 +13 0.746258 0.024285 0.010273 0.008171 +13 0.561931 0.024058 0.009099 0.008171 +12 0.266657 0.020313 0.010273 0.007490 +12 0.441297 0.019973 0.010860 0.007263 +12 0.814059 0.019859 0.009686 0.007944 +12 0.628852 0.019292 0.010273 0.007263 +4 0.211183 0.024172 0.010860 0.021108 +3 0.734517 0.024399 0.007925 0.021108 +3 0.301291 0.117227 0.007338 0.021562 +3 0.098180 0.106786 0.006164 0.019292 +3 0.925594 0.025306 0.007338 0.021562 +3 0.549604 0.023945 0.007925 0.021562 +3 0.518491 0.028484 0.007925 0.021562 +4 0.764749 0.024172 0.010860 0.021562 +5 0.531406 0.117000 0.009686 0.017930 +1 0.037423 0.055379 0.024949 0.050840 +5 0.200029 0.206423 0.009099 0.017022 +4 0.097300 0.398207 0.010273 0.020200 +3 0.893308 0.030527 0.007338 0.021108 +3 0.733343 0.120858 0.007338 0.021562 +4 0.662313 0.207104 0.010860 0.021562 +4 0.409891 0.422152 0.010860 0.020881 +4 0.264896 0.207331 0.010860 0.021108 +4 0.960082 0.218112 0.018198 0.020881 +3 0.635897 0.206650 0.007338 0.021562 +4 0.477986 0.128121 0.010860 0.021108 +5 0.382008 0.205969 0.009099 0.017476 +5 0.124303 0.294939 0.008512 0.017022 +4 0.746551 0.307649 0.010860 0.019292 +4 0.307749 0.412052 0.009686 0.020200 +3 0.657910 0.127894 0.007925 0.022015 +3 0.549604 0.476736 0.007338 0.016568 +3 0.582477 0.131071 0.007338 0.021562 +3 0.761520 0.117000 0.008512 0.022015 +4 0.332110 0.217317 0.010273 0.021108 +5 0.703698 0.116546 0.009099 0.017476 +4 0.404902 0.117794 0.010273 0.021335 +4 0.390226 0.024626 0.010860 0.021562 +4 0.395509 0.306741 0.010860 0.021108 +4 0.479014 0.220495 0.010566 0.021562 +5 0.624156 0.623808 0.009099 0.017930 +1 0.035368 0.144916 0.024949 0.050613 +1 0.035075 0.234453 0.024949 0.051294 +5 0.339742 0.117000 0.009099 0.017476 +3 0.185647 0.855992 0.007925 0.020654 +5 0.579249 0.207104 0.009099 0.017476 +5 0.958761 0.482978 0.009686 0.017703 +4 0.245230 0.319678 0.010860 0.020654 +4 0.626504 0.130617 0.010860 0.022015 +3 0.164514 0.207558 0.007338 0.021108 +4 0.578662 0.023945 0.010860 0.021562 +5 0.807602 0.295393 0.008512 0.015207 +3 0.607573 0.210508 0.008218 0.021108 +3 0.549457 0.497617 0.008218 0.019292 +4 0.546962 0.428393 0.010273 0.018838 +3 0.325653 0.726396 0.007925 0.021562 +5 0.761227 0.795166 0.009686 0.017476 +5 0.873936 0.575465 0.008512 0.017022 +3 0.432345 0.220495 0.007631 0.021562 +5 0.489434 0.635384 0.009686 0.017022 +4 0.304227 0.316500 0.010273 0.021562 +4 0.883328 0.310145 0.010860 0.022015 +3 0.639712 0.908874 0.008512 0.021562 +3 0.519078 0.426804 0.007338 0.020200 +4 0.950837 0.792783 0.010860 0.021788 +3 0.097887 0.694167 0.006751 0.020200 +3 0.219108 0.306968 0.007925 0.021108 +5 0.309216 0.844190 0.009686 0.018384 +1 0.035368 0.510213 0.025536 0.050840 +3 0.815527 0.924308 0.007338 0.021108 +5 0.817288 0.531888 0.009099 0.017930 +5 0.655562 0.610418 0.009686 0.017476 +5 0.146316 0.610645 0.009099 0.016568 +5 0.277517 0.482410 0.009099 0.017476 +3 0.816701 0.820586 0.007925 0.021562 +1 0.035368 0.406491 0.024949 0.051294 +5 0.381567 0.507149 0.009392 0.017022 +5 0.846639 0.610872 0.009099 0.017022 +5 0.152187 0.523718 0.009099 0.017022 +3 0.868066 0.805379 0.007338 0.021108 +3 0.915028 0.307649 0.007338 0.021562 +5 0.924127 0.427258 0.008512 0.017476 +4 0.670238 0.412506 0.010273 0.021108 +5 0.722483 0.530527 0.009686 0.017476 +5 0.750660 0.585225 0.008512 0.017022 +3 0.621515 0.416137 0.007925 0.020200 +5 0.566628 0.599523 0.009099 0.017930 +3 0.719548 0.726850 0.007925 0.021562 +3 0.372028 0.726396 0.007925 0.021562 +5 0.302466 0.575011 0.009099 0.016568 +3 0.351189 0.309464 0.006751 0.022015 +1 0.033314 0.834657 0.024949 0.051067 +1 0.034194 0.730254 0.024949 0.051067 +3 0.189169 0.958352 0.007338 0.021108 +1 0.035662 0.323309 0.024949 0.050613 +5 0.097300 0.585225 0.008512 0.017476 +1 0.034488 0.613822 0.023775 0.051521 +3 0.873055 0.908874 0.007925 0.022015 +3 0.169797 0.406151 0.007338 0.020654 +1 0.037423 0.934635 0.025536 0.044485 +3 0.340035 0.957898 0.007338 0.021562 +3 0.794100 0.702565 0.007925 0.020654 +3 0.340035 0.855765 0.007925 0.021562 +3 0.670825 0.726623 0.007925 0.021108 +3 0.446287 0.702338 0.007338 0.021108 +3 0.418697 0.933386 0.007338 0.021108 +5 0.596419 0.635724 0.009979 0.018157 +3 0.419871 0.830572 0.007925 0.021562 +3 0.644702 0.805606 0.007925 0.021108 +5 0.305988 0.946777 0.009686 0.017476 +5 0.353537 0.513958 0.009099 0.017022 +5 0.926181 0.898888 0.008512 0.017476 +4 0.198855 0.405470 0.010273 0.019292 +4 0.954946 0.895143 0.010860 0.021335 +5 0.124596 0.530073 0.009099 0.017022 +5 0.539037 0.820359 0.009099 0.017476 +5 0.922366 0.795620 0.009099 0.017930 +5 0.736572 0.402973 0.009099 0.017476 +3 0.855151 0.310372 0.007338 0.021562 +5 0.537129 0.923627 0.009979 0.017022 +5 0.868653 0.507149 0.009686 0.017476 +5 0.757411 0.897980 0.009099 0.017930 +3 0.167596 0.309578 0.006457 0.020427 +4 0.192838 0.309351 0.009979 0.020881 +5 0.180657 0.506809 0.008512 0.016341 +5 0.183152 0.490921 0.007631 0.015433 +3 0.505283 0.217431 0.007338 0.019519 +4 0.530232 0.217431 0.010273 0.020427 +5 0.791899 0.599864 0.008218 0.017249 +5 0.794247 0.586246 0.008218 0.016341 +4 0.073672 0.726282 0.010566 0.020427 +4 0.063986 0.715842 0.009979 0.020427 +3 0.444086 0.299818 0.006457 0.020881 +4 0.468447 0.296414 0.009392 0.020427 +5 0.323892 0.500454 0.008512 0.016795 +5 0.324332 0.482070 0.008218 0.016341 +5 0.093631 0.513391 0.008805 0.015887 +4 0.072498 0.230141 0.009979 0.020427 +4 0.062372 0.220495 0.010273 0.020200 +4 0.074552 0.933046 0.009979 0.020881 +4 0.064426 0.923286 0.010273 0.020427 +4 0.073085 0.830685 0.009979 0.020427 +4 0.063105 0.820472 0.009979 0.020881 +4 0.073672 0.051521 0.009979 0.019973 +4 0.063986 0.041534 0.010566 0.019065 +3 0.755503 0.517022 0.007044 0.019973 +3 0.757998 0.501362 0.007925 0.020427 +4 0.073378 0.402179 0.009979 0.020427 +4 0.063986 0.391512 0.009979 0.021788 +4 0.071617 0.610077 0.009392 0.020427 +4 0.061344 0.599410 0.009979 0.020881 +5 0.956267 0.410236 0.008805 0.017022 +5 0.959495 0.398320 0.008218 0.013164 +4 0.073085 0.320018 0.009979 0.019519 +4 0.063692 0.309578 0.009979 0.020427 +4 0.072791 0.141171 0.009979 0.020427 +4 0.063105 0.131185 0.010566 0.020427 +4 0.072645 0.506355 0.010860 0.020881 +4 0.063252 0.495915 0.009686 0.019065 +5 0.521573 0.597935 0.008805 0.020654 +5 0.411652 0.476963 0.009099 0.020654 +4 0.411652 0.487857 0.009099 0.020654 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_22.jpg b/data_dataset/tch/debug/debug_22.jpg new file mode 100644 index 0000000..2dff0c6 Binary files /dev/null and b/data_dataset/tch/debug/debug_22.jpg differ diff --git a/data_dataset/tch/debug/debug_22.txt b/data_dataset/tch/debug/debug_22.txt new file mode 100644 index 0000000..2cd2221 --- /dev/null +++ b/data_dataset/tch/debug/debug_22.txt @@ -0,0 +1,513 @@ +6 0.683817 0.950669 0.012606 0.024722 +10 0.928027 0.941370 0.014952 0.006124 +10 0.835092 0.940463 0.013193 0.005670 +9 0.375696 0.945906 0.011434 0.042867 +9 0.204046 0.945906 0.012313 0.042413 +9 0.561859 0.945679 0.012020 0.043320 +10 0.559660 0.859265 0.007622 0.002949 +10 0.332161 0.856997 0.007622 0.003856 +10 0.367781 0.850193 0.007916 0.004763 +10 0.169305 0.845657 0.010847 0.003402 +10 0.809880 0.844296 0.011434 0.005670 +10 0.139109 0.844069 0.011434 0.005217 +9 0.359279 0.840440 0.010847 0.031526 +10 0.556288 0.832275 0.007329 0.004309 +9 0.916740 0.843162 0.009381 0.042867 +9 0.181618 0.827172 0.015538 0.036289 +9 0.446350 0.828873 0.009088 0.036970 +10 0.680592 0.752892 0.009088 0.002949 +10 0.840369 0.753119 0.007329 0.003856 +9 0.553943 0.746995 0.014952 0.031526 +9 0.575638 0.740077 0.011434 0.024949 +10 0.475374 0.726355 0.007916 0.002495 +9 0.290091 0.730665 0.007916 0.036970 +8 0.327323 0.726809 0.009675 0.031980 +7 0.774406 0.642663 0.010847 0.057836 +10 0.140281 0.624518 0.010261 0.003402 +10 0.784374 0.608641 0.009675 0.005217 +10 0.625476 0.606373 0.009675 0.004763 +10 0.120932 0.533114 0.016711 0.004763 +10 0.512313 0.522000 0.012606 0.002495 +10 0.491791 0.521774 0.011434 0.003402 +10 0.831281 0.518372 0.007916 0.003402 +10 0.802257 0.516557 0.013193 0.002495 +10 0.117414 0.439669 0.011434 0.006577 +10 0.462181 0.431957 0.011434 0.005217 +10 0.134418 0.430370 0.007916 0.002495 +10 0.231164 0.429689 0.010261 0.002495 +10 0.265172 0.427308 0.009088 0.002722 +10 0.163149 0.428102 0.010261 0.005670 +10 0.826297 0.426968 0.009088 0.005670 +10 0.484462 0.430143 0.023160 0.003402 +10 0.407652 0.425834 0.019642 0.004763 +10 0.381266 0.424359 0.023160 0.003629 +10 0.538991 0.342822 0.010847 0.006124 +10 0.865875 0.277501 0.008502 0.005670 +7 0.123278 0.254820 0.012606 0.016103 +6 0.248754 0.252552 0.012606 0.024722 +6 0.147024 0.252325 0.012020 0.025629 +9 0.498241 0.178385 0.010261 0.009753 +8 0.488273 0.178385 0.007916 0.009753 +10 0.348138 0.169313 0.020815 0.002949 +10 0.760921 0.154343 0.009088 0.004763 +10 0.507622 0.147539 0.007916 0.004763 +10 0.679126 0.146405 0.007329 0.004763 +10 0.579595 0.140508 0.008209 0.002495 +10 0.433451 0.136425 0.007916 0.006577 +10 0.391234 0.166024 0.014365 0.003629 +9 0.248168 0.139374 0.011434 0.034248 +10 0.430812 0.062259 0.007329 0.006124 +10 0.037086 0.061238 0.007916 0.006351 +10 0.816916 0.056816 0.010261 0.005670 +9 0.331428 0.058403 0.014365 0.044228 +10 0.902814 0.060218 0.010847 0.004763 +12 0.961741 0.976298 0.008502 0.006577 +12 0.851950 0.975391 0.008209 0.006577 +12 0.946643 0.973463 0.008795 0.005443 +12 0.872618 0.972670 0.008502 0.005670 +11 0.607446 0.970401 0.005863 0.004309 +11 0.913955 0.970288 0.007916 0.005443 +12 0.482703 0.955999 0.008502 0.005897 +12 0.127529 0.955545 0.008795 0.006351 +12 0.127382 0.945452 0.011434 0.005670 +12 0.836998 0.952143 0.008795 0.005897 +12 0.099824 0.952710 0.009675 0.007031 +12 0.099678 0.942050 0.011140 0.008392 +11 0.656113 0.952484 0.010554 0.007031 +17 0.655233 0.942504 0.011727 0.007938 +11 0.462768 0.952710 0.009675 0.007485 +17 0.459249 0.942050 0.005570 0.004309 +18 0.464233 0.977546 0.007916 0.003629 +11 0.290970 0.952484 0.010847 0.007485 +18 0.615802 0.950102 0.006157 0.004536 +12 0.428467 0.949535 0.009088 0.006577 +13 0.256523 0.949195 0.007622 0.005897 +12 0.257842 0.938762 0.012020 0.008619 +12 0.821313 0.948741 0.008502 0.006351 +12 0.341395 0.946587 0.010261 0.006577 +12 0.593521 0.946246 0.010261 0.006804 +12 0.406186 0.946020 0.009675 0.006804 +12 0.232630 0.946020 0.009675 0.006804 +11 0.205365 0.942731 0.007916 0.005670 +12 0.505717 0.942958 0.008795 0.006577 +12 0.506889 0.930370 0.010554 0.008619 +11 0.563325 0.942617 0.008502 0.006804 +11 0.563618 0.930143 0.010847 0.007258 +12 0.528291 0.942617 0.008795 0.006804 +12 0.528731 0.929803 0.010847 0.007485 +11 0.377602 0.942617 0.009381 0.006804 +12 0.379068 0.929236 0.007036 0.004990 +12 0.149370 0.942844 0.009675 0.007258 +12 0.149370 0.931050 0.010847 0.008619 +12 0.319701 0.936267 0.009088 0.005897 +12 0.321020 0.922772 0.009968 0.007938 +12 0.170478 0.930483 0.007329 0.006577 +12 0.169305 0.942731 0.008502 0.005670 +13 0.550425 0.855976 0.005570 0.004990 +13 0.552770 0.834543 0.010261 0.007485 +13 0.341542 0.851213 0.014658 0.006351 +13 0.338464 0.834203 0.010847 0.007711 +17 0.712108 0.850079 0.009381 0.004536 +13 0.730138 0.846110 0.007329 0.004309 +13 0.724274 0.823429 0.009675 0.007485 +13 0.226327 0.846110 0.009381 0.005670 +13 0.239079 0.826945 0.010261 0.006351 +12 0.949868 0.843389 0.009381 0.006577 +12 0.950601 0.832161 0.012020 0.007711 +12 0.409997 0.839306 0.019056 0.003856 +13 0.427880 0.819460 0.010261 0.006804 +12 0.404280 0.822522 0.008795 0.007485 +12 0.920551 0.839873 0.010554 0.006804 +13 0.318528 0.837945 0.012020 0.007938 +13 0.616095 0.837718 0.011434 0.007938 +13 0.533275 0.837378 0.011140 0.007711 +12 0.639842 0.834430 0.010847 0.006804 +13 0.283788 0.834089 0.010554 0.007485 +13 0.572413 0.831027 0.010847 0.007711 +13 0.661536 0.831027 0.010847 0.008165 +13 0.262533 0.830914 0.011434 0.007938 +13 0.362210 0.830574 0.011434 0.007711 +13 0.701114 0.828192 0.011434 0.007031 +13 0.595427 0.827399 0.010554 0.006804 +13 0.510554 0.827512 0.010261 0.007031 +13 0.135884 0.827625 0.010261 0.007258 +13 0.383319 0.827172 0.010261 0.006804 +13 0.098798 0.822749 0.009381 0.007485 +13 0.208883 0.822295 0.009675 0.007031 +13 0.156113 0.822182 0.008502 0.006804 +13 0.748021 0.820708 0.010261 0.007031 +13 0.186602 0.819687 0.009675 0.008165 +13 0.449868 0.816171 0.010847 0.007485 +13 0.769129 0.812543 0.010261 0.007938 +12 0.822193 0.810274 0.009675 0.007031 +11 0.873351 0.810161 0.009968 0.007258 +12 0.791117 0.809027 0.009675 0.007258 +13 0.470976 0.808573 0.009675 0.007711 +11 0.098358 0.761511 0.009675 0.006577 +11 0.098651 0.737582 0.011434 0.007711 +12 0.450748 0.754026 0.010847 0.007485 +11 0.460862 0.733726 0.007622 0.006804 +13 0.470683 0.750964 0.010847 0.007711 +11 0.479332 0.732479 0.005277 0.004763 +13 0.414395 0.750624 0.010847 0.007938 +18 0.841835 0.746655 0.008502 0.003175 +13 0.166667 0.747335 0.011434 0.006804 +13 0.491205 0.747108 0.010847 0.007258 +13 0.395778 0.746995 0.011140 0.007031 +13 0.144972 0.744613 0.010261 0.007258 +13 0.375989 0.744160 0.011434 0.007258 +13 0.283348 0.744160 0.010261 0.007258 +13 0.215479 0.744160 0.010554 0.007711 +13 0.188654 0.744273 0.012020 0.007938 +13 0.511727 0.744046 0.012020 0.007938 +13 0.251099 0.740871 0.011434 0.007485 +13 0.534447 0.740531 0.009381 0.007258 +13 0.347112 0.740304 0.011140 0.007711 +13 0.303870 0.740304 0.011434 0.007711 +13 0.557608 0.737355 0.011140 0.008165 +13 0.324831 0.737242 0.011140 0.007938 +13 0.576517 0.733613 0.010261 0.007938 +13 0.832747 0.731345 0.011434 0.007938 +13 0.737614 0.730778 0.011140 0.007711 +13 0.655086 0.730324 0.010261 0.008165 +13 0.758868 0.727489 0.011434 0.006577 +13 0.596453 0.727036 0.010261 0.005670 +13 0.674729 0.726809 0.010847 0.007485 +13 0.779244 0.724314 0.010554 0.007485 +13 0.695837 0.723747 0.010847 0.007711 +13 0.811052 0.721025 0.010847 0.007258 +13 0.854881 0.720798 0.011140 0.007258 +13 0.717532 0.720458 0.010847 0.006577 +13 0.630900 0.720345 0.010554 0.007258 +13 0.874230 0.716602 0.009968 0.007938 +13 0.964087 0.714675 0.010261 0.008165 +13 0.936529 0.714221 0.009088 0.007711 +13 0.894313 0.712747 0.009088 0.007485 +13 0.915714 0.710365 0.009675 0.007258 +13 0.124743 0.672715 0.010261 0.007711 +12 0.795808 0.669653 0.010847 0.007938 +12 0.794782 0.645271 0.009968 0.006351 +12 0.378628 0.668519 0.010261 0.007485 +12 0.378042 0.644591 0.009088 0.006804 +12 0.771475 0.666024 0.011434 0.007938 +12 0.771768 0.641869 0.010847 0.007711 +11 0.571094 0.665344 0.010554 0.007485 +11 0.570361 0.641302 0.011434 0.007485 +13 0.147464 0.665797 0.011140 0.008846 +12 0.354002 0.664777 0.011434 0.008165 +12 0.353855 0.641302 0.011140 0.007485 +12 0.952360 0.663756 0.010847 0.007485 +12 0.951481 0.639261 0.009088 0.006577 +12 0.531076 0.661941 0.010261 0.007031 +12 0.530636 0.637106 0.010554 0.005443 +12 0.731310 0.661715 0.010847 0.007485 +12 0.731164 0.637900 0.010554 0.006124 +12 0.311785 0.661261 0.011434 0.007485 +12 0.311052 0.637106 0.009968 0.006351 +12 0.925682 0.659447 0.010261 0.007031 +12 0.926854 0.635972 0.010261 0.007258 +12 0.287746 0.657972 0.011434 0.006351 +12 0.287892 0.634498 0.010554 0.007485 +12 0.704632 0.658199 0.011434 0.007258 +12 0.705218 0.634838 0.010261 0.007711 +12 0.504984 0.657972 0.010847 0.007258 +12 0.504984 0.634498 0.010847 0.007485 +12 0.630460 0.657972 0.010847 0.007711 +12 0.630753 0.634724 0.011434 0.007485 +13 0.167253 0.657632 0.010847 0.007031 +11 0.888303 0.655591 0.011727 0.007485 +11 0.887863 0.632116 0.009675 0.006804 +12 0.824538 0.655477 0.012020 0.007711 +12 0.824099 0.631663 0.009968 0.006351 +12 0.847405 0.655364 0.012020 0.007938 +12 0.847552 0.632116 0.009968 0.006351 +11 0.670918 0.654910 0.012020 0.007938 +11 0.669452 0.631209 0.010261 0.005897 +11 0.470683 0.654797 0.011434 0.007711 +12 0.469217 0.631209 0.009675 0.007258 +12 0.431692 0.654570 0.012020 0.007258 +12 0.430959 0.630755 0.010554 0.006804 +12 0.406332 0.654570 0.011727 0.007258 +12 0.405453 0.630869 0.009968 0.006124 +11 0.251686 0.654684 0.012020 0.007485 +11 0.251099 0.630869 0.010847 0.006577 +12 0.214746 0.654684 0.012020 0.007485 +12 0.213574 0.630982 0.009675 0.006351 +12 0.189534 0.654457 0.011434 0.007031 +12 0.188068 0.631209 0.010261 0.006804 +12 0.604222 0.648333 0.011140 0.007938 +12 0.603635 0.624745 0.009968 0.007031 +13 0.098945 0.641075 0.010261 0.007031 +13 0.098945 0.648106 0.010261 0.007031 +18 0.271621 0.584713 0.009088 0.004536 +13 0.960862 0.565548 0.010847 0.007485 +13 0.909264 0.565434 0.010847 0.007711 +13 0.832014 0.564867 0.011140 0.007031 +13 0.807095 0.564867 0.010554 0.007031 +13 0.363237 0.564754 0.010554 0.006804 +12 0.131193 0.564981 0.009675 0.007258 +13 0.690560 0.564641 0.010847 0.007031 +13 0.240399 0.564641 0.009968 0.007031 +13 0.742304 0.564414 0.010554 0.007031 +13 0.583700 0.564527 0.010554 0.007258 +13 0.519349 0.564414 0.010847 0.007031 +13 0.636470 0.564300 0.010554 0.007258 +13 0.468631 0.564300 0.011434 0.007258 +13 0.389329 0.564414 0.011140 0.007485 +13 0.158458 0.564300 0.010261 0.007258 +12 0.293462 0.564187 0.010554 0.007485 +13 0.182498 0.555001 0.010847 0.005897 +13 0.181618 0.547857 0.010847 0.007031 +13 0.610525 0.550692 0.011434 0.006804 +13 0.610525 0.557496 0.011434 0.006804 +13 0.883026 0.549104 0.011140 0.005897 +13 0.883465 0.541279 0.010847 0.007485 +13 0.858546 0.548083 0.012606 0.007485 +13 0.857813 0.537537 0.009968 0.007258 +13 0.716652 0.548197 0.012606 0.007711 +13 0.715479 0.537310 0.010261 0.007711 +13 0.663295 0.548083 0.011434 0.007485 +13 0.662709 0.537310 0.010261 0.007711 +13 0.443272 0.548083 0.009968 0.007485 +13 0.443418 0.539351 0.010261 0.006351 +13 0.780416 0.548083 0.011140 0.007938 +13 0.779390 0.537197 0.010261 0.007031 +13 0.098358 0.547630 0.010847 0.007031 +13 0.098358 0.554661 0.010847 0.007031 +13 0.560246 0.547290 0.011727 0.007258 +13 0.560246 0.554548 0.011727 0.007258 +11 0.214453 0.544795 0.008502 0.005443 +12 0.215333 0.526763 0.011434 0.007485 +13 0.935649 0.544568 0.010847 0.006804 +13 0.935649 0.551372 0.010847 0.006804 +13 0.494430 0.543661 0.011434 0.006804 +13 0.494430 0.550465 0.011434 0.006804 +13 0.415567 0.543661 0.010847 0.007711 +17 0.268690 0.540939 0.012606 0.008165 +13 0.337584 0.537083 0.010847 0.006804 +13 0.337584 0.543888 0.010847 0.006804 +13 0.098945 0.480381 0.010261 0.007258 +13 0.959836 0.472896 0.011140 0.007258 +13 0.910144 0.472556 0.010847 0.007031 +13 0.831574 0.472329 0.010847 0.007031 +13 0.363383 0.472329 0.010261 0.007031 +13 0.129727 0.472216 0.010847 0.006804 +17 0.138229 0.435019 0.006157 0.005443 +13 0.390208 0.472103 0.009968 0.007031 +13 0.806362 0.472103 0.011434 0.007485 +13 0.583260 0.471876 0.010261 0.007031 +13 0.291557 0.471989 0.010847 0.007258 +13 0.689241 0.471762 0.011140 0.007258 +13 0.637057 0.471649 0.011140 0.007031 +13 0.466432 0.471876 0.009968 0.007485 +13 0.238786 0.471762 0.010847 0.007258 +13 0.742451 0.471649 0.012020 0.007485 +13 0.517297 0.471649 0.010847 0.007485 +13 0.558634 0.462236 0.010261 0.007258 +13 0.558927 0.454752 0.010847 0.007258 +13 0.157432 0.462350 0.011140 0.007485 +13 0.609645 0.458154 0.011434 0.006351 +13 0.609645 0.464504 0.011434 0.006351 +13 0.884785 0.456226 0.011727 0.006577 +13 0.884052 0.448401 0.009088 0.006804 +13 0.858399 0.455886 0.011727 0.007258 +13 0.857666 0.444999 0.009088 0.006351 +13 0.715479 0.455886 0.012020 0.007258 +13 0.714600 0.445112 0.010261 0.007485 +13 0.780563 0.455772 0.010847 0.007485 +13 0.779390 0.445112 0.009675 0.007031 +13 0.441513 0.455659 0.010554 0.007258 +13 0.441659 0.447721 0.010847 0.007258 +13 0.663588 0.455545 0.011434 0.007485 +13 0.663588 0.444318 0.010261 0.006804 +13 0.935943 0.452710 0.010847 0.006351 +13 0.935943 0.459061 0.010847 0.006351 +13 0.492378 0.451123 0.010261 0.006804 +13 0.492378 0.457927 0.010261 0.006804 +13 0.181911 0.448855 0.010847 0.007711 +13 0.211815 0.445679 0.010847 0.006804 +13 0.211815 0.452484 0.010847 0.006804 +13 0.336118 0.444999 0.010847 0.006804 +13 0.336118 0.451803 0.010847 0.006804 +13 0.266931 0.445112 0.010847 0.007031 +13 0.266931 0.452143 0.010847 0.007031 +13 0.414688 0.444772 0.012020 0.006804 +13 0.414688 0.451576 0.012020 0.006804 +17 0.099531 0.375936 0.012020 0.007485 +11 0.162562 0.375822 0.010261 0.007711 +12 0.809000 0.372193 0.010847 0.007258 +12 0.389182 0.371513 0.010847 0.007258 +12 0.784960 0.368564 0.010847 0.008165 +12 0.362943 0.367997 0.009968 0.007031 +11 0.584140 0.367770 0.011434 0.007485 +12 0.540751 0.365389 0.010261 0.007258 +12 0.958223 0.365389 0.010261 0.007711 +12 0.742451 0.364709 0.010261 0.007711 +12 0.323805 0.364142 0.011434 0.007485 +12 0.934477 0.360626 0.010847 0.007258 +12 0.516124 0.359605 0.011434 0.007485 +12 0.299472 0.359492 0.010847 0.007258 +12 0.719584 0.359379 0.011434 0.007485 +12 0.643653 0.359379 0.010847 0.007485 +11 0.900176 0.356997 0.011434 0.008165 +12 0.858839 0.356657 0.012020 0.007485 +12 0.222955 0.356657 0.011434 0.007485 +12 0.198476 0.356770 0.011727 0.007711 +12 0.834799 0.356657 0.012020 0.007938 +11 0.264878 0.356543 0.010847 0.007711 +11 0.681911 0.356430 0.011140 0.007938 +11 0.482556 0.356430 0.011140 0.007938 +12 0.439900 0.356430 0.011434 0.007938 +12 0.415274 0.356317 0.011434 0.007711 +12 0.619906 0.349512 0.010261 0.007711 +12 0.098651 0.286573 0.009675 0.006577 +11 0.647171 0.286913 0.010261 0.007711 +17 0.592348 0.286573 0.012020 0.007485 +12 0.954119 0.283624 0.010847 0.007485 +12 0.549839 0.282604 0.010261 0.007711 +12 0.929933 0.278635 0.010554 0.007485 +12 0.526678 0.278861 0.010847 0.008392 +12 0.844914 0.276140 0.011140 0.007938 +12 0.441659 0.275800 0.010847 0.007258 +13 0.907652 0.275686 0.011140 0.007938 +13 0.867927 0.275573 0.010847 0.007711 +13 0.468924 0.275573 0.010261 0.007711 +13 0.509088 0.275459 0.010847 0.007938 +12 0.309293 0.271037 0.011140 0.007258 +13 0.888742 0.270696 0.011434 0.007031 +13 0.489739 0.270923 0.010847 0.007485 +12 0.401202 0.270810 0.010847 0.007258 +12 0.704485 0.270469 0.011140 0.007485 +12 0.800205 0.270356 0.011434 0.007711 +12 0.378042 0.267748 0.010261 0.007938 +12 0.775286 0.267294 0.010847 0.007938 +11 0.347992 0.264119 0.011140 0.007031 +11 0.742744 0.263552 0.011434 0.006804 +12 0.286573 0.260830 0.011434 0.007711 +12 0.678540 0.260717 0.010847 0.007938 +13 0.912929 0.188818 0.009968 0.007485 +13 0.770742 0.188592 0.011140 0.007485 +13 0.891088 0.185189 0.010847 0.008392 +13 0.868660 0.181560 0.010554 0.007485 +17 0.883465 0.160581 0.016711 0.009072 +13 0.792143 0.184849 0.011140 0.008165 +17 0.804163 0.161034 0.015245 0.005897 +18 0.788039 0.155137 0.010554 0.003175 +13 0.824538 0.182354 0.012606 0.007711 +13 0.688948 0.181901 0.011727 0.007258 +12 0.847992 0.177251 0.010261 0.007031 +11 0.856787 0.158653 0.006743 0.006124 +13 0.711082 0.177024 0.010847 0.007485 +13 0.745969 0.173622 0.011434 0.007485 +13 0.616828 0.169766 0.011140 0.006577 +13 0.638376 0.166931 0.010847 0.008165 +13 0.546028 0.163416 0.011434 0.007031 +13 0.659777 0.163189 0.011434 0.007031 +13 0.567136 0.160240 0.011434 0.007938 +13 0.596159 0.156952 0.010847 0.006804 +13 0.465113 0.156725 0.010261 0.007711 +13 0.486221 0.153663 0.011434 0.007938 +13 0.505570 0.150034 0.010261 0.007485 +13 0.387570 0.146859 0.011727 0.007938 +13 0.409411 0.143457 0.012020 0.007485 +13 0.292729 0.138240 0.009675 0.007485 +13 0.431692 0.137673 0.009675 0.007711 +13 0.331721 0.135632 0.010261 0.008619 +13 0.226473 0.130755 0.010847 0.007485 +13 0.362797 0.130755 0.010261 0.007938 +13 0.248754 0.127920 0.009675 0.007258 +13 0.271328 0.124291 0.011434 0.007711 +18 0.139549 0.121116 0.009968 0.006804 +18 0.172823 0.118054 0.010261 0.007485 +18 0.194957 0.114312 0.010554 0.007258 +18 0.109645 0.114312 0.010554 0.007711 +13 0.591469 0.091404 0.010261 0.007258 +13 0.672090 0.090724 0.010847 0.008165 +13 0.227206 0.090043 0.009968 0.007711 +17 0.241132 0.062486 0.015538 0.006124 +13 0.152155 0.089930 0.009968 0.007485 +13 0.615802 0.086641 0.010847 0.007711 +13 0.173410 0.086074 0.011434 0.007938 +13 0.172237 0.066228 0.011434 0.005443 +13 0.696717 0.083239 0.010847 0.007711 +13 0.649223 0.083125 0.010847 0.007485 +13 0.250513 0.082445 0.010847 0.007938 +13 0.203899 0.082218 0.011434 0.007485 +13 0.283201 0.077909 0.010554 0.007485 +13 0.281003 0.056929 0.012020 0.006351 +13 0.718411 0.075641 0.011434 0.007938 +13 0.322046 0.074847 0.010847 0.007711 +13 0.762533 0.071672 0.007622 0.006804 +13 0.786719 0.065208 0.010261 0.005670 +13 0.346673 0.064641 0.010847 0.006351 +13 0.816036 0.058857 0.010261 0.007485 +13 0.379214 0.058176 0.010261 0.007485 +12 0.400176 0.051486 0.011727 0.007711 +13 0.846379 0.048650 0.009968 0.008392 +13 0.869686 0.040939 0.009088 0.007485 +13 0.425828 0.040826 0.010261 0.008165 +13 0.898710 0.034929 0.010847 0.008165 +13 0.458956 0.033341 0.009675 0.007711 +13 0.481237 0.025743 0.010261 0.007938 +13 0.931838 0.024722 0.009088 0.007711 +12 0.959689 0.019506 0.009675 0.007711 +18 0.512899 0.018598 0.010847 0.007711 +18 0.552477 0.016217 0.010261 0.007485 +12 0.111551 0.015310 0.010261 0.007485 +4 0.500293 0.019506 0.010261 0.021320 +4 0.947669 0.021207 0.010261 0.021547 +3 0.367927 0.058176 0.008209 0.020640 +1 0.032835 0.061919 0.025799 0.050805 +3 0.804749 0.058857 0.008209 0.021093 +3 0.921577 0.025062 0.007329 0.021093 +4 0.271328 0.077795 0.011434 0.021774 +3 0.888156 0.035722 0.008502 0.021547 +3 0.446936 0.033227 0.007916 0.022000 +3 0.813105 0.182014 0.007329 0.021547 +3 0.161976 0.117827 0.007329 0.021547 +3 0.431105 0.275459 0.008502 0.021093 +4 0.061712 0.534702 0.011434 0.021093 +3 0.637496 0.084259 0.007329 0.021547 +3 0.584140 0.156611 0.007916 0.020640 +3 0.677367 0.181560 0.007916 0.021093 +3 0.352389 0.131436 0.008209 0.022000 +3 0.215773 0.131889 0.008209 0.021547 +3 0.836118 0.048650 0.008795 0.020640 +1 0.031516 0.254706 0.024333 0.051712 +3 0.192759 0.082899 0.007916 0.021547 +1 0.032982 0.548424 0.025506 0.051259 +1 0.031809 0.156725 0.025506 0.044455 +4 0.127089 0.121456 0.010261 0.022000 +4 0.062592 0.723633 0.010847 0.021547 +4 0.061712 0.441937 0.010847 0.021547 +4 0.061712 0.627920 0.010847 0.021547 +1 0.030636 0.343842 0.025506 0.051259 +1 0.033568 0.738263 0.025506 0.051712 +4 0.271328 0.744160 0.010847 0.021774 +1 0.032688 0.455659 0.025506 0.050805 +1 0.034008 0.953051 0.025799 0.050352 +4 0.204779 0.744273 0.010261 0.021547 +1 0.033861 0.844863 0.025506 0.050805 +3 0.417619 0.938875 0.007916 0.021547 +4 0.123864 0.827966 0.010847 0.021547 +3 0.246848 0.939102 0.007622 0.021093 +1 0.032688 0.641642 0.025506 0.050805 +3 0.454559 0.156838 0.007916 0.020640 +4 0.061419 0.330347 0.010847 0.021547 +4 0.061419 0.240758 0.011434 0.021093 +3 0.938581 0.835223 0.007916 0.017464 +4 0.062592 0.938648 0.010847 0.020640 +3 0.174289 0.820934 0.007329 0.020640 +5 0.951774 0.710479 0.009088 0.017464 +3 0.365729 0.744273 0.007329 0.022000 +4 0.062298 0.830687 0.010847 0.021547 +4 0.863237 0.973804 0.008502 0.014289 +3 0.947816 0.157632 0.007622 0.019959 +4 0.958077 0.147312 0.010554 0.021547 +4 0.070947 0.156498 0.010554 0.020866 +4 0.060539 0.146518 0.010261 0.020866 +4 0.071826 0.057836 0.010554 0.020413 +4 0.062005 0.047630 0.010261 0.020866 +3 0.753005 0.071785 0.008502 0.021547 +3 0.833920 0.275346 0.008502 0.021320 +3 0.605541 0.939329 0.008502 0.021547 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_23.jpg b/data_dataset/tch/debug/debug_23.jpg new file mode 100644 index 0000000..3ad9ffe Binary files /dev/null and b/data_dataset/tch/debug/debug_23.jpg differ diff --git a/data_dataset/tch/debug/debug_23.txt b/data_dataset/tch/debug/debug_23.txt new file mode 100644 index 0000000..38f54f4 --- /dev/null +++ b/data_dataset/tch/debug/debug_23.txt @@ -0,0 +1,586 @@ +10 0.328601 0.929640 0.007904 0.006571 +9 0.686329 0.929640 0.005562 0.031498 +7 0.928132 0.930093 0.017272 0.024700 +10 0.928718 0.862565 0.007319 0.003852 +10 0.838261 0.855994 0.007904 0.005665 +10 0.302693 0.836053 0.007611 0.003399 +10 0.377781 0.761047 0.010831 0.005212 +10 0.522687 0.759914 0.024297 0.006571 +10 0.185158 0.757761 0.007319 0.005438 +10 0.119584 0.756968 0.008489 0.004759 +9 0.543179 0.776683 0.016101 0.030138 +10 0.337383 0.755382 0.009660 0.005212 +10 0.801376 0.748584 0.020785 0.003399 +9 0.681060 0.760367 0.014344 0.032857 +7 0.717945 0.747677 0.016686 0.014729 +9 0.253952 0.752889 0.012588 0.034217 +9 0.330357 0.746998 0.008489 0.030138 +9 0.350849 0.750850 0.013173 0.030138 +9 0.303132 0.746998 0.010246 0.030138 +10 0.879537 0.688081 0.007904 0.003399 +9 0.201552 0.685135 0.013759 0.014729 +10 0.777664 0.673125 0.010246 0.005665 +9 0.716774 0.682642 0.014930 0.034217 +9 0.789959 0.685135 0.009075 0.039656 +10 0.551083 0.668593 0.009075 0.006118 +9 0.542301 0.683549 0.012588 0.043281 +7 0.866657 0.671312 0.017272 0.025153 +9 0.188671 0.670406 0.009075 0.035123 +9 0.904567 0.673805 0.008782 0.042375 +10 0.330504 0.652731 0.008197 0.003852 +10 0.733167 0.611262 0.010831 0.004759 +8 0.723653 0.596986 0.005855 0.023340 +10 0.126025 0.588375 0.009075 0.004759 +9 0.457260 0.597893 0.009368 0.032857 +10 0.529420 0.582937 0.014930 0.004305 +8 0.753367 0.590868 0.007319 0.023340 +10 0.869877 0.581804 0.008489 0.003852 +10 0.784397 0.575685 0.008489 0.004759 +9 0.842945 0.574552 0.010831 0.031951 +10 0.239900 0.520394 0.007904 0.003399 +10 0.599385 0.501360 0.010246 0.005665 +10 0.484631 0.497961 0.010246 0.002493 +10 0.222922 0.497054 0.007904 0.004759 +10 0.299327 0.496374 0.007319 0.003852 +10 0.875146 0.495695 0.007904 0.002946 +10 0.520931 0.495921 0.007904 0.005212 +10 0.598214 0.495241 0.017272 0.005212 +9 0.236973 0.504079 0.011417 0.035123 +10 0.238437 0.489576 0.009660 0.004305 +9 0.470872 0.488217 0.014344 0.037390 +10 0.476142 0.407772 0.007319 0.006118 +10 0.923156 0.388285 0.007904 0.003399 +10 0.349093 0.381033 0.010831 0.002946 +10 0.447160 0.377408 0.013759 0.006118 +9 0.543179 0.386245 0.009075 0.027872 +10 0.351434 0.312599 0.010246 0.005665 +10 0.157641 0.295377 0.009075 0.003399 +9 0.472043 0.306254 0.011417 0.033311 +9 0.262881 0.300023 0.013466 0.026739 +10 0.573331 0.236007 0.013173 0.005665 +9 0.834163 0.239633 0.007904 0.031951 +9 0.454479 0.228756 0.010831 0.037843 +10 0.287763 0.226037 0.009953 0.006118 +10 0.338700 0.224111 0.008782 0.003172 +10 0.918472 0.223771 0.008489 0.003399 +10 0.475263 0.225130 0.007319 0.006118 +9 0.381733 0.232722 0.010539 0.036257 +9 0.506733 0.221165 0.012295 0.048040 +9 0.607582 0.217539 0.010246 0.040789 +9 0.564988 0.214253 0.011710 0.050986 +10 0.734046 0.130184 0.007904 0.004305 +10 0.406177 0.120213 0.009075 0.003399 +10 0.234631 0.049966 0.007319 0.003399 +10 0.724093 0.048833 0.007319 0.004759 +10 0.811768 0.045774 0.009368 0.002719 +6 0.140076 0.026399 0.012002 0.024700 +13 0.481118 0.968389 0.010831 0.007478 +13 0.507465 0.965670 0.009660 0.007931 +12 0.935744 0.962044 0.010246 0.007478 +13 0.536153 0.961817 0.010831 0.007478 +12 0.232728 0.960458 0.009953 0.007478 +13 0.583138 0.957738 0.009953 0.007931 +13 0.314549 0.957852 0.010246 0.008158 +13 0.283372 0.957059 0.009953 0.008384 +13 0.552254 0.956379 0.010246 0.008384 +13 0.603484 0.954793 0.011417 0.007478 +13 0.333285 0.954339 0.010831 0.007478 +13 0.372804 0.953660 0.010246 0.007478 +13 0.632026 0.951394 0.009953 0.007025 +13 0.395053 0.951167 0.011417 0.007025 +13 0.355533 0.951167 0.010831 0.007025 +12 0.785714 0.950827 0.009368 0.007705 +13 0.415544 0.947768 0.011417 0.007478 +13 0.648712 0.947768 0.009953 0.007931 +13 0.443648 0.943576 0.010246 0.005892 +13 0.887441 0.941083 0.010246 0.007705 +13 0.184865 0.940743 0.010246 0.007478 +12 0.906470 0.938251 0.010831 0.007025 +13 0.858899 0.937797 0.010539 0.006571 +12 0.118706 0.937911 0.010246 0.007251 +12 0.831528 0.937797 0.010831 0.007478 +12 0.204772 0.937571 0.010246 0.007025 +13 0.153835 0.937571 0.011417 0.007478 +13 0.734338 0.924201 0.009660 0.007025 +12 0.690720 0.921369 0.010246 0.007251 +17 0.758050 0.921255 0.011417 0.007478 +13 0.716042 0.921029 0.011124 0.007478 +12 0.367242 0.875255 0.011417 0.007478 +13 0.416130 0.871743 0.009660 0.007705 +13 0.442769 0.871289 0.009075 0.008158 +11 0.451844 0.848856 0.006148 0.007251 +13 0.505416 0.867777 0.010246 0.007931 +13 0.463847 0.867437 0.010246 0.007705 +11 0.927547 0.865284 0.009075 0.007025 +12 0.218530 0.864718 0.009075 0.007251 +13 0.524151 0.864265 0.010246 0.007251 +13 0.483753 0.864265 0.010246 0.007705 +13 0.552840 0.860866 0.010246 0.007705 +13 0.578015 0.857353 0.010246 0.006118 +13 0.621048 0.857127 0.010831 0.006118 +13 0.319233 0.854634 0.011417 0.007478 +13 0.647395 0.854181 0.009660 0.007478 +13 0.291130 0.851575 0.010246 0.006798 +12 0.264491 0.851235 0.010831 0.006571 +12 0.339432 0.851235 0.010831 0.007025 +13 0.675937 0.850668 0.010539 0.006345 +13 0.692769 0.847609 0.010246 0.007478 +13 0.720580 0.843984 0.010831 0.007478 +13 0.739315 0.840811 0.010831 0.007931 +13 0.758636 0.837639 0.010831 0.007025 +13 0.171985 0.837752 0.009660 0.007251 +13 0.873975 0.837865 0.010831 0.007931 +17 0.899883 0.835033 0.009953 0.007251 +12 0.125000 0.834693 0.011710 0.007478 +13 0.854947 0.834466 0.009660 0.007478 +17 0.194087 0.834693 0.011710 0.007931 +13 0.153689 0.834466 0.010539 0.007931 +12 0.825381 0.834240 0.011417 0.007931 +13 0.786153 0.827555 0.010246 0.007705 +12 0.501025 0.789599 0.010246 0.007931 +12 0.446868 0.782688 0.010831 0.007705 +13 0.605972 0.781781 0.010539 0.007705 +13 0.532348 0.781668 0.011417 0.007931 +17 0.544643 0.757308 0.010246 0.003626 +12 0.397395 0.779062 0.010246 0.007251 +13 0.697892 0.778835 0.010539 0.007251 +13 0.551961 0.778722 0.010246 0.007478 +13 0.637295 0.778495 0.009953 0.007478 +13 0.588115 0.775323 0.011124 0.007478 +11 0.474239 0.775436 0.010539 0.007705 +12 0.473068 0.757761 0.008197 0.004079 +13 0.655445 0.775096 0.011124 0.007931 +13 0.678571 0.771471 0.010539 0.006571 +13 0.809280 0.768751 0.010246 0.007931 +13 0.728776 0.768412 0.010831 0.007705 +13 0.142418 0.765806 0.010246 0.006571 +13 0.827430 0.765806 0.010246 0.007025 +13 0.746048 0.765466 0.010246 0.006798 +13 0.845433 0.762407 0.011124 0.007478 +13 0.782055 0.762180 0.010831 0.007478 +13 0.163349 0.762180 0.011124 0.007478 +13 0.118999 0.759121 0.010246 0.005892 +13 0.874561 0.759007 0.009660 0.007025 +13 0.182084 0.758554 0.009953 0.006571 +13 0.900615 0.756288 0.010831 0.007478 +13 0.203601 0.755608 0.010831 0.007478 +13 0.919204 0.752776 0.008197 0.006798 +13 0.223946 0.751983 0.009953 0.006571 +13 0.244731 0.748924 0.011710 0.007705 +13 0.938232 0.742805 0.009368 0.007705 +13 0.351288 0.741559 0.009368 0.007478 +13 0.263027 0.741672 0.010246 0.007705 +12 0.373975 0.738953 0.010831 0.007705 +13 0.333577 0.738160 0.009660 0.008384 +12 0.304596 0.737820 0.010246 0.007705 +12 0.757758 0.701903 0.010831 0.007478 +13 0.520931 0.701677 0.010246 0.007478 +11 0.529859 0.668479 0.008197 0.006345 +12 0.670228 0.698504 0.010246 0.007478 +13 0.537617 0.698504 0.009660 0.007478 +13 0.845287 0.695445 0.011417 0.007705 +13 0.782348 0.695105 0.010831 0.007478 +12 0.705943 0.694879 0.010246 0.007478 +13 0.628367 0.694765 0.010831 0.007705 +13 0.554742 0.694426 0.011124 0.007478 +13 0.798448 0.691820 0.010246 0.007251 +12 0.587676 0.691820 0.010246 0.007251 +13 0.436915 0.691706 0.010831 0.007025 +12 0.646516 0.691366 0.009660 0.007251 +13 0.610217 0.691593 0.010831 0.007705 +13 0.861680 0.688760 0.011417 0.007025 +13 0.914081 0.688874 0.010831 0.007705 +13 0.453015 0.688421 0.010246 0.007705 +13 0.828015 0.688307 0.009660 0.007931 +12 0.731118 0.688081 0.010246 0.007478 +13 0.879245 0.685248 0.010246 0.007251 +13 0.468823 0.684568 0.010246 0.006345 +13 0.897102 0.682416 0.010831 0.007478 +13 0.495463 0.681622 0.010831 0.007705 +13 0.336505 0.681622 0.010246 0.007705 +13 0.929742 0.678790 0.010539 0.006571 +13 0.354655 0.678337 0.010246 0.006118 +13 0.381001 0.677884 0.009075 0.006118 +13 0.946575 0.675844 0.011417 0.007931 +12 0.284397 0.675391 0.011417 0.007931 +13 0.412324 0.675164 0.010831 0.007931 +13 0.310451 0.672105 0.009660 0.006798 +12 0.219116 0.668706 0.010831 0.007705 +12 0.260100 0.665420 0.009660 0.007478 +13 0.170814 0.661795 0.011417 0.007931 +12 0.192184 0.658736 0.010831 0.007705 +12 0.119877 0.658509 0.011417 0.007705 +13 0.153249 0.658396 0.011417 0.008384 +13 0.136856 0.619533 0.009660 0.008611 +13 0.112559 0.615794 0.010246 0.007478 +12 0.497219 0.615454 0.010246 0.007705 +13 0.209748 0.615114 0.010246 0.007478 +13 0.178718 0.614661 0.011417 0.007931 +13 0.150615 0.614661 0.010831 0.007931 +12 0.408665 0.612735 0.009953 0.007251 +13 0.225263 0.611149 0.009660 0.007705 +13 0.195989 0.610582 0.009660 0.008384 +12 0.449502 0.608996 0.009660 0.007478 +13 0.578308 0.608770 0.010831 0.007478 +13 0.518882 0.608430 0.010246 0.007705 +13 0.370170 0.608090 0.010246 0.007931 +13 0.250000 0.607863 0.009953 0.007478 +13 0.352752 0.605484 0.009953 0.007705 +12 0.329040 0.605144 0.009953 0.007025 +13 0.535275 0.605144 0.010246 0.007478 +12 0.387734 0.605144 0.010246 0.007478 +12 0.474093 0.601745 0.010831 0.007478 +13 0.593823 0.601292 0.010246 0.007478 +13 0.563378 0.601292 0.011417 0.007931 +13 0.643589 0.601065 0.010246 0.007931 +13 0.610802 0.597893 0.010246 0.007025 +13 0.628220 0.594494 0.009953 0.008384 +13 0.721458 0.591321 0.010246 0.007025 +13 0.659543 0.590868 0.010539 0.006571 +13 0.676961 0.588035 0.010831 0.007705 +13 0.736973 0.587695 0.010246 0.007931 +13 0.752196 0.584636 0.009075 0.006798 +13 0.706528 0.584410 0.010246 0.006798 +13 0.769760 0.581464 0.011417 0.007705 +13 0.783958 0.577952 0.009368 0.007025 +12 0.935451 0.575119 0.010246 0.007705 +13 0.800059 0.574552 0.009368 0.007478 +13 0.895638 0.568547 0.011417 0.008158 +13 0.816891 0.568094 0.010831 0.007705 +12 0.911739 0.564695 0.009660 0.006798 +13 0.868121 0.564355 0.010246 0.007478 +12 0.844701 0.564242 0.010246 0.007251 +13 0.944819 0.522547 0.010831 0.007705 +13 0.330796 0.517335 0.006440 0.005438 +13 0.332553 0.481872 0.008197 0.007025 +13 0.917886 0.515636 0.010831 0.007478 +18 0.922863 0.489236 0.005562 0.004532 +13 0.114022 0.515749 0.010831 0.007705 +13 0.904713 0.508951 0.011417 0.007705 +13 0.183109 0.508838 0.010831 0.007478 +13 0.132026 0.506005 0.010539 0.007251 +13 0.890662 0.505325 0.010246 0.006345 +13 0.205943 0.506005 0.009660 0.007705 +13 0.261856 0.502493 0.009075 0.007025 +13 0.222336 0.499320 0.009660 0.007025 +13 0.298156 0.499207 0.009075 0.007251 +13 0.157348 0.498754 0.009660 0.006345 +13 0.873975 0.498980 0.008489 0.007251 +13 0.353191 0.495695 0.011417 0.007931 +13 0.237998 0.492182 0.009368 0.006345 +13 0.847336 0.492182 0.010246 0.007251 +13 0.371487 0.492409 0.009368 0.007705 +13 0.315427 0.492295 0.009660 0.007931 +13 0.442623 0.485497 0.009953 0.007931 +13 0.828601 0.485044 0.010246 0.007478 +13 0.470872 0.482552 0.010246 0.007478 +13 0.390222 0.482212 0.009368 0.007251 +13 0.812061 0.481192 0.008782 0.007478 +13 0.539959 0.478359 0.010246 0.007705 +13 0.417301 0.475640 0.010831 0.007705 +13 0.496633 0.475300 0.010246 0.007478 +13 0.559573 0.475300 0.010831 0.007931 +13 0.783811 0.475074 0.010831 0.007931 +13 0.618267 0.472581 0.009368 0.007478 +13 0.757611 0.468729 0.011124 0.007931 +13 0.646956 0.468729 0.009953 0.007931 +13 0.575966 0.468502 0.009660 0.007931 +13 0.515808 0.468502 0.009368 0.007931 +18 0.740340 0.461817 0.009953 0.007705 +12 0.662471 0.458645 0.009368 0.007251 +12 0.591774 0.458532 0.009075 0.007478 +12 0.724824 0.457852 0.010539 0.007478 +12 0.708577 0.454793 0.009660 0.007705 +18 0.693062 0.451620 0.010246 0.007705 +13 0.751464 0.413211 0.009953 0.007478 +12 0.557231 0.412984 0.010246 0.007931 +12 0.451844 0.413211 0.010246 0.008384 +13 0.676083 0.412305 0.009075 0.007931 +12 0.333285 0.412078 0.009660 0.008384 +12 0.201844 0.411738 0.009075 0.008158 +13 0.787178 0.409132 0.009953 0.007478 +13 0.597043 0.409245 0.009660 0.007705 +13 0.696429 0.409019 0.009953 0.007705 +12 0.477020 0.408566 0.010831 0.007251 +12 0.113876 0.408566 0.011124 0.007251 +12 0.246194 0.408452 0.009953 0.007478 +12 0.357728 0.407999 0.010539 0.007478 +13 0.867389 0.405733 0.009368 0.008384 +13 0.885392 0.402334 0.010246 0.007931 +13 0.819526 0.402334 0.010831 0.007931 +13 0.714286 0.402107 0.011710 0.007478 +13 0.626903 0.401881 0.010831 0.007478 +12 0.278396 0.401994 0.011124 0.007705 +12 0.511563 0.401768 0.010831 0.007705 +12 0.151932 0.401768 0.011124 0.008158 +12 0.381879 0.400974 0.010246 0.007025 +13 0.947453 0.399162 0.010246 0.007478 +13 0.902664 0.395763 0.010831 0.007931 +13 0.837676 0.395423 0.010831 0.007705 +12 0.425644 0.395309 0.011124 0.007931 +12 0.301669 0.395196 0.011417 0.007705 +12 0.174327 0.395083 0.010831 0.007478 +13 0.734924 0.395083 0.011417 0.007931 +12 0.536153 0.395083 0.010831 0.007931 +13 0.645931 0.394743 0.011417 0.007705 +13 0.921985 0.385905 0.010831 0.006345 +12 0.936329 0.332200 0.009660 0.007705 +12 0.856996 0.327895 0.010246 0.007705 +12 0.696575 0.327895 0.010246 0.007705 +12 0.601727 0.327668 0.010246 0.007705 +12 0.762149 0.326988 0.010246 0.007251 +17 0.804303 0.324156 0.011417 0.007931 +17 0.643735 0.324269 0.011124 0.008158 +12 0.885978 0.321550 0.010831 0.007705 +12 0.560451 0.321097 0.009660 0.007705 +12 0.723507 0.320757 0.011417 0.007931 +12 0.510685 0.317131 0.007319 0.006118 +12 0.390808 0.317811 0.009953 0.007478 +12 0.481265 0.317584 0.009368 0.007478 +12 0.532494 0.317358 0.009953 0.007478 +11 0.520345 0.313959 0.006733 0.005212 +12 0.909543 0.314299 0.010539 0.008158 +12 0.581821 0.314185 0.010246 0.007931 +12 0.463847 0.314185 0.010831 0.007931 +12 0.742096 0.313732 0.011124 0.007931 +11 0.434133 0.311126 0.009953 0.007251 +12 0.352898 0.310673 0.010246 0.006798 +12 0.303718 0.308294 0.006733 0.005212 +12 0.188671 0.307954 0.010831 0.007705 +12 0.274737 0.307840 0.010831 0.007931 +12 0.323624 0.307387 0.011417 0.007931 +13 0.312207 0.304555 0.006148 0.004985 +12 0.372804 0.304102 0.010246 0.006345 +12 0.258050 0.304328 0.010246 0.006798 +11 0.228191 0.301156 0.011417 0.007705 +12 0.157787 0.297983 0.008782 0.007251 +11 0.110070 0.295037 0.007026 0.004985 +12 0.133636 0.294584 0.009660 0.007705 +12 0.118999 0.291185 0.006733 0.005438 +12 0.174327 0.291298 0.009075 0.007478 +17 0.254245 0.259007 0.012588 0.004079 +12 0.269028 0.223884 0.010539 0.007705 +12 0.249561 0.240313 0.009075 0.006571 +12 0.148419 0.247111 0.010539 0.007025 +12 0.109924 0.244052 0.007319 0.005438 +12 0.132172 0.243938 0.009660 0.007931 +12 0.119438 0.240653 0.006440 0.005892 +11 0.207406 0.237367 0.006733 0.005212 +12 0.231704 0.237140 0.010831 0.007478 +11 0.217359 0.234081 0.006733 0.005892 +12 0.180474 0.234081 0.010246 0.006345 +12 0.165984 0.230909 0.010539 0.007251 +12 0.364900 0.230455 0.011417 0.007705 +12 0.939842 0.229776 0.011417 0.007705 +12 0.841042 0.229549 0.011710 0.007705 +12 0.315720 0.227850 0.006733 0.005665 +12 0.337529 0.227056 0.009368 0.006798 +12 0.325234 0.223771 0.006440 0.004759 +12 0.287617 0.227170 0.010246 0.007025 +12 0.917594 0.226717 0.009075 0.007025 +12 0.474239 0.226603 0.009953 0.006798 +11 0.431792 0.223884 0.007026 0.004985 +12 0.404420 0.223657 0.010246 0.007705 +12 0.456528 0.223431 0.010246 0.007705 +13 0.801815 0.222864 0.009953 0.007478 +11 0.880708 0.222751 0.010831 0.007705 +12 0.442037 0.220938 0.007026 0.005438 +12 0.750439 0.220258 0.006733 0.005892 +12 0.384514 0.220258 0.010246 0.007251 +12 0.775322 0.219692 0.010831 0.007478 +12 0.636270 0.219918 0.011417 0.007931 +12 0.724385 0.219352 0.010831 0.008158 +12 0.760978 0.216293 0.007904 0.005212 +12 0.824502 0.215953 0.010831 0.007705 +12 0.705064 0.215953 0.010831 0.007705 +11 0.675644 0.212894 0.010539 0.007931 +12 0.593091 0.209948 0.010539 0.007931 +12 0.542008 0.207795 0.006733 0.005892 +12 0.565720 0.206322 0.008489 0.006571 +12 0.515222 0.206322 0.009953 0.007478 +12 0.552840 0.203036 0.007319 0.005438 +12 0.615486 0.203150 0.010831 0.007931 +12 0.496633 0.203150 0.010831 0.007931 +12 0.808548 0.152617 0.009953 0.007478 +13 0.153249 0.152844 0.010831 0.007931 +12 0.828893 0.152617 0.010831 0.007931 +12 0.414666 0.152277 0.010246 0.008158 +12 0.621633 0.151711 0.009660 0.007478 +12 0.601142 0.151484 0.010831 0.007931 +12 0.760100 0.149332 0.006733 0.005438 +12 0.109631 0.148538 0.006733 0.006118 +12 0.557084 0.148199 0.007026 0.006345 +12 0.849824 0.148652 0.009953 0.007705 +12 0.435744 0.148765 0.009075 0.007931 +12 0.784251 0.148425 0.010539 0.008158 +13 0.138027 0.148425 0.009660 0.008158 +12 0.646516 0.147972 0.010246 0.008158 +12 0.582992 0.148199 0.009660 0.008611 +12 0.770345 0.145479 0.007904 0.004985 +12 0.120609 0.145479 0.007611 0.004985 +12 0.568940 0.144573 0.007319 0.005438 +11 0.681499 0.145366 0.009953 0.007931 +11 0.472922 0.145139 0.009660 0.007931 +11 0.887734 0.144573 0.010246 0.008158 +13 0.167740 0.142420 0.009368 0.007025 +12 0.394174 0.142080 0.010246 0.007705 +12 0.342652 0.138794 0.006733 0.005212 +12 0.367242 0.138908 0.010246 0.007705 +13 0.182523 0.138794 0.010831 0.007931 +12 0.352605 0.135395 0.006733 0.006118 +12 0.198478 0.135509 0.009953 0.006345 +12 0.312207 0.135056 0.010246 0.005892 +12 0.294789 0.132336 0.010539 0.007705 +12 0.220580 0.132223 0.010831 0.007931 +12 0.937500 0.128711 0.010246 0.005892 +11 0.260246 0.128484 0.010539 0.005892 +12 0.732875 0.128031 0.009660 0.006798 +12 0.525468 0.127691 0.010539 0.006118 +12 0.919350 0.125651 0.011417 0.007931 +12 0.713261 0.124972 0.011417 0.007931 +12 0.504977 0.125085 0.010539 0.008158 +12 0.799327 0.071153 0.010831 0.007705 +12 0.820111 0.071040 0.010246 0.007931 +12 0.609338 0.070700 0.010831 0.007705 +12 0.585626 0.070360 0.010831 0.007931 +12 0.153249 0.069341 0.007904 0.005892 +12 0.842067 0.067868 0.009660 0.007478 +12 0.751903 0.067301 0.007319 0.006345 +12 0.138466 0.066961 0.007611 0.006571 +12 0.110217 0.066621 0.007319 0.005892 +12 0.542155 0.066621 0.007026 0.006345 +12 0.632319 0.066961 0.010539 0.008384 +12 0.776786 0.066508 0.009075 0.008384 +12 0.412910 0.066508 0.009660 0.008384 +12 0.565135 0.065942 0.009660 0.008611 +12 0.552547 0.063789 0.007904 0.005212 +12 0.762149 0.063676 0.007904 0.005438 +12 0.127342 0.063562 0.007611 0.005212 +11 0.882758 0.063676 0.010246 0.007705 +11 0.454186 0.063109 0.010246 0.007931 +11 0.667886 0.062882 0.010831 0.007931 +12 0.371048 0.060390 0.010246 0.007478 +17 0.384807 0.038296 0.012588 0.004079 +12 0.389783 0.070360 0.010246 0.007478 +12 0.319233 0.057104 0.007319 0.004985 +12 0.341774 0.056991 0.010246 0.007478 +17 0.352752 0.036936 0.008782 0.003172 +12 0.329625 0.053705 0.007026 0.006345 +12 0.169643 0.053818 0.010246 0.006571 +12 0.286153 0.053705 0.010246 0.006798 +12 0.193648 0.050872 0.010246 0.007478 +12 0.267125 0.050759 0.010831 0.007705 +11 0.233753 0.047587 0.010831 0.006345 +12 0.933841 0.046907 0.010539 0.006345 +12 0.510392 0.046794 0.010246 0.006571 +12 0.722629 0.046340 0.010831 0.006571 +12 0.914666 0.043961 0.010831 0.007705 +12 0.703454 0.043734 0.011124 0.007705 +12 0.491071 0.043508 0.011417 0.007705 +1 0.052547 0.041128 0.024297 0.043281 +4 0.357875 0.060163 0.010831 0.020621 +4 0.080064 0.030931 0.010831 0.021981 +1 0.051376 0.126105 0.023712 0.050986 +4 0.580064 0.210174 0.010246 0.021981 +4 0.146516 0.297870 0.009660 0.021527 +4 0.076698 0.287673 0.010539 0.021527 +4 0.077722 0.112055 0.010831 0.021074 +4 0.382465 0.141967 0.010246 0.020168 +3 0.341774 0.310446 0.007904 0.021301 +1 0.050205 0.237367 0.024883 0.051439 +5 0.661153 0.209608 0.009660 0.018128 +3 0.790691 0.222864 0.007611 0.021074 +1 0.049912 0.302175 0.023712 0.051439 +4 0.923156 0.331860 0.010246 0.020621 +4 0.497658 0.402787 0.010539 0.021074 +1 0.049912 0.382393 0.024297 0.051439 +4 0.770931 0.475753 0.010831 0.021074 +4 0.076405 0.223997 0.010539 0.021074 +4 0.936329 0.399388 0.010246 0.020621 +4 0.263759 0.401768 0.011124 0.021301 +1 0.050205 0.844663 0.024883 0.045094 +4 0.206528 0.668819 0.010246 0.021527 +4 0.547278 0.320530 0.010246 0.021981 +4 0.882758 0.568208 0.010246 0.020621 +4 0.710626 0.320983 0.010246 0.021981 +3 0.868413 0.222638 0.007319 0.021074 +3 0.423448 0.310900 0.007319 0.020847 +5 0.790837 0.320757 0.009075 0.017448 +1 0.050790 0.502266 0.023712 0.050986 +4 0.238144 0.607637 0.009660 0.021527 +5 0.216481 0.297870 0.009075 0.017448 +4 0.317916 0.410265 0.010539 0.021527 +4 0.189988 0.410718 0.009953 0.020168 +4 0.664081 0.412305 0.010831 0.021527 +4 0.854508 0.405280 0.011124 0.021074 +4 0.483314 0.476207 0.010539 0.020168 +4 0.249854 0.501813 0.010831 0.021074 +4 0.863144 0.498640 0.010246 0.021074 +1 0.050790 0.933945 0.024297 0.050533 +4 0.351874 0.230342 0.011124 0.021074 +4 0.137734 0.401654 0.010246 0.021527 +4 0.076844 0.489123 0.010246 0.021074 +4 0.805328 0.402561 0.011124 0.021527 +4 0.430474 0.485724 0.010246 0.021074 +4 0.171985 0.508838 0.013173 0.021074 +4 0.635978 0.853954 0.010246 0.021527 +3 0.679011 0.921482 0.007904 0.021074 +4 0.369877 0.678563 0.010246 0.021074 +5 0.291130 0.734761 0.009075 0.017902 +3 0.774737 0.951394 0.007319 0.019714 +4 0.873390 0.320304 0.010246 0.021527 +3 0.433109 0.944369 0.007904 0.020168 +3 0.772980 0.827442 0.007319 0.021074 +4 0.341189 0.495468 0.010831 0.021527 +5 0.630416 0.320530 0.009075 0.016995 +4 0.425498 0.692160 0.010246 0.021527 +4 0.798009 0.768751 0.010539 0.021527 +4 0.614022 0.402107 0.010831 0.021527 +4 0.678132 0.452640 0.010831 0.021527 +5 0.402957 0.868230 0.009075 0.016995 +4 0.604508 0.472581 0.010539 0.021981 +4 0.664081 0.850782 0.010246 0.021074 +4 0.930767 0.523114 0.010831 0.021527 +4 0.523126 0.961591 0.010539 0.022434 +4 0.620463 0.951394 0.010246 0.020621 +3 0.889783 0.755948 0.007319 0.021754 +4 0.437939 0.412305 0.010539 0.021074 +4 0.165837 0.614888 0.010246 0.021074 +3 0.111827 0.834806 0.007611 0.021754 +4 0.876025 0.941423 0.010831 0.022887 +4 0.145931 0.498867 0.010246 0.021074 +5 0.269174 0.954453 0.009075 0.017222 +4 0.570550 0.957512 0.010539 0.020621 +4 0.286446 0.498867 0.010246 0.021074 +4 0.323624 0.681736 0.010246 0.021527 +4 0.525907 0.478473 0.010246 0.020621 +4 0.124854 0.617380 0.010246 0.021527 +4 0.307816 0.855087 0.010831 0.021981 +3 0.812793 0.834126 0.007904 0.021754 +1 0.050498 0.762407 0.024297 0.050986 +3 0.508929 0.701903 0.007319 0.021527 +3 0.302400 0.957738 0.007611 0.020621 +4 0.173741 0.940743 0.010246 0.021074 +4 0.076552 0.368344 0.010831 0.021527 +1 0.050498 0.674938 0.024883 0.050986 +4 0.403689 0.475980 0.010539 0.021074 +4 0.716042 0.768525 0.010539 0.021527 +3 0.484338 0.681736 0.007319 0.021527 +4 0.077430 0.574552 0.010831 0.021527 +4 0.626464 0.778722 0.010539 0.021527 +3 0.431352 0.871176 0.007319 0.020621 +3 0.567769 0.857580 0.007319 0.020168 +3 0.540252 0.859846 0.007319 0.019261 +4 0.496194 0.964083 0.010539 0.021527 +4 0.296253 0.584863 0.009953 0.021301 +4 0.286593 0.574666 0.009368 0.019941 +4 0.084602 0.759121 0.009953 0.020394 +4 0.075527 0.748924 0.009368 0.020847 +4 0.084309 0.671652 0.009953 0.020394 +4 0.074941 0.661455 0.009953 0.020847 +4 0.075673 0.834466 0.010246 0.021074 +4 0.085187 0.844437 0.009953 0.021074 +4 0.042886 0.589735 0.010246 0.021074 +4 0.056206 0.573646 0.009953 0.021074 +4 0.074795 0.921029 0.010246 0.021074 +4 0.084309 0.930546 0.009953 0.021074 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_24.jpg b/data_dataset/tch/debug/debug_24.jpg new file mode 100644 index 0000000..27d382d Binary files /dev/null and b/data_dataset/tch/debug/debug_24.jpg differ diff --git a/data_dataset/tch/debug/debug_24.txt b/data_dataset/tch/debug/debug_24.txt new file mode 100644 index 0000000..135d8ba --- /dev/null +++ b/data_dataset/tch/debug/debug_24.txt @@ -0,0 +1,609 @@ +10 0.683016 0.989461 0.009078 0.003400 +10 0.218887 0.985041 0.030747 0.004986 +10 0.673060 0.967475 0.009078 0.004760 +10 0.773499 0.983568 0.015520 0.004760 +10 0.211859 0.965549 0.009663 0.004986 +10 0.060908 0.950703 0.008199 0.005213 +7 0.906881 0.954102 0.012299 0.017452 +7 0.515813 0.952063 0.012592 0.016546 +10 0.115813 0.946396 0.007906 0.004760 +7 0.427672 0.951156 0.012006 0.016999 +6 0.928697 0.952743 0.013177 0.025612 +6 0.445827 0.950476 0.012592 0.024705 +6 0.489751 0.950249 0.012592 0.024705 +9 0.239385 0.951383 0.011420 0.054624 +10 0.838507 0.971782 0.010835 0.004306 +9 0.802635 0.942316 0.010542 0.051451 +9 0.789312 0.950589 0.013763 0.067996 +9 0.313470 0.945376 0.005564 0.062103 +10 0.861640 0.872280 0.014934 0.006573 +10 0.779356 0.871600 0.014348 0.006573 +7 0.923426 0.871374 0.012006 0.018812 +8 0.712592 0.855508 0.014348 0.022439 +6 0.584627 0.855734 0.005564 0.003853 +7 0.529868 0.855508 0.012006 0.016546 +9 0.770278 0.851088 0.007906 0.026292 +6 0.549195 0.853694 0.012006 0.025159 +9 0.148316 0.839415 0.014934 0.041478 +9 0.274817 0.851428 0.005564 0.065956 +9 0.227086 0.838735 0.010835 0.039665 +9 0.116691 0.838962 0.013763 0.040118 +9 0.459297 0.853694 0.005564 0.070036 +9 0.327526 0.850295 0.009078 0.064143 +9 0.140703 0.839189 0.010249 0.041024 +10 0.934261 0.756460 0.013763 0.006573 +10 0.753294 0.755100 0.013763 0.006573 +8 0.215373 0.762466 0.007321 0.024025 +10 0.408346 0.756913 0.012592 0.004760 +6 0.728697 0.759180 0.005564 0.030145 +8 0.566471 0.748300 0.006735 0.023799 +10 0.776135 0.673051 0.009663 0.004760 +10 0.286823 0.671464 0.016105 0.003400 +10 0.869839 0.664665 0.012006 0.004760 +9 0.644070 0.676904 0.010249 0.050997 +9 0.665154 0.671011 0.010249 0.043744 +9 0.301464 0.662058 0.010249 0.029465 +7 0.314641 0.658432 0.013177 0.036718 +9 0.208346 0.649592 0.013763 0.032638 +9 0.191362 0.645399 0.010249 0.039665 +9 0.116105 0.645172 0.012006 0.036038 +7 0.938653 0.585789 0.012006 0.017906 +10 0.823280 0.579669 0.021376 0.004306 +9 0.636457 0.567090 0.012006 0.024479 +10 0.163250 0.581709 0.009663 0.004760 +10 0.134261 0.581482 0.040703 0.005666 +9 0.905271 0.568790 0.010249 0.041931 +9 0.201611 0.563010 0.009663 0.031278 +9 0.377013 0.565390 0.010249 0.036038 +9 0.330307 0.565956 0.012299 0.035811 +9 0.302928 0.565956 0.012006 0.034905 +9 0.839385 0.496487 0.007321 0.022892 +9 0.644510 0.497167 0.009370 0.035131 +10 0.917277 0.481301 0.007906 0.004760 +10 0.864861 0.481074 0.009663 0.004760 +9 0.116691 0.486061 0.013763 0.032412 +7 0.445242 0.497960 0.016105 0.030372 +9 0.503221 0.483114 0.013763 0.035131 +7 0.531040 0.480621 0.008492 0.033772 +10 0.765300 0.464529 0.007321 0.004760 +10 0.605417 0.463622 0.010835 0.002947 +10 0.786384 0.463622 0.008492 0.004760 +10 0.717862 0.413531 0.011420 0.003400 +10 0.553880 0.410131 0.010249 0.003853 +10 0.853148 0.406505 0.007906 0.002493 +7 0.917277 0.409225 0.016691 0.013826 +10 0.855490 0.400612 0.010249 0.003400 +9 0.156223 0.414891 0.011420 0.041024 +9 0.381113 0.410018 0.010249 0.032638 +10 0.134261 0.397439 0.007321 0.004306 +8 0.458419 0.406165 0.017277 0.033545 +9 0.905271 0.394266 0.009078 0.035585 +9 0.819473 0.391999 0.009663 0.032412 +8 0.583455 0.394492 0.009663 0.030598 +9 0.842020 0.387919 0.014934 0.026065 +10 0.729283 0.318336 0.016105 0.005213 +9 0.440849 0.307344 0.008492 0.034905 +10 0.124012 0.251587 0.014934 0.002720 +7 0.926647 0.234474 0.017277 0.013373 +10 0.167057 0.225408 0.009078 0.004760 +10 0.593411 0.224501 0.010249 0.003400 +10 0.437042 0.217248 0.009078 0.003400 +9 0.692387 0.213395 0.009078 0.038758 +9 0.837628 0.209202 0.009078 0.043971 +10 0.733089 0.156505 0.009078 0.004306 +9 0.420644 0.155598 0.012006 0.028785 +9 0.113177 0.146306 0.009663 0.031052 +10 0.174085 0.137239 0.009663 0.003400 +9 0.861933 0.121487 0.016105 0.035358 +9 0.693558 0.133953 0.013177 0.047144 +9 0.752709 0.132820 0.009663 0.051224 +10 0.433236 0.074683 0.008492 0.004760 +10 0.370278 0.061877 0.010249 0.005440 +10 0.138067 0.060630 0.009663 0.006120 +9 0.827086 0.049524 0.009078 0.037398 +9 0.379795 0.053037 0.017570 0.024025 +13 0.136603 0.978694 0.010835 0.007706 +13 0.603953 0.977335 0.009663 0.007706 +13 0.537921 0.977561 0.009956 0.008160 +11 0.672621 0.969855 0.008785 0.007253 +13 0.620205 0.969628 0.010542 0.007253 +13 0.153587 0.968155 0.010835 0.007480 +13 0.210102 0.967928 0.009078 0.007480 +12 0.752709 0.963055 0.009663 0.006800 +13 0.589019 0.962602 0.010249 0.006800 +13 0.589019 0.945943 0.010835 0.007933 +13 0.558272 0.962602 0.010835 0.006800 +13 0.557980 0.945830 0.010835 0.007706 +11 0.689165 0.962715 0.010249 0.007480 +12 0.224451 0.961015 0.009663 0.006346 +13 0.118009 0.961469 0.010542 0.007253 +13 0.117277 0.944470 0.010249 0.007706 +13 0.287408 0.960335 0.010249 0.006800 +12 0.194290 0.954442 0.009078 0.006346 +12 0.193997 0.938010 0.011420 0.007933 +13 0.170425 0.954556 0.010542 0.006573 +13 0.170278 0.937897 0.009663 0.007706 +12 0.369400 0.954442 0.010249 0.007253 +12 0.352123 0.954442 0.010835 0.007253 +13 0.302782 0.954216 0.010542 0.006800 +13 0.836896 0.953876 0.010542 0.007933 +13 0.821816 0.953876 0.012006 0.007933 +13 0.771010 0.953422 0.011127 0.007480 +12 0.657394 0.952969 0.009956 0.007933 +12 0.657101 0.939143 0.011127 0.008386 +13 0.634114 0.952969 0.011420 0.007933 +13 0.633821 0.939143 0.010249 0.007480 +13 0.885505 0.947076 0.008785 0.007480 +12 0.886530 0.923164 0.010835 0.007706 +12 0.703367 0.946623 0.008785 0.007026 +17 0.703953 0.928717 0.011127 0.007480 +13 0.737189 0.946510 0.009663 0.008160 +12 0.736896 0.928830 0.010249 0.008160 +12 0.241142 0.944470 0.008492 0.007706 +11 0.241288 0.930077 0.009956 0.007933 +13 0.270717 0.944243 0.009078 0.008160 +13 0.270571 0.929964 0.010542 0.007706 +13 0.852269 0.940503 0.009078 0.007480 +13 0.853001 0.922824 0.009956 0.007480 +13 0.805417 0.939937 0.009078 0.007253 +13 0.804978 0.922711 0.009370 0.007253 +13 0.789898 0.939937 0.008492 0.007253 +12 0.789898 0.922711 0.009663 0.007706 +13 0.320059 0.937897 0.010542 0.007706 +13 0.318741 0.920218 0.010249 0.007706 +12 0.411274 0.937670 0.010249 0.007706 +12 0.410542 0.920331 0.010542 0.007480 +13 0.386091 0.937670 0.009078 0.007706 +13 0.386091 0.920671 0.010249 0.008160 +13 0.337189 0.937557 0.009663 0.007933 +13 0.336603 0.920558 0.009663 0.007480 +13 0.938507 0.885426 0.009956 0.007480 +17 0.948463 0.833862 0.007028 0.006800 +12 0.198682 0.872620 0.009663 0.006800 +12 0.198682 0.855961 0.010835 0.007933 +12 0.352709 0.872167 0.008492 0.006800 +12 0.352562 0.855168 0.009956 0.007253 +12 0.445827 0.872167 0.009663 0.007253 +12 0.446120 0.855281 0.011420 0.007933 +12 0.297804 0.871940 0.008785 0.006800 +12 0.297950 0.855394 0.011420 0.007706 +12 0.483748 0.871940 0.008199 0.007253 +12 0.484187 0.855281 0.011420 0.007480 +12 0.392533 0.871714 0.008492 0.007253 +12 0.392240 0.855168 0.010249 0.007706 +13 0.956955 0.867407 0.009370 0.007253 +13 0.957247 0.850861 0.009370 0.007706 +13 0.710981 0.852108 0.007028 0.006120 +12 0.756808 0.849501 0.007321 0.005440 +12 0.701757 0.849388 0.007321 0.005666 +13 0.720937 0.849161 0.007028 0.005666 +13 0.767057 0.845875 0.006735 0.005440 +12 0.740849 0.845648 0.007028 0.005893 +13 0.692679 0.845875 0.007906 0.006800 +13 0.645242 0.845648 0.007906 0.006346 +13 0.775842 0.842815 0.006735 0.005666 +12 0.679649 0.842248 0.007613 0.005893 +13 0.656955 0.842135 0.007906 0.005666 +13 0.786530 0.840209 0.007028 0.005893 +13 0.668082 0.839302 0.006735 0.005440 +12 0.923426 0.836355 0.007906 0.005440 +12 0.884480 0.835902 0.007321 0.005440 +13 0.796925 0.835789 0.006735 0.005666 +13 0.901464 0.833749 0.007321 0.005666 +13 0.806442 0.833296 0.007028 0.006120 +13 0.859883 0.829782 0.007321 0.005440 +12 0.817277 0.829669 0.007613 0.005213 +12 0.913763 0.827629 0.007321 0.006120 +13 0.159004 0.828083 0.010542 0.007480 +13 0.261640 0.827856 0.010249 0.007480 +12 0.837189 0.826949 0.007613 0.006120 +12 0.872474 0.826723 0.007321 0.006120 +12 0.849341 0.826383 0.007321 0.005893 +17 0.175842 0.825703 0.009663 0.007253 +17 0.425329 0.825023 0.009663 0.007253 +12 0.512006 0.825476 0.009663 0.008613 +17 0.280088 0.824796 0.009663 0.007706 +13 0.247877 0.825136 0.010249 0.008386 +12 0.228843 0.825023 0.010835 0.008160 +12 0.117130 0.824796 0.009956 0.007706 +17 0.464568 0.824343 0.009663 0.007253 +13 0.142899 0.824569 0.009956 0.007706 +17 0.372182 0.824229 0.010542 0.007480 +17 0.330307 0.824569 0.009956 0.008613 +13 0.445827 0.791364 0.010249 0.007933 +13 0.466911 0.783092 0.010249 0.008160 +13 0.394436 0.783092 0.009956 0.008613 +12 0.194436 0.778785 0.009956 0.003173 +13 0.193704 0.752607 0.011420 0.007933 +13 0.375842 0.779125 0.010835 0.007933 +11 0.887262 0.777425 0.009370 0.006346 +12 0.887408 0.760539 0.010249 0.007933 +12 0.707321 0.775952 0.008492 0.007026 +12 0.707906 0.759633 0.010835 0.007933 +13 0.354466 0.775385 0.010249 0.007253 +13 0.411859 0.775045 0.010249 0.007026 +17 0.559736 0.772552 0.006735 0.007480 +13 0.563836 0.741954 0.009078 0.006120 +13 0.483163 0.772439 0.011127 0.007706 +13 0.315520 0.772099 0.010835 0.007933 +13 0.297511 0.768926 0.011127 0.007026 +13 0.278917 0.765979 0.011420 0.007933 +13 0.500293 0.765639 0.010249 0.007706 +13 0.334846 0.765639 0.010835 0.007706 +13 0.529283 0.759293 0.010835 0.007706 +18 0.461347 0.757593 0.005564 0.004306 +13 0.232064 0.759180 0.010249 0.007933 +18 0.755198 0.755100 0.005857 0.004306 +13 0.212299 0.756120 0.009956 0.007253 +13 0.249634 0.752493 0.012006 0.008160 +13 0.155930 0.749207 0.010835 0.007480 +13 0.547145 0.748753 0.009663 0.007026 +13 0.136896 0.745580 0.011420 0.007480 +13 0.116545 0.742520 0.009370 0.007253 +13 0.173206 0.742294 0.010249 0.008160 +13 0.581698 0.736174 0.009663 0.008160 +13 0.840703 0.733454 0.011127 0.007706 +13 0.662811 0.732548 0.010249 0.007706 +13 0.820644 0.730734 0.009663 0.007706 +17 0.858712 0.730281 0.009663 0.007706 +12 0.796925 0.729714 0.010249 0.007480 +13 0.643485 0.729374 0.009078 0.007706 +12 0.620351 0.729148 0.010835 0.007706 +17 0.683748 0.728921 0.010542 0.007706 +13 0.642020 0.696623 0.009663 0.008386 +13 0.662518 0.687330 0.010249 0.008386 +13 0.582284 0.687330 0.010249 0.008386 +13 0.563543 0.683364 0.011420 0.007706 +13 0.603660 0.679850 0.010835 0.007026 +13 0.542606 0.679624 0.010542 0.007480 +11 0.765593 0.676791 0.007906 0.006800 +13 0.770278 0.646985 0.011420 0.007480 +13 0.682138 0.677131 0.010835 0.007480 +13 0.492240 0.676451 0.011713 0.007933 +13 0.471010 0.672937 0.011420 0.007253 +13 0.699707 0.670558 0.010835 0.007933 +13 0.449488 0.669991 0.010542 0.007253 +13 0.513470 0.669991 0.010835 0.007706 +13 0.729868 0.663758 0.010249 0.007480 +13 0.394876 0.663078 0.010249 0.007933 +13 0.372914 0.659678 0.009663 0.007480 +13 0.352709 0.656505 0.011420 0.007933 +13 0.417130 0.656278 0.011420 0.007933 +13 0.747731 0.653785 0.009663 0.007480 +13 0.303807 0.653105 0.009663 0.007480 +13 0.282138 0.649819 0.010835 0.007706 +13 0.263982 0.646306 0.009663 0.007933 +13 0.324597 0.645966 0.011420 0.007706 +12 0.940410 0.641546 0.009663 0.007480 +13 0.792826 0.639959 0.010835 0.007480 +12 0.218594 0.639619 0.010249 0.008160 +13 0.887116 0.637353 0.009663 0.007253 +13 0.169107 0.635879 0.010249 0.007480 +12 0.835432 0.634180 0.010542 0.007706 +12 0.908492 0.633840 0.010249 0.007480 +12 0.117277 0.633500 0.009078 0.007706 +13 0.865300 0.633386 0.009956 0.008840 +13 0.146999 0.632026 0.009956 0.007026 +12 0.193119 0.631913 0.009663 0.007706 +13 0.558565 0.597121 0.004392 0.006573 +13 0.560908 0.562783 0.010835 0.007706 +12 0.451977 0.586922 0.010249 0.006120 +12 0.450805 0.557344 0.009663 0.007706 +13 0.505857 0.586695 0.009078 0.006120 +13 0.505564 0.563350 0.010249 0.007480 +13 0.705271 0.574569 0.009663 0.007706 +13 0.724305 0.570943 0.011420 0.007706 +13 0.776428 0.568110 0.011420 0.007480 +13 0.744802 0.567883 0.010249 0.007933 +12 0.538946 0.567316 0.010835 0.007706 +13 0.846266 0.565730 0.011127 0.007706 +13 0.814641 0.565050 0.011127 0.008160 +13 0.140117 0.563123 0.010249 0.007933 +13 0.866032 0.562217 0.010835 0.007933 +13 0.637628 0.561083 0.009663 0.007480 +13 0.582138 0.561197 0.011127 0.008160 +13 0.161201 0.560630 0.010249 0.007480 +12 0.406735 0.560743 0.010542 0.008160 +13 0.886237 0.558590 0.010249 0.007480 +13 0.658712 0.557910 0.009663 0.007480 +13 0.616984 0.557570 0.009370 0.007253 +13 0.116545 0.557004 0.009370 0.007933 +13 0.182284 0.556437 0.009078 0.007253 +13 0.353734 0.556210 0.009956 0.007706 +12 0.907028 0.555984 0.009663 0.007706 +12 0.303953 0.554624 0.009370 0.008160 +13 0.680381 0.554057 0.009663 0.007933 +13 0.331332 0.553830 0.009663 0.007480 +12 0.378917 0.553490 0.009956 0.007253 +13 0.204246 0.553604 0.009663 0.008386 +12 0.476574 0.550657 0.010835 0.007480 +13 0.228258 0.550091 0.010835 0.007706 +13 0.248755 0.546691 0.010835 0.008160 +12 0.271010 0.539665 0.009663 0.007706 +12 0.746852 0.520626 0.010249 0.006800 +12 0.747438 0.505893 0.011420 0.007253 +12 0.747145 0.495807 0.010249 0.007026 +12 0.699561 0.520512 0.010542 0.007026 +12 0.699707 0.505893 0.010835 0.007706 +12 0.699122 0.489234 0.010249 0.007026 +12 0.584334 0.515866 0.009663 0.008160 +12 0.583602 0.502040 0.008199 0.006800 +12 0.584480 0.485607 0.011127 0.007480 +13 0.424158 0.505326 0.010249 0.007933 +12 0.897657 0.500907 0.007321 0.003626 +12 0.898682 0.476768 0.010542 0.007933 +13 0.440556 0.501813 0.010249 0.006346 +13 0.466911 0.498527 0.010835 0.007480 +13 0.318741 0.498527 0.010835 0.007480 +13 0.512299 0.495580 0.010249 0.007026 +13 0.495608 0.495467 0.010835 0.006800 +13 0.363543 0.495014 0.010249 0.005893 +13 0.335725 0.495127 0.010249 0.007026 +12 0.666032 0.492294 0.010835 0.007706 +13 0.528111 0.492294 0.011420 0.007706 +13 0.396633 0.492180 0.012006 0.007933 +12 0.267496 0.492180 0.011420 0.007933 +13 0.845827 0.490141 0.010835 0.007026 +13 0.772914 0.489461 0.011420 0.007026 +13 0.621523 0.489121 0.010835 0.007706 +13 0.291508 0.488894 0.011420 0.007253 +13 0.546413 0.488781 0.010542 0.007480 +13 0.791654 0.486174 0.010835 0.008160 +13 0.608931 0.485607 0.011420 0.007480 +12 0.209810 0.485607 0.010835 0.007480 +12 0.648023 0.485607 0.011713 0.007933 +13 0.916398 0.483681 0.009078 0.007253 +13 0.862518 0.483454 0.009078 0.007253 +13 0.828551 0.483341 0.010249 0.007026 +12 0.721376 0.482548 0.010249 0.006800 +12 0.243777 0.482321 0.009663 0.007253 +13 0.879795 0.479941 0.009663 0.007933 +13 0.161201 0.479148 0.010835 0.007706 +12 0.117716 0.475861 0.011127 0.007026 +12 0.179649 0.475635 0.010249 0.007933 +13 0.145388 0.475295 0.010835 0.008160 +13 0.933675 0.473821 0.009663 0.007480 +13 0.950952 0.470648 0.010249 0.008386 +12 0.326940 0.431210 0.010249 0.007933 +12 0.220351 0.427924 0.010249 0.008160 +18 0.624451 0.424977 0.011420 0.004080 +13 0.169985 0.425204 0.010249 0.007706 +12 0.265739 0.424864 0.010835 0.007480 +13 0.358126 0.424524 0.009956 0.007253 +13 0.437335 0.424411 0.010835 0.007480 +12 0.193997 0.421691 0.010249 0.007026 +12 0.116398 0.421464 0.010835 0.007026 +13 0.147877 0.421464 0.010542 0.007480 +13 0.378770 0.421011 0.009663 0.007480 +13 0.532064 0.417838 0.011713 0.007480 +13 0.415373 0.417724 0.011420 0.007706 +13 0.459590 0.417611 0.010835 0.007933 +12 0.295022 0.417611 0.010835 0.007933 +13 0.482723 0.414098 0.010249 0.006346 +13 0.506149 0.411151 0.010249 0.007706 +13 0.554905 0.407525 0.010542 0.006346 +13 0.640849 0.407525 0.010249 0.006800 +13 0.581113 0.404465 0.011420 0.007480 +13 0.665886 0.404465 0.011127 0.007933 +13 0.617716 0.401519 0.009663 0.007026 +13 0.688580 0.401292 0.010249 0.007026 +13 0.711859 0.398119 0.011127 0.007480 +13 0.736018 0.394606 0.010835 0.006800 +12 0.937628 0.392679 0.011127 0.007480 +13 0.758272 0.391432 0.010835 0.007706 +13 0.884334 0.385426 0.010542 0.007480 +13 0.782870 0.384406 0.009663 0.007253 +12 0.907906 0.382253 0.010249 0.007480 +12 0.822401 0.381913 0.010249 0.008160 +13 0.851977 0.381233 0.009663 0.008613 +13 0.734846 0.348368 0.010249 0.008613 +12 0.755051 0.345082 0.010835 0.007480 +13 0.708492 0.344855 0.011420 0.007933 +13 0.839678 0.342702 0.010249 0.008160 +13 0.857833 0.342248 0.009078 0.007706 +13 0.813324 0.341682 0.009078 0.008386 +13 0.794290 0.341682 0.009663 0.008386 +13 0.931479 0.340095 0.009956 0.007480 +13 0.885359 0.339642 0.011420 0.007480 +13 0.948316 0.339189 0.010835 0.007480 +13 0.903807 0.339075 0.010835 0.007253 +13 0.666032 0.338055 0.010835 0.007480 +12 0.684187 0.334316 0.009663 0.007253 +13 0.648609 0.334316 0.009956 0.007253 +13 0.593997 0.324456 0.010835 0.007026 +12 0.612445 0.321283 0.010249 0.007026 +13 0.567643 0.321283 0.010835 0.007026 +13 0.523572 0.314370 0.010542 0.007253 +13 0.507174 0.311083 0.011713 0.007933 +12 0.540849 0.310970 0.011127 0.008160 +12 0.147438 0.304284 0.010835 0.007933 +13 0.448463 0.301337 0.010835 0.007026 +12 0.195461 0.300884 0.009663 0.007480 +12 0.271596 0.300771 0.009663 0.007706 +13 0.419473 0.297144 0.010249 0.007706 +12 0.466618 0.296804 0.010835 0.007480 +12 0.318741 0.296691 0.010249 0.007253 +13 0.376281 0.290684 0.010542 0.007480 +13 0.357101 0.287058 0.009663 0.007026 +12 0.396925 0.286945 0.010835 0.008160 +12 0.116252 0.280485 0.009370 0.007933 +18 0.172328 0.277312 0.010249 0.007480 +18 0.239678 0.276632 0.010249 0.007480 +18 0.296633 0.273345 0.010542 0.007706 +11 0.243485 0.244560 0.010835 0.007253 +13 0.254319 0.210109 0.009663 0.007706 +17 0.623572 0.242747 0.010835 0.006800 +13 0.632943 0.209429 0.010249 0.007706 +13 0.525769 0.230281 0.011420 0.007706 +13 0.148609 0.230394 0.011420 0.007933 +13 0.116252 0.227448 0.009956 0.007026 +13 0.209517 0.227335 0.010249 0.007253 +13 0.166911 0.227335 0.009370 0.007253 +13 0.591654 0.227108 0.009663 0.007253 +13 0.544949 0.226995 0.009956 0.007026 +13 0.498536 0.227108 0.009663 0.007253 +13 0.789019 0.223935 0.010835 0.007706 +13 0.188873 0.223935 0.009956 0.007706 +13 0.568228 0.223595 0.009663 0.007480 +13 0.458126 0.223595 0.010835 0.007933 +13 0.614495 0.220422 0.009663 0.007480 +13 0.435871 0.220195 0.009663 0.007026 +13 0.232504 0.220082 0.009370 0.007706 +12 0.946852 0.218155 0.011420 0.007480 +13 0.412445 0.213622 0.010835 0.007480 +13 0.654026 0.203649 0.010249 0.007026 +13 0.742753 0.203649 0.009663 0.007480 +13 0.361201 0.203536 0.010249 0.007706 +13 0.275403 0.203309 0.009663 0.007706 +12 0.765739 0.200363 0.010542 0.007253 +13 0.342020 0.200363 0.010542 0.007706 +12 0.315666 0.200363 0.010542 0.007706 +12 0.695022 0.200363 0.010249 0.008613 +13 0.720059 0.199456 0.009370 0.007253 +13 0.386091 0.199456 0.010835 0.008160 +13 0.890922 0.197529 0.010835 0.007933 +12 0.916398 0.194243 0.011420 0.007706 +12 0.840264 0.194243 0.010249 0.008160 +13 0.869107 0.193563 0.010542 0.007706 +12 0.217423 0.160018 0.011420 0.007253 +12 0.351391 0.149932 0.010542 0.007480 +12 0.421962 0.146646 0.009370 0.006800 +12 0.642020 0.143586 0.011420 0.007480 +12 0.490337 0.143246 0.011420 0.007706 +12 0.730161 0.140413 0.009663 0.007026 +13 0.173792 0.140186 0.008492 0.007026 +13 0.950805 0.138486 0.010542 0.007706 +12 0.781259 0.137579 0.011127 0.007706 +12 0.196925 0.136899 0.011420 0.007706 +13 0.145388 0.136899 0.011420 0.007706 +12 0.115813 0.136673 0.010835 0.007706 +13 0.934993 0.134859 0.009370 0.006800 +13 0.306589 0.129646 0.010542 0.007706 +13 0.918155 0.127720 0.010835 0.007933 +12 0.263982 0.126587 0.010835 0.007480 +12 0.326940 0.126360 0.011420 0.007480 +13 0.287994 0.126247 0.010835 0.008160 +13 0.598389 0.123073 0.010835 0.007706 +12 0.395754 0.122733 0.010835 0.007933 +12 0.542313 0.119560 0.009956 0.007933 +12 0.618155 0.118994 0.010542 0.007706 +12 0.454319 0.118654 0.009663 0.007480 +13 0.568521 0.118540 0.010835 0.007706 +13 0.872767 0.117180 0.010249 0.007706 +12 0.694729 0.116387 0.010249 0.007480 +13 0.845242 0.113327 0.009078 0.006800 +13 0.893119 0.113667 0.009370 0.007933 +12 0.820351 0.113101 0.009663 0.007253 +12 0.755344 0.113101 0.009663 0.007706 +12 0.776867 0.083976 0.011127 0.007480 +13 0.142460 0.079669 0.009663 0.008386 +13 0.115813 0.079102 0.010249 0.008613 +12 0.939092 0.077969 0.009956 0.007253 +13 0.206149 0.076383 0.010542 0.007706 +13 0.163543 0.075929 0.009663 0.007253 +13 0.184187 0.073209 0.009956 0.007253 +13 0.225037 0.072983 0.010835 0.007253 +11 0.234846 0.053944 0.008785 0.004533 +12 0.623865 0.072869 0.009663 0.007480 +13 0.244656 0.069583 0.011420 0.007706 +13 0.273499 0.066410 0.011127 0.006800 +13 0.464422 0.064710 0.009956 0.003853 +12 0.314788 0.065843 0.009956 0.006120 +12 0.322694 0.037965 0.006442 0.003853 +13 0.343631 0.063010 0.010249 0.007706 +13 0.728551 0.063010 0.011713 0.008160 +13 0.700000 0.059950 0.010835 0.007026 +12 0.748609 0.059723 0.010835 0.007026 +13 0.371010 0.059497 0.009370 0.006573 +12 0.672328 0.059157 0.010542 0.006346 +13 0.388141 0.056210 0.010249 0.007253 +13 0.414641 0.053264 0.009956 0.006800 +13 0.433236 0.049977 0.011420 0.007480 +13 0.885066 0.046804 0.010249 0.007480 +13 0.450952 0.046351 0.011127 0.007026 +13 0.575549 0.046351 0.010835 0.007480 +12 0.908492 0.044084 0.011420 0.007480 +13 0.859151 0.043744 0.011127 0.007253 +12 0.829722 0.043404 0.010835 0.007480 +12 0.526354 0.042951 0.010835 0.007480 +12 0.597365 0.042838 0.011127 0.007706 +13 0.556515 0.042838 0.011420 0.007706 +13 0.481259 0.036151 0.010835 0.007480 +1 0.056369 0.947529 0.023133 0.043744 +1 0.056808 0.057004 0.024597 0.050544 +4 0.331625 0.062443 0.009663 0.021985 +4 0.399854 0.214529 0.010249 0.021079 +3 0.514202 0.042951 0.007613 0.021079 +4 0.360029 0.059497 0.010249 0.021532 +5 0.440996 0.115254 0.009370 0.017452 +4 0.816837 0.043404 0.010835 0.021079 +4 0.716105 0.063123 0.010249 0.021985 +3 0.261347 0.066296 0.007321 0.021079 +5 0.780820 0.337602 0.009663 0.016999 +3 0.467204 0.035698 0.007321 0.021985 +4 0.869253 0.385086 0.010249 0.021306 +4 0.582284 0.323776 0.009663 0.020172 +4 0.873499 0.047144 0.010542 0.020852 +4 0.905564 0.128173 0.010249 0.021532 +5 0.477160 0.139733 0.008492 0.016999 +3 0.825622 0.193903 0.006735 0.021985 +4 0.859297 0.117520 0.010249 0.021532 +4 0.197218 0.485834 0.010249 0.021079 +3 0.527965 0.120240 0.007613 0.021532 +1 0.055783 0.230621 0.023719 0.051451 +3 0.679649 0.115254 0.007613 0.021532 +4 0.436018 0.302017 0.010542 0.021079 +3 0.936018 0.218155 0.007321 0.021079 +3 0.130747 0.079896 0.007321 0.019719 +1 0.055783 0.663078 0.024305 0.051451 +5 0.102343 0.075816 0.009078 0.017452 +1 0.055783 0.855961 0.023719 0.051904 +4 0.919327 0.339642 0.010249 0.021079 +4 0.483602 0.495127 0.010249 0.021532 +4 0.135725 0.230168 0.010249 0.021079 +4 0.832211 0.564257 0.011127 0.021985 +4 0.764129 0.569243 0.010249 0.021532 +4 0.412152 0.505100 0.010835 0.021079 +4 0.721962 0.347121 0.010249 0.022439 +4 0.584919 0.122733 0.010835 0.021532 +4 0.352269 0.495354 0.009956 0.021079 +3 0.717570 0.140186 0.007906 0.021079 +4 0.223865 0.277312 0.010249 0.021532 +4 0.749195 0.849615 0.007321 0.013826 +1 0.055198 0.404692 0.024305 0.051451 +4 0.258712 0.302017 0.010835 0.021079 +4 0.306296 0.498753 0.010542 0.021532 +3 0.827965 0.341002 0.006735 0.020626 +4 0.134407 0.304284 0.010542 0.021532 +1 0.056369 0.759406 0.024305 0.050997 +1 0.055783 0.583749 0.023719 0.051451 +1 0.055051 0.491727 0.024597 0.051451 +4 0.526208 0.567883 0.010542 0.021079 +1 0.056662 0.317656 0.024305 0.050544 +4 0.101464 0.281392 0.010249 0.021532 +1 0.056076 0.139959 0.023719 0.045104 +4 0.514056 0.229714 0.010249 0.021079 +4 0.455344 0.498867 0.009956 0.021759 +3 0.872182 0.338962 0.007321 0.021079 +4 0.087262 0.488894 0.009956 0.019946 +4 0.077892 0.478468 0.009956 0.020852 +4 0.085798 0.139846 0.009956 0.020852 +4 0.077013 0.129420 0.009956 0.020852 +4 0.087848 0.580462 0.009956 0.020852 +4 0.078770 0.570263 0.009370 0.020399 +4 0.086384 0.052811 0.009370 0.020852 +4 0.077306 0.042611 0.009370 0.020399 +4 0.088141 0.755440 0.009956 0.020852 +4 0.079063 0.745240 0.009956 0.020399 +4 0.086384 0.226655 0.010542 0.020399 +4 0.077599 0.216682 0.009370 0.020399 +4 0.086676 0.314143 0.009956 0.021306 +4 0.077892 0.303944 0.009370 0.020852 +4 0.087555 0.401405 0.009956 0.019946 +4 0.078770 0.390979 0.009956 0.020852 +4 0.079795 0.937330 0.010249 0.021079 +4 0.089898 0.947076 0.009956 0.021079 +4 0.079209 0.649705 0.010249 0.021079 +4 0.088141 0.659678 0.009956 0.021079 +4 0.078331 0.841908 0.010249 0.021079 +4 0.087262 0.851881 0.009956 0.021079 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_25.jpg b/data_dataset/tch/debug/debug_25.jpg new file mode 100644 index 0000000..91dc434 Binary files /dev/null and b/data_dataset/tch/debug/debug_25.jpg differ diff --git a/data_dataset/tch/debug/debug_25.txt b/data_dataset/tch/debug/debug_25.txt new file mode 100644 index 0000000..eb8e92b --- /dev/null +++ b/data_dataset/tch/debug/debug_25.txt @@ -0,0 +1,648 @@ +7 0.646714 0.975834 0.009390 0.012934 +6 0.664026 0.974246 0.007629 0.016565 +7 0.906690 0.923417 0.011737 0.017018 +7 0.843163 0.923644 0.012617 0.016565 +7 0.647154 0.923304 0.012617 0.016791 +7 0.769953 0.923190 0.011737 0.017018 +10 0.347858 0.918652 0.010270 0.006580 +10 0.723885 0.918312 0.012324 0.006354 +6 0.666813 0.922056 0.012031 0.024733 +6 0.929871 0.921375 0.012324 0.025641 +9 0.590376 0.823349 0.014671 0.032902 +7 0.761444 0.820740 0.014085 0.026322 +7 0.750293 0.824030 0.008216 0.032902 +10 0.227993 0.830043 0.008803 0.004992 +9 0.172242 0.806558 0.007042 0.024280 +9 0.152582 0.801793 0.007629 0.032902 +10 0.159331 0.760608 0.008803 0.002269 +10 0.309272 0.735421 0.008216 0.005900 +9 0.466549 0.726344 0.009390 0.030860 +9 0.117664 0.732811 0.009977 0.043794 +10 0.861502 0.672113 0.008803 0.002723 +10 0.201291 0.665532 0.009977 0.004992 +10 0.142019 0.658725 0.013498 0.005446 +9 0.691021 0.667461 0.010563 0.023826 +10 0.841843 0.645791 0.009390 0.002723 +8 0.701585 0.657931 0.012911 0.030179 +7 0.758803 0.649762 0.008803 0.033810 +10 0.583627 0.595416 0.008216 0.004538 +10 0.403169 0.584525 0.009977 0.003177 +10 0.468310 0.587474 0.014085 0.005900 +9 0.912559 0.562855 0.014671 0.022010 +9 0.230781 0.560585 0.010270 0.022918 +9 0.822477 0.560926 0.016432 0.039483 +9 0.332013 0.556955 0.008509 0.030179 +9 0.163586 0.553324 0.008509 0.036987 +9 0.863996 0.553324 0.009096 0.037440 +8 0.464495 0.519741 0.007629 0.007942 +9 0.645246 0.512934 0.009977 0.009757 +10 0.206279 0.496710 0.009977 0.002269 +10 0.765845 0.497391 0.010563 0.005900 +10 0.517606 0.495575 0.008216 0.002723 +7 0.390258 0.490470 0.008216 0.018380 +9 0.286092 0.475040 0.009977 0.030633 +9 0.865904 0.474813 0.009977 0.030179 +9 0.887617 0.473905 0.011150 0.032902 +10 0.805164 0.433061 0.012324 0.005219 +10 0.389671 0.414341 0.018192 0.004992 +10 0.823944 0.407987 0.007629 0.002723 +10 0.874120 0.402768 0.009390 0.005900 +10 0.917547 0.424098 0.013498 0.004538 +10 0.923122 0.421602 0.010563 0.002269 +10 0.270833 0.344906 0.010563 0.004538 +10 0.199237 0.345133 0.010563 0.004992 +10 0.900235 0.342637 0.007629 0.005446 +10 0.784331 0.332426 0.014085 0.005446 +9 0.432512 0.336170 0.009977 0.022918 +9 0.147594 0.342410 0.008216 0.039029 +6 0.119425 0.333220 0.011737 0.024280 +10 0.191461 0.322328 0.009096 0.006127 +9 0.636884 0.320513 0.010270 0.028364 +9 0.550323 0.323690 0.009683 0.038348 +9 0.693369 0.311663 0.011737 0.033810 +10 0.245305 0.233038 0.014085 0.005900 +6 0.813967 0.237236 0.011737 0.024280 +6 0.893192 0.236555 0.011737 0.024733 +6 0.623533 0.236329 0.012324 0.024280 +6 0.521714 0.236555 0.011737 0.023826 +6 0.718310 0.236555 0.011737 0.024280 +6 0.426056 0.236329 0.011737 0.023826 +10 0.623239 0.180168 0.013498 0.002723 +10 0.603873 0.174722 0.007629 0.002723 +7 0.902289 0.148060 0.011737 0.017472 +7 0.307805 0.147833 0.011737 0.016111 +7 0.420775 0.148060 0.012324 0.016111 +6 0.924002 0.146018 0.011737 0.026095 +6 0.328638 0.146925 0.012324 0.024280 +6 0.385857 0.146698 0.012911 0.024280 +9 0.450117 0.146698 0.011150 0.060585 +9 0.513791 0.140118 0.007042 0.039710 +9 0.167547 0.142841 0.015258 0.067393 +9 0.250000 0.139891 0.011150 0.061947 +10 0.562207 0.114817 0.007629 0.004538 +10 0.252347 0.068981 0.007042 0.004538 +10 0.448063 0.068527 0.011150 0.004084 +7 0.720657 0.049353 0.011737 0.016565 +7 0.604167 0.049126 0.012324 0.016565 +7 0.158451 0.048219 0.011737 0.017018 +6 0.682512 0.047765 0.011737 0.024280 +6 0.628815 0.046857 0.012324 0.024733 +6 0.124120 0.046630 0.012324 0.025641 +9 0.363116 0.049807 0.009683 0.059224 +9 0.182218 0.048899 0.009977 0.057409 +9 0.747653 0.048219 0.009390 0.060585 +9 0.767019 0.038462 0.011737 0.044702 +9 0.806631 0.038235 0.008803 0.045609 +9 0.457600 0.042092 0.014378 0.059224 +9 0.255575 0.039369 0.006455 0.056955 +8 0.274354 0.021784 0.008803 0.026322 +12 0.476379 0.962560 0.008509 0.005446 +13 0.496039 0.960290 0.009096 0.006354 +13 0.514965 0.957908 0.008216 0.005673 +12 0.537559 0.955866 0.008216 0.006127 +13 0.457600 0.955412 0.008509 0.005673 +12 0.555898 0.953370 0.007923 0.005673 +12 0.576731 0.951327 0.008509 0.006127 +17 0.883656 0.950647 0.010857 0.007488 +12 0.883069 0.932721 0.009683 0.006127 +12 0.883803 0.916837 0.010563 0.007034 +12 0.596978 0.946789 0.007923 0.006127 +12 0.623826 0.941116 0.008216 0.005673 +13 0.309126 0.926708 0.009683 0.006807 +18 0.309859 0.911958 0.007629 0.004538 +13 0.138791 0.926481 0.009390 0.006807 +13 0.329959 0.923417 0.011444 0.007488 +12 0.160065 0.923077 0.010857 0.007261 +13 0.177964 0.920127 0.009096 0.006807 +13 0.347271 0.920241 0.009683 0.007488 +13 0.368251 0.917064 0.009390 0.007034 +13 0.199824 0.916950 0.010563 0.007261 +13 0.118985 0.916723 0.009683 0.007261 +13 0.387031 0.910597 0.010563 0.007715 +13 0.218310 0.910370 0.009977 0.007715 +13 0.479167 0.903903 0.011150 0.007942 +13 0.405663 0.903676 0.009683 0.007488 +13 0.238850 0.902882 0.009977 0.008169 +13 0.497359 0.900386 0.009977 0.007261 +13 0.516432 0.897549 0.009977 0.007488 +13 0.258363 0.897096 0.010857 0.007488 +13 0.427670 0.896415 0.010270 0.007488 +13 0.538292 0.893692 0.009683 0.006127 +13 0.287705 0.893919 0.009683 0.007488 +13 0.458773 0.893692 0.010270 0.008396 +12 0.796948 0.890515 0.010563 0.007488 +13 0.556631 0.887452 0.009977 0.008169 +18 0.820423 0.881098 0.009977 0.007261 +12 0.576438 0.880191 0.009683 0.008169 +12 0.597711 0.873724 0.009977 0.007942 +18 0.626614 0.869980 0.010270 0.007715 +13 0.840376 0.849784 0.011150 0.007261 +11 0.850792 0.824030 0.009096 0.005219 +13 0.860475 0.846494 0.009683 0.007942 +13 0.878081 0.842864 0.010857 0.007034 +13 0.785945 0.841956 0.010857 0.007488 +13 0.899061 0.839460 0.010563 0.007488 +13 0.819102 0.839346 0.010270 0.007261 +13 0.766285 0.839120 0.010270 0.007261 +13 0.746626 0.835602 0.010857 0.007488 +13 0.915493 0.832880 0.010563 0.007034 +13 0.728727 0.831745 0.010270 0.005219 +13 0.709654 0.829249 0.010857 0.007488 +13 0.932072 0.826299 0.009683 0.006580 +13 0.681191 0.825618 0.010270 0.006580 +13 0.663146 0.822668 0.011737 0.007942 +13 0.948210 0.820172 0.010270 0.007034 +13 0.643779 0.819378 0.010563 0.007261 +13 0.610035 0.816088 0.011150 0.007942 +13 0.590376 0.813138 0.009977 0.007488 +13 0.257776 0.813365 0.010857 0.007942 +13 0.238410 0.810302 0.010857 0.007261 +13 0.572036 0.809735 0.011444 0.007942 +13 0.219924 0.806671 0.011444 0.008169 +13 0.552964 0.806217 0.010857 0.008169 +13 0.388644 0.803381 0.009683 0.007488 +13 0.307658 0.803268 0.010857 0.007715 +13 0.199677 0.803381 0.010857 0.007942 +13 0.518926 0.802927 0.010857 0.007942 +13 0.409478 0.800998 0.010270 0.008169 +13 0.326438 0.800431 0.009683 0.007488 +13 0.501907 0.800658 0.010857 0.008396 +13 0.179137 0.800318 0.010857 0.007715 +13 0.159184 0.797481 0.010857 0.007488 +13 0.429431 0.797027 0.010270 0.007488 +13 0.347271 0.796801 0.010270 0.007488 +13 0.483275 0.796687 0.011150 0.007715 +13 0.120158 0.793737 0.009683 0.007261 +13 0.290933 0.793964 0.010857 0.008169 +13 0.465082 0.793283 0.009977 0.007261 +13 0.369131 0.793737 0.010563 0.008169 +13 0.139818 0.793624 0.010270 0.007942 +17 0.922975 0.755276 0.006162 0.004311 +13 0.931485 0.740526 0.010270 0.007488 +13 0.930898 0.718403 0.011444 0.008623 +13 0.724619 0.740073 0.010857 0.007034 +13 0.724325 0.717155 0.011444 0.008396 +13 0.138351 0.740186 0.010857 0.007261 +13 0.861942 0.740073 0.010857 0.007488 +13 0.861356 0.717155 0.010857 0.007942 +13 0.546508 0.739959 0.009096 0.007261 +13 0.545921 0.716474 0.010270 0.008396 +13 0.291227 0.740073 0.011444 0.007488 +13 0.791227 0.739846 0.010857 0.007488 +13 0.790640 0.717041 0.011444 0.008169 +13 0.654489 0.740073 0.011444 0.007942 +13 0.653903 0.716928 0.011444 0.008396 +13 0.607688 0.739619 0.009390 0.007488 +13 0.607394 0.716247 0.009977 0.007034 +13 0.587001 0.739732 0.010270 0.007715 +13 0.586414 0.717155 0.010270 0.007942 +13 0.566461 0.739619 0.009096 0.007488 +13 0.566168 0.716928 0.010270 0.008396 +13 0.309272 0.737123 0.008803 0.007034 +13 0.155957 0.733379 0.010857 0.007261 +13 0.329665 0.733379 0.010857 0.007715 +13 0.348885 0.730202 0.010563 0.007261 +13 0.174736 0.729748 0.009683 0.007261 +13 0.196743 0.726912 0.010270 0.007488 +13 0.371332 0.726685 0.010857 0.007488 +13 0.215816 0.726458 0.010857 0.007488 +13 0.389231 0.726231 0.010270 0.007488 +13 0.410651 0.724075 0.010857 0.007715 +13 0.235622 0.723622 0.008803 0.007261 +13 0.429724 0.719991 0.011444 0.007715 +13 0.254842 0.719877 0.010270 0.007942 +13 0.525088 0.717041 0.010857 0.007715 +13 0.486356 0.716814 0.009683 0.007715 +13 0.468310 0.717041 0.009977 0.008169 +13 0.120158 0.716587 0.009683 0.007261 +13 0.506309 0.717268 0.009683 0.009076 +13 0.363556 0.689698 0.010563 0.007942 +13 0.362969 0.674609 0.008803 0.006807 +13 0.426496 0.688337 0.010857 0.007942 +13 0.425910 0.674609 0.008509 0.006807 +13 0.540053 0.682097 0.010270 0.007715 +13 0.540053 0.664965 0.009683 0.007034 +13 0.469924 0.681302 0.009683 0.008396 +13 0.469924 0.664851 0.010270 0.007261 +13 0.683539 0.674609 0.010270 0.006807 +18 0.625293 0.667234 0.005869 0.003857 +13 0.700264 0.667801 0.009683 0.005900 +13 0.717870 0.664738 0.010857 0.007034 +13 0.738410 0.661675 0.009683 0.007261 +13 0.572917 0.661448 0.010857 0.007261 +13 0.755722 0.660994 0.010270 0.006807 +13 0.776262 0.658384 0.010270 0.007034 +13 0.410065 0.658498 0.011444 0.007261 +13 0.409331 0.648514 0.009390 0.007261 +13 0.391579 0.658498 0.010857 0.007261 +13 0.391579 0.648514 0.009683 0.007261 +13 0.791960 0.655094 0.009977 0.006807 +13 0.824384 0.652031 0.011444 0.007488 +13 0.515405 0.652031 0.010857 0.007488 +18 0.525675 0.647606 0.009096 0.005900 +13 0.841403 0.648627 0.009096 0.007034 +13 0.291813 0.648854 0.010857 0.007488 +13 0.488996 0.652031 0.010857 0.007488 +18 0.498680 0.648627 0.010857 0.007488 +13 0.309566 0.648514 0.010563 0.007715 +13 0.212001 0.645564 0.010857 0.007261 +13 0.195569 0.645450 0.010857 0.007488 +13 0.860475 0.645337 0.010857 0.007715 +13 0.325558 0.645110 0.010270 0.007261 +13 0.231221 0.642274 0.009390 0.007034 +13 0.879988 0.642160 0.011150 0.007715 +13 0.342870 0.641479 0.010857 0.007261 +13 0.261004 0.638870 0.010270 0.007488 +13 0.900088 0.638643 0.011444 0.007942 +13 0.916667 0.638076 0.010563 0.007715 +13 0.589642 0.637622 0.010270 0.007715 +13 0.139231 0.635920 0.009683 0.007488 +13 0.933979 0.635807 0.009977 0.007715 +13 0.615464 0.635693 0.009096 0.007488 +13 0.121332 0.635580 0.010270 0.007715 +13 0.157717 0.632290 0.010270 0.007488 +13 0.952318 0.632063 0.010270 0.007488 +13 0.635710 0.631836 0.010857 0.007034 +13 0.174442 0.628659 0.009683 0.007488 +13 0.665346 0.627865 0.009683 0.006807 +13 0.521127 0.607783 0.010563 0.007942 +13 0.520980 0.593147 0.010270 0.006807 +13 0.585241 0.607216 0.009683 0.007715 +13 0.585241 0.593601 0.009683 0.008623 +13 0.626614 0.601089 0.009096 0.008169 +13 0.627201 0.583277 0.010270 0.007034 +13 0.691168 0.600635 0.010270 0.007715 +13 0.690581 0.583504 0.010270 0.007034 +11 0.764671 0.589290 0.012324 0.011346 +13 0.762764 0.554232 0.009683 0.007488 +13 0.719630 0.580327 0.009683 0.007034 +13 0.546362 0.577377 0.010563 0.007034 +13 0.546948 0.567166 0.009390 0.006580 +13 0.567048 0.577037 0.010857 0.007261 +13 0.567048 0.567166 0.009683 0.007488 +13 0.464055 0.567733 0.010270 0.007261 +13 0.447770 0.567847 0.010563 0.007488 +13 0.669161 0.570570 0.010857 0.007488 +18 0.678550 0.567393 0.010857 0.007488 +13 0.644513 0.570343 0.010857 0.007488 +18 0.653316 0.567166 0.010857 0.007488 +13 0.354167 0.564556 0.011150 0.007261 +13 0.371332 0.564443 0.011444 0.007942 +13 0.482541 0.563989 0.010857 0.007942 +13 0.387911 0.561266 0.010563 0.007942 +13 0.500147 0.560585 0.010857 0.007488 +13 0.895540 0.558089 0.010563 0.007488 +13 0.912999 0.557636 0.010857 0.007488 +13 0.214202 0.557636 0.010563 0.007488 +13 0.737236 0.557295 0.010270 0.007261 +13 0.416227 0.557295 0.010270 0.007261 +13 0.196890 0.557182 0.011150 0.007942 +13 0.232541 0.554686 0.009096 0.007034 +13 0.297388 0.554686 0.009683 0.007942 +13 0.931191 0.554005 0.009683 0.007488 +13 0.280663 0.554572 0.009096 0.008623 +13 0.949971 0.550942 0.010857 0.007715 +13 0.316461 0.550715 0.010270 0.007261 +13 0.779196 0.550261 0.010857 0.007715 +13 0.251614 0.549921 0.010857 0.007488 +13 0.828785 0.548673 0.010270 0.007715 +13 0.135563 0.548559 0.008803 0.007942 +13 0.119425 0.547992 0.009977 0.007715 +13 0.334654 0.547765 0.010270 0.007715 +13 0.811766 0.547425 0.010270 0.008396 +13 0.849032 0.545269 0.010857 0.007261 +13 0.152142 0.544702 0.010270 0.007488 +13 0.166373 0.540617 0.009390 0.007488 +13 0.866197 0.540504 0.009390 0.007715 +13 0.326731 0.515317 0.010857 0.007261 +13 0.345511 0.511686 0.009683 0.007261 +13 0.307952 0.511686 0.010857 0.007261 +13 0.368398 0.508736 0.010857 0.007261 +18 0.763204 0.503744 0.008216 0.003631 +13 0.385417 0.505446 0.010857 0.007034 +18 0.587735 0.504198 0.008803 0.004992 +13 0.498680 0.501929 0.009683 0.007261 +13 0.403609 0.502042 0.010857 0.007488 +13 0.418867 0.499092 0.009683 0.007034 +13 0.516432 0.498752 0.008803 0.006807 +13 0.460974 0.495575 0.010563 0.007261 +13 0.538586 0.495235 0.010857 0.007942 +13 0.671802 0.492058 0.010857 0.007488 +13 0.582600 0.488654 0.010857 0.007488 +13 0.698797 0.488428 0.010857 0.007488 +13 0.719630 0.485364 0.009096 0.006807 +13 0.480047 0.485591 0.009977 0.007261 +12 0.599032 0.485251 0.009683 0.007034 +12 0.554431 0.485478 0.010857 0.007488 +13 0.633363 0.481847 0.011444 0.007488 +13 0.737823 0.481847 0.011444 0.007942 +13 0.784478 0.478784 0.010857 0.007261 +13 0.755722 0.478443 0.009683 0.007488 +13 0.653316 0.478216 0.010270 0.007488 +13 0.120599 0.476061 0.009977 0.007261 +13 0.813820 0.475494 0.010857 0.007488 +13 0.831279 0.472771 0.009977 0.007488 +13 0.137617 0.472317 0.009390 0.007942 +13 0.156250 0.469367 0.010270 0.007488 +13 0.850205 0.469140 0.010857 0.007488 +13 0.173562 0.466190 0.009683 0.007488 +13 0.868104 0.465850 0.009096 0.008169 +13 0.287999 0.465623 0.009683 0.007715 +13 0.889525 0.463240 0.010857 0.007488 +13 0.192782 0.462560 0.010563 0.007488 +13 0.209947 0.460064 0.009683 0.007488 +13 0.906543 0.459723 0.009683 0.007715 +18 0.936766 0.456546 0.010270 0.007715 +18 0.237823 0.456433 0.010270 0.007488 +12 0.254842 0.453370 0.009096 0.007715 +18 0.954665 0.453143 0.010857 0.008169 +13 0.426203 0.433969 0.010857 0.007488 +13 0.446156 0.430565 0.010857 0.007034 +13 0.404196 0.430565 0.010270 0.007034 +13 0.469777 0.427161 0.011150 0.007488 +13 0.489583 0.423871 0.010857 0.007261 +13 0.511297 0.420921 0.010857 0.007261 +12 0.517312 0.401180 0.008803 0.005900 +13 0.627201 0.420467 0.011444 0.007261 +13 0.531543 0.417631 0.010270 0.007034 +13 0.646860 0.417064 0.008509 0.006807 +12 0.148621 0.414454 0.010857 0.007488 +13 0.673269 0.414114 0.010857 0.007715 +13 0.583480 0.413774 0.010857 0.007488 +13 0.822917 0.411164 0.009683 0.006807 +13 0.172388 0.411391 0.009096 0.007261 +11 0.276849 0.408441 0.006749 0.004084 +12 0.284771 0.394600 0.010857 0.007261 +13 0.854167 0.407760 0.011150 0.007261 +13 0.728433 0.407647 0.010857 0.007488 +13 0.873680 0.404584 0.009096 0.005446 +13 0.120745 0.404811 0.009096 0.007261 +13 0.199384 0.404697 0.009096 0.007488 +13 0.745599 0.404243 0.009977 0.007034 +13 0.604020 0.404130 0.010857 0.007261 +13 0.695863 0.404016 0.011444 0.007488 +13 0.894219 0.401180 0.011444 0.007715 +13 0.783011 0.400953 0.010857 0.007715 +13 0.946303 0.398344 0.011150 0.007488 +13 0.914466 0.397890 0.010857 0.007488 +13 0.801496 0.397776 0.011444 0.007715 +12 0.247066 0.394146 0.010563 0.007261 +13 0.309712 0.391423 0.010270 0.007261 +13 0.336414 0.388246 0.010857 0.007261 +13 0.382482 0.383935 0.010270 0.007261 +13 0.157277 0.352961 0.010563 0.007034 +13 0.173709 0.349671 0.009977 0.006807 +11 0.182072 0.327320 0.004988 0.004765 +13 0.140405 0.349784 0.009683 0.007034 +13 0.253961 0.346267 0.011444 0.007715 +13 0.200411 0.342864 0.010563 0.005900 +13 0.237676 0.342864 0.009977 0.006354 +13 0.271860 0.342637 0.009683 0.006807 +13 0.367518 0.340027 0.010857 0.007488 +13 0.341843 0.339687 0.011150 0.007261 +13 0.316755 0.339800 0.011444 0.007488 +13 0.298856 0.339687 0.010857 0.007261 +18 0.167107 0.331291 0.006749 0.004538 +13 0.433539 0.330497 0.009096 0.007034 +13 0.947036 0.327434 0.010270 0.007261 +13 0.418134 0.327320 0.011150 0.007488 +13 0.385563 0.327320 0.011737 0.007488 +13 0.452465 0.326980 0.010563 0.007715 +13 0.512911 0.324030 0.010563 0.007715 +13 0.496185 0.320513 0.011150 0.007488 +13 0.897300 0.320399 0.011150 0.007715 +13 0.530810 0.320399 0.011150 0.007715 +13 0.479460 0.320286 0.011150 0.007942 +13 0.919748 0.317450 0.010857 0.007261 +13 0.644806 0.317109 0.009683 0.007488 +13 0.618545 0.317109 0.010563 0.007488 +13 0.593750 0.317223 0.010857 0.007715 +13 0.558392 0.317223 0.010563 0.007715 +13 0.845217 0.314386 0.010270 0.007488 +12 0.880135 0.310075 0.010857 0.007942 +13 0.680018 0.304402 0.009683 0.007942 +12 0.822036 0.304289 0.009683 0.008169 +13 0.660651 0.303721 0.009683 0.007488 +13 0.696156 0.300545 0.010270 0.007488 +13 0.721097 0.297935 0.009683 0.007715 +13 0.805311 0.297141 0.010270 0.007942 +18 0.746772 0.294078 0.010563 0.007261 +18 0.779489 0.290447 0.010270 0.007261 +12 0.926790 0.269458 0.009096 0.007488 +12 0.926790 0.254822 0.010270 0.007261 +12 0.926350 0.238484 0.010563 0.007261 +12 0.926790 0.222033 0.011444 0.007034 +12 0.561326 0.268890 0.009390 0.008169 +12 0.561473 0.250851 0.010857 0.007488 +12 0.560299 0.234286 0.009683 0.006127 +12 0.561180 0.218176 0.010270 0.007488 +12 0.676496 0.268323 0.009683 0.007488 +12 0.656103 0.268437 0.009390 0.007715 +12 0.655663 0.253914 0.009096 0.006354 +12 0.655516 0.237917 0.009977 0.006580 +12 0.656250 0.227933 0.010270 0.007034 +12 0.121919 0.268210 0.007336 0.007261 +13 0.122212 0.250737 0.007923 0.006807 +13 0.122359 0.234400 0.008216 0.005900 +13 0.122506 0.217608 0.010857 0.007715 +12 0.585387 0.268210 0.009390 0.007715 +12 0.487529 0.268323 0.009683 0.008396 +12 0.465229 0.268096 0.009683 0.007942 +12 0.465376 0.250624 0.010563 0.007488 +12 0.464202 0.234059 0.008803 0.005673 +12 0.464935 0.217835 0.010270 0.007261 +12 0.295041 0.267415 0.008509 0.007942 +11 0.295188 0.250624 0.008803 0.006580 +12 0.295041 0.234286 0.008509 0.007034 +12 0.295335 0.217268 0.010270 0.007488 +12 0.747066 0.258226 0.011150 0.007261 +12 0.746479 0.244270 0.009977 0.007488 +11 0.757042 0.240526 0.008216 0.005446 +12 0.746626 0.228046 0.010270 0.006807 +12 0.946009 0.255162 0.009977 0.007034 +12 0.861942 0.254595 0.010857 0.006807 +12 0.841696 0.254708 0.010270 0.007034 +12 0.841256 0.240980 0.009390 0.005900 +12 0.841696 0.225210 0.010270 0.007034 +12 0.777435 0.241321 0.010857 0.007034 +12 0.395100 0.228273 0.009096 0.007261 +12 0.211121 0.228046 0.009683 0.007261 +12 0.376320 0.218176 0.011444 0.007942 +12 0.190288 0.218062 0.010270 0.007715 +12 0.348151 0.217722 0.010270 0.007488 +11 0.139525 0.217268 0.009683 0.007034 +17 0.321890 0.217381 0.010563 0.007715 +17 0.162119 0.217041 0.010270 0.007488 +13 0.447477 0.172113 0.009390 0.007488 +13 0.528903 0.172113 0.009683 0.007942 +13 0.549149 0.161221 0.010270 0.007034 +13 0.616931 0.160994 0.010857 0.007488 +13 0.466843 0.154754 0.010563 0.007261 +13 0.466403 0.138189 0.009096 0.006807 +13 0.140258 0.154867 0.010563 0.007488 +13 0.510270 0.154754 0.011150 0.007715 +13 0.509096 0.138189 0.008803 0.006354 +13 0.716696 0.154640 0.010857 0.007942 +13 0.639818 0.154413 0.010857 0.007942 +13 0.158744 0.148514 0.011150 0.007488 +13 0.821450 0.148514 0.011444 0.007942 +13 0.597271 0.148173 0.009096 0.007261 +12 0.596978 0.131722 0.010857 0.007034 +13 0.569982 0.148287 0.010857 0.007488 +13 0.569836 0.131495 0.010563 0.007488 +13 0.233568 0.148287 0.010563 0.007488 +13 0.214935 0.148287 0.010857 0.007488 +13 0.802523 0.148173 0.011150 0.007715 +13 0.736796 0.148060 0.011150 0.007488 +13 0.121919 0.138189 0.007923 0.004992 +13 0.121626 0.125028 0.009683 0.007715 +13 0.696303 0.138303 0.008803 0.007034 +13 0.696596 0.124575 0.010563 0.007715 +12 0.661532 0.138076 0.008509 0.006580 +12 0.661678 0.124801 0.009977 0.007261 +13 0.841843 0.131722 0.007629 0.007034 +13 0.842283 0.115498 0.010857 0.007261 +12 0.881015 0.131722 0.009683 0.007942 +12 0.880722 0.115952 0.010270 0.007261 +13 0.252201 0.131268 0.009096 0.007034 +13 0.252347 0.114817 0.010563 0.007715 +13 0.781543 0.131268 0.009096 0.007488 +13 0.781690 0.115385 0.010563 0.007488 +13 0.756602 0.131382 0.008509 0.007715 +13 0.756896 0.115271 0.010270 0.007261 +13 0.197477 0.131382 0.009390 0.007715 +13 0.197330 0.115044 0.010857 0.007715 +13 0.178257 0.131382 0.009096 0.007715 +13 0.178550 0.114931 0.010857 0.007488 +12 0.285065 0.130701 0.008509 0.006807 +12 0.285651 0.114931 0.011444 0.007942 +13 0.821303 0.074427 0.009977 0.007715 +13 0.744865 0.073066 0.010270 0.008169 +13 0.178550 0.072271 0.009096 0.008396 +13 0.249560 0.071931 0.010270 0.008169 +13 0.332600 0.064670 0.010857 0.007261 +13 0.269806 0.064670 0.010857 0.007261 +12 0.907130 0.062855 0.010857 0.007261 +13 0.841403 0.062628 0.010857 0.007715 +13 0.927670 0.056614 0.010857 0.007488 +13 0.804137 0.055934 0.011444 0.007488 +13 0.804431 0.040050 0.010857 0.006580 +13 0.765992 0.055820 0.011444 0.007261 +13 0.765405 0.039256 0.009096 0.005900 +13 0.421802 0.055366 0.010857 0.007261 +13 0.352553 0.055366 0.010857 0.007715 +13 0.233715 0.055140 0.010270 0.007261 +13 0.234008 0.042092 0.010857 0.007488 +13 0.197330 0.055026 0.010270 0.007488 +13 0.197917 0.042206 0.010270 0.007715 +13 0.890405 0.050147 0.010270 0.007261 +12 0.889965 0.033810 0.011150 0.007261 +13 0.863263 0.050147 0.011150 0.007261 +13 0.863116 0.033129 0.010857 0.005900 +13 0.442488 0.049013 0.010563 0.007261 +13 0.524795 0.048899 0.011444 0.007488 +13 0.504695 0.049013 0.011150 0.007715 +12 0.315874 0.048786 0.009096 0.007261 +11 0.316168 0.032221 0.010857 0.007715 +13 0.285945 0.048899 0.011444 0.007488 +13 0.285945 0.031881 0.010270 0.006127 +13 0.406250 0.042773 0.010270 0.007488 +13 0.405663 0.025528 0.011444 0.007488 +13 0.371626 0.042773 0.010270 0.007488 +17 0.371772 0.026095 0.011150 0.007715 +12 0.946156 0.040844 0.009096 0.006807 +12 0.946303 0.027456 0.010563 0.008169 +13 0.583187 0.032221 0.009683 0.007715 +13 0.582893 0.015770 0.010270 0.007488 +13 0.544748 0.031768 0.009096 0.007715 +13 0.544748 0.019061 0.010270 0.007715 +13 0.484888 0.031768 0.009096 0.008169 +13 0.484595 0.018266 0.009683 0.007488 +13 0.462441 0.031768 0.009977 0.008169 +13 0.462148 0.018380 0.009977 0.007715 +3 0.150675 0.217722 0.007336 0.020649 +1 0.054431 0.333674 0.024354 0.050147 +3 0.335534 0.216814 0.007336 0.021103 +3 0.227259 0.343204 0.007336 0.018834 +1 0.058539 0.048899 0.022594 0.049694 +1 0.056485 0.148514 0.023768 0.050147 +3 0.468016 0.320059 0.007629 0.021103 +3 0.842283 0.407874 0.007336 0.020195 +4 0.570276 0.488654 0.009683 0.021103 +5 0.643633 0.234286 0.008509 0.017018 +3 0.224619 0.455752 0.007336 0.020649 +4 0.286825 0.339346 0.010270 0.020195 +4 0.732541 0.258793 0.010270 0.020195 +1 0.053844 0.238371 0.023768 0.050147 +4 0.715816 0.407420 0.010270 0.020649 +1 0.053844 0.658838 0.024354 0.049694 +4 0.773034 0.480486 0.010270 0.020649 +4 0.546362 0.317790 0.010563 0.020649 +4 0.176790 0.218176 0.010270 0.020649 +3 0.607394 0.317336 0.008216 0.020649 +1 0.053257 0.823803 0.023181 0.049240 +3 0.188820 0.342864 0.007923 0.019514 +3 0.248386 0.638189 0.007336 0.020649 +5 0.614583 0.596437 0.008509 0.017018 +4 0.540053 0.807919 0.010857 0.021557 +3 0.750587 0.555140 0.007042 0.020195 +5 0.569689 0.410824 0.009096 0.017018 +3 0.403609 0.557636 0.007336 0.020649 +5 0.379548 0.655208 0.009096 0.017018 +5 0.456279 0.678806 0.009390 0.017018 +4 0.268339 0.394486 0.010857 0.020649 +3 0.923269 0.455752 0.006749 0.020649 +4 0.934419 0.399251 0.010857 0.021103 +3 0.962295 0.926027 0.007336 0.022691 +3 0.602846 0.635693 0.007336 0.020195 +4 0.183099 0.557636 0.010563 0.021557 +4 0.832160 0.314159 0.010563 0.020649 +5 0.448797 0.492285 0.008509 0.017018 +1 0.053550 0.496596 0.024354 0.049240 +3 0.698504 0.829249 0.007336 0.021103 +1 0.053257 0.746880 0.023768 0.049694 +1 0.053257 0.919106 0.022594 0.041979 +1 0.053844 0.577150 0.024354 0.049694 +4 0.580986 0.318244 0.010563 0.020649 +4 0.792400 0.297822 0.010270 0.021103 +4 0.934712 0.327547 0.010270 0.020195 +4 0.881455 0.557182 0.010563 0.021103 +4 0.361942 0.218403 0.009683 0.021103 +4 0.633216 0.318017 0.010563 0.020195 +3 0.330986 0.340368 0.006455 0.017245 +4 0.356221 0.339460 0.008803 0.018607 +3 0.708920 0.296574 0.005869 0.019968 +4 0.733568 0.293851 0.009390 0.019968 +4 0.087735 0.411391 0.009390 0.019968 +4 0.078345 0.401180 0.009390 0.019514 +4 0.087735 0.234400 0.009977 0.019968 +4 0.079225 0.224416 0.009390 0.019968 +3 0.446303 0.233946 0.006455 0.018153 +4 0.450117 0.218062 0.009390 0.019968 +4 0.087148 0.743136 0.009977 0.019968 +4 0.078052 0.733152 0.009390 0.019968 +4 0.092430 0.044929 0.009977 0.019514 +4 0.083040 0.035171 0.009977 0.019968 +4 0.087735 0.655321 0.009390 0.020422 +4 0.078932 0.645337 0.009390 0.019514 +4 0.088028 0.492172 0.009390 0.019968 +4 0.079812 0.482414 0.009390 0.019514 +4 0.087441 0.574087 0.009977 0.020422 +4 0.079079 0.564329 0.009683 0.019968 +4 0.108128 0.218403 0.009096 0.020649 +4 0.106661 0.232925 0.009096 0.020649 +4 0.545335 0.217949 0.009096 0.020649 +3 0.544161 0.234059 0.009096 0.020649 +4 0.080839 0.135126 0.009096 0.020649 +4 0.090376 0.144656 0.008803 0.020649 +4 0.078492 0.320286 0.009096 0.020649 +4 0.088322 0.329816 0.008803 0.020649 +4 0.279783 0.217949 0.009096 0.020649 +3 0.278316 0.233152 0.009096 0.020649 +4 0.045628 0.416496 0.009096 0.020649 +4 0.052964 0.411504 0.009096 0.020649 +4 0.060446 0.401066 0.008803 0.020649 +4 0.077905 0.810415 0.009096 0.020649 +4 0.088028 0.819492 0.008803 0.020649 +4 0.077612 0.910256 0.009096 0.020649 +4 0.088322 0.918879 0.008803 0.020649 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_3.jpg b/data_dataset/tch/debug/debug_3.jpg new file mode 100644 index 0000000..a382bf2 Binary files /dev/null and b/data_dataset/tch/debug/debug_3.jpg differ diff --git a/data_dataset/tch/debug/debug_3.txt b/data_dataset/tch/debug/debug_3.txt new file mode 100644 index 0000000..dbcf51c --- /dev/null +++ b/data_dataset/tch/debug/debug_3.txt @@ -0,0 +1,494 @@ +10 0.293971 0.964886 0.016176 0.002500 +9 0.756029 0.961023 0.012059 0.032045 +9 0.721029 0.957841 0.012647 0.032955 +10 0.842794 0.971250 0.018529 0.005227 +10 0.928971 0.970795 0.008529 0.004318 +10 0.913088 0.971023 0.023824 0.004773 +10 0.891618 0.971023 0.020882 0.004773 +10 0.644853 0.967159 0.014412 0.002500 +10 0.661618 0.968295 0.012647 0.006591 +10 0.626324 0.968295 0.013824 0.006591 +10 0.571029 0.968750 0.031471 0.005682 +10 0.544559 0.967159 0.013824 0.002500 +9 0.159559 0.949659 0.012059 0.042955 +10 0.479265 0.967841 0.015000 0.003864 +9 0.116912 0.947386 0.012647 0.047500 +10 0.419559 0.967841 0.025000 0.005682 +10 0.379265 0.967386 0.013824 0.006591 +10 0.196618 0.966023 0.007353 0.003864 +10 0.317500 0.966477 0.011471 0.006591 +10 0.276912 0.883523 0.011471 0.004318 +9 0.039559 0.861023 0.012059 0.046591 +9 0.514559 0.842159 0.013824 0.042500 +10 0.369412 0.859659 0.013529 0.003864 +10 0.423676 0.859432 0.029706 0.005227 +9 0.479265 0.840568 0.010294 0.045682 +9 0.231029 0.755568 0.013824 0.052955 +9 0.371912 0.752386 0.012059 0.058409 +10 0.725441 0.753977 0.009706 0.002500 +10 0.033676 0.671250 0.007353 0.004318 +10 0.219265 0.656250 0.009118 0.003409 +10 0.217500 0.653977 0.011471 0.003409 +10 0.420735 0.653523 0.013235 0.004318 +10 0.403382 0.653750 0.011471 0.004773 +10 0.387206 0.653295 0.010882 0.003864 +10 0.730735 0.649205 0.008529 0.006591 +10 0.656029 0.649205 0.008529 0.006591 +10 0.948382 0.591932 0.013235 0.004773 +9 0.929265 0.561477 0.009118 0.038409 +9 0.121324 0.540341 0.009706 0.023409 +9 0.269853 0.533977 0.015000 0.033409 +9 0.328676 0.529205 0.012647 0.043864 +9 0.291912 0.529432 0.014412 0.044318 +10 0.846324 0.449432 0.007941 0.002500 +10 0.516029 0.450341 0.008529 0.007045 +9 0.045735 0.448977 0.007941 0.042500 +9 0.324265 0.452159 0.010882 0.024318 +9 0.731324 0.450795 0.010882 0.033409 +9 0.597500 0.452614 0.010294 0.031591 +10 0.704559 0.467159 0.012647 0.003409 +10 0.688971 0.466705 0.012059 0.004318 +10 0.675147 0.466023 0.007941 0.003864 +9 0.897794 0.440341 0.014412 0.032500 +10 0.500441 0.426250 0.011471 0.003409 +10 0.532500 0.425795 0.009706 0.004318 +9 0.918382 0.429205 0.014412 0.032045 +10 0.297206 0.379205 0.009706 0.004773 +9 0.178088 0.370114 0.006765 0.012045 +9 0.630147 0.349659 0.012059 0.037500 +6 0.330441 0.353068 0.005588 0.029773 +9 0.603088 0.350568 0.012059 0.032955 +10 0.313088 0.338977 0.009706 0.007045 +9 0.243971 0.350795 0.013824 0.033409 +9 0.530147 0.351250 0.012059 0.034318 +9 0.273971 0.338977 0.013824 0.032500 +9 0.561618 0.339432 0.013824 0.035227 +7 0.655147 0.328295 0.005588 0.024773 +9 0.945441 0.265114 0.013235 0.031136 +10 0.256029 0.258295 0.008529 0.002955 +10 0.295441 0.257614 0.012059 0.005227 +10 0.881324 0.278977 0.010882 0.003409 +9 0.045147 0.256932 0.013824 0.049318 +10 0.359559 0.251250 0.010882 0.003409 +10 0.724559 0.237841 0.012647 0.004773 +10 0.911324 0.159886 0.010882 0.004318 +10 0.936029 0.157841 0.022647 0.004773 +10 0.832206 0.152159 0.018529 0.004318 +10 0.811029 0.151250 0.012647 0.004318 +10 0.788088 0.150341 0.015000 0.004318 +10 0.890735 0.150114 0.008529 0.005682 +10 0.833382 0.145568 0.022059 0.003864 +10 0.808088 0.144432 0.018529 0.003409 +10 0.783676 0.141932 0.022647 0.006591 +10 0.463088 0.178523 0.009706 0.003409 +10 0.387206 0.174205 0.016765 0.004773 +10 0.470147 0.172386 0.013235 0.002955 +10 0.359265 0.171250 0.010294 0.005227 +10 0.335147 0.170795 0.011471 0.004318 +10 0.361618 0.166250 0.015000 0.004318 +10 0.338676 0.164432 0.009118 0.002500 +10 0.706618 0.141250 0.007353 0.003409 +10 0.673676 0.139886 0.020294 0.004318 +10 0.727794 0.136023 0.012059 0.002955 +10 0.695147 0.133750 0.012647 0.004773 +10 0.674265 0.133750 0.022647 0.004773 +10 0.614265 0.137614 0.014412 0.003409 +10 0.558676 0.135795 0.022059 0.005227 +10 0.558088 0.129659 0.019706 0.002955 +10 0.593971 0.130795 0.039706 0.006136 +10 0.243971 0.165795 0.030294 0.002500 +10 0.277794 0.165114 0.021471 0.004773 +10 0.131324 0.163977 0.029706 0.004318 +10 0.273676 0.158750 0.013235 0.002955 +10 0.294559 0.084886 0.015000 0.002500 +9 0.318382 0.061705 0.012059 0.045227 +10 0.185441 0.091477 0.020294 0.004773 +10 0.158676 0.090114 0.011471 0.004773 +10 0.242794 0.087159 0.018529 0.003409 +10 0.268676 0.086932 0.015000 0.003864 +9 0.120735 0.057841 0.013235 0.059318 +10 0.373088 0.076023 0.012059 0.002955 +10 0.390441 0.075341 0.010294 0.002500 +10 0.401029 0.075341 0.011471 0.003409 +10 0.353088 0.072841 0.009706 0.004773 +10 0.372206 0.070795 0.019706 0.004318 +7 0.467206 0.063523 0.014412 0.021591 +10 0.488971 0.064659 0.013235 0.004773 +10 0.474265 0.063068 0.008529 0.005227 +10 0.693088 0.084886 0.021471 0.004318 +10 0.713971 0.084659 0.013824 0.004773 +10 0.663382 0.083977 0.032647 0.005227 +10 0.558676 0.081023 0.013824 0.004773 +10 0.718382 0.079205 0.022647 0.003864 +10 0.559559 0.074886 0.013235 0.004318 +10 0.579853 0.073750 0.022059 0.005682 +10 0.763088 0.069432 0.010882 0.003409 +10 0.815147 0.068977 0.016176 0.005227 +10 0.793088 0.068295 0.020294 0.006591 +10 0.868676 0.064432 0.022059 0.004318 +10 0.766618 0.063977 0.017941 0.003409 +10 0.787206 0.063068 0.009706 0.003409 +10 0.819853 0.061932 0.007941 0.002955 +10 0.868382 0.057386 0.022647 0.006591 +10 0.878382 0.006250 0.007353 0.003409 +13 0.623088 0.947727 0.011471 0.008636 +12 0.484412 0.969659 0.014118 0.005682 +13 0.493382 0.933295 0.010882 0.008864 +18 0.309853 0.968864 0.019706 0.005455 +13 0.213676 0.932273 0.010294 0.008636 +13 0.817647 0.969886 0.011765 0.007955 +12 0.805588 0.969318 0.015882 0.009091 +12 0.820735 0.947955 0.010294 0.008182 +11 0.825882 0.969205 0.011765 0.007955 +12 0.512206 0.936591 0.010294 0.008182 +13 0.459706 0.967159 0.011765 0.007955 +13 0.457647 0.940114 0.010588 0.007955 +14 0.470000 0.967159 0.011765 0.007955 +12 0.475294 0.939886 0.010000 0.009318 +17 0.377206 0.966705 0.010294 0.008864 +12 0.387500 0.966705 0.010294 0.008864 +12 0.397794 0.966705 0.010294 0.008864 +11 0.270735 0.965909 0.016176 0.008636 +18 0.286029 0.931818 0.011471 0.007727 +13 0.884265 0.948864 0.010294 0.008182 +13 0.903676 0.948636 0.010294 0.008636 +11 0.721618 0.947955 0.010882 0.008182 +13 0.640441 0.947614 0.010882 0.008409 +13 0.801765 0.944545 0.010588 0.007727 +13 0.677647 0.943636 0.010588 0.007727 +13 0.922941 0.942159 0.010000 0.008409 +12 0.925441 0.970682 0.016176 0.008182 +13 0.941324 0.948977 0.010294 0.008409 +13 0.658676 0.940455 0.009706 0.008636 +13 0.594412 0.940114 0.010588 0.007955 +13 0.439118 0.932614 0.011176 0.008409 +13 0.266471 0.931932 0.011176 0.008864 +12 0.313088 0.924318 0.011471 0.008182 +11 0.166324 0.833295 0.010294 0.007955 +12 0.208235 0.830000 0.011176 0.007727 +12 0.146912 0.830114 0.010882 0.007955 +17 0.549118 0.859432 0.011765 0.007955 +18 0.557647 0.859432 0.011765 0.007955 +12 0.562353 0.824318 0.011176 0.008182 +11 0.308529 0.858523 0.011765 0.007955 +13 0.316471 0.830682 0.011176 0.008182 +11 0.321471 0.858523 0.011765 0.007955 +12 0.913676 0.838977 0.010294 0.007955 +13 0.411176 0.837386 0.010588 0.007955 +17 0.416471 0.860114 0.024706 0.004773 +13 0.282647 0.833409 0.010588 0.008182 +12 0.933676 0.832500 0.010294 0.009091 +12 0.773088 0.831136 0.010294 0.009091 +12 0.793676 0.824091 0.010294 0.008636 +13 0.367794 0.830455 0.010294 0.008636 +13 0.266765 0.830000 0.010588 0.007727 +12 0.753971 0.824545 0.010882 0.007727 +11 0.480441 0.823977 0.010882 0.008409 +18 0.480588 0.882386 0.013529 0.009773 +18 0.660294 0.820909 0.010588 0.007727 +12 0.637941 0.817386 0.010588 0.009773 +17 0.547059 0.779545 0.024706 0.004091 +12 0.311471 0.739091 0.011176 0.007727 +11 0.211176 0.735682 0.011176 0.008182 +11 0.953824 0.729545 0.010588 0.008636 +11 0.736324 0.735795 0.010882 0.007500 +12 0.854559 0.752955 0.020294 0.004545 +11 0.777941 0.752955 0.020588 0.004545 +12 0.766765 0.728636 0.010588 0.008636 +18 0.699559 0.752955 0.027941 0.004545 +11 0.687794 0.727955 0.010294 0.008182 +12 0.135000 0.746136 0.011176 0.008182 +12 0.172500 0.742727 0.011471 0.007727 +12 0.646618 0.739886 0.010294 0.007955 +12 0.498088 0.739091 0.010882 0.007727 +12 0.192206 0.739318 0.010882 0.008182 +12 0.822059 0.736136 0.010588 0.008182 +12 0.618529 0.736023 0.010588 0.007955 +12 0.470588 0.735455 0.011176 0.007727 +12 0.373676 0.735455 0.011471 0.007727 +12 0.911324 0.722500 0.010294 0.008182 +13 0.221029 0.681591 0.010882 0.008182 +17 0.217206 0.654659 0.009118 0.009773 +11 0.157059 0.681364 0.011765 0.008636 +13 0.407059 0.677841 0.010588 0.007955 +11 0.255441 0.677955 0.010294 0.008182 +12 0.205294 0.677841 0.011176 0.007955 +12 0.208088 0.654659 0.009118 0.009773 +11 0.302500 0.674659 0.011471 0.007955 +11 0.188971 0.674318 0.011471 0.007727 +12 0.198971 0.654659 0.009118 0.009773 +11 0.443382 0.673864 0.010882 0.008182 +12 0.391029 0.673977 0.010882 0.008409 +12 0.374853 0.670682 0.011471 0.007273 +13 0.237941 0.673864 0.010588 0.008182 +17 0.501912 0.644773 0.019706 0.004545 +12 0.805000 0.640000 0.011176 0.007727 +12 0.531324 0.663864 0.011471 0.007273 +13 0.603529 0.660682 0.011176 0.007273 +12 0.575735 0.657273 0.010882 0.007727 +11 0.728676 0.650795 0.010882 0.007500 +11 0.652794 0.650795 0.010882 0.007500 +12 0.881765 0.637614 0.011176 0.007500 +11 0.844265 0.637273 0.011471 0.007727 +12 0.823971 0.637045 0.012059 0.008182 +12 0.784853 0.551705 0.011471 0.007500 +12 0.866765 0.569205 0.010588 0.007955 +17 0.856324 0.524773 0.027353 0.005909 +12 0.888529 0.565455 0.010588 0.007727 +11 0.909412 0.562045 0.010588 0.008182 +11 0.616912 0.524091 0.010882 0.008636 +12 0.457647 0.516818 0.011176 0.008636 +12 0.574265 0.517159 0.011471 0.008409 +12 0.807059 0.548182 0.010588 0.007727 +12 0.149559 0.530568 0.011471 0.007045 +12 0.270000 0.523295 0.010588 0.007955 +12 0.247794 0.523182 0.011471 0.007727 +12 0.202647 0.523409 0.010588 0.008182 +12 0.413529 0.517045 0.010588 0.008182 +11 0.291618 0.513182 0.010882 0.007727 +12 0.531029 0.510000 0.010882 0.007727 +12 0.373088 0.510341 0.011471 0.008409 +11 0.322500 0.446023 0.011471 0.007045 +11 0.119853 0.460000 0.010882 0.007727 +12 0.191471 0.456591 0.011176 0.007273 +12 0.210882 0.452500 0.011176 0.007273 +11 0.162353 0.456591 0.011176 0.007273 +12 0.142206 0.456364 0.010882 0.007727 +12 0.270000 0.449545 0.011765 0.006818 +17 0.284265 0.427955 0.016176 0.005455 +17 0.257794 0.429773 0.024412 0.005455 +13 0.518382 0.449318 0.011471 0.007273 +17 0.529706 0.424432 0.014706 0.009318 +11 0.453971 0.449091 0.010882 0.007727 +11 0.638676 0.446023 0.010882 0.007500 +11 0.599559 0.442614 0.011471 0.007500 +12 0.487794 0.442500 0.011471 0.007273 +17 0.500294 0.424545 0.012941 0.009545 +12 0.776765 0.439205 0.011176 0.007955 +13 0.670588 0.439091 0.011176 0.007727 +13 0.954118 0.430114 0.010588 0.007955 +12 0.898088 0.429886 0.010882 0.007500 +12 0.836912 0.429432 0.010882 0.007500 +12 0.857794 0.425795 0.011471 0.007500 +11 0.918088 0.419091 0.010882 0.007727 +11 0.838088 0.353977 0.010882 0.007500 +12 0.773529 0.357045 0.011176 0.007273 +11 0.119706 0.350682 0.011765 0.007273 +11 0.902206 0.350341 0.010882 0.007500 +17 0.919559 0.330455 0.022059 0.005909 +12 0.404559 0.347159 0.010882 0.007500 +12 0.723824 0.340227 0.011176 0.007273 +13 0.244412 0.340341 0.011176 0.007500 +12 0.182353 0.340455 0.010588 0.007727 +13 0.310588 0.340000 0.011176 0.007727 +12 0.223529 0.340000 0.011176 0.007727 +12 0.455882 0.336364 0.010588 0.007727 +12 0.202647 0.336477 0.011176 0.007955 +12 0.750588 0.332045 0.010588 0.008182 +11 0.273824 0.329318 0.010588 0.008182 +11 0.561324 0.328750 0.010294 0.008864 +12 0.201029 0.289205 0.010882 0.007955 +12 0.119853 0.287045 0.010882 0.007727 +13 0.223676 0.286705 0.011471 0.008409 +13 0.159559 0.286250 0.010294 0.008409 +12 0.175441 0.286250 0.010294 0.008864 +13 0.240441 0.285455 0.010882 0.008636 +12 0.298676 0.278523 0.010882 0.008409 +13 0.322941 0.276136 0.011176 0.007273 +12 0.878382 0.277500 0.009118 0.010455 +17 0.896618 0.277500 0.009118 0.010455 +14 0.887500 0.277500 0.009118 0.010455 +12 0.893088 0.255227 0.011471 0.007273 +17 0.905735 0.277500 0.009118 0.010455 +11 0.914853 0.277500 0.009118 0.010455 +12 0.926324 0.251818 0.010882 0.007727 +13 0.361471 0.251023 0.010000 0.009773 +17 0.371471 0.251023 0.010000 0.009773 +12 0.518676 0.268182 0.010882 0.007727 +12 0.492941 0.268068 0.011176 0.007500 +12 0.417206 0.267614 0.011471 0.007500 +12 0.588235 0.264318 0.011176 0.007273 +11 0.451912 0.264432 0.011471 0.007500 +13 0.727647 0.261705 0.011176 0.007500 +11 0.663676 0.261477 0.011471 0.007500 +11 0.945588 0.255455 0.010588 0.007727 +11 0.806029 0.255227 0.011471 0.007273 +13 0.694853 0.254773 0.011471 0.007273 +13 0.381471 0.251023 0.010000 0.009773 +13 0.867941 0.185227 0.010588 0.008182 +12 0.878529 0.154886 0.011765 0.007955 +17 0.443235 0.176705 0.011765 0.007955 +17 0.453382 0.175455 0.009118 0.017727 +17 0.462500 0.175455 0.009118 0.017727 +17 0.908529 0.145455 0.021765 0.004091 +14 0.891471 0.154886 0.011765 0.007955 +13 0.917206 0.149659 0.010294 0.009318 +11 0.927500 0.149659 0.010294 0.009318 +13 0.434412 0.176023 0.011765 0.007955 +12 0.432206 0.149091 0.010882 0.007727 +14 0.765441 0.173523 0.011471 0.007500 +12 0.332206 0.141818 0.010882 0.007727 +12 0.471618 0.175455 0.009118 0.017727 +11 0.489853 0.175455 0.009118 0.017727 +13 0.480735 0.175455 0.009118 0.017727 +12 0.484118 0.152727 0.010588 0.007727 +11 0.498971 0.175455 0.009118 0.017727 +12 0.510147 0.156364 0.011471 0.007727 +18 0.364118 0.171023 0.011765 0.007955 +18 0.351765 0.168523 0.011765 0.007955 +13 0.356324 0.134318 0.010294 0.009091 +12 0.250294 0.166136 0.019412 0.004545 +14 0.244265 0.127955 0.010294 0.009091 +18 0.237500 0.157273 0.017941 0.008636 +14 0.706176 0.166591 0.010588 0.008182 +11 0.155735 0.164886 0.028529 0.005227 +12 0.389118 0.169659 0.011176 0.016591 +14 0.377941 0.169659 0.011176 0.016591 +14 0.381912 0.142045 0.010294 0.008182 +11 0.400294 0.169659 0.011176 0.016591 +12 0.618235 0.162500 0.011176 0.007273 +14 0.681029 0.159886 0.010882 0.007500 +14 0.592500 0.159773 0.011471 0.007273 +17 0.555735 0.131705 0.017941 0.005682 +13 0.219706 0.134091 0.011176 0.008636 +12 0.937794 0.149659 0.010294 0.009318 +14 0.270147 0.133750 0.011471 0.007955 +18 0.645441 0.128636 0.020882 0.005000 +14 0.655882 0.166250 0.011765 0.007500 +17 0.669118 0.131932 0.014706 0.008864 +14 0.120000 0.121023 0.011176 0.007955 +14 0.178971 0.048750 0.011471 0.007045 +17 0.269853 0.093523 0.012647 0.007045 +13 0.283676 0.087614 0.011471 0.007045 +14 0.284559 0.055227 0.012059 0.007273 +17 0.143529 0.090795 0.040000 0.005227 +13 0.155882 0.041818 0.010588 0.007727 +13 0.121471 0.034318 0.010588 0.008182 +14 0.684412 0.051932 0.010588 0.007955 +17 0.565882 0.079545 0.015294 0.008636 +13 0.572647 0.033409 0.011176 0.009091 +12 0.551912 0.077045 0.015000 0.005455 +12 0.548235 0.026250 0.011176 0.008409 +18 0.392647 0.076023 0.010000 0.009318 +17 0.382647 0.076023 0.010000 0.009318 +13 0.389118 0.048409 0.011765 0.007273 +11 0.402647 0.076023 0.010000 0.009318 +11 0.400294 0.071023 0.014706 0.005682 +12 0.342353 0.074318 0.011176 0.018182 +12 0.341324 0.048182 0.011471 0.007727 +17 0.353529 0.074318 0.011176 0.018182 +12 0.364706 0.074318 0.011176 0.018182 +12 0.365294 0.051818 0.010588 0.007727 +11 0.788235 0.065000 0.009412 0.016818 +12 0.762059 0.065341 0.011765 0.007955 +12 0.772353 0.062841 0.011765 0.007955 +17 0.778824 0.065000 0.009412 0.016818 +13 0.437941 0.066818 0.011176 0.015909 +12 0.436912 0.041591 0.010882 0.007727 +11 0.449118 0.066818 0.011176 0.015909 +11 0.460294 0.066818 0.011176 0.015909 +12 0.471471 0.066818 0.011176 0.015909 +11 0.491912 0.060341 0.017353 0.004773 +13 0.485147 0.033182 0.010882 0.008636 +12 0.797647 0.065000 0.009412 0.016818 +12 0.807059 0.065000 0.009412 0.016818 +11 0.816471 0.065000 0.009412 0.016818 +11 0.825882 0.065000 0.009412 0.016818 +14 0.922500 0.027841 0.010294 0.008864 +14 0.319412 0.051818 0.011176 0.007727 +13 0.598529 0.041136 0.011176 0.008182 +12 0.623088 0.048409 0.011471 0.007273 +14 0.860147 0.033750 0.010294 0.007955 +3 0.632794 0.339432 0.006176 0.013864 +4 0.305735 0.051477 0.010882 0.021591 +4 0.574559 0.264205 0.010882 0.022500 +4 0.670441 0.051477 0.010882 0.021591 +4 0.315735 0.142159 0.010882 0.021136 +3 0.496324 0.506932 0.007353 0.021591 +4 0.391029 0.346705 0.010882 0.022045 +4 0.139559 0.680795 0.010294 0.022045 +4 0.135735 0.530795 0.010882 0.021136 +3 0.907794 0.026705 0.007941 0.022045 +4 0.223382 0.066023 0.010882 0.020682 +4 0.103382 0.285568 0.010882 0.019773 +3 0.400441 0.446023 0.007353 0.021591 +4 0.106324 0.459886 0.010882 0.021136 +4 0.374265 0.271250 0.010294 0.022045 +4 0.623088 0.446023 0.010294 0.020682 +4 0.641029 0.166477 0.010882 0.021591 +3 0.438088 0.263750 0.007353 0.022500 +4 0.823382 0.545568 0.009706 0.019773 +4 0.852794 0.569432 0.010882 0.022045 +4 0.438676 0.448977 0.010882 0.022045 +4 0.824265 0.354205 0.010294 0.021591 +4 0.826618 0.258750 0.010294 0.020682 +3 0.486912 0.739659 0.007353 0.022500 +3 0.457794 0.736250 0.007941 0.022045 +3 0.786618 0.943977 0.007941 0.022045 +4 0.605441 0.736250 0.010294 0.022045 +5 0.299559 0.920568 0.009118 0.017955 +5 0.624853 0.813068 0.009118 0.018409 +3 0.465735 0.823523 0.007353 0.022045 +5 0.609559 0.944205 0.009118 0.017955 +4 0.308676 0.445795 0.010882 0.020227 +5 0.706324 0.943750 0.009706 0.017955 +4 0.532206 0.763295 0.010882 0.021591 +4 0.131912 0.830795 0.011471 0.022045 +4 0.359265 0.735341 0.010882 0.020227 +5 0.900735 0.835568 0.009118 0.017955 +3 0.830147 0.835795 0.007941 0.022045 +4 0.398382 0.836932 0.010294 0.021591 +5 0.361618 0.931705 0.009706 0.016591 +3 0.749559 0.520114 0.007941 0.023409 +4 0.695147 0.531023 0.010882 0.022500 +3 0.165735 0.526250 0.007353 0.022045 +5 0.688676 0.824432 0.009706 0.017500 +3 0.753088 0.728750 0.007941 0.022500 +4 0.808971 0.736705 0.010294 0.021136 +3 0.386618 0.762614 0.007941 0.022045 +3 0.146029 0.935341 0.007941 0.022045 +3 0.103382 0.931477 0.007353 0.022500 +3 0.425147 0.931705 0.007353 0.022955 +5 0.673088 0.725114 0.009118 0.017955 +4 0.323971 0.677841 0.010882 0.021591 +4 0.178971 0.456477 0.010294 0.022500 +4 0.649265 0.261477 0.010882 0.022500 +4 0.358676 0.510341 0.010882 0.022045 +3 0.106029 0.534205 0.007941 0.021591 +3 0.526618 0.943750 0.007941 0.022500 +4 0.634265 0.739886 0.010294 0.022045 +3 0.739559 0.824205 0.007941 0.020682 +4 0.075000 0.648182 0.008824 0.020000 +4 0.065588 0.636591 0.010000 0.021364 +4 0.079706 0.157045 0.010000 0.021364 +4 0.069412 0.146136 0.009412 0.021364 +4 0.077941 0.544545 0.010000 0.020000 +4 0.068235 0.534091 0.009412 0.020909 +4 0.075000 0.858636 0.010000 0.020909 +4 0.065588 0.847727 0.010000 0.021818 +4 0.077941 0.251136 0.010000 0.020455 +4 0.068235 0.240682 0.009412 0.021364 +4 0.071765 0.045682 0.009412 0.021364 +4 0.074706 0.749545 0.010588 0.020909 +4 0.065294 0.739091 0.010588 0.021818 +4 0.077647 0.350682 0.009412 0.020455 +4 0.068235 0.340227 0.009412 0.021364 +4 0.075882 0.965909 0.010588 0.020909 +4 0.066176 0.955909 0.010000 0.020909 +4 0.077647 0.439773 0.009412 0.020455 +4 0.068529 0.429545 0.010000 0.020909 +3 0.311912 0.275341 0.010294 0.022045 +5 0.041324 0.146705 0.010294 0.022045 +4 0.050294 0.144886 0.010000 0.022045 +4 0.046176 0.338977 0.010000 0.022045 +4 0.049118 0.238977 0.010000 0.022045 +5 0.036618 0.430795 0.010294 0.022045 +4 0.046765 0.427159 0.010000 0.022045 +3 0.036029 0.635341 0.010294 0.022045 +4 0.043824 0.635341 0.010000 0.022045 +5 0.035441 0.535341 0.010294 0.022045 +4 0.044412 0.532614 0.010000 0.022045 +5 0.034853 0.739432 0.010294 0.022045 +4 0.043235 0.737614 0.010000 0.022045 +5 0.035441 0.957159 0.010294 0.022045 +4 0.045588 0.954432 0.010000 0.022045 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_4.jpg b/data_dataset/tch/debug/debug_4.jpg new file mode 100644 index 0000000..c44c48b Binary files /dev/null and b/data_dataset/tch/debug/debug_4.jpg differ diff --git a/data_dataset/tch/debug/debug_4.txt b/data_dataset/tch/debug/debug_4.txt new file mode 100644 index 0000000..2f63bed --- /dev/null +++ b/data_dataset/tch/debug/debug_4.txt @@ -0,0 +1,689 @@ +10 0.940487 0.975839 0.009381 0.002495 +9 0.854588 0.969487 0.015831 0.023820 +9 0.729258 0.954174 0.007329 0.022686 +9 0.253152 0.951792 0.009675 0.041515 +10 0.135298 0.938634 0.007329 0.006579 +9 0.103049 0.944873 0.006157 0.036298 +10 0.469217 0.931828 0.009088 0.005218 +10 0.211228 0.964950 0.009088 0.002495 +9 0.820727 0.949297 0.016711 0.043330 +10 0.108326 0.931375 0.007329 0.006579 +10 0.374524 0.966538 0.012020 0.002495 +9 0.637790 0.888044 0.010847 0.009755 +9 0.227792 0.878289 0.011727 0.009755 +9 0.208443 0.878516 0.016417 0.010209 +10 0.915714 0.875113 0.009088 0.004764 +9 0.615215 0.869102 0.011434 0.029946 +9 0.869979 0.860027 0.009088 0.031760 +9 0.153914 0.856397 0.005863 0.036298 +9 0.376283 0.855263 0.009088 0.038566 +9 0.104808 0.860821 0.012606 0.045145 +10 0.195544 0.785163 0.011140 0.003630 +10 0.873204 0.782101 0.012606 0.005672 +8 0.103489 0.787545 0.014658 0.023820 +8 0.240692 0.787319 0.014658 0.023820 +10 0.916593 0.775975 0.021988 0.005218 +9 0.841982 0.765426 0.007036 0.024047 +9 0.544562 0.765767 0.010847 0.025181 +9 0.524919 0.761910 0.016124 0.032895 +9 0.823072 0.760776 0.012020 0.033802 +9 0.862650 0.761570 0.014952 0.031760 +9 0.566843 0.761456 0.009675 0.033348 +10 0.487980 0.782101 0.007916 0.003403 +9 0.648930 0.757146 0.008502 0.044691 +10 0.871152 0.684778 0.012606 0.002495 +10 0.794049 0.679787 0.008502 0.004764 +10 0.193052 0.669691 0.010847 0.004991 +8 0.702580 0.660730 0.014365 0.023820 +8 0.103928 0.661184 0.014365 0.023367 +8 0.263412 0.661184 0.013193 0.023820 +8 0.839490 0.660957 0.014952 0.024728 +8 0.403254 0.660504 0.013779 0.023820 +8 0.538405 0.660504 0.014365 0.023367 +10 0.586778 0.620576 0.011434 0.002949 +10 0.573879 0.620349 0.011434 0.003403 +9 0.619027 0.638952 0.017297 0.041515 +10 0.571533 0.575204 0.008502 0.006579 +10 0.429933 0.569760 0.007916 0.005672 +10 0.341982 0.591084 0.012606 0.003857 +10 0.314717 0.590517 0.008502 0.004537 +10 0.387130 0.560912 0.009088 0.005218 +10 0.568015 0.554787 0.008502 0.006579 +9 0.948549 0.525295 0.010847 0.048775 +9 0.739519 0.540948 0.011434 0.080082 +10 0.668572 0.577246 0.010261 0.003403 +10 0.656552 0.576792 0.013193 0.004310 +9 0.289944 0.541175 0.011727 0.080535 +9 0.960422 0.535050 0.013486 0.070100 +10 0.882586 0.456783 0.007329 0.002949 +7 0.450748 0.451338 0.007916 0.010662 +10 0.160510 0.436593 0.010261 0.007033 +8 0.186309 0.447255 0.017297 0.039247 +10 0.249634 0.425250 0.007916 0.002949 +9 0.441366 0.432849 0.010261 0.031760 +8 0.757696 0.434778 0.010847 0.036525 +10 0.341395 0.417763 0.012020 0.004764 +10 0.378042 0.416856 0.020815 0.005672 +8 0.855907 0.420712 0.013779 0.033348 +10 0.281003 0.372164 0.011434 0.004764 +10 0.779097 0.365812 0.010847 0.004764 +10 0.183377 0.357418 0.010847 0.004764 +10 0.681765 0.347210 0.009675 0.007033 +10 0.178393 0.338589 0.007916 0.003403 +10 0.299472 0.339270 0.009675 0.006125 +10 0.115948 0.339950 0.007329 0.002495 +10 0.592055 0.332010 0.017883 0.006579 +10 0.174582 0.328834 0.007329 0.005672 +9 0.862650 0.332577 0.010261 0.038566 +9 0.186895 0.347663 0.012020 0.025181 +9 0.473028 0.326679 0.013193 0.048094 +9 0.499120 0.330876 0.013779 0.041969 +10 0.782908 0.269397 0.008502 0.003403 +10 0.245822 0.250113 0.009675 0.005672 +10 0.727792 0.243308 0.009675 0.006579 +10 0.730431 0.269623 0.009088 0.006579 +9 0.863090 0.239451 0.016417 0.035617 +10 0.598505 0.235594 0.011434 0.003403 +10 0.157578 0.241493 0.010261 0.004310 +9 0.484462 0.229696 0.007329 0.024728 +10 0.218264 0.186819 0.010261 0.007033 +10 0.228819 0.186139 0.009088 0.006579 +10 0.660950 0.181602 0.010261 0.003403 +10 0.379801 0.165268 0.009675 0.004310 +10 0.814571 0.163680 0.010261 0.004764 +7 0.795808 0.159369 0.010261 0.024728 +10 0.696717 0.153471 0.012606 0.006579 +10 0.868220 0.149614 0.012020 0.002949 +10 0.570067 0.146552 0.014952 0.005445 +6 0.947669 0.150295 0.012606 0.026543 +6 0.501759 0.149614 0.012020 0.025181 +10 0.893873 0.123525 0.008209 0.006125 +10 0.860305 0.122391 0.007916 0.006579 +9 0.947376 0.068625 0.010261 0.026543 +10 0.585899 0.065903 0.007329 0.006125 +10 0.407945 0.051838 0.007916 0.002495 +10 0.556288 0.039927 0.009088 0.006352 +10 0.487394 0.055694 0.016711 0.003403 +10 0.460422 0.056602 0.012020 0.005218 +10 0.473615 0.032554 0.010261 0.005218 +9 0.400322 0.039133 0.012606 0.033348 +12 0.678687 0.968013 0.008209 0.003176 +13 0.690560 0.931602 0.010261 0.007940 +13 0.520962 0.965517 0.005277 0.005445 +13 0.522867 0.934211 0.010261 0.007713 +13 0.873204 0.956103 0.010847 0.007486 +13 0.893286 0.949750 0.009968 0.007486 +13 0.934184 0.949410 0.010847 0.008167 +13 0.735561 0.948730 0.009968 0.007713 +13 0.846673 0.948730 0.009968 0.008167 +13 0.599971 0.945440 0.009675 0.007940 +13 0.277485 0.944192 0.009675 0.007713 +13 0.955878 0.941924 0.010847 0.007713 +13 0.801964 0.941016 0.010261 0.007713 +13 0.758429 0.941016 0.009381 0.007713 +13 0.713720 0.941130 0.010847 0.007940 +13 0.913075 0.941016 0.010847 0.008167 +13 0.445177 0.941016 0.010847 0.008621 +13 0.201700 0.940222 0.009381 0.007940 +13 0.133539 0.939995 0.009088 0.007940 +13 0.672970 0.938294 0.010261 0.008167 +13 0.625183 0.938067 0.009675 0.007713 +13 0.365435 0.937840 0.010847 0.008167 +13 0.300645 0.937727 0.010261 0.008394 +13 0.255497 0.937273 0.010261 0.007486 +13 0.577103 0.937387 0.009675 0.008167 +13 0.421724 0.933984 0.009675 0.007713 +13 0.157725 0.933984 0.009381 0.007713 +13 0.824685 0.933643 0.010554 0.007940 +13 0.780856 0.933303 0.010261 0.007713 +13 0.468191 0.933530 0.009968 0.008167 +13 0.107153 0.932623 0.009088 0.007713 +13 0.653034 0.931715 0.009088 0.007713 +13 0.223541 0.930694 0.009675 0.007940 +13 0.178980 0.930240 0.009675 0.008394 +18 0.545001 0.926951 0.010554 0.007713 +18 0.387716 0.926611 0.010847 0.007486 +18 0.332307 0.926611 0.011434 0.007486 +18 0.501173 0.926611 0.011434 0.007940 +13 0.740692 0.871143 0.010261 0.006806 +13 0.562152 0.868194 0.010847 0.007713 +13 0.716945 0.865018 0.011434 0.007260 +13 0.580475 0.860368 0.009968 0.007486 +13 0.421870 0.860254 0.010554 0.007260 +13 0.623278 0.860027 0.009968 0.007713 +13 0.535180 0.859800 0.009675 0.007713 +13 0.851510 0.857078 0.010261 0.008167 +13 0.288625 0.855944 0.010261 0.006352 +13 0.684697 0.856511 0.009675 0.007940 +13 0.444298 0.854129 0.009675 0.007260 +13 0.645412 0.853448 0.009675 0.007260 +13 0.489446 0.853448 0.009675 0.007713 +13 0.601143 0.852881 0.010261 0.007940 +12 0.400616 0.852654 0.010261 0.007486 +13 0.786133 0.852654 0.010847 0.007940 +13 0.137350 0.851860 0.009088 0.007713 +13 0.939021 0.850726 0.009968 0.007713 +13 0.872325 0.850272 0.009675 0.008167 +13 0.359719 0.850159 0.010554 0.007940 +12 0.829522 0.849251 0.009675 0.007033 +13 0.310759 0.849251 0.009968 0.007486 +13 0.265465 0.849251 0.009675 0.007486 +13 0.511727 0.846075 0.009675 0.007486 +13 0.467898 0.846075 0.010554 0.007486 +13 0.211522 0.845848 0.009675 0.007940 +12 0.105541 0.844601 0.009381 0.007713 +13 0.159044 0.844374 0.010261 0.008167 +13 0.378628 0.842219 0.009675 0.007486 +13 0.338464 0.842105 0.010261 0.007260 +12 0.806948 0.841311 0.010261 0.007033 +13 0.761800 0.841878 0.010261 0.008167 +12 0.960862 0.838929 0.009675 0.007713 +12 0.908238 0.838362 0.009968 0.007940 +12 0.235268 0.837908 0.009088 0.007486 +12 0.190413 0.837795 0.009675 0.007713 +13 0.129874 0.787999 0.009381 0.006579 +13 0.329376 0.787545 0.010261 0.007033 +13 0.194957 0.787772 0.009968 0.007486 +13 0.260481 0.787545 0.010261 0.007486 +17 0.937555 0.781647 0.017590 0.003403 +11 0.916154 0.781534 0.018763 0.003176 +13 0.933451 0.752042 0.009381 0.008167 +11 0.690853 0.781874 0.016124 0.003857 +13 0.701114 0.754764 0.011434 0.008167 +14 0.763999 0.780966 0.015831 0.006579 +12 0.768836 0.754310 0.010847 0.008167 +18 0.748607 0.780740 0.007329 0.006125 +13 0.151715 0.762591 0.011434 0.007940 +13 0.217092 0.762250 0.010847 0.007713 +12 0.173410 0.762024 0.010261 0.007713 +13 0.847699 0.759301 0.010261 0.007713 +13 0.545588 0.758848 0.009968 0.007260 +13 0.478892 0.754651 0.010261 0.007940 +13 0.411756 0.754310 0.010847 0.007713 +13 0.523747 0.752042 0.010847 0.008167 +13 0.867341 0.751815 0.009675 0.008167 +13 0.823952 0.751361 0.009675 0.007260 +13 0.633685 0.751248 0.010261 0.007033 +13 0.568455 0.750794 0.009968 0.007940 +13 0.435210 0.748072 0.010847 0.007940 +13 0.721636 0.747731 0.010261 0.007713 +13 0.677221 0.747505 0.009381 0.007713 +13 0.389768 0.747051 0.009088 0.007713 +13 0.455731 0.745236 0.009675 0.007260 +18 0.747435 0.744782 0.010261 0.007260 +12 0.500586 0.744555 0.010261 0.007713 +18 0.790531 0.744328 0.010847 0.008167 +18 0.955292 0.741266 0.010847 0.007486 +18 0.600850 0.741039 0.010261 0.007486 +18 0.900762 0.740585 0.010847 0.007486 +18 0.655380 0.740585 0.010261 0.007486 +12 0.307681 0.738317 0.010261 0.007940 +12 0.285693 0.738090 0.009675 0.007486 +12 0.351070 0.737976 0.010261 0.007713 +13 0.139109 0.690676 0.009675 0.008394 +13 0.217532 0.689655 0.010554 0.006806 +13 0.637350 0.685912 0.011727 0.007940 +13 0.636910 0.670939 0.011434 0.007940 +13 0.560833 0.685912 0.011727 0.008394 +13 0.560100 0.670939 0.010261 0.007486 +14 0.723981 0.675136 0.004984 0.005898 +13 0.725300 0.657895 0.010554 0.007713 +13 0.814571 0.632486 0.010261 0.008167 +18 0.776312 0.672414 0.012899 0.003176 +17 0.734389 0.672868 0.011140 0.004083 +12 0.745969 0.632827 0.010261 0.008394 +13 0.425682 0.674456 0.010554 0.007713 +17 0.433890 0.626588 0.006450 0.005445 +13 0.492378 0.674342 0.010847 0.007940 +13 0.357813 0.671279 0.011434 0.007713 +13 0.290091 0.671166 0.010847 0.007940 +13 0.194371 0.667763 0.010554 0.006125 +13 0.193785 0.657554 0.010554 0.007486 +13 0.171651 0.668103 0.010847 0.006806 +13 0.171064 0.657554 0.010847 0.007486 +13 0.240838 0.668103 0.010847 0.007260 +13 0.240838 0.657441 0.010847 0.007713 +13 0.310026 0.661298 0.010847 0.006352 +13 0.309293 0.646779 0.009381 0.007260 +13 0.333480 0.661298 0.010847 0.006806 +13 0.332747 0.647005 0.010554 0.007260 +13 0.379214 0.661411 0.010847 0.007486 +13 0.378775 0.647119 0.008795 0.005218 +13 0.934184 0.660844 0.010261 0.007260 +13 0.860598 0.660617 0.010847 0.007260 +13 0.448989 0.658008 0.012020 0.007940 +13 0.448402 0.646779 0.010261 0.006352 +13 0.515538 0.657554 0.011434 0.007940 +13 0.514952 0.646438 0.009088 0.006579 +13 0.470683 0.657781 0.010847 0.008394 +13 0.470390 0.646779 0.010261 0.007260 +13 0.791117 0.657214 0.011434 0.008167 +13 0.613896 0.654265 0.011140 0.007260 +13 0.614336 0.635662 0.009675 0.007260 +13 0.658311 0.654038 0.010847 0.007713 +13 0.658898 0.635549 0.010847 0.007033 +13 0.590736 0.654038 0.010554 0.007713 +13 0.590296 0.635322 0.010847 0.007486 +13 0.956611 0.647459 0.008209 0.006352 +13 0.956758 0.629764 0.010847 0.007713 +13 0.914541 0.646892 0.008502 0.007033 +13 0.913808 0.628289 0.009968 0.007940 +13 0.892260 0.646552 0.008502 0.006352 +13 0.891674 0.629537 0.009675 0.007713 +18 0.162269 0.638385 0.009675 0.006352 +13 0.767810 0.633167 0.009968 0.008167 +18 0.296834 0.591198 0.010847 0.004083 +18 0.336412 0.590744 0.024919 0.005445 +12 0.356787 0.569873 0.009968 0.007260 +11 0.334213 0.546166 0.009968 0.007940 +13 0.313691 0.590404 0.011140 0.006125 +12 0.313251 0.569646 0.009675 0.007260 +17 0.778657 0.589723 0.010554 0.006125 +11 0.787013 0.545485 0.012020 0.007940 +11 0.799033 0.588816 0.012606 0.005218 +12 0.809147 0.568966 0.010554 0.007713 +12 0.108033 0.574977 0.005570 0.004764 +13 0.764878 0.569533 0.009968 0.007033 +12 0.465553 0.564882 0.009968 0.008621 +14 0.475081 0.520417 0.009675 0.006806 +12 0.385957 0.563067 0.009675 0.007260 +12 0.841835 0.562046 0.010261 0.007033 +11 0.844181 0.583031 0.012606 0.005445 +13 0.856787 0.555467 0.009675 0.006579 +14 0.499414 0.560458 0.008502 0.008848 +12 0.944884 0.558870 0.007622 0.009301 +13 0.217971 0.556488 0.010261 0.006352 +13 0.173996 0.556488 0.010261 0.006806 +13 0.128848 0.556602 0.010261 0.007033 +13 0.715040 0.556261 0.009381 0.006806 +13 0.268836 0.556602 0.011140 0.007486 +13 0.401055 0.556261 0.009968 0.007260 +13 0.659924 0.555694 0.009381 0.007033 +13 0.612430 0.556034 0.009968 0.007713 +13 0.567136 0.555581 0.009675 0.006806 +14 0.417326 0.546166 0.011434 0.007940 +14 0.873644 0.545712 0.011727 0.007940 +14 0.441806 0.539474 0.010554 0.007713 +14 0.898124 0.538907 0.009088 0.007940 +14 0.458956 0.530853 0.010261 0.008621 +14 0.912196 0.529832 0.009088 0.007940 +13 0.245969 0.523934 0.009968 0.007486 +13 0.692319 0.522346 0.011434 0.007940 +13 0.153621 0.520644 0.009968 0.008621 +14 0.926268 0.520077 0.010261 0.008394 +13 0.590589 0.519397 0.009675 0.007940 +12 0.948402 0.513158 0.008795 0.007713 +12 0.498094 0.512931 0.009381 0.008167 +12 0.104808 0.508167 0.009088 0.008167 +12 0.193052 0.507260 0.009675 0.008167 +18 0.740399 0.506579 0.010261 0.007260 +12 0.290824 0.506806 0.009968 0.007713 +18 0.545734 0.506352 0.010261 0.007713 +12 0.514658 0.505898 0.010261 0.006806 +12 0.961155 0.506012 0.009675 0.007940 +12 0.638962 0.506125 0.009088 0.008621 +13 0.134271 0.468580 0.010554 0.007940 +14 0.137350 0.451906 0.009088 0.005445 +13 0.163442 0.465064 0.009675 0.007260 +12 0.187775 0.461774 0.011434 0.007940 +13 0.804016 0.461207 0.010261 0.008167 +14 0.807828 0.429106 0.008502 0.004310 +12 0.590589 0.460526 0.007916 0.009074 +14 0.596746 0.437613 0.009675 0.006806 +14 0.221196 0.458031 0.010261 0.007260 +13 0.705512 0.457350 0.011434 0.006806 +13 0.705805 0.440789 0.006157 0.004537 +13 0.681472 0.461093 0.010261 0.008394 +12 0.687482 0.441357 0.011727 0.007940 +14 0.698036 0.434551 0.011727 0.007940 +14 0.361038 0.457350 0.010847 0.007260 +13 0.245822 0.454855 0.010261 0.008167 +17 0.257842 0.434437 0.015538 0.008621 +14 0.655233 0.454401 0.010554 0.007713 +14 0.731604 0.454515 0.010847 0.008394 +11 0.741718 0.428539 0.009968 0.005898 +13 0.474934 0.450998 0.007622 0.005898 +14 0.475960 0.419578 0.009675 0.008394 +14 0.830548 0.450998 0.010554 0.006352 +14 0.779683 0.450431 0.010847 0.005672 +14 0.271768 0.450885 0.010554 0.006579 +14 0.513339 0.448956 0.008209 0.003630 +14 0.511727 0.416856 0.009675 0.008394 +13 0.329376 0.448162 0.010847 0.007940 +13 0.624157 0.447709 0.011727 0.007940 +14 0.386690 0.447822 0.011727 0.008167 +14 0.756523 0.447595 0.011434 0.008167 +13 0.107593 0.448616 0.011727 0.007940 +18 0.101290 0.442264 0.009675 0.004310 +12 0.105687 0.411071 0.010261 0.007260 +18 0.117561 0.447255 0.011727 0.007940 +18 0.880240 0.443966 0.009088 0.004991 +14 0.885517 0.426497 0.010261 0.008167 +14 0.304603 0.444646 0.010554 0.007713 +17 0.149370 0.442377 0.005570 0.006352 +13 0.854295 0.437613 0.011140 0.006806 +14 0.411463 0.434211 0.010847 0.008167 +14 0.908091 0.424002 0.009675 0.007713 +14 0.442979 0.423662 0.009381 0.008848 +14 0.933890 0.421053 0.010261 0.007713 +14 0.958077 0.413453 0.010554 0.007940 +14 0.536353 0.409256 0.009675 0.007713 +12 0.573585 0.398367 0.009675 0.009074 +11 0.680885 0.373072 0.004984 0.006579 +14 0.710789 0.365245 0.015538 0.006806 +14 0.710789 0.372051 0.015538 0.006806 +14 0.706098 0.345054 0.010847 0.008167 +12 0.105394 0.365585 0.010261 0.007940 +11 0.115948 0.339723 0.011434 0.006125 +17 0.115948 0.345848 0.011434 0.006125 +12 0.547054 0.365132 0.009968 0.008394 +12 0.559807 0.340971 0.013779 0.010436 +11 0.270595 0.365132 0.009968 0.008394 +14 0.276605 0.344941 0.011434 0.007940 +12 0.728525 0.363884 0.004691 0.006352 +14 0.729112 0.341652 0.009968 0.007713 +14 0.808267 0.362409 0.007036 0.004310 +14 0.811052 0.330195 0.009675 0.007940 +14 0.322486 0.364678 0.009381 0.009301 +14 0.322779 0.338022 0.011140 0.008167 +14 0.573439 0.361388 0.010554 0.006806 +18 0.386250 0.359006 0.006743 0.005672 +14 0.397684 0.326565 0.009675 0.007033 +12 0.759308 0.365132 0.011727 0.007940 +14 0.759601 0.338249 0.011140 0.008167 +12 0.770449 0.359914 0.011727 0.007940 +12 0.333920 0.359914 0.012313 0.007940 +18 0.816476 0.358893 0.008209 0.008167 +14 0.604955 0.358553 0.010261 0.008394 +12 0.611844 0.337341 0.005863 0.007713 +14 0.160803 0.358439 0.010847 0.008167 +11 0.170918 0.339270 0.009968 0.006125 +14 0.627529 0.355036 0.010847 0.006806 +11 0.638083 0.331329 0.008502 0.003857 +14 0.184257 0.354809 0.010847 0.006352 +14 0.792290 0.353448 0.006743 0.004083 +14 0.788185 0.334846 0.010847 0.007713 +12 0.207417 0.352087 0.010261 0.007713 +14 0.650836 0.351860 0.010554 0.007713 +14 0.244943 0.348230 0.010261 0.007260 +12 0.681618 0.348344 0.009968 0.007940 +14 0.299179 0.341198 0.010847 0.007713 +14 0.126502 0.339496 0.007916 0.007033 +14 0.131486 0.361275 0.010847 0.006579 +14 0.354295 0.334619 0.010847 0.007713 +14 0.347845 0.354356 0.012606 0.004537 +14 0.375696 0.330195 0.010261 0.007940 +14 0.832747 0.328153 0.009675 0.007486 +12 0.864409 0.325091 0.010847 0.007713 +12 0.430519 0.323389 0.010847 0.007940 +12 0.913808 0.321688 0.009968 0.008167 +12 0.473322 0.320667 0.009675 0.008394 +12 0.948842 0.317264 0.009675 0.007940 +12 0.508502 0.315903 0.009675 0.007940 +17 0.679713 0.273367 0.005570 0.006352 +18 0.265318 0.268943 0.010554 0.006125 +11 0.715333 0.268716 0.011727 0.007940 +14 0.731457 0.264406 0.011727 0.005672 +14 0.728086 0.244896 0.009675 0.007486 +12 0.105687 0.268603 0.010261 0.008167 +12 0.114629 0.242627 0.009381 0.012024 +13 0.555262 0.268035 0.009968 0.008394 +11 0.566403 0.241039 0.013486 0.008848 +14 0.336118 0.268262 0.014952 0.009301 +13 0.390501 0.265426 0.011140 0.004537 +14 0.387130 0.233439 0.009675 0.007713 +12 0.134418 0.264973 0.010261 0.005445 +12 0.133392 0.242627 0.009381 0.012024 +12 0.142773 0.242627 0.009381 0.012024 +14 0.579742 0.264519 0.010847 0.006352 +11 0.817649 0.263271 0.019349 0.005672 +14 0.833040 0.233666 0.009675 0.008167 +11 0.402961 0.263612 0.006743 0.008167 +14 0.410144 0.229696 0.009968 0.007486 +11 0.753591 0.266334 0.010261 0.015880 +14 0.753152 0.241379 0.010554 0.007713 +11 0.763852 0.266334 0.010261 0.015880 +14 0.774113 0.266334 0.010261 0.015880 +14 0.777485 0.237976 0.011140 0.008167 +17 0.784374 0.266334 0.010261 0.015880 +14 0.164028 0.261683 0.009675 0.007940 +12 0.169745 0.240812 0.009381 0.008394 +14 0.603489 0.261456 0.011434 0.008394 +11 0.613163 0.242514 0.009088 0.006806 +11 0.351803 0.261456 0.017004 0.009755 +14 0.361038 0.237636 0.009675 0.007033 +14 0.626649 0.258054 0.010847 0.006125 +14 0.189387 0.258167 0.011140 0.007260 +14 0.213281 0.255331 0.010847 0.007486 +14 0.651568 0.255104 0.011434 0.007486 +12 0.679126 0.251815 0.010261 0.006352 +14 0.246116 0.251248 0.009675 0.006579 +14 0.705805 0.248412 0.012020 0.008167 +14 0.705951 0.268716 0.011727 0.007940 +14 0.278364 0.248299 0.010847 0.007940 +11 0.286280 0.265086 0.017297 0.007940 +14 0.302697 0.244555 0.011434 0.007713 +18 0.152888 0.242740 0.007329 0.003630 +14 0.328203 0.241266 0.009675 0.007940 +12 0.124011 0.242627 0.009381 0.012024 +14 0.800498 0.233553 0.010261 0.008394 +12 0.862064 0.230830 0.010261 0.007940 +12 0.436382 0.226066 0.011434 0.008394 +12 0.911756 0.223344 0.007036 0.006579 +12 0.482410 0.223117 0.010847 0.007486 +12 0.947523 0.220168 0.009968 0.007940 +12 0.517150 0.219147 0.009381 0.007713 +13 0.661536 0.188521 0.013193 0.005898 +18 0.657432 0.178993 0.012020 0.004537 +13 0.653034 0.161411 0.010261 0.006125 +18 0.227499 0.186139 0.011727 0.007940 +11 0.241865 0.180694 0.011727 0.007940 +14 0.246409 0.159369 0.010847 0.007940 +12 0.107153 0.180014 0.010261 0.007940 +12 0.545588 0.179673 0.010554 0.007713 +14 0.263412 0.177518 0.016711 0.006125 +14 0.263412 0.155626 0.009675 0.006806 +14 0.279830 0.176497 0.007329 0.004537 +14 0.282029 0.168897 0.010554 0.004764 +14 0.281296 0.152450 0.010261 0.007713 +17 0.701407 0.176724 0.008502 0.005445 +14 0.711668 0.151996 0.010261 0.007713 +14 0.579889 0.175930 0.009968 0.007940 +14 0.596159 0.172868 0.010261 0.008167 +12 0.603928 0.148707 0.006450 0.004310 +14 0.153474 0.172868 0.010261 0.008167 +12 0.156992 0.145644 0.007916 0.008167 +12 0.136470 0.177632 0.010261 0.007260 +11 0.147024 0.152450 0.009088 0.008621 +14 0.173996 0.169465 0.011434 0.007713 +12 0.186456 0.144510 0.007036 0.004083 +14 0.718411 0.167763 0.008502 0.004764 +14 0.734242 0.165948 0.007329 0.004310 +14 0.728965 0.149047 0.009675 0.006806 +18 0.787599 0.165721 0.006157 0.006125 +14 0.193345 0.165835 0.011434 0.007713 +14 0.629874 0.165608 0.010847 0.008167 +14 0.614043 0.169011 0.010261 0.007713 +17 0.626356 0.153017 0.016124 0.006125 +11 0.319848 0.165041 0.011727 0.010662 +14 0.331428 0.142695 0.009675 0.005898 +14 0.312372 0.172414 0.006157 0.008621 +13 0.313838 0.145985 0.010847 0.008394 +13 0.217678 0.162319 0.009675 0.006579 +14 0.351656 0.164133 0.016124 0.011570 +14 0.346966 0.138725 0.009088 0.007940 +11 0.793902 0.160504 0.005277 0.005218 +14 0.385957 0.159710 0.008502 0.008621 +14 0.385224 0.132713 0.009381 0.007713 +14 0.821167 0.159483 0.011727 0.009528 +13 0.822046 0.131352 0.009968 0.007713 +13 0.680592 0.158462 0.009088 0.007486 +14 0.696423 0.155059 0.010261 0.006579 +12 0.392847 0.151316 0.005277 0.004991 +14 0.399443 0.128743 0.009675 0.007940 +14 0.298006 0.148934 0.009675 0.006125 +14 0.745676 0.145077 0.010261 0.008394 +12 0.753591 0.164701 0.013779 0.010436 +14 0.760921 0.141901 0.009088 0.007486 +14 0.778657 0.138158 0.009381 0.008167 +14 0.370273 0.135209 0.009968 0.007260 +14 0.802844 0.135209 0.009675 0.007713 +14 0.838317 0.127949 0.010261 0.007260 +12 0.858546 0.123639 0.009675 0.007713 +12 0.421431 0.123639 0.010261 0.007713 +12 0.894459 0.121937 0.008795 0.007940 +12 0.446497 0.120917 0.009968 0.007260 +12 0.920405 0.116720 0.009675 0.007486 +12 0.472149 0.116946 0.010261 0.008394 +13 0.945617 0.076452 0.009675 0.008167 +13 0.965259 0.070440 0.006157 0.004764 +13 0.919232 0.071915 0.009675 0.007713 +13 0.853709 0.069986 0.009968 0.006579 +13 0.826884 0.066130 0.010261 0.007940 +13 0.900762 0.065109 0.010261 0.007713 +13 0.538405 0.063407 0.010261 0.006125 +12 0.536939 0.035050 0.009675 0.005672 +13 0.880240 0.061933 0.010261 0.007713 +13 0.775286 0.061706 0.010261 0.007260 +12 0.784521 0.034936 0.007036 0.004083 +13 0.748901 0.058530 0.010261 0.008621 +17 0.766051 0.032441 0.021108 0.005445 +13 0.810906 0.058870 0.011140 0.007940 +13 0.791850 0.054673 0.010554 0.006352 +13 0.684403 0.051951 0.010261 0.008621 +13 0.731017 0.048888 0.010847 0.004310 +13 0.659631 0.047868 0.011140 0.005898 +13 0.583553 0.045259 0.010261 0.007940 +13 0.709909 0.044918 0.010847 0.008621 +13 0.640868 0.042083 0.011140 0.006125 +13 0.555116 0.041402 0.009675 0.006579 +13 0.502932 0.038226 0.010847 0.007940 +13 0.609059 0.038226 0.012020 0.008394 +13 0.473615 0.034483 0.010847 0.006352 +13 0.384491 0.031420 0.010847 0.007486 +13 0.520375 0.031307 0.010554 0.007713 +13 0.456318 0.031420 0.010261 0.007940 +13 0.440193 0.031420 0.011434 0.008394 +13 0.218704 0.029152 0.011140 0.007033 +11 0.144386 0.029152 0.011434 0.007486 +11 0.350484 0.028584 0.010847 0.007260 +13 0.402228 0.028017 0.011140 0.007033 +11 0.108766 0.025408 0.009381 0.007260 +13 0.275579 0.023934 0.009381 0.007486 +13 0.199941 0.024047 0.009968 0.007713 +13 0.316916 0.023707 0.009381 0.007940 +13 0.257256 0.023820 0.010261 0.008167 +12 0.650689 0.021779 0.005570 0.004991 +13 0.420405 0.022686 0.009968 0.008167 +13 0.182498 0.020644 0.009675 0.007713 +13 0.237027 0.020758 0.009675 0.008394 +13 0.300059 0.016788 0.011434 0.007713 +4 0.671504 0.158689 0.014365 0.021552 +3 0.171797 0.022119 0.007622 0.020644 +4 0.360451 0.135776 0.013779 0.022005 +3 0.598505 0.038453 0.007329 0.022459 +4 0.341982 0.334505 0.010847 0.022005 +4 0.901055 0.321121 0.011434 0.021552 +4 0.337584 0.028471 0.013193 0.020644 +4 0.131926 0.029378 0.011140 0.020644 +4 0.469364 0.223344 0.010554 0.021552 +1 0.041483 0.153471 0.024333 0.051497 +4 0.288625 0.017809 0.010847 0.022459 +4 0.570947 0.045259 0.010847 0.022459 +3 0.870273 0.062273 0.007916 0.021098 +3 0.775579 0.334959 0.007916 0.021552 +4 0.490619 0.038453 0.010847 0.022005 +3 0.094547 0.410277 0.007916 0.022005 +4 0.642773 0.454515 0.010261 0.021552 +4 0.886983 0.121030 0.019642 0.022459 +3 0.210642 0.458598 0.007916 0.021098 +3 0.253738 0.849478 0.007329 0.021552 +3 0.595573 0.358779 0.007916 0.022459 +4 0.349311 0.458144 0.010847 0.021552 +3 0.265758 0.345168 0.007329 0.022005 +3 0.852096 0.325658 0.007329 0.021552 +5 0.706098 0.045259 0.020815 0.022005 +1 0.041190 0.251701 0.023160 0.045599 +1 0.038845 0.352201 0.024919 0.052405 +4 0.587364 0.741493 0.011434 0.022005 +4 0.233802 0.159369 0.010261 0.021552 +4 0.673556 0.050930 0.010847 0.021098 +3 0.234975 0.523707 0.007916 0.022459 +4 0.842128 0.068852 0.011434 0.021552 +4 0.461009 0.320440 0.010847 0.021552 +4 0.795808 0.135322 0.017883 0.021552 +3 0.326444 0.842672 0.007329 0.022005 +3 0.486807 0.513725 0.007329 0.020644 +4 0.879361 0.628970 0.010847 0.022005 +1 0.037086 0.658008 0.024333 0.052405 +3 0.811346 0.751475 0.006743 0.022005 +3 0.293902 0.444533 0.007916 0.021098 +3 0.243770 0.938861 0.007916 0.022459 +3 0.488860 0.927064 0.007916 0.021552 +3 0.681765 0.523140 0.007916 0.022686 +4 0.400322 0.434097 0.010847 0.021552 +4 0.703459 0.865358 0.010847 0.020644 +4 0.265758 0.248072 0.010261 0.022005 +4 0.549252 0.868081 0.010847 0.022459 +3 0.153181 0.464496 0.007916 0.021552 +3 0.565377 0.938407 0.007329 0.022005 +4 0.319115 0.927064 0.010847 0.022005 +3 0.642187 0.930921 0.007329 0.021552 +3 0.887863 0.538907 0.007329 0.022459 +4 0.861771 0.956329 0.011434 0.021552 +3 0.377748 0.562954 0.010847 0.020644 +4 0.463647 0.420259 0.010847 0.022459 +4 0.524480 0.409596 0.010554 0.022005 +3 0.940633 0.512477 0.009675 0.020417 +4 0.126942 0.688634 0.011140 0.021552 +3 0.418792 0.323616 0.007329 0.022005 +3 0.431105 0.539133 0.007329 0.022005 +1 0.037379 0.553879 0.024333 0.051951 +1 0.037086 0.877382 0.024919 0.045599 +3 0.578863 0.652790 0.007916 0.023367 +4 0.351363 0.938407 0.010847 0.022005 +4 0.619613 0.751928 0.011434 0.022005 +3 0.160803 0.668217 0.007916 0.020644 +4 0.925975 0.850726 0.011434 0.021779 +4 0.887276 0.740812 0.010847 0.021552 +1 0.038552 0.445213 0.024919 0.044238 +4 0.894606 0.840404 0.010847 0.022005 +3 0.178393 0.838589 0.007916 0.022005 +3 0.124157 0.469034 0.008502 0.021552 +3 0.236734 0.348798 0.011434 0.021098 +4 0.497068 0.417309 0.010847 0.022005 +4 0.152595 0.261910 0.010261 0.022005 +3 0.748021 0.338362 0.007916 0.022005 +4 0.149077 0.358779 0.010847 0.022459 +4 0.931985 0.076225 0.009968 0.020871 +4 0.071240 0.550023 0.010554 0.021098 +4 0.060979 0.539247 0.009968 0.021325 +3 0.669892 0.347550 0.007036 0.021325 +3 0.695104 0.345054 0.007036 0.021325 +4 0.073585 0.149841 0.010554 0.021098 +4 0.063911 0.139065 0.009968 0.021325 +4 0.071680 0.876928 0.010261 0.021552 +4 0.062152 0.866379 0.010554 0.021325 +4 0.071826 0.348344 0.010554 0.020644 +4 0.062445 0.337795 0.010554 0.021325 +4 0.071533 0.444873 0.010554 0.020417 +4 0.062152 0.434664 0.010554 0.020871 +4 0.074758 0.042990 0.009968 0.020644 +4 0.065523 0.032441 0.010261 0.020417 +4 0.073292 0.964950 0.009968 0.020644 +4 0.063911 0.954401 0.009968 0.021325 +4 0.072413 0.251588 0.011140 0.020871 +4 0.063618 0.241379 0.011140 0.021779 +4 0.070947 0.654719 0.010554 0.021325 +4 0.062445 0.644056 0.009968 0.021325 +4 0.070800 0.780966 0.011434 0.021098 +4 0.062445 0.770417 0.010554 0.020871 +3 0.955292 0.068172 0.010847 0.021098 +3 0.963354 0.068172 0.010554 0.021098 +3 0.832161 0.562613 0.010847 0.021779 +4 0.048373 0.032328 0.010554 0.022005 +4 0.898124 0.223457 0.010847 0.021325 +4 0.030343 0.782554 0.010847 0.022005 +4 0.043682 0.770077 0.010554 0.022005 +4 0.029757 0.969487 0.010847 0.022005 +4 0.044269 0.953834 0.010554 0.022005 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_5.jpg b/data_dataset/tch/debug/debug_5.jpg new file mode 100644 index 0000000..fdf2e1c Binary files /dev/null and b/data_dataset/tch/debug/debug_5.jpg differ diff --git a/data_dataset/tch/debug/debug_5.txt b/data_dataset/tch/debug/debug_5.txt new file mode 100644 index 0000000..946c805 --- /dev/null +++ b/data_dataset/tch/debug/debug_5.txt @@ -0,0 +1,612 @@ +10 0.202259 0.970728 0.009094 0.003177 +7 0.206659 0.979351 0.017894 0.009530 +10 0.437812 0.964942 0.014374 0.006127 +10 0.460399 0.963808 0.010267 0.005673 +10 0.136844 0.951554 0.008507 0.004765 +10 0.963479 0.938620 0.007920 0.005219 +10 0.915958 0.935671 0.014960 0.007034 +7 0.877823 0.937713 0.011440 0.015657 +6 0.893957 0.935444 0.012027 0.025641 +9 0.749927 0.929544 0.017307 0.045155 +10 0.321942 0.816769 0.010267 0.003404 +10 0.764887 0.808827 0.011440 0.002496 +10 0.754620 0.807692 0.007334 0.004765 +9 0.152684 0.815975 0.017307 0.034037 +9 0.569229 0.801112 0.008507 0.012026 +9 0.208126 0.810529 0.006747 0.049467 +6 0.617630 0.801793 0.005573 0.029725 +9 0.446612 0.805877 0.009680 0.046517 +9 0.427545 0.805764 0.011440 0.046290 +9 0.466559 0.806785 0.009680 0.054686 +9 0.273834 0.795553 0.012614 0.031768 +9 0.253300 0.797141 0.012614 0.028591 +9 0.508214 0.793397 0.012027 0.039256 +9 0.336316 0.791241 0.014374 0.039483 +10 0.363890 0.778875 0.007334 0.006127 +9 0.358316 0.800431 0.005573 0.065577 +9 0.104283 0.797481 0.010267 0.065124 +9 0.595923 0.780123 0.013787 0.033583 +9 0.668965 0.783867 0.012027 0.040617 +9 0.638457 0.783413 0.010854 0.048332 +8 0.322822 0.696959 0.014960 0.022464 +9 0.671458 0.701044 0.012320 0.039256 +9 0.751980 0.696392 0.012027 0.046290 +9 0.726459 0.697980 0.012614 0.043113 +9 0.883397 0.686181 0.010854 0.030860 +10 0.785861 0.721920 0.018774 0.003857 +9 0.207832 0.681076 0.009094 0.033810 +9 0.966119 0.682550 0.012027 0.038575 +10 0.613230 0.669049 0.010267 0.002950 +8 0.243033 0.602110 0.006160 0.011572 +10 0.338956 0.596211 0.007920 0.003404 +9 0.257407 0.584978 0.009094 0.029045 +9 0.632590 0.555140 0.009680 0.048332 +9 0.948225 0.557862 0.012027 0.054232 +10 0.729393 0.495008 0.011440 0.002950 +10 0.782048 0.493987 0.020534 0.004538 +10 0.876650 0.494100 0.017307 0.005219 +10 0.421091 0.486612 0.012027 0.006127 +9 0.331916 0.484457 0.007334 0.024053 +9 0.570695 0.483435 0.012027 0.035625 +10 0.471253 0.463240 0.007920 0.006580 +9 0.224406 0.466304 0.017014 0.060359 +10 0.894544 0.492058 0.007334 0.002950 +10 0.644911 0.397776 0.009094 0.005900 +10 0.855823 0.396074 0.010854 0.003404 +8 0.437225 0.396074 0.016134 0.010211 +10 0.599736 0.373610 0.009680 0.004765 +10 0.809182 0.365895 0.009680 0.002950 +10 0.901584 0.360449 0.009094 0.006580 +10 0.786888 0.360336 0.008507 0.006807 +9 0.535201 0.364307 0.012027 0.060585 +10 0.496480 0.394600 0.011440 0.002269 +9 0.349663 0.269912 0.009387 0.010211 +10 0.612056 0.261289 0.007920 0.005219 +10 0.481226 0.259247 0.009094 0.006127 +10 0.654884 0.253347 0.012614 0.003404 +9 0.937518 0.255616 0.007040 0.021557 +10 0.480346 0.233152 0.008507 0.006580 +9 0.636110 0.236782 0.017307 0.051509 +9 0.876063 0.238371 0.017307 0.055593 +9 0.730273 0.238144 0.014374 0.055593 +9 0.332502 0.236896 0.012027 0.058089 +9 0.187885 0.236896 0.011440 0.070343 +9 0.407891 0.228387 0.011440 0.048786 +10 0.275301 0.150102 0.009680 0.006127 +9 0.585069 0.150216 0.012027 0.024506 +9 0.511000 0.148287 0.012320 0.033356 +10 0.877823 0.134672 0.007334 0.004311 +9 0.753740 0.135693 0.009094 0.040390 +7 0.524494 0.138303 0.018187 0.053324 +10 0.851129 0.116292 0.007920 0.005673 +8 0.960546 0.067960 0.009680 0.009303 +9 0.943238 0.067847 0.007920 0.009530 +10 0.329275 0.060018 0.010854 0.004765 +10 0.739366 0.057522 0.015547 0.002950 +9 0.350983 0.050147 0.016720 0.037667 +9 0.202112 0.050147 0.011147 0.028137 +10 0.870490 0.046177 0.007334 0.007034 +10 0.424318 0.040050 0.007920 0.007034 +9 0.752567 0.044588 0.009680 0.032448 +9 0.403784 0.040958 0.009094 0.024280 +10 0.755207 0.030973 0.007920 0.003404 +9 0.444999 0.046517 0.014667 0.036306 +9 0.965826 0.039142 0.010267 0.050601 +14 0.313288 0.965169 0.007627 0.003857 +13 0.326342 0.964261 0.007920 0.003857 +12 0.324875 0.913887 0.010267 0.007488 +12 0.135964 0.954050 0.008507 0.007488 +14 0.528161 0.952916 0.010267 0.007034 +14 0.527574 0.931813 0.010854 0.007942 +12 0.538428 0.952916 0.010267 0.007034 +12 0.550748 0.898457 0.010854 0.007488 +11 0.199765 0.951101 0.010560 0.007034 +11 0.162658 0.950987 0.010267 0.007715 +13 0.757994 0.947356 0.009387 0.004992 +14 0.757847 0.920808 0.010267 0.007261 +14 0.231446 0.948151 0.009387 0.007034 +13 0.735993 0.946222 0.007627 0.004992 +17 0.787474 0.944520 0.007334 0.005673 +14 0.795395 0.916156 0.011440 0.007488 +14 0.304635 0.944747 0.009680 0.007488 +14 0.261367 0.944974 0.011734 0.007942 +14 0.780141 0.944293 0.007920 0.007942 +14 0.384424 0.941797 0.010854 0.006580 +14 0.338076 0.941797 0.010854 0.007034 +14 0.454825 0.938393 0.010854 0.007942 +14 0.418891 0.938393 0.009974 0.007942 +14 0.497067 0.934763 0.009680 0.007034 +14 0.572015 0.931586 0.011147 0.007488 +14 0.644471 0.927956 0.009974 0.007488 +11 0.651804 0.952008 0.011734 0.007942 +17 0.659138 0.952008 0.011734 0.007942 +12 0.666031 0.894259 0.009680 0.007715 +11 0.669698 0.945087 0.015254 0.007715 +14 0.678058 0.924325 0.011440 0.007942 +14 0.607216 0.928069 0.010560 0.007715 +12 0.149751 0.923985 0.010854 0.007261 +11 0.217219 0.920808 0.009680 0.006807 +14 0.715899 0.920808 0.009680 0.007261 +17 0.177618 0.920808 0.010267 0.007261 +11 0.834702 0.917404 0.006747 0.005446 +14 0.245673 0.916496 0.009094 0.007261 +14 0.282341 0.913206 0.009680 0.007034 +14 0.403784 0.909689 0.009680 0.007715 +14 0.363010 0.908895 0.010267 0.007942 +11 0.106043 0.908668 0.010267 0.007488 +14 0.476533 0.905945 0.009680 0.008396 +14 0.432972 0.905491 0.010560 0.008396 +14 0.515254 0.902314 0.010854 0.007942 +12 0.594309 0.898117 0.009387 0.007715 +18 0.624670 0.894940 0.010267 0.007715 +18 0.695365 0.891196 0.010854 0.007942 +18 0.780141 0.886998 0.010267 0.007715 +18 0.738193 0.886885 0.010854 0.007488 +18 0.857143 0.885977 0.010560 0.007034 +12 0.815488 0.884388 0.009974 0.007488 +13 0.128337 0.818471 0.009680 0.007715 +13 0.127750 0.805083 0.009680 0.007261 +14 0.908624 0.817109 0.012614 0.007261 +12 0.906571 0.792830 0.010267 0.007715 +13 0.152097 0.815407 0.009094 0.007034 +13 0.151217 0.804969 0.009680 0.007034 +12 0.385744 0.813365 0.008800 0.005673 +13 0.385890 0.795439 0.012027 0.007942 +11 0.172338 0.812344 0.008507 0.006807 +12 0.172338 0.794985 0.012027 0.007942 +11 0.191992 0.812004 0.009094 0.007488 +12 0.191992 0.795212 0.011440 0.007488 +11 0.951745 0.810075 0.009094 0.004992 +14 0.958052 0.803835 0.007627 0.006127 +12 0.957906 0.781711 0.009680 0.007715 +13 0.407891 0.805537 0.009094 0.006354 +12 0.407011 0.792149 0.009680 0.007261 +18 0.546055 0.804402 0.006747 0.004538 +17 0.212232 0.805423 0.009680 0.007034 +13 0.211352 0.791355 0.010267 0.007034 +12 0.891024 0.796006 0.010854 0.007715 +11 0.853183 0.795666 0.012614 0.007942 +14 0.926665 0.789199 0.011147 0.007715 +13 0.513494 0.788972 0.010267 0.007261 +13 0.512907 0.779555 0.010267 0.007488 +13 0.298915 0.788972 0.008800 0.007261 +13 0.298768 0.780690 0.010267 0.007034 +13 0.448372 0.788745 0.010267 0.007261 +13 0.448372 0.796006 0.010267 0.007261 +13 0.428131 0.788745 0.009680 0.007261 +13 0.428131 0.796006 0.009680 0.007261 +13 0.253887 0.788518 0.009680 0.007261 +13 0.253887 0.795779 0.009680 0.007261 +13 0.231300 0.788518 0.010267 0.007261 +13 0.231300 0.795779 0.010267 0.007261 +13 0.494720 0.788632 0.011440 0.008396 +13 0.493253 0.780463 0.010854 0.007034 +14 0.942945 0.786590 0.011440 0.007488 +13 0.533148 0.786022 0.008507 0.006354 +13 0.532854 0.777059 0.010267 0.007942 +13 0.274714 0.785115 0.010267 0.006807 +13 0.274714 0.791922 0.010267 0.006807 +13 0.468759 0.785001 0.011147 0.007034 +13 0.468759 0.792035 0.011147 0.007034 +13 0.318422 0.781257 0.009680 0.007261 +13 0.318422 0.788518 0.009680 0.007261 +13 0.106630 0.780576 0.008507 0.007261 +13 0.106043 0.772861 0.009680 0.007261 +13 0.576269 0.779782 0.009094 0.007034 +13 0.575389 0.771613 0.009680 0.007034 +13 0.339249 0.777627 0.010267 0.007261 +13 0.339249 0.784888 0.010267 0.007261 +12 0.974039 0.777173 0.010267 0.006807 +13 0.362130 0.773429 0.010267 0.007488 +13 0.362130 0.780917 0.010267 0.007488 +12 0.640510 0.772748 0.009680 0.007034 +13 0.557935 0.772294 0.011147 0.007488 +13 0.557935 0.779782 0.011147 0.007488 +11 0.670138 0.769458 0.010267 0.007715 +13 0.596216 0.769231 0.010267 0.007715 +13 0.596216 0.776946 0.010267 0.007715 +14 0.712672 0.769004 0.010854 0.007715 +14 0.731153 0.765373 0.010267 0.007715 +12 0.640217 0.764466 0.010267 0.006354 +12 0.747580 0.762310 0.009094 0.007034 +18 0.764594 0.759020 0.010267 0.007715 +12 0.783368 0.756070 0.010267 0.008169 +12 0.800088 0.749830 0.009680 0.007942 +12 0.827809 0.747447 0.010560 0.007715 +13 0.373423 0.722033 0.011734 0.007261 +13 0.373277 0.706149 0.009680 0.007261 +13 0.407451 0.710461 0.009974 0.006807 +13 0.407158 0.702292 0.009974 0.005900 +12 0.422265 0.675062 0.012614 0.004084 +13 0.348343 0.709666 0.010267 0.007488 +13 0.699325 0.703426 0.009387 0.004992 +13 0.698592 0.686181 0.011440 0.008169 +13 0.433705 0.702973 0.010854 0.007261 +13 0.433705 0.710234 0.010854 0.007261 +13 0.519361 0.702859 0.012027 0.007488 +13 0.519361 0.710347 0.012027 0.007488 +13 0.546055 0.699682 0.011440 0.007488 +13 0.546055 0.707170 0.011440 0.007488 +13 0.459812 0.699342 0.011440 0.007261 +13 0.459812 0.706603 0.011440 0.007261 +11 0.152684 0.696392 0.010854 0.006807 +13 0.572602 0.696165 0.011734 0.006807 +13 0.572602 0.702973 0.011734 0.006807 +13 0.727633 0.696052 0.009094 0.007034 +13 0.726459 0.682777 0.009680 0.007715 +13 0.491640 0.695825 0.011734 0.006580 +13 0.491640 0.702405 0.011734 0.006580 +13 0.607656 0.695598 0.010267 0.006580 +13 0.607656 0.702178 0.010267 0.006580 +13 0.635524 0.692308 0.012027 0.007261 +13 0.635524 0.699569 0.012027 0.007261 +13 0.672191 0.689358 0.010267 0.007261 +13 0.672191 0.696619 0.010267 0.007261 +13 0.942358 0.681189 0.010854 0.007261 +13 0.941332 0.671772 0.011147 0.007488 +13 0.834996 0.680168 0.010854 0.007488 +13 0.833969 0.670865 0.009974 0.007034 +13 0.860370 0.679260 0.011147 0.007488 +13 0.860370 0.686748 0.011147 0.007488 +13 0.779261 0.678920 0.010854 0.007261 +13 0.779261 0.686181 0.010854 0.007261 +13 0.753300 0.679033 0.011734 0.007488 +13 0.753300 0.686521 0.011734 0.007488 +13 0.884864 0.676424 0.010854 0.007261 +13 0.884864 0.683685 0.010854 0.007261 +13 0.805075 0.676084 0.010854 0.006580 +13 0.805075 0.682664 0.010854 0.006580 +13 0.913611 0.671886 0.010854 0.008169 +13 0.913611 0.680054 0.010854 0.008169 +11 0.210179 0.669843 0.009680 0.007261 +13 0.967292 0.669503 0.010267 0.007488 +13 0.967292 0.676991 0.010267 0.007488 +18 0.106776 0.646472 0.010560 0.007715 +12 0.252860 0.646698 0.010560 0.008623 +17 0.348196 0.592467 0.006454 0.004538 +13 0.355383 0.558430 0.009680 0.007715 +11 0.318422 0.594963 0.016720 0.009530 +12 0.333969 0.569889 0.010267 0.007488 +13 0.314168 0.576469 0.011734 0.007942 +11 0.666764 0.586453 0.011734 0.007488 +11 0.860956 0.586113 0.011734 0.007261 +13 0.289674 0.583730 0.011440 0.007942 +13 0.264887 0.583730 0.011734 0.007942 +13 0.236580 0.576923 0.011440 0.007942 +13 0.206952 0.570002 0.010854 0.007261 +11 0.908624 0.560926 0.009680 0.007715 +11 0.714139 0.560245 0.009094 0.006807 +13 0.171605 0.558430 0.010560 0.006807 +13 0.379730 0.551055 0.010267 0.007488 +13 0.141830 0.550942 0.009680 0.008169 +18 0.399971 0.543681 0.009680 0.007261 +12 0.108683 0.543454 0.010267 0.006807 +18 0.570989 0.540277 0.010267 0.007261 +18 0.526987 0.540390 0.011440 0.007488 +18 0.487386 0.540050 0.010854 0.007261 +18 0.446612 0.539936 0.010267 0.007034 +18 0.825609 0.536873 0.010267 0.007715 +12 0.634057 0.537100 0.009680 0.008169 +12 0.948665 0.536306 0.009974 0.007034 +12 0.761074 0.536646 0.010267 0.007715 +18 0.502053 0.490697 0.005573 0.004765 +13 0.600763 0.490243 0.009387 0.004311 +13 0.599443 0.464715 0.011440 0.007715 +12 0.568348 0.490470 0.005573 0.004765 +13 0.289821 0.478670 0.011147 0.006580 +13 0.252127 0.479011 0.011440 0.007261 +13 0.205485 0.478784 0.009680 0.007261 +13 0.165884 0.478670 0.010267 0.007034 +13 0.108683 0.478557 0.009680 0.006807 +13 0.559988 0.478216 0.011734 0.006580 +13 0.330595 0.478216 0.009974 0.006580 +13 0.534614 0.477876 0.010854 0.006807 +13 0.947345 0.472090 0.010267 0.007488 +13 0.905104 0.471636 0.010267 0.007034 +13 0.866676 0.471636 0.010854 0.007034 +13 0.823115 0.471636 0.010560 0.007034 +13 0.718246 0.471296 0.009680 0.006807 +13 0.579202 0.471296 0.010854 0.007261 +13 0.774714 0.471296 0.011147 0.007715 +13 0.503227 0.471636 0.010267 0.008396 +13 0.470813 0.464942 0.009387 0.007715 +13 0.270607 0.461879 0.009680 0.007488 +13 0.269874 0.445655 0.011147 0.007715 +13 0.230859 0.462106 0.009974 0.007942 +13 0.229833 0.442251 0.010267 0.008169 +13 0.187592 0.461765 0.010267 0.007715 +13 0.186125 0.442364 0.009680 0.007942 +13 0.145644 0.461879 0.010854 0.007942 +13 0.143737 0.446335 0.011147 0.007715 +13 0.353036 0.461538 0.010267 0.007715 +13 0.351569 0.442251 0.009680 0.008169 +13 0.311968 0.461652 0.010267 0.007942 +13 0.310502 0.442024 0.010854 0.007715 +13 0.887504 0.453143 0.009094 0.007261 +13 0.886330 0.438167 0.010267 0.007261 +13 0.844089 0.453256 0.009094 0.007488 +13 0.966999 0.452916 0.007334 0.007261 +13 0.929451 0.452916 0.009680 0.007715 +13 0.805368 0.452916 0.009094 0.007715 +13 0.622910 0.452689 0.009094 0.007261 +13 0.751540 0.452575 0.009387 0.007488 +13 0.751247 0.437826 0.011734 0.007942 +13 0.441478 0.452802 0.010560 0.007942 +13 0.651951 0.445201 0.009680 0.007261 +13 0.413171 0.445428 0.010854 0.007715 +13 0.381784 0.438167 0.011440 0.007715 +13 0.673951 0.437599 0.011440 0.007488 +18 0.966706 0.435671 0.010267 0.007261 +12 0.927838 0.434990 0.009387 0.008169 +12 0.843796 0.434763 0.009680 0.008623 +12 0.804781 0.434196 0.010267 0.007488 +13 0.925345 0.384162 0.010267 0.008169 +12 0.924905 0.351713 0.009974 0.007715 +11 0.955265 0.378035 0.015547 0.009984 +12 0.970226 0.336056 0.009680 0.007715 +11 0.942652 0.383594 0.007334 0.004311 +13 0.947639 0.343431 0.011440 0.007942 +13 0.467732 0.375766 0.010267 0.006354 +13 0.424025 0.375766 0.009680 0.006354 +13 0.641977 0.375652 0.010267 0.006580 +13 0.599443 0.375539 0.010854 0.006354 +13 0.554561 0.375879 0.011440 0.007034 +13 0.511880 0.375766 0.010560 0.006807 +13 0.850836 0.375085 0.009094 0.006354 +13 0.827955 0.375085 0.010267 0.006354 +11 0.304341 0.371795 0.013200 0.009757 +12 0.316368 0.342977 0.010267 0.007488 +13 0.876357 0.368958 0.010854 0.006807 +13 0.807715 0.368958 0.009680 0.006807 +12 0.356263 0.366916 0.006747 0.004992 +12 0.362276 0.326186 0.009387 0.007034 +14 0.139924 0.366689 0.008214 0.006354 +13 0.139190 0.326526 0.009094 0.007715 +18 0.127017 0.361470 0.007627 0.004084 +12 0.901584 0.361811 0.009680 0.007034 +13 0.785861 0.362038 0.010560 0.007488 +13 0.269141 0.359315 0.010854 0.007488 +13 0.243326 0.359315 0.010854 0.007488 +13 0.447052 0.359201 0.009974 0.007715 +13 0.446025 0.342410 0.010267 0.007715 +13 0.621737 0.358747 0.009680 0.007261 +13 0.620857 0.339687 0.010267 0.008169 +13 0.575975 0.358747 0.009680 0.007261 +13 0.575682 0.342977 0.011440 0.007488 +13 0.536961 0.358861 0.009094 0.007488 +13 0.536081 0.339687 0.009680 0.007261 +13 0.664124 0.358747 0.009387 0.007715 +13 0.662804 0.339687 0.009680 0.007715 +13 0.491786 0.358747 0.009680 0.007715 +13 0.491200 0.339460 0.010267 0.007261 +13 0.223379 0.352507 0.010854 0.007488 +13 0.293488 0.352280 0.010267 0.007942 +13 0.754033 0.351600 0.011440 0.007942 +13 0.720593 0.342864 0.010267 0.007715 +13 0.189352 0.342750 0.010854 0.007488 +13 0.695952 0.335489 0.010267 0.007488 +13 0.162804 0.333674 0.009974 0.007488 +13 0.338662 0.332880 0.011440 0.008169 +12 0.108683 0.319832 0.010267 0.007942 +18 0.385597 0.319265 0.011440 0.007715 +11 0.582869 0.264125 0.011734 0.005900 +13 0.597389 0.234513 0.009094 0.007488 +13 0.620857 0.257318 0.010267 0.007261 +12 0.620270 0.224189 0.009680 0.007715 +13 0.266500 0.250851 0.012027 0.007488 +13 0.942945 0.250737 0.012027 0.007715 +13 0.899677 0.250397 0.011734 0.007488 +13 0.313435 0.250397 0.012027 0.007488 +13 0.214579 0.250511 0.011440 0.008169 +13 0.855529 0.250170 0.012027 0.007942 +13 0.810355 0.250170 0.012027 0.007942 +13 0.551041 0.250170 0.012027 0.007942 +13 0.526987 0.250170 0.012027 0.007942 +13 0.357436 0.250170 0.012027 0.007942 +13 0.757700 0.249943 0.011734 0.007942 +13 0.711206 0.249943 0.012027 0.007942 +13 0.131270 0.243930 0.011440 0.007715 +13 0.575682 0.243249 0.010854 0.007715 +13 0.504400 0.243136 0.010267 0.007942 +13 0.478733 0.234286 0.009974 0.007488 +13 0.964652 0.233038 0.010854 0.006807 +13 0.288794 0.232131 0.008507 0.007261 +13 0.240100 0.232017 0.008507 0.007034 +13 0.877237 0.232244 0.008507 0.008396 +13 0.923291 0.231677 0.007920 0.008169 +13 0.833382 0.231790 0.009387 0.008396 +13 0.333822 0.231450 0.008800 0.007715 +13 0.785421 0.231450 0.009094 0.008169 +13 0.382370 0.231110 0.007920 0.007488 +13 0.189352 0.231223 0.007920 0.008169 +13 0.732473 0.230656 0.009387 0.008396 +13 0.155324 0.224302 0.010267 0.007488 +13 0.455705 0.223848 0.010267 0.007488 +13 0.108096 0.223848 0.009680 0.007488 +12 0.288501 0.216928 0.010267 0.006807 +12 0.433265 0.217041 0.010560 0.007488 +12 0.641830 0.216587 0.009974 0.007034 +12 0.876503 0.216474 0.009974 0.007715 +12 0.731006 0.215907 0.009974 0.007034 +18 0.965532 0.214999 0.011440 0.007942 +18 0.239806 0.214091 0.011440 0.007488 +18 0.922118 0.213637 0.010267 0.007488 +12 0.832062 0.213637 0.009680 0.007488 +18 0.333382 0.213637 0.010854 0.007488 +18 0.784834 0.213410 0.010267 0.007488 +18 0.382517 0.213524 0.011147 0.007715 +18 0.189352 0.213410 0.011440 0.007488 +18 0.668671 0.210347 0.010267 0.007715 +12 0.408771 0.210120 0.010267 0.008169 +13 0.274714 0.151123 0.010267 0.005900 +13 0.131857 0.148514 0.012027 0.007488 +13 0.441038 0.147833 0.012027 0.007942 +13 0.200792 0.145337 0.011440 0.007488 +13 0.585362 0.143408 0.009680 0.005900 +13 0.488853 0.141479 0.005573 0.006127 +13 0.488853 0.117313 0.010267 0.007715 +12 0.924611 0.141366 0.005867 0.006354 +13 0.922998 0.107783 0.010267 0.007261 +13 0.563948 0.141139 0.007920 0.006354 +13 0.561308 0.125142 0.009680 0.007488 +13 0.346729 0.141026 0.010560 0.007488 +13 0.731593 0.140458 0.009974 0.007715 +13 0.512174 0.137509 0.009387 0.007715 +13 0.874010 0.137282 0.010854 0.008169 +13 0.250367 0.134899 0.012027 0.007942 +13 0.297595 0.134332 0.010267 0.007715 +13 0.658844 0.133764 0.011147 0.007942 +13 0.109856 0.132176 0.010267 0.007488 +13 0.155177 0.131722 0.010560 0.007488 +13 0.465092 0.130701 0.009680 0.006354 +13 0.415224 0.131042 0.009680 0.007034 +13 0.804341 0.130474 0.009387 0.007261 +13 0.178791 0.126617 0.010854 0.007261 +13 0.224259 0.125936 0.010267 0.007261 +13 0.944705 0.125709 0.009094 0.008169 +13 0.609416 0.124801 0.009680 0.007715 +13 0.319889 0.122646 0.010267 0.007942 +13 0.368877 0.122305 0.010854 0.007715 +13 0.756087 0.121852 0.009680 0.007715 +13 0.706512 0.121852 0.010267 0.007715 +13 0.850103 0.118675 0.008800 0.007261 +13 0.898651 0.118221 0.009680 0.008169 +13 0.535494 0.117654 0.010267 0.007942 +13 0.635084 0.113910 0.010560 0.006807 +13 0.680845 0.113910 0.009974 0.007261 +13 0.827369 0.110846 0.011440 0.007942 +13 0.780141 0.110052 0.009680 0.007715 +13 0.966706 0.108010 0.009680 0.007261 +11 0.213259 0.069095 0.010560 0.003857 +13 0.225873 0.031200 0.010560 0.006580 +13 0.202845 0.047651 0.009094 0.006354 +13 0.869170 0.047198 0.010560 0.006807 +13 0.497800 0.046857 0.009387 0.006580 +13 0.272074 0.044702 0.010267 0.008169 +13 0.646084 0.044021 0.012027 0.007715 +13 0.354796 0.044361 0.011440 0.008396 +13 0.575975 0.043907 0.011440 0.008396 +13 0.423585 0.040844 0.009974 0.006354 +13 0.801555 0.040277 0.010267 0.006580 +13 0.728513 0.040163 0.009094 0.006807 +13 0.948812 0.038348 0.009680 0.007715 +13 0.295541 0.038235 0.010267 0.007942 +13 0.252127 0.038235 0.011440 0.007942 +13 0.596803 0.037214 0.010854 0.007715 +13 0.549868 0.037214 0.010854 0.007715 +13 0.156057 0.034831 0.009974 0.007034 +13 0.402904 0.034491 0.010267 0.007261 +13 0.754327 0.033810 0.010267 0.006807 +13 0.445145 0.034264 0.011440 0.007715 +13 0.707686 0.033810 0.009680 0.007715 +13 0.177031 0.031087 0.011440 0.007715 +13 0.894397 0.030860 0.011734 0.007715 +13 0.468612 0.030520 0.011440 0.007488 +13 0.846729 0.030520 0.010854 0.007942 +13 0.526987 0.030406 0.012027 0.007715 +13 0.137284 0.027910 0.009974 0.006807 +13 0.325755 0.027910 0.012027 0.007261 +13 0.665591 0.027456 0.011147 0.006807 +13 0.379437 0.027683 0.011440 0.007261 +13 0.619097 0.027116 0.010854 0.006580 +13 0.822382 0.022010 0.009094 0.007261 +13 0.778967 0.022010 0.010267 0.007715 +13 0.967586 0.020195 0.009680 0.008623 +13 0.109563 0.019628 0.009094 0.007488 +13 0.917864 0.019174 0.011147 0.007034 +3 0.684218 0.336624 0.007920 0.021557 +3 0.564828 0.044134 0.009094 0.021557 +4 0.313142 0.027797 0.010267 0.020649 +4 0.792168 0.130815 0.011440 0.021557 +4 0.177031 0.213864 0.010267 0.021103 +3 0.741713 0.351827 0.007920 0.022010 +1 0.035201 0.045042 0.025227 0.050601 +4 0.402904 0.131268 0.010854 0.021103 +4 0.936492 0.037894 0.010854 0.021784 +3 0.211939 0.352621 0.006747 0.021784 +3 0.791874 0.434763 0.007920 0.021784 +3 0.815048 0.745292 0.006747 0.021557 +4 0.190672 0.047992 0.011147 0.020649 +4 0.633030 0.044134 0.011147 0.021557 +3 0.400851 0.446903 0.007334 0.021557 +3 0.804488 0.885069 0.007334 0.021557 +4 0.096363 0.543340 0.010267 0.022010 +1 0.036814 0.148741 0.024934 0.051055 +3 0.491786 0.471182 0.007334 0.021103 +3 0.707392 0.470955 0.007920 0.021557 +4 0.433412 0.540390 0.010854 0.020649 +1 0.035054 0.257204 0.025521 0.051055 +4 0.485480 0.047311 0.011734 0.021103 +4 0.127163 0.028251 0.013787 0.021103 +4 0.769874 0.214545 0.010854 0.021557 +3 0.413758 0.376106 0.007920 0.020649 +4 0.097829 0.131949 0.010854 0.021557 +4 0.341156 0.044588 0.010560 0.021557 +3 0.773101 0.361811 0.007334 0.021103 +5 0.428718 0.450306 0.009094 0.017472 +4 0.206072 0.920921 0.010854 0.021103 +4 0.392637 0.910710 0.010854 0.021557 +4 0.334262 0.141026 0.010854 0.021103 +3 0.613523 0.894826 0.007920 0.021103 +3 0.505280 0.901180 0.008507 0.022010 +4 0.843502 0.885069 0.010267 0.020649 +3 0.095483 0.772521 0.007334 0.021103 +3 0.096949 0.908441 0.008507 0.020649 +4 0.632004 0.928636 0.010854 0.020649 +4 0.559255 0.931359 0.010854 0.021557 +3 0.352156 0.909689 0.007334 0.021784 +5 0.460106 0.460744 0.009680 0.018380 +5 0.369463 0.436692 0.009094 0.017472 +5 0.725579 0.885069 0.009094 0.017472 +3 0.682752 0.890515 0.007920 0.022010 +5 0.270901 0.909803 0.009094 0.017472 +4 0.194925 0.570116 0.010267 0.021103 +4 0.442212 0.938393 0.011440 0.021557 +4 0.372837 0.941343 0.011734 0.021103 +3 0.250807 0.944747 0.007040 0.022010 +4 0.294515 0.945428 0.013494 0.022464 +4 0.188032 0.951101 0.010560 0.020649 +4 0.745527 0.920921 0.011440 0.021103 +3 0.705045 0.921375 0.007920 0.021103 +3 0.128043 0.326866 0.007920 0.021103 +1 0.033881 0.584184 0.024934 0.051509 +1 0.034468 0.693102 0.024347 0.051509 +1 0.035348 0.366122 0.025521 0.051055 +1 0.035641 0.476174 0.025521 0.051509 +3 0.254473 0.583730 0.007334 0.021557 +1 0.033881 0.801566 0.026107 0.050601 +3 0.767527 0.890288 0.007334 0.017018 +3 0.315195 0.914114 0.007334 0.021557 +1 0.036521 0.937032 0.024934 0.051055 +4 0.463626 0.907307 0.010854 0.022010 +3 0.160018 0.559905 0.007334 0.021557 +4 0.582136 0.898911 0.010854 0.022010 +4 0.485626 0.934763 0.011440 0.021557 +5 0.523174 0.474359 0.009094 0.017926 +4 0.129803 0.551509 0.010267 0.022010 +4 0.071575 0.471749 0.009974 0.020876 +4 0.061602 0.461425 0.009974 0.021557 +4 0.073042 0.253574 0.010560 0.020649 +4 0.063362 0.243136 0.009974 0.020649 +4 0.070109 0.798275 0.009974 0.020422 +4 0.060428 0.787838 0.010560 0.020876 +4 0.073335 0.145224 0.010560 0.020422 +4 0.063068 0.134786 0.009974 0.020876 +4 0.070402 0.933401 0.009974 0.021557 +4 0.060135 0.923077 0.010560 0.020876 +4 0.071575 0.362378 0.010560 0.020876 +4 0.062482 0.351713 0.009974 0.020876 +4 0.072749 0.041071 0.009974 0.020876 +4 0.063362 0.030973 0.009974 0.020195 +4 0.070695 0.688904 0.010560 0.020422 +4 0.061602 0.678693 0.009974 0.020422 +4 0.070695 0.579986 0.009974 0.021330 +4 0.061308 0.570229 0.009974 0.020422 +5 0.736873 0.450193 0.007627 0.015884 +5 0.738340 0.434763 0.008214 0.016791 +3 0.216192 0.590311 0.009387 0.021557 +4 0.224699 0.576923 0.009387 0.021557 +3 0.662951 0.689812 0.009387 0.019061 +3 0.629803 0.772408 0.009387 0.021330 +3 0.132297 0.446903 0.008800 0.021557 +3 0.132297 0.461652 0.008800 0.021557 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_6.jpg b/data_dataset/tch/debug/debug_6.jpg new file mode 100644 index 0000000..22d1482 Binary files /dev/null and b/data_dataset/tch/debug/debug_6.jpg differ diff --git a/data_dataset/tch/debug/debug_6.txt b/data_dataset/tch/debug/debug_6.txt new file mode 100644 index 0000000..15c1bbe --- /dev/null +++ b/data_dataset/tch/debug/debug_6.txt @@ -0,0 +1,719 @@ +10 0.580735 0.985341 0.015588 0.006136 +9 0.318382 0.963523 0.012059 0.043409 +10 0.156912 0.943977 0.012647 0.002500 +10 0.538971 0.937159 0.007353 0.006136 +9 0.798676 0.957386 0.010294 0.060227 +9 0.771618 0.954205 0.013824 0.039318 +7 0.687500 0.928750 0.006765 0.032955 +9 0.658676 0.933750 0.013824 0.047500 +10 0.667500 0.893977 0.009118 0.005227 +9 0.737500 0.898295 0.007941 0.029318 +10 0.267206 0.872841 0.009706 0.005682 +9 0.492500 0.873864 0.009706 0.030455 +9 0.320441 0.877841 0.011471 0.052045 +10 0.948382 0.851932 0.010882 0.005682 +10 0.224853 0.842159 0.007353 0.003409 +9 0.779559 0.857386 0.007353 0.047500 +9 0.461912 0.858182 0.007353 0.061818 +10 0.221912 0.802386 0.014412 0.004773 +10 0.592794 0.806023 0.017353 0.002955 +10 0.770147 0.786932 0.010882 0.004773 +10 0.634559 0.783750 0.011471 0.005682 +10 0.317500 0.768750 0.010294 0.004773 +10 0.497794 0.767841 0.008529 0.004773 +9 0.107794 0.786250 0.009706 0.059773 +10 0.274265 0.799886 0.016765 0.003409 +9 0.940735 0.776705 0.013235 0.047955 +9 0.776029 0.766250 0.006176 0.047045 +8 0.399853 0.748068 0.010294 0.025227 +7 0.448676 0.746477 0.013824 0.026591 +10 0.164559 0.686477 0.009118 0.002955 +9 0.434853 0.684773 0.010882 0.029545 +9 0.220735 0.691477 0.010882 0.043864 +9 0.193676 0.689432 0.010882 0.048864 +10 0.436618 0.672614 0.008529 0.003409 +10 0.222500 0.672614 0.008529 0.003409 +8 0.911912 0.652159 0.007353 0.033409 +10 0.794559 0.607614 0.009118 0.005227 +10 0.346912 0.600114 0.009118 0.004773 +10 0.449559 0.595114 0.008529 0.004773 +10 0.836618 0.583295 0.010882 0.006591 +9 0.439853 0.579091 0.007941 0.020909 +9 0.463382 0.577273 0.009118 0.024545 +9 0.270735 0.587614 0.008529 0.037955 +9 0.107500 0.588977 0.013824 0.066136 +9 0.421324 0.576932 0.009706 0.043864 +9 0.548676 0.586250 0.011471 0.071591 +10 0.436618 0.522386 0.008529 0.004773 +10 0.752794 0.508295 0.010294 0.005682 +9 0.282794 0.505000 0.009118 0.026364 +10 0.939265 0.501932 0.009118 0.002955 +10 0.892794 0.498523 0.010294 0.003409 +9 0.302206 0.504545 0.010294 0.027273 +9 0.322206 0.502614 0.011471 0.030682 +9 0.811912 0.492841 0.007353 0.023864 +10 0.177500 0.476705 0.012647 0.005227 +9 0.534559 0.468523 0.010294 0.027045 +7 0.592794 0.479205 0.012647 0.039318 +10 0.131618 0.432159 0.007941 0.003409 +10 0.112794 0.430568 0.010294 0.004773 +10 0.883971 0.426705 0.009118 0.003409 +7 0.549853 0.423977 0.011471 0.018864 +10 0.846912 0.419659 0.007941 0.004773 +9 0.248088 0.430114 0.010294 0.003409 +10 0.750441 0.407614 0.015000 0.005227 +10 0.172500 0.399659 0.007353 0.003864 +10 0.921029 0.418750 0.016176 0.003864 +9 0.673971 0.390795 0.010294 0.034318 +10 0.848088 0.348068 0.007941 0.002500 +10 0.471324 0.345795 0.007353 0.003409 +10 0.239853 0.338977 0.007941 0.002500 +10 0.717500 0.338523 0.007941 0.002500 +9 0.146324 0.324432 0.011471 0.028864 +10 0.915735 0.314432 0.007941 0.003409 +10 0.496029 0.343523 0.021471 0.003409 +7 0.628382 0.280000 0.009706 0.011818 +10 0.734853 0.248068 0.012059 0.004318 +10 0.141912 0.244886 0.012059 0.005227 +10 0.168382 0.244205 0.007353 0.004773 +10 0.823382 0.231023 0.010294 0.005682 +10 0.702794 0.245114 0.010294 0.005682 +10 0.343382 0.227614 0.007941 0.005227 +9 0.751912 0.229432 0.013235 0.041591 +9 0.810147 0.224091 0.010882 0.030000 +10 0.788676 0.216477 0.009118 0.005682 +10 0.293382 0.215341 0.007941 0.004318 +10 0.162500 0.214659 0.009706 0.003864 +9 0.885147 0.215114 0.012647 0.031136 +9 0.207500 0.217841 0.011471 0.045682 +9 0.677794 0.220795 0.013235 0.043409 +9 0.110441 0.217159 0.010294 0.048864 +10 0.640735 0.181705 0.009706 0.004318 +10 0.318088 0.133295 0.007941 0.003864 +10 0.361618 0.126932 0.007941 0.003864 +9 0.893971 0.136818 0.011471 0.036364 +7 0.737206 0.120341 0.014412 0.017045 +9 0.173382 0.129659 0.007941 0.041136 +7 0.808382 0.132841 0.014412 0.030227 +10 0.684559 0.108977 0.007941 0.002500 +10 0.579853 0.107614 0.019706 0.003409 +9 0.646324 0.125795 0.012647 0.030682 +10 0.613382 0.106477 0.046765 0.005682 +10 0.865147 0.061250 0.009118 0.003409 +10 0.758382 0.060795 0.020294 0.005227 +10 0.651912 0.057841 0.008529 0.003864 +10 0.572500 0.057727 0.013235 0.003636 +10 0.314559 0.056477 0.009118 0.002955 +10 0.162794 0.056364 0.012647 0.002727 +10 0.217500 0.056705 0.019706 0.005227 +10 0.603971 0.054886 0.009118 0.003409 +6 0.109853 0.054432 0.010294 0.010682 +10 0.408382 0.046023 0.008529 0.003864 +9 0.890441 0.050341 0.017353 0.033409 +9 0.538382 0.044886 0.007353 0.029773 +9 0.258088 0.043068 0.013824 0.033409 +12 0.243235 0.988182 0.010000 0.007727 +13 0.133971 0.988182 0.009706 0.008636 +13 0.736029 0.983068 0.010294 0.007500 +13 0.905735 0.982614 0.010882 0.007500 +13 0.793971 0.982159 0.010882 0.007500 +13 0.936324 0.975682 0.008529 0.014545 +13 0.106912 0.971705 0.009706 0.007045 +13 0.107500 0.963523 0.009706 0.005682 +13 0.165882 0.971477 0.010588 0.007045 +13 0.165735 0.961023 0.009706 0.006136 +13 0.339265 0.970682 0.010882 0.007273 +13 0.391618 0.970114 0.010882 0.007045 +13 0.961618 0.968864 0.010882 0.007273 +13 0.961618 0.976136 0.010882 0.007273 +13 0.714265 0.969091 0.011471 0.007727 +13 0.714559 0.952500 0.010882 0.006364 +13 0.681029 0.969091 0.010882 0.007727 +12 0.625882 0.969091 0.011176 0.007727 +13 0.771029 0.968636 0.012059 0.007727 +13 0.770441 0.952045 0.008529 0.006364 +13 0.444412 0.963182 0.011765 0.007727 +13 0.820147 0.961477 0.011471 0.007045 +13 0.820147 0.968523 0.011471 0.007045 +14 0.189559 0.961250 0.010294 0.006591 +14 0.189559 0.967841 0.010294 0.006591 +13 0.270000 0.961250 0.011176 0.007500 +13 0.269853 0.948295 0.010882 0.007045 +13 0.213676 0.964659 0.011471 0.007955 +12 0.223971 0.961023 0.011471 0.007955 +13 0.572941 0.959773 0.011176 0.007273 +13 0.849412 0.958523 0.010000 0.006591 +13 0.849412 0.965114 0.010000 0.006591 +13 0.289853 0.958182 0.011471 0.006818 +13 0.289412 0.948068 0.010000 0.007500 +13 0.489559 0.956591 0.011471 0.007273 +13 0.883529 0.955000 0.011176 0.006818 +13 0.883529 0.961818 0.011176 0.006818 +13 0.369412 0.953295 0.008824 0.006136 +13 0.369853 0.937045 0.010882 0.007273 +13 0.658676 0.952727 0.010882 0.006818 +13 0.658382 0.932614 0.010294 0.007500 +13 0.602647 0.952614 0.009412 0.006591 +12 0.603088 0.935909 0.011471 0.007727 +12 0.319265 0.947386 0.009706 0.006136 +12 0.319265 0.953523 0.009706 0.006136 +13 0.418088 0.947045 0.010882 0.007273 +13 0.417500 0.930341 0.010882 0.007500 +13 0.463676 0.939545 0.009118 0.007727 +13 0.463676 0.923750 0.009706 0.007045 +13 0.537794 0.939318 0.009118 0.008182 +13 0.537206 0.922614 0.010294 0.007500 +13 0.245147 0.898523 0.010294 0.008409 +13 0.136324 0.897500 0.009706 0.008182 +13 0.902206 0.890455 0.009706 0.007727 +11 0.744265 0.890227 0.010294 0.008182 +13 0.799412 0.889432 0.010000 0.007500 +13 0.171176 0.881705 0.011176 0.007500 +13 0.170882 0.871364 0.008235 0.006818 +13 0.396324 0.880682 0.010882 0.007273 +13 0.343676 0.880795 0.011471 0.007500 +13 0.932941 0.879318 0.011176 0.007273 +13 0.932941 0.886591 0.011176 0.007273 +12 0.720882 0.876818 0.010000 0.006364 +12 0.720588 0.859545 0.011176 0.007727 +13 0.961029 0.876364 0.009706 0.006818 +13 0.961029 0.883182 0.009706 0.006818 +13 0.773088 0.876136 0.010294 0.006364 +13 0.772794 0.859205 0.010882 0.007045 +12 0.690588 0.876477 0.009412 0.007045 +13 0.633382 0.876364 0.009706 0.006818 +13 0.214118 0.875000 0.011176 0.007727 +18 0.224853 0.870909 0.009118 0.006818 +13 0.107206 0.874318 0.010294 0.007273 +13 0.107206 0.881591 0.010294 0.007273 +13 0.442206 0.873977 0.009706 0.007500 +13 0.268824 0.870795 0.010000 0.005682 +13 0.268529 0.857045 0.009412 0.006364 +13 0.192500 0.871136 0.010294 0.006818 +13 0.192500 0.877955 0.010294 0.006818 +13 0.499853 0.870682 0.009706 0.006364 +13 0.829559 0.869205 0.010294 0.007045 +13 0.829559 0.876250 0.010294 0.007045 +13 0.291912 0.867614 0.011471 0.007500 +13 0.291324 0.857386 0.010294 0.007045 +13 0.577206 0.867273 0.011471 0.007727 +13 0.850441 0.866023 0.010882 0.007045 +13 0.850441 0.873068 0.010882 0.007045 +13 0.372500 0.863864 0.010294 0.006364 +13 0.372353 0.846705 0.011176 0.007500 +13 0.880735 0.862614 0.010294 0.006591 +13 0.880735 0.869205 0.010294 0.006591 +13 0.609853 0.860341 0.009706 0.007500 +13 0.610147 0.843409 0.010294 0.008182 +12 0.666324 0.859886 0.010882 0.007500 +13 0.665735 0.839886 0.010882 0.007500 +13 0.421765 0.857045 0.008824 0.006364 +13 0.422353 0.840455 0.011176 0.007727 +13 0.321912 0.857159 0.010294 0.006591 +13 0.321912 0.863750 0.010294 0.006591 +13 0.554412 0.853977 0.011176 0.007500 +13 0.554265 0.836136 0.011471 0.008182 +13 0.467500 0.849773 0.009706 0.008182 +13 0.467500 0.833295 0.009706 0.007045 +13 0.795882 0.798864 0.010000 0.008182 +11 0.741324 0.798750 0.009118 0.007955 +13 0.898676 0.798523 0.009706 0.008409 +11 0.164853 0.793523 0.009118 0.007500 +12 0.164706 0.780000 0.010000 0.006818 +11 0.141176 0.793409 0.009412 0.007273 +12 0.140735 0.780114 0.010294 0.007045 +13 0.444706 0.789318 0.011176 0.007273 +13 0.444265 0.778864 0.009118 0.006364 +13 0.397941 0.789205 0.010588 0.007045 +13 0.397647 0.779091 0.010000 0.006818 +13 0.338382 0.789318 0.011471 0.007273 +13 0.337500 0.778864 0.008529 0.005909 +13 0.931618 0.787841 0.010882 0.007045 +13 0.931618 0.794886 0.010882 0.007045 +13 0.586765 0.785227 0.009412 0.007273 +13 0.771324 0.784773 0.011471 0.007273 +13 0.771618 0.768182 0.010882 0.006818 +11 0.718676 0.784318 0.009706 0.006364 +12 0.718676 0.768409 0.010882 0.007273 +12 0.685147 0.785000 0.009706 0.007727 +13 0.633382 0.784773 0.010882 0.007273 +13 0.958382 0.784205 0.010294 0.007045 +13 0.958382 0.791250 0.010294 0.007045 +13 0.241176 0.779886 0.011176 0.006591 +11 0.110441 0.780000 0.009706 0.006818 +13 0.110735 0.763750 0.011471 0.007045 +13 0.818676 0.778068 0.009706 0.006591 +13 0.818676 0.784659 0.009706 0.006591 +13 0.842500 0.774545 0.010294 0.006818 +13 0.842500 0.781364 0.010294 0.006818 +13 0.876618 0.771136 0.010294 0.006364 +13 0.876618 0.777500 0.010294 0.006364 +13 0.555441 0.769318 0.010294 0.007273 +12 0.665441 0.768750 0.010294 0.007045 +12 0.665147 0.748523 0.010882 0.007500 +13 0.608382 0.768750 0.009118 0.007045 +12 0.608676 0.752386 0.010882 0.007955 +13 0.318971 0.766250 0.011471 0.006591 +13 0.498235 0.765909 0.011176 0.006818 +13 0.476324 0.763068 0.010882 0.007500 +13 0.293088 0.763295 0.011471 0.007955 +13 0.270441 0.760341 0.010882 0.007500 +12 0.194265 0.760455 0.011471 0.007727 +13 0.372941 0.759318 0.011176 0.007273 +13 0.217794 0.756818 0.010294 0.007727 +13 0.422500 0.755909 0.010294 0.007727 +18 0.138971 0.711705 0.010294 0.007500 +13 0.246765 0.698750 0.010588 0.007045 +13 0.845588 0.698295 0.011765 0.007045 +13 0.845147 0.681364 0.010882 0.006818 +13 0.796176 0.698409 0.010588 0.007273 +13 0.795735 0.681364 0.009706 0.006818 +13 0.905588 0.697727 0.011765 0.007727 +13 0.904559 0.681591 0.010882 0.006364 +13 0.281029 0.694886 0.009706 0.006136 +13 0.312500 0.692386 0.010294 0.007045 +11 0.163529 0.689318 0.010000 0.007273 +13 0.338382 0.688523 0.010294 0.006591 +13 0.690588 0.688409 0.010000 0.007273 +13 0.607647 0.688182 0.010000 0.006818 +13 0.607647 0.695000 0.010000 0.006818 +13 0.583382 0.688182 0.009706 0.006818 +13 0.583382 0.695000 0.009706 0.006818 +13 0.363971 0.685568 0.012059 0.007955 +13 0.387059 0.682273 0.011176 0.006818 +13 0.482794 0.681932 0.009706 0.007045 +13 0.458382 0.678977 0.010294 0.007500 +13 0.409853 0.678977 0.010882 0.007500 +13 0.436029 0.675341 0.010294 0.006591 +13 0.436029 0.681932 0.010294 0.006591 +11 0.222206 0.675455 0.009706 0.006818 +11 0.222206 0.682273 0.009706 0.006818 +13 0.504559 0.675227 0.009706 0.007273 +11 0.195735 0.671932 0.010882 0.007045 +17 0.195735 0.678977 0.010882 0.007045 +13 0.953676 0.668409 0.011471 0.007273 +13 0.764853 0.668523 0.011471 0.007500 +18 0.930735 0.665000 0.010294 0.006818 +13 0.740735 0.664886 0.010294 0.007500 +13 0.552206 0.664318 0.010882 0.007273 +13 0.634706 0.662727 0.010000 0.007727 +13 0.819853 0.661591 0.009706 0.006364 +13 0.715000 0.662500 0.009412 0.008182 +13 0.881029 0.658636 0.012059 0.007727 +13 0.667500 0.658182 0.010882 0.007727 +17 0.107794 0.652386 0.010294 0.007045 +13 0.573676 0.611023 0.010294 0.007045 +13 0.246324 0.610909 0.010882 0.006818 +13 0.137794 0.611023 0.011471 0.007045 +13 0.689412 0.604318 0.010000 0.006364 +13 0.362353 0.602273 0.006471 0.005909 +12 0.364118 0.571818 0.010000 0.007727 +13 0.714853 0.601250 0.010294 0.007500 +13 0.267794 0.601250 0.011471 0.007500 +13 0.164559 0.601023 0.009706 0.007045 +13 0.740000 0.597841 0.011176 0.007045 +11 0.600147 0.597727 0.011471 0.006818 +11 0.194853 0.597614 0.009118 0.007500 +11 0.194706 0.584318 0.011176 0.007273 +13 0.765000 0.594773 0.011765 0.007273 +13 0.290588 0.594659 0.011176 0.007955 +13 0.789559 0.591250 0.011471 0.007500 +13 0.912206 0.588068 0.010882 0.007500 +13 0.812647 0.588068 0.011765 0.007500 +13 0.321324 0.588068 0.011471 0.007500 +13 0.623382 0.587841 0.012059 0.007955 +13 0.220294 0.587386 0.011765 0.007045 +13 0.220294 0.594432 0.011765 0.007045 +13 0.836765 0.584659 0.009412 0.007045 +11 0.861618 0.581477 0.007353 0.005227 +13 0.936029 0.581705 0.011471 0.007500 +13 0.891029 0.581364 0.012059 0.007727 +13 0.656912 0.581023 0.010294 0.007045 +13 0.656912 0.588068 0.010294 0.007045 +11 0.871618 0.579091 0.007353 0.005000 +13 0.343088 0.578295 0.010294 0.007045 +13 0.447353 0.574773 0.011176 0.007273 +13 0.470735 0.571364 0.009118 0.008636 +13 0.496176 0.567159 0.010588 0.007500 +13 0.390147 0.565114 0.010294 0.007955 +13 0.107794 0.564432 0.010294 0.007500 +13 0.107794 0.571932 0.010294 0.007500 +13 0.423088 0.560682 0.010294 0.007273 +13 0.423088 0.567955 0.010294 0.007273 +12 0.550441 0.557727 0.009706 0.007727 +13 0.550441 0.565455 0.009706 0.007727 +12 0.960294 0.551591 0.010588 0.008182 +13 0.559559 0.534886 0.010294 0.008409 +13 0.675147 0.534318 0.010882 0.008182 +14 0.385882 0.517386 0.016471 0.008409 +14 0.407500 0.482955 0.010882 0.007273 +14 0.384853 0.486705 0.011471 0.007500 +13 0.584265 0.516591 0.011471 0.007273 +14 0.157059 0.516591 0.011176 0.007273 +13 0.701618 0.516023 0.010882 0.007955 +14 0.186618 0.512614 0.010294 0.006591 +14 0.213088 0.510114 0.011471 0.007045 +13 0.728971 0.509886 0.011471 0.007500 +13 0.612353 0.509886 0.011176 0.007500 +14 0.232794 0.506818 0.010882 0.006818 +13 0.753971 0.506364 0.010882 0.006818 +14 0.260441 0.503523 0.010882 0.007500 +13 0.778971 0.503182 0.011471 0.007727 +13 0.284559 0.500341 0.009706 0.007500 +13 0.804853 0.499886 0.011471 0.007500 +13 0.303824 0.496705 0.010588 0.007500 +13 0.828824 0.496477 0.011765 0.007955 +14 0.322794 0.493295 0.009706 0.007045 +12 0.108235 0.493295 0.010000 0.007045 +13 0.648088 0.492727 0.009706 0.006818 +13 0.648088 0.499545 0.009706 0.006818 +14 0.356912 0.489886 0.010882 0.007500 +14 0.426324 0.480341 0.009706 0.007500 +13 0.911765 0.477386 0.010000 0.007045 +14 0.455588 0.476477 0.010588 0.007045 +14 0.474853 0.473750 0.010294 0.007955 +12 0.850441 0.470795 0.007353 0.004773 +13 0.937500 0.470795 0.010882 0.007500 +13 0.890147 0.470795 0.011471 0.007500 +13 0.533676 0.470000 0.010294 0.006818 +13 0.533676 0.476818 0.010294 0.006818 +12 0.870588 0.466932 0.006471 0.005227 +18 0.960441 0.463636 0.010882 0.007727 +14 0.430735 0.425795 0.011471 0.007500 +14 0.410441 0.421818 0.010882 0.005909 +14 0.486618 0.419432 0.011471 0.007500 +13 0.597059 0.418750 0.013529 0.007045 +14 0.595000 0.389205 0.010588 0.007045 +14 0.387206 0.418977 0.011471 0.007500 +11 0.608088 0.416136 0.010882 0.007273 +13 0.619853 0.378864 0.010882 0.007273 +14 0.360441 0.415795 0.010882 0.006591 +14 0.249853 0.415909 0.009706 0.006818 +14 0.509559 0.412955 0.011471 0.007273 +14 0.341471 0.412614 0.011765 0.007500 +14 0.270882 0.412614 0.011765 0.007500 +14 0.233088 0.412614 0.011471 0.007500 +14 0.214853 0.409659 0.010294 0.007045 +14 0.323971 0.409205 0.010882 0.007045 +13 0.288529 0.409432 0.010588 0.007500 +14 0.305735 0.405909 0.010882 0.007727 +14 0.191029 0.405909 0.010882 0.007727 +14 0.108676 0.405909 0.010882 0.007727 +14 0.455294 0.402727 0.011176 0.006818 +14 0.541176 0.402614 0.010000 0.007500 +14 0.171324 0.402614 0.010294 0.007500 +13 0.129853 0.402614 0.009706 0.007500 +14 0.962647 0.400114 0.010588 0.007955 +13 0.156618 0.398977 0.011471 0.007500 +14 0.936471 0.396477 0.011176 0.007955 +14 0.573382 0.395909 0.010882 0.007727 +14 0.916912 0.392727 0.010882 0.007727 +14 0.807206 0.392727 0.010294 0.007727 +14 0.827059 0.390341 0.010588 0.007500 +14 0.900147 0.389886 0.010294 0.007500 +14 0.789853 0.390114 0.010882 0.007955 +14 0.846029 0.386705 0.010294 0.007500 +14 0.882206 0.386250 0.009706 0.007500 +14 0.773382 0.386250 0.010882 0.007500 +14 0.863235 0.383182 0.009412 0.007727 +14 0.744853 0.383068 0.009118 0.008409 +14 0.662500 0.381136 0.010294 0.008182 +14 0.681912 0.379432 0.010294 0.007500 +14 0.728088 0.379205 0.010882 0.007955 +14 0.708676 0.376250 0.010882 0.007500 +13 0.620441 0.329773 0.010882 0.007273 +13 0.620735 0.316364 0.009118 0.006818 +13 0.595882 0.329773 0.010000 0.007273 +13 0.595882 0.316364 0.010000 0.006818 +13 0.914559 0.327386 0.009706 0.007045 +11 0.913971 0.317273 0.009706 0.006818 +13 0.867059 0.327386 0.010588 0.007045 +12 0.867353 0.317386 0.011765 0.007045 +13 0.808382 0.326932 0.010294 0.007045 +13 0.808382 0.316932 0.011471 0.007045 +13 0.465441 0.326250 0.010294 0.007500 +12 0.464559 0.309773 0.009706 0.006364 +13 0.416029 0.326136 0.010294 0.007273 +13 0.415147 0.309773 0.009706 0.007273 +13 0.367353 0.326136 0.010000 0.007273 +13 0.366912 0.309545 0.009706 0.006818 +13 0.705441 0.316932 0.010294 0.007045 +13 0.572353 0.316705 0.011176 0.007500 +13 0.572500 0.299659 0.010294 0.007045 +13 0.254853 0.316250 0.011471 0.007500 +13 0.170588 0.315455 0.011176 0.006818 +13 0.170588 0.322273 0.011176 0.006818 +13 0.148382 0.315455 0.010294 0.006818 +13 0.148382 0.322273 0.010294 0.006818 +12 0.961765 0.304659 0.010000 0.007045 +12 0.784559 0.303295 0.009706 0.007955 +13 0.940147 0.300909 0.011471 0.007727 +13 0.761618 0.300341 0.012059 0.007500 +13 0.841618 0.297500 0.010882 0.007273 +13 0.738676 0.296932 0.009706 0.007045 +13 0.650882 0.296705 0.011765 0.007500 +12 0.515441 0.296477 0.011471 0.007045 +12 0.338088 0.296136 0.010882 0.007273 +13 0.894265 0.294205 0.009118 0.007045 +13 0.683824 0.293750 0.010000 0.007045 +13 0.489559 0.293295 0.010294 0.007045 +13 0.302647 0.292727 0.009412 0.006818 +13 0.109265 0.292727 0.009706 0.006818 +13 0.390147 0.290227 0.010294 0.007273 +13 0.282206 0.289545 0.009706 0.006818 +12 0.194853 0.289659 0.010294 0.007045 +13 0.442500 0.286250 0.010294 0.007500 +13 0.231912 0.285795 0.011471 0.007500 +13 0.591324 0.242159 0.011471 0.007500 +13 0.137500 0.230795 0.009706 0.007500 +13 0.702500 0.228068 0.011471 0.007500 +13 0.730441 0.224659 0.009706 0.007045 +13 0.242794 0.224318 0.009706 0.006364 +13 0.762206 0.221705 0.010882 0.007500 +13 0.269559 0.220909 0.011471 0.007727 +13 0.787941 0.217955 0.009412 0.006364 +13 0.617794 0.217841 0.011471 0.007045 +13 0.292647 0.217386 0.009412 0.007045 +13 0.160441 0.217386 0.010882 0.007045 +13 0.812500 0.215000 0.011471 0.007727 +13 0.318382 0.214091 0.011471 0.007727 +13 0.932059 0.212045 0.010588 0.007273 +13 0.836618 0.211932 0.010294 0.007045 +13 0.566912 0.211023 0.009706 0.006136 +13 0.566912 0.203864 0.009706 0.007273 +13 0.341912 0.211023 0.010294 0.007045 +13 0.910441 0.208977 0.012059 0.007500 +13 0.860441 0.208636 0.012059 0.007727 +13 0.463676 0.207614 0.011471 0.007500 +13 0.365147 0.207614 0.012059 0.007500 +13 0.186029 0.207273 0.011471 0.007727 +13 0.956324 0.205682 0.009706 0.007273 +13 0.885735 0.205114 0.009706 0.007045 +13 0.885735 0.212159 0.009706 0.007045 +13 0.678235 0.204432 0.010000 0.006591 +13 0.678235 0.211023 0.010000 0.006591 +13 0.388676 0.204318 0.010882 0.007273 +11 0.412353 0.200909 0.007647 0.005000 +13 0.648382 0.200682 0.011471 0.007273 +13 0.648382 0.207955 0.011471 0.007273 +13 0.486471 0.200909 0.011176 0.007727 +13 0.441618 0.200795 0.010882 0.007500 +13 0.209265 0.200568 0.009706 0.007045 +13 0.209265 0.207614 0.009706 0.007045 +12 0.112206 0.200114 0.009706 0.007045 +13 0.112206 0.207159 0.009706 0.007045 +11 0.423088 0.198409 0.006765 0.005455 +13 0.509559 0.193977 0.011471 0.007500 +13 0.585735 0.163864 0.009706 0.008182 +13 0.240000 0.162386 0.010000 0.007955 +14 0.138088 0.162500 0.010882 0.008182 +13 0.693676 0.149773 0.011471 0.007273 +13 0.718529 0.146705 0.011765 0.007500 +13 0.262206 0.145341 0.010882 0.007500 +13 0.166029 0.145000 0.011471 0.007727 +13 0.751029 0.143182 0.010882 0.006818 +13 0.775735 0.140568 0.010882 0.007045 +12 0.610735 0.139545 0.011471 0.007727 +13 0.284559 0.138864 0.010882 0.007273 +13 0.190735 0.138523 0.011471 0.007500 +13 0.914265 0.137841 0.010294 0.007045 +13 0.805882 0.136932 0.011176 0.007045 +13 0.645147 0.136477 0.010882 0.007045 +13 0.644412 0.122841 0.009412 0.007045 +13 0.316912 0.135909 0.009706 0.006818 +13 0.939706 0.134886 0.011765 0.007500 +13 0.830735 0.134091 0.011471 0.007727 +13 0.340882 0.132614 0.011765 0.007500 +13 0.960441 0.131591 0.010294 0.006364 +13 0.467059 0.129545 0.011176 0.006818 +13 0.360735 0.129432 0.009118 0.006591 +13 0.855882 0.127614 0.011765 0.007500 +13 0.671324 0.126477 0.010294 0.007045 +13 0.671324 0.133523 0.010294 0.007045 +13 0.562794 0.126023 0.010882 0.007045 +13 0.562794 0.133068 0.010882 0.007045 +13 0.385147 0.126023 0.010882 0.007955 +13 0.895147 0.124205 0.009706 0.007045 +13 0.895147 0.131250 0.009706 0.007045 +12 0.410147 0.122614 0.006765 0.004773 +13 0.490000 0.122841 0.010000 0.007045 +13 0.445588 0.122727 0.009412 0.006818 +13 0.112500 0.121932 0.010294 0.006136 +13 0.112500 0.128068 0.010294 0.006136 +13 0.216029 0.121932 0.010294 0.007045 +13 0.216029 0.128977 0.010294 0.007045 +18 0.428824 0.119432 0.007647 0.004773 +13 0.514853 0.116250 0.011471 0.007500 +11 0.471912 0.066136 0.005588 0.004545 +18 0.479853 0.042045 0.009706 0.007273 +11 0.398971 0.065341 0.007941 0.006136 +18 0.408088 0.048864 0.009706 0.007273 +12 0.464559 0.063636 0.007353 0.004091 +12 0.434853 0.051932 0.010294 0.007955 +18 0.448676 0.048636 0.009706 0.006818 +18 0.952206 0.047614 0.010882 0.007500 +18 0.465147 0.045455 0.010882 0.007727 +18 0.920147 0.043864 0.010294 0.007273 +18 0.392500 0.042045 0.010294 0.007273 +18 0.888971 0.040455 0.011471 0.007727 +18 0.726471 0.039545 0.011765 0.007727 +18 0.626912 0.039432 0.010882 0.007500 +12 0.674265 0.037500 0.006765 0.005455 +18 0.503971 0.038068 0.010882 0.007500 +18 0.351324 0.037955 0.010294 0.007273 +12 0.283971 0.037727 0.009706 0.007727 +12 0.856765 0.037273 0.009412 0.007727 +18 0.749559 0.036364 0.011471 0.007727 +12 0.702206 0.036136 0.010882 0.007273 +18 0.649559 0.036364 0.010294 0.007727 +18 0.596176 0.036023 0.009412 0.007045 +12 0.542206 0.036136 0.009706 0.008182 +11 0.313971 0.034205 0.007353 0.005227 +18 0.367500 0.034318 0.010294 0.007273 +12 0.685441 0.032841 0.007941 0.005227 +12 0.299853 0.034205 0.009706 0.007955 +12 0.257941 0.033977 0.008824 0.007500 +18 0.833235 0.033295 0.009412 0.007045 +18 0.783088 0.033523 0.010294 0.007500 +11 0.579559 0.032386 0.007941 0.005227 +12 0.337206 0.033864 0.010294 0.008182 +18 0.208971 0.033636 0.010294 0.007727 +11 0.323971 0.031023 0.007353 0.005227 +11 0.242500 0.030455 0.007941 0.005000 +18 0.807647 0.030227 0.010588 0.007273 +1 0.046618 0.057386 0.024412 0.050682 +3 0.907794 0.044205 0.007941 0.020682 +3 0.726912 0.296932 0.007353 0.019773 +3 0.217500 0.286250 0.007353 0.021136 +4 0.270441 0.037159 0.010882 0.021136 +3 0.100441 0.200114 0.007353 0.020682 +3 0.767206 0.033295 0.007941 0.020682 +3 0.938971 0.047159 0.007941 0.021136 +3 0.420147 0.119205 0.005588 0.014318 +3 0.695735 0.376250 0.007353 0.021136 +3 0.491324 0.037386 0.007941 0.022500 +4 0.631324 0.136250 0.010294 0.020227 +4 0.827794 0.297841 0.010294 0.020682 +3 0.273088 0.499886 0.007941 0.021136 +3 0.569559 0.032159 0.005588 0.014773 +3 0.144559 0.399205 0.007353 0.020682 +3 0.519559 0.478523 0.006765 0.016591 +3 0.559853 0.299659 0.007353 0.020682 +3 0.323676 0.296250 0.007941 0.020227 +3 0.441912 0.475795 0.007941 0.021136 +3 0.203676 0.408750 0.007941 0.021591 +3 0.875147 0.041023 0.007353 0.021591 +4 0.758676 0.768068 0.010882 0.020227 +1 0.039559 0.776477 0.024412 0.050682 +3 0.678382 0.604205 0.007941 0.020682 +4 0.421618 0.051932 0.010882 0.021591 +4 0.611912 0.039886 0.010294 0.021136 +3 0.951618 0.399886 0.007353 0.021136 +3 0.794265 0.137159 0.007941 0.019318 +4 0.408382 0.567841 0.010294 0.021591 +1 0.039853 0.867841 0.025000 0.051591 +3 0.356029 0.309432 0.007941 0.020227 +4 0.748971 0.221250 0.010294 0.021136 +1 0.046324 0.127159 0.025000 0.043864 +4 0.718382 0.224659 0.010294 0.020682 +3 0.096618 0.763523 0.007941 0.021136 +3 0.183676 0.672159 0.006765 0.021136 +4 0.355147 0.937159 0.010882 0.021136 +4 0.378088 0.042159 0.010882 0.021136 +4 0.371324 0.486705 0.010294 0.020227 +3 0.464559 0.762614 0.007353 0.021136 +3 0.231029 0.223977 0.008529 0.020227 +3 0.136324 0.322386 0.007353 0.020682 +4 0.538971 0.837841 0.011471 0.020682 +3 0.650441 0.747841 0.007353 0.020682 +3 0.866912 0.658068 0.007353 0.021136 +3 0.572500 0.694659 0.007941 0.020682 +3 0.784265 0.681477 0.007941 0.020682 +4 0.473676 0.419432 0.010294 0.021136 +5 0.644853 0.928523 0.009118 0.017500 +4 0.359853 0.759205 0.010882 0.020682 +4 0.949559 0.882614 0.010294 0.021136 +4 0.158676 0.871250 0.010882 0.021136 +4 0.181324 0.760795 0.010294 0.021136 +3 0.761029 0.386705 0.007353 0.021136 +4 0.487500 0.870568 0.010882 0.020682 +4 0.300441 0.691705 0.010882 0.021136 +4 0.596618 0.859659 0.010294 0.019773 +4 0.542500 0.768977 0.010294 0.021136 +4 0.738088 0.143523 0.010882 0.021136 +3 0.643971 0.580795 0.007353 0.021136 +4 0.758088 0.952159 0.010882 0.020227 +3 0.702500 0.951932 0.007941 0.019773 +3 0.652206 0.840114 0.007353 0.020682 +3 0.708676 0.859205 0.007353 0.020682 +3 0.258382 0.760341 0.007941 0.021136 +4 0.153382 0.961477 0.010882 0.020682 +3 0.636029 0.199432 0.007941 0.023864 +1 0.039853 0.958750 0.025000 0.051591 +4 0.916618 0.794432 0.010294 0.021136 +4 0.182500 0.597386 0.010294 0.020682 +3 0.561029 0.959432 0.007353 0.020227 +4 0.574853 0.785568 0.010294 0.020682 +3 0.705441 0.768295 0.007941 0.020682 +3 0.838676 0.965341 0.007353 0.020227 +4 0.760147 0.858977 0.011471 0.021136 +3 0.653382 0.658295 0.007353 0.021591 +1 0.041029 0.594205 0.025000 0.050682 +3 0.588676 0.936932 0.007353 0.020682 +1 0.040441 0.685568 0.025000 0.050682 +1 0.042500 0.409205 0.024412 0.044318 +4 0.356618 0.847386 0.011471 0.020682 +4 0.269265 0.695341 0.010882 0.021136 +4 0.561029 0.396477 0.010882 0.020682 +4 0.636912 0.296932 0.010882 0.020682 +4 0.919559 0.886477 0.010294 0.020682 +4 0.343088 0.489659 0.010294 0.020682 +3 0.862500 0.467386 0.005588 0.014318 +5 0.872500 0.951932 0.009118 0.017045 +4 0.174412 0.512727 0.010000 0.020000 +4 0.200588 0.509773 0.009412 0.020455 +3 0.399118 0.422045 0.006471 0.019545 +3 0.375588 0.418864 0.006471 0.020455 +4 0.075882 0.590909 0.010588 0.020909 +4 0.066471 0.580682 0.010588 0.020455 +4 0.075588 0.408636 0.010000 0.020909 +4 0.066765 0.398636 0.010000 0.020909 +4 0.074706 0.682273 0.009412 0.020909 +4 0.065294 0.671818 0.009412 0.020000 +4 0.078824 0.128182 0.009412 0.020000 +4 0.070294 0.117955 0.010000 0.020455 +4 0.075882 0.309091 0.010588 0.020000 +4 0.067353 0.298864 0.010000 0.020455 +4 0.075882 0.500000 0.010588 0.020000 +4 0.066765 0.489773 0.010000 0.020455 +4 0.074412 0.864318 0.010000 0.020455 +4 0.065588 0.854091 0.010000 0.020909 +3 0.101176 0.128182 0.007059 0.020000 +4 0.035735 0.313750 0.007941 0.020682 +4 0.043676 0.309659 0.007941 0.020682 +4 0.051471 0.297614 0.007647 0.020682 +3 0.536618 0.557614 0.007941 0.020682 +4 0.944265 0.790455 0.007941 0.020455 +3 0.952206 0.790455 0.007941 0.020455 +4 0.880147 0.130909 0.007941 0.020455 +3 0.887794 0.130909 0.007941 0.020455 +3 0.924853 0.977727 0.007941 0.020455 +3 0.864853 0.770909 0.007941 0.020455 +3 0.818382 0.869091 0.007941 0.020455 +3 0.636029 0.499205 0.007941 0.020682 +3 0.870147 0.862727 0.007941 0.019545 +4 0.070147 0.043750 0.007941 0.020682 +4 0.082059 0.054205 0.007647 0.020682 +4 0.036618 0.215568 0.007941 0.020682 +4 0.044559 0.211932 0.007941 0.020682 +3 0.052647 0.198750 0.007647 0.020682 +4 0.553088 0.210568 0.007941 0.020682 +3 0.559559 0.210568 0.007941 0.020682 +4 0.041029 0.491023 0.007941 0.020682 +3 0.048529 0.488295 0.007647 0.020682 +4 0.067206 0.199659 0.007941 0.020682 +4 0.078529 0.208295 0.007647 0.020682 +4 0.064265 0.763295 0.007941 0.020682 +4 0.076176 0.773295 0.007647 0.020682 +4 0.064265 0.944659 0.007941 0.020682 +4 0.076176 0.955114 0.007647 0.020682 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_7.jpg b/data_dataset/tch/debug/debug_7.jpg new file mode 100644 index 0000000..fa4bce9 Binary files /dev/null and b/data_dataset/tch/debug/debug_7.jpg differ diff --git a/data_dataset/tch/debug/debug_7.txt b/data_dataset/tch/debug/debug_7.txt new file mode 100644 index 0000000..d275ea6 --- /dev/null +++ b/data_dataset/tch/debug/debug_7.txt @@ -0,0 +1,676 @@ +10 0.855441 0.954886 0.021471 0.005227 +7 0.403088 0.956250 0.013235 0.017045 +9 0.240735 0.935682 0.013235 0.042273 +7 0.772206 0.921250 0.010294 0.034318 +10 0.817206 0.863523 0.007353 0.003409 +9 0.780441 0.863523 0.007941 0.032500 +7 0.679265 0.848977 0.012647 0.017045 +9 0.246029 0.851250 0.010882 0.059773 +9 0.917794 0.830682 0.006176 0.027727 +10 0.174559 0.813750 0.009118 0.003864 +9 0.167500 0.828295 0.009118 0.045682 +9 0.145147 0.825341 0.016176 0.051591 +9 0.409559 0.803523 0.009706 0.027955 +9 0.422500 0.805568 0.006176 0.044773 +8 0.461618 0.796023 0.010294 0.032955 +10 0.108382 0.758977 0.007353 0.006136 +10 0.323676 0.739205 0.008529 0.006591 +10 0.844853 0.721250 0.007353 0.005227 +9 0.671618 0.732159 0.009118 0.039773 +9 0.834853 0.744205 0.012059 0.075682 +10 0.783382 0.709886 0.026765 0.006136 +8 0.704853 0.721477 0.010882 0.035682 +10 0.738676 0.707614 0.007941 0.003409 +9 0.764265 0.723068 0.009706 0.046136 +9 0.407500 0.737386 0.015000 0.085682 +10 0.137500 0.656023 0.007941 0.004773 +10 0.124559 0.652159 0.007941 0.004318 +10 0.740735 0.630341 0.007353 0.005227 +9 0.421029 0.641250 0.005588 0.039773 +8 0.146912 0.640795 0.010294 0.038864 +10 0.156324 0.625114 0.011471 0.003864 +9 0.826324 0.634205 0.006765 0.059318 +9 0.624853 0.638523 0.006176 0.047955 +10 0.876029 0.608750 0.007353 0.004773 +10 0.634853 0.609205 0.009706 0.005682 +10 0.647206 0.607841 0.007353 0.004773 +9 0.803971 0.628523 0.009118 0.056136 +9 0.663676 0.623750 0.014412 0.045682 +10 0.686912 0.602614 0.009118 0.003409 +9 0.785735 0.621705 0.012647 0.049773 +10 0.735147 0.593523 0.010294 0.004318 +9 0.826618 0.564886 0.013235 0.037045 +10 0.474853 0.553068 0.008529 0.005227 +9 0.851912 0.558750 0.009706 0.032045 +7 0.499265 0.534886 0.012647 0.016136 +6 0.443971 0.533295 0.012647 0.024773 +6 0.366324 0.503523 0.011471 0.025227 +9 0.719559 0.511477 0.010882 0.050227 +7 0.961618 0.434659 0.012647 0.018409 +7 0.742794 0.434205 0.012647 0.017500 +7 0.488676 0.433523 0.012647 0.016136 +7 0.404265 0.433750 0.012059 0.016591 +7 0.360735 0.430795 0.012059 0.022500 +7 0.267500 0.434432 0.012647 0.017045 +7 0.693676 0.433977 0.013235 0.017045 +7 0.658382 0.440568 0.012059 0.030227 +7 0.223676 0.433977 0.012059 0.017045 +7 0.181324 0.433977 0.012059 0.017045 +7 0.136912 0.433977 0.012647 0.017045 +7 0.449853 0.433523 0.012647 0.017045 +10 0.524853 0.428750 0.014412 0.006591 +6 0.846324 0.404659 0.010294 0.023864 +9 0.788382 0.410795 0.009706 0.050682 +7 0.242500 0.394886 0.008529 0.027045 +10 0.113088 0.383523 0.008529 0.005227 +10 0.698676 0.354659 0.015000 0.006591 +10 0.474853 0.343750 0.013235 0.006591 +7 0.422794 0.345568 0.012647 0.016591 +6 0.445735 0.343750 0.012647 0.024773 +10 0.780441 0.283068 0.009118 0.003409 +10 0.441618 0.272386 0.016176 0.004773 +9 0.797500 0.267614 0.015000 0.026136 +10 0.367794 0.256250 0.007353 0.003409 +10 0.217500 0.254886 0.007941 0.004318 +6 0.831618 0.230114 0.006765 0.012045 +9 0.434853 0.238523 0.012059 0.063409 +9 0.565441 0.241477 0.010882 0.085682 +10 0.791618 0.183750 0.011471 0.005682 +10 0.753382 0.139886 0.007941 0.003409 +9 0.320735 0.154886 0.012059 0.048864 +10 0.169265 0.136023 0.007941 0.005682 +9 0.827500 0.154432 0.016176 0.063409 +10 0.671029 0.131250 0.011471 0.005227 +10 0.686912 0.130114 0.009118 0.005682 +9 0.881029 0.149205 0.010294 0.063864 +9 0.231324 0.145568 0.010882 0.054773 +7 0.253971 0.133295 0.012647 0.032955 +10 0.459265 0.093750 0.011471 0.005682 +10 0.589853 0.082386 0.009118 0.004773 +10 0.943971 0.053295 0.011471 0.004773 +9 0.327794 0.062841 0.010882 0.048409 +9 0.907206 0.066023 0.010882 0.054773 +9 0.774559 0.055114 0.009118 0.047500 +9 0.426618 0.055114 0.010882 0.063864 +10 0.670441 0.020341 0.007941 0.003409 +9 0.661029 0.037159 0.010294 0.047045 +9 0.549265 0.045455 0.005588 0.070000 +11 0.679853 0.986705 0.009706 0.007955 +12 0.486765 0.983068 0.010000 0.007500 +12 0.486618 0.958864 0.009118 0.006364 +12 0.486618 0.965227 0.009118 0.006364 +13 0.716324 0.979773 0.007353 0.006364 +17 0.153088 0.972273 0.007941 0.005909 +12 0.727206 0.969886 0.006765 0.004773 +17 0.164559 0.965568 0.007353 0.005227 +12 0.745588 0.963182 0.007059 0.005000 +11 0.436618 0.959773 0.007941 0.006364 +11 0.436912 0.942614 0.009706 0.007500 +17 0.436471 0.926477 0.010000 0.007045 +12 0.373088 0.959432 0.009118 0.006591 +12 0.373088 0.942955 0.010294 0.007273 +17 0.372941 0.926364 0.011176 0.006818 +12 0.173971 0.959091 0.007353 0.005909 +11 0.108088 0.959432 0.009706 0.006591 +11 0.108088 0.966023 0.009706 0.006591 +12 0.755882 0.956477 0.007647 0.005227 +18 0.907647 0.956818 0.008824 0.006364 +17 0.907206 0.923636 0.012647 0.007727 +17 0.184853 0.949659 0.007941 0.005227 +12 0.766618 0.946136 0.007941 0.006364 +17 0.195882 0.943068 0.007647 0.004773 +12 0.782794 0.940568 0.007353 0.005227 +17 0.206618 0.936364 0.006765 0.005000 +13 0.793676 0.934545 0.007941 0.005909 +13 0.600441 0.929432 0.010882 0.007500 +12 0.551618 0.927273 0.007353 0.005909 +11 0.217941 0.926250 0.007059 0.004773 +13 0.623971 0.926364 0.010882 0.006818 +13 0.579559 0.926477 0.010294 0.007045 +12 0.526912 0.925227 0.009706 0.007273 +13 0.806765 0.923409 0.007647 0.005455 +11 0.563824 0.922500 0.007647 0.005455 +12 0.240735 0.920227 0.009118 0.007273 +13 0.646618 0.919659 0.010294 0.007045 +18 0.841029 0.917045 0.009706 0.007273 +18 0.272206 0.913068 0.010882 0.007500 +18 0.874559 0.909545 0.010882 0.007727 +18 0.302206 0.903068 0.012059 0.007500 +17 0.720147 0.880568 0.010294 0.007955 +11 0.720588 0.852500 0.011176 0.006364 +11 0.720294 0.839091 0.010588 0.005909 +12 0.720588 0.822386 0.008824 0.007045 +17 0.639853 0.881023 0.009706 0.008864 +11 0.640735 0.852727 0.010294 0.006818 +12 0.640441 0.838864 0.009706 0.006364 +12 0.641324 0.822386 0.010294 0.007045 +14 0.262794 0.880795 0.010882 0.008409 +13 0.281618 0.876250 0.010882 0.007500 +14 0.243088 0.875795 0.011471 0.007500 +14 0.221912 0.870341 0.010294 0.007500 +14 0.303382 0.869205 0.010882 0.007045 +14 0.323676 0.862955 0.011471 0.007273 +14 0.203676 0.863182 0.011471 0.007727 +18 0.774853 0.856136 0.009118 0.007273 +12 0.786912 0.852500 0.009706 0.006364 +14 0.343676 0.852500 0.010294 0.006364 +14 0.183382 0.852614 0.010882 0.006591 +14 0.362500 0.846477 0.011471 0.007045 +14 0.161324 0.846705 0.011471 0.007500 +14 0.143382 0.840114 0.010882 0.007045 +14 0.381324 0.839773 0.010294 0.007273 +14 0.123971 0.830227 0.010882 0.007273 +14 0.402206 0.829432 0.012059 0.007500 +17 0.560147 0.828977 0.011471 0.007500 +13 0.904118 0.827273 0.009412 0.007727 +11 0.852500 0.822841 0.006765 0.005227 +14 0.107206 0.823523 0.011471 0.007500 +13 0.882794 0.822955 0.009118 0.007273 +12 0.828971 0.823068 0.011471 0.007500 +14 0.418382 0.822841 0.010294 0.007045 +13 0.923382 0.822841 0.009706 0.007955 +11 0.864559 0.820455 0.006176 0.005000 +13 0.946912 0.816705 0.009706 0.007500 +14 0.439853 0.816250 0.010882 0.007500 +18 0.558529 0.806932 0.009412 0.006136 +14 0.459118 0.806591 0.010588 0.007273 +18 0.489853 0.799318 0.010882 0.007273 +12 0.521324 0.793295 0.010294 0.007955 +14 0.832500 0.777045 0.010294 0.007727 +13 0.183676 0.775455 0.005588 0.004545 +13 0.185441 0.746818 0.010294 0.006818 +14 0.595735 0.775227 0.010882 0.008182 +12 0.169853 0.772614 0.009118 0.007500 +12 0.167206 0.740455 0.009118 0.006818 +14 0.851912 0.771705 0.010294 0.007500 +14 0.614706 0.771364 0.010588 0.007727 +12 0.243382 0.770000 0.009706 0.007727 +13 0.870147 0.765000 0.010294 0.007727 +14 0.813676 0.764205 0.011471 0.007955 +14 0.632500 0.764205 0.010294 0.007955 +11 0.263382 0.763295 0.010882 0.007955 +11 0.224265 0.762841 0.011471 0.007955 +14 0.888235 0.758182 0.011176 0.007727 +14 0.795882 0.757614 0.011765 0.007500 +14 0.650294 0.757045 0.011176 0.006364 +11 0.283529 0.757273 0.011176 0.007727 +12 0.203971 0.756818 0.010882 0.007727 +13 0.905441 0.748068 0.011471 0.005682 +14 0.777794 0.747500 0.011471 0.006364 +14 0.668971 0.747386 0.011471 0.007045 +11 0.302206 0.746932 0.009706 0.007955 +13 0.923088 0.741818 0.010294 0.006818 +14 0.760588 0.740909 0.010588 0.006818 +14 0.686324 0.741023 0.010882 0.007045 +11 0.322794 0.740682 0.009706 0.007273 +14 0.942059 0.735114 0.010588 0.007045 +14 0.743088 0.734432 0.010294 0.007500 +14 0.703088 0.734091 0.010294 0.007727 +12 0.340735 0.733864 0.010294 0.007273 +13 0.149559 0.733750 0.011471 0.007045 +14 0.956618 0.724886 0.010294 0.007500 +14 0.725441 0.723523 0.010294 0.007500 +14 0.358382 0.723636 0.010294 0.007727 +14 0.127206 0.723295 0.010294 0.007955 +17 0.519265 0.722727 0.010882 0.007727 +13 0.377794 0.716818 0.011471 0.007727 +14 0.107647 0.716250 0.011176 0.007500 +13 0.396765 0.709886 0.010588 0.007500 +18 0.517206 0.701477 0.009118 0.006136 +12 0.417206 0.700114 0.010294 0.007045 +18 0.443529 0.693636 0.010588 0.007727 +12 0.476912 0.687727 0.009706 0.007727 +12 0.567206 0.667841 0.010294 0.007955 +12 0.293971 0.667159 0.009706 0.008409 +14 0.840147 0.665682 0.010294 0.007273 +14 0.598824 0.664545 0.011176 0.007727 +12 0.324118 0.663636 0.011176 0.007727 +13 0.859559 0.658523 0.010294 0.007500 +14 0.820147 0.658523 0.010294 0.007500 +14 0.619853 0.657614 0.009706 0.007500 +12 0.500441 0.653977 0.009706 0.007500 +12 0.500441 0.661477 0.009706 0.007500 +12 0.500294 0.640000 0.008235 0.005000 +12 0.226912 0.653636 0.009706 0.006818 +12 0.226912 0.660455 0.009706 0.006818 +12 0.227500 0.640000 0.009706 0.005909 +12 0.880147 0.652045 0.010294 0.007273 +14 0.800147 0.651705 0.011471 0.007500 +13 0.638676 0.651136 0.010882 0.007273 +12 0.529265 0.651023 0.009706 0.007045 +12 0.529265 0.658068 0.009706 0.007045 +12 0.528971 0.640682 0.009118 0.006364 +12 0.259559 0.650341 0.011471 0.006591 +12 0.259559 0.656932 0.011471 0.006591 +12 0.259559 0.640000 0.009118 0.005909 +13 0.899853 0.642045 0.010882 0.006364 +14 0.780294 0.641705 0.011176 0.006591 +14 0.659853 0.641023 0.010882 0.006136 +12 0.426765 0.637386 0.010000 0.007045 +12 0.426618 0.627273 0.010294 0.007727 +12 0.155000 0.637273 0.010000 0.006818 +12 0.154559 0.627045 0.009706 0.007273 +13 0.919265 0.635455 0.010882 0.006818 +14 0.759265 0.634886 0.010882 0.006591 +14 0.677794 0.634886 0.011471 0.007500 +12 0.459853 0.633182 0.010882 0.006364 +12 0.459265 0.626591 0.009706 0.005455 +14 0.939118 0.629091 0.011765 0.006818 +14 0.738971 0.628182 0.011471 0.006818 +14 0.698529 0.628523 0.011765 0.007500 +12 0.185000 0.627045 0.010588 0.006364 +12 0.185000 0.633409 0.010588 0.006364 +14 0.957206 0.618977 0.010294 0.007500 +14 0.719559 0.618636 0.011471 0.007727 +18 0.361324 0.597273 0.011471 0.007727 +12 0.393382 0.594205 0.009706 0.007500 +12 0.107941 0.593636 0.010000 0.007727 +11 0.888382 0.566818 0.010294 0.007727 +11 0.151912 0.564773 0.009118 0.004545 +12 0.159706 0.548636 0.007059 0.005000 +17 0.476912 0.565568 0.010882 0.007955 +17 0.476765 0.551364 0.010588 0.006818 +12 0.477206 0.535227 0.010294 0.007273 +12 0.476029 0.524545 0.009118 0.005909 +12 0.445588 0.565341 0.010588 0.008409 +12 0.924118 0.563409 0.011176 0.007273 +13 0.176471 0.560455 0.007647 0.003636 +13 0.174559 0.538182 0.007353 0.005909 +11 0.521618 0.562159 0.010882 0.007500 +11 0.108382 0.561705 0.011471 0.007500 +12 0.146176 0.554886 0.007059 0.004773 +11 0.563382 0.554545 0.007353 0.005000 +11 0.575882 0.548409 0.007647 0.005455 +12 0.853971 0.548409 0.010882 0.007273 +17 0.853971 0.555682 0.010882 0.007273 +11 0.407794 0.548409 0.011471 0.007273 +18 0.407500 0.565227 0.010882 0.008182 +17 0.826912 0.539318 0.012059 0.007273 +12 0.827206 0.552159 0.011471 0.007500 +18 0.827206 0.559659 0.011471 0.007500 +12 0.588382 0.538295 0.007941 0.006136 +11 0.758382 0.535795 0.011471 0.007500 +17 0.759265 0.525795 0.012059 0.007500 +11 0.367500 0.535227 0.011471 0.007273 +12 0.189706 0.532727 0.007059 0.005000 +11 0.782500 0.532500 0.010294 0.006364 +12 0.601618 0.531250 0.007353 0.005682 +12 0.204853 0.526136 0.006765 0.005455 +12 0.614706 0.525682 0.007647 0.005455 +12 0.216618 0.515455 0.007941 0.005000 +12 0.629853 0.515227 0.007353 0.005455 +12 0.644559 0.509091 0.007353 0.005000 +12 0.228971 0.508750 0.007941 0.005227 +11 0.329853 0.508068 0.009706 0.007500 +11 0.329265 0.538409 0.009706 0.006364 +13 0.660882 0.501932 0.007647 0.005227 +13 0.243382 0.501932 0.007353 0.005227 +18 0.956029 0.496705 0.011471 0.007500 +18 0.276176 0.496023 0.011176 0.007045 +18 0.692059 0.495795 0.010588 0.007500 +18 0.300735 0.492841 0.010294 0.007045 +12 0.721618 0.492500 0.009706 0.008182 +17 0.942794 0.466023 0.010882 0.007045 +17 0.942059 0.451136 0.009412 0.007273 +12 0.942353 0.435000 0.011176 0.006818 +13 0.942059 0.424886 0.009412 0.005682 +12 0.907500 0.465227 0.009706 0.008182 +17 0.379853 0.461364 0.010882 0.006818 +12 0.379853 0.446818 0.010882 0.007727 +12 0.379118 0.430114 0.009412 0.007045 +17 0.468382 0.461023 0.010294 0.007045 +17 0.468088 0.447045 0.010882 0.007273 +11 0.467794 0.430227 0.010294 0.007273 +12 0.468088 0.412614 0.009706 0.007500 +12 0.619559 0.460795 0.010294 0.007500 +12 0.619853 0.446932 0.010882 0.007955 +12 0.619412 0.430000 0.010000 0.006818 +12 0.618971 0.413409 0.009118 0.007273 +12 0.600882 0.460909 0.011176 0.007727 +12 0.600588 0.447159 0.011176 0.007500 +12 0.600588 0.436818 0.010588 0.006818 +12 0.600588 0.423295 0.011176 0.007045 +12 0.581324 0.460795 0.010294 0.007500 +12 0.581618 0.446932 0.010882 0.007955 +12 0.581471 0.430114 0.010588 0.007045 +12 0.561912 0.460795 0.010294 0.007500 +12 0.561912 0.447045 0.010294 0.007273 +12 0.561471 0.436250 0.009412 0.006591 +12 0.337500 0.460455 0.010882 0.006818 +12 0.337206 0.447386 0.011471 0.007045 +12 0.337206 0.437045 0.010294 0.007273 +12 0.244853 0.460682 0.010294 0.007273 +12 0.244706 0.447159 0.010000 0.007500 +12 0.244853 0.430455 0.010294 0.006818 +12 0.244559 0.413068 0.008529 0.007500 +17 0.201324 0.460682 0.010294 0.007273 +11 0.201471 0.447386 0.010588 0.007045 +11 0.201029 0.437045 0.009706 0.006364 +11 0.200441 0.423636 0.008529 0.005909 +12 0.108824 0.460568 0.011176 0.007045 +12 0.108382 0.447614 0.011471 0.007500 +12 0.108382 0.437045 0.010294 0.006364 +12 0.156618 0.460455 0.010294 0.007727 +12 0.156324 0.447159 0.010882 0.007500 +12 0.156176 0.430227 0.010588 0.006364 +11 0.876176 0.447841 0.011765 0.007955 +12 0.876176 0.465341 0.008824 0.008409 +12 0.724559 0.437500 0.009706 0.006364 +17 0.724853 0.423409 0.007941 0.004545 +17 0.724706 0.407500 0.009412 0.007273 +11 0.815441 0.437500 0.011471 0.007273 +11 0.815294 0.407500 0.011176 0.007273 +12 0.645588 0.437273 0.009412 0.006818 +11 0.645588 0.423750 0.009412 0.004773 +17 0.645147 0.406705 0.010882 0.007500 +11 0.848382 0.434773 0.011471 0.007273 +12 0.675441 0.430568 0.010294 0.006136 +12 0.675147 0.414432 0.009706 0.007500 +12 0.674853 0.400455 0.011471 0.007727 +12 0.424265 0.423409 0.010294 0.007273 +17 0.425000 0.460682 0.010588 0.007273 +11 0.424559 0.447045 0.010882 0.007273 +12 0.424412 0.436932 0.010000 0.007045 +18 0.766324 0.394773 0.009706 0.007273 +12 0.790441 0.391591 0.009118 0.008182 +12 0.724265 0.390682 0.010294 0.006364 +12 0.130147 0.362500 0.010294 0.007273 +17 0.209853 0.359886 0.015588 0.007500 +12 0.214853 0.348864 0.006765 0.004545 +13 0.221029 0.322727 0.009706 0.007727 +13 0.205735 0.329318 0.009706 0.007273 +18 0.608235 0.357159 0.014706 0.010227 +12 0.608088 0.330568 0.007353 0.005227 +17 0.350588 0.353636 0.007647 0.005000 +14 0.358676 0.309773 0.009706 0.008182 +13 0.270441 0.352614 0.010882 0.007500 +12 0.154853 0.352614 0.010294 0.007500 +13 0.284559 0.345795 0.010882 0.007500 +13 0.169706 0.345795 0.010000 0.007500 +17 0.366912 0.342500 0.008529 0.005455 +18 0.374559 0.305795 0.010882 0.007500 +14 0.183971 0.339432 0.010882 0.007500 +13 0.867500 0.333636 0.007353 0.005000 +12 0.764265 0.333182 0.007353 0.005000 +12 0.671176 0.332727 0.007059 0.005000 +12 0.956176 0.332045 0.007059 0.004545 +13 0.971912 0.331818 0.006765 0.005000 +13 0.303971 0.332614 0.010882 0.007500 +13 0.882500 0.330909 0.006765 0.005000 +12 0.808382 0.330909 0.006765 0.005000 +12 0.899706 0.330795 0.007059 0.005682 +12 0.780735 0.330568 0.007353 0.005227 +12 0.686912 0.330455 0.007353 0.005000 +12 0.703971 0.330227 0.007353 0.005455 +14 0.321324 0.329318 0.009118 0.007273 +13 0.336912 0.322841 0.010882 0.007955 +14 0.237206 0.316136 0.010294 0.008182 +13 0.912941 0.311477 0.006471 0.005227 +12 0.820735 0.310682 0.006765 0.005455 +12 0.622647 0.310000 0.006471 0.005000 +12 0.718088 0.309545 0.006176 0.005000 +18 0.943971 0.307159 0.007353 0.004773 +18 0.926618 0.306818 0.006765 0.005000 +18 0.835735 0.306818 0.007353 0.005000 +18 0.854412 0.306477 0.007647 0.005227 +18 0.733382 0.306250 0.007353 0.004773 +18 0.754559 0.306023 0.007353 0.005227 +18 0.656912 0.306023 0.007353 0.005227 +18 0.637794 0.305909 0.007353 0.005000 +18 0.109265 0.306364 0.010882 0.007727 +18 0.254412 0.305909 0.011176 0.007727 +18 0.403529 0.302386 0.011176 0.007045 +12 0.177794 0.279091 0.009118 0.005909 +11 0.187206 0.255909 0.010294 0.007727 +11 0.187353 0.242500 0.011765 0.007273 +13 0.247794 0.274205 0.010294 0.007955 +12 0.799265 0.260227 0.009706 0.007273 +12 0.590735 0.259432 0.009118 0.007500 +11 0.513676 0.259432 0.010294 0.007500 +11 0.462500 0.259432 0.010294 0.007500 +11 0.412794 0.259432 0.009706 0.007500 +13 0.366324 0.259318 0.009706 0.007273 +12 0.160147 0.259205 0.009118 0.007045 +12 0.160441 0.242614 0.012059 0.007500 +11 0.137500 0.259432 0.009706 0.007500 +13 0.908235 0.257955 0.009412 0.006364 +14 0.908382 0.227955 0.010294 0.007273 +11 0.620735 0.252727 0.010294 0.006818 +13 0.217500 0.252386 0.010882 0.007045 +13 0.217353 0.242386 0.010588 0.007045 +12 0.832206 0.250341 0.011471 0.007500 +12 0.856471 0.243864 0.011176 0.007273 +13 0.646029 0.243068 0.011471 0.007500 +14 0.880735 0.237614 0.011471 0.007500 +14 0.669559 0.236591 0.011471 0.007273 +12 0.567794 0.236250 0.010294 0.007500 +12 0.567500 0.206023 0.009706 0.007955 +13 0.490147 0.236250 0.010294 0.007500 +12 0.489853 0.206136 0.009706 0.008182 +13 0.388971 0.236023 0.010294 0.007045 +13 0.389559 0.219091 0.011471 0.007727 +13 0.298824 0.236250 0.011176 0.007500 +12 0.309559 0.232614 0.009118 0.006591 +13 0.273676 0.235909 0.011471 0.007727 +11 0.110294 0.235909 0.010588 0.007727 +17 0.109853 0.206136 0.010882 0.008182 +14 0.701912 0.230227 0.011471 0.007273 +13 0.436618 0.229318 0.009118 0.007273 +13 0.436324 0.212727 0.009706 0.007727 +12 0.341324 0.229205 0.010294 0.007045 +12 0.341324 0.236250 0.010294 0.007045 +13 0.931324 0.222045 0.010294 0.007273 +14 0.721618 0.221136 0.010882 0.008182 +14 0.953382 0.215114 0.009706 0.007955 +14 0.745294 0.214318 0.009412 0.008182 +18 0.778088 0.203182 0.010882 0.007727 +13 0.688676 0.183409 0.010882 0.008182 +13 0.133824 0.178068 0.010588 0.007500 +11 0.951912 0.171477 0.010294 0.007045 +11 0.905735 0.170909 0.010882 0.007727 +11 0.855882 0.170341 0.010000 0.007500 +11 0.812794 0.170341 0.010882 0.007500 +13 0.595735 0.168636 0.008529 0.006818 +13 0.596324 0.152614 0.012059 0.007500 +11 0.573088 0.168864 0.011471 0.007273 +13 0.495441 0.168523 0.010294 0.007500 +13 0.445441 0.168523 0.010294 0.007500 +13 0.392353 0.168182 0.010000 0.006818 +13 0.346618 0.168523 0.010294 0.007500 +13 0.229559 0.168295 0.010294 0.007045 +13 0.156029 0.168409 0.010294 0.007273 +13 0.155882 0.154091 0.010000 0.005909 +13 0.110147 0.167841 0.010294 0.007955 +13 0.109853 0.160341 0.009706 0.005682 +13 0.621618 0.165682 0.008529 0.007273 +12 0.621912 0.152273 0.011471 0.007727 +13 0.180147 0.164773 0.010294 0.007273 +13 0.179559 0.154205 0.009118 0.006136 +13 0.653971 0.161932 0.010882 0.007045 +13 0.653529 0.151818 0.011176 0.007727 +13 0.206471 0.155795 0.011176 0.006136 +13 0.206471 0.161932 0.011176 0.006136 +11 0.929559 0.147500 0.009118 0.007273 +12 0.929265 0.116932 0.009706 0.007045 +13 0.834265 0.146705 0.009118 0.007500 +13 0.833676 0.130114 0.010294 0.008864 +13 0.713971 0.146023 0.010882 0.007045 +11 0.548676 0.145227 0.009706 0.007273 +17 0.548088 0.115114 0.009706 0.007045 +13 0.475147 0.145227 0.009706 0.007273 +12 0.474265 0.114886 0.009118 0.007500 +13 0.371618 0.144773 0.008529 0.007273 +13 0.371471 0.130682 0.010000 0.007273 +13 0.278529 0.144886 0.011765 0.007500 +13 0.252794 0.144886 0.012059 0.007500 +13 0.741324 0.145795 0.011471 0.007955 +12 0.750735 0.143295 0.011471 0.007955 +12 0.884118 0.140341 0.010000 0.007500 +17 0.883971 0.122955 0.010882 0.007273 +12 0.787353 0.139318 0.010588 0.007273 +12 0.787353 0.146591 0.010588 0.007273 +13 0.418088 0.138182 0.009706 0.007727 +12 0.417794 0.120682 0.010294 0.007273 +12 0.322206 0.137841 0.010882 0.007045 +12 0.322206 0.144886 0.010882 0.007045 +13 0.898088 0.088068 0.010882 0.007500 +13 0.735147 0.087159 0.010882 0.007500 +14 0.793824 0.086818 0.010588 0.007727 +13 0.138235 0.085795 0.010588 0.007500 +13 0.930441 0.077614 0.009706 0.007500 +13 0.930441 0.085114 0.009706 0.007500 +13 0.508676 0.076023 0.009706 0.007045 +13 0.453088 0.075909 0.010294 0.007727 +13 0.403824 0.075795 0.010588 0.007500 +13 0.356176 0.075795 0.009412 0.007500 +12 0.235735 0.075568 0.010882 0.007045 +13 0.165147 0.075795 0.010882 0.007500 +13 0.165441 0.061932 0.010294 0.006136 +13 0.954853 0.073750 0.010294 0.007045 +13 0.954853 0.080795 0.010294 0.007045 +13 0.771618 0.073636 0.012059 0.007727 +13 0.770882 0.056705 0.010000 0.006591 +13 0.714265 0.073068 0.011471 0.007500 +13 0.713676 0.056023 0.010294 0.005227 +13 0.681912 0.073068 0.011471 0.007500 +13 0.627500 0.072727 0.010882 0.007727 +13 0.187059 0.072614 0.011176 0.007500 +13 0.186324 0.062045 0.009706 0.005909 +13 0.113382 0.069091 0.010882 0.006818 +13 0.113382 0.075909 0.010882 0.006818 +13 0.816029 0.066591 0.010294 0.007273 +13 0.816029 0.073864 0.010294 0.007273 +13 0.846324 0.063409 0.009706 0.006364 +13 0.846324 0.069773 0.009706 0.006364 +13 0.579559 0.062727 0.010294 0.006818 +13 0.211618 0.062159 0.009706 0.006136 +13 0.211618 0.068295 0.009706 0.006136 +13 0.877353 0.060341 0.010588 0.006591 +13 0.877353 0.066932 0.010588 0.006591 +13 0.658824 0.055795 0.011176 0.005682 +13 0.657941 0.036250 0.009412 0.006591 +13 0.602794 0.055795 0.009706 0.005682 +13 0.602206 0.039545 0.010882 0.007727 +12 0.328824 0.053295 0.007647 0.005682 +12 0.330147 0.045227 0.010294 0.006364 +12 0.379853 0.052841 0.009706 0.007045 +12 0.379853 0.039432 0.010882 0.007500 +13 0.260588 0.052159 0.011176 0.007500 +13 0.283676 0.051932 0.011471 0.007955 +17 0.292500 0.049659 0.011471 0.007955 +12 0.429853 0.046250 0.010882 0.007500 +12 0.428676 0.029205 0.009706 0.007045 +12 0.483529 0.039205 0.009412 0.007955 +17 0.483529 0.022273 0.011176 0.006818 +13 0.555147 0.032727 0.009706 0.007727 +12 0.554559 0.016023 0.009706 0.007045 +1 0.036912 0.739659 0.023824 0.043409 +3 0.469853 0.022614 0.007353 0.021136 +1 0.040735 0.150795 0.024412 0.051136 +4 0.260441 0.494886 0.010882 0.022045 +3 0.316029 0.046932 0.007941 0.018864 +3 0.460147 0.114886 0.007941 0.021136 +3 0.701912 0.056477 0.007941 0.020682 +3 0.310441 0.137841 0.007353 0.021591 +1 0.040147 0.059659 0.024412 0.050682 +3 0.863676 0.464886 0.007941 0.021136 +3 0.476618 0.206250 0.007941 0.021136 +4 0.763971 0.203750 0.010882 0.021591 +3 0.917206 0.083977 0.007941 0.020227 +4 0.941029 0.496023 0.010882 0.021591 +4 0.744559 0.535341 0.010882 0.021136 +3 0.534265 0.115114 0.007941 0.020682 +4 0.094559 0.305795 0.010882 0.021136 +3 0.094265 0.206250 0.007941 0.021136 +3 0.641324 0.161932 0.007941 0.020682 +3 0.775735 0.140341 0.007353 0.020227 +4 0.758088 0.056477 0.010882 0.020682 +4 0.673676 0.184432 0.010294 0.021136 +3 0.235441 0.273977 0.007941 0.021136 +1 0.038971 0.242841 0.024412 0.050682 +4 0.895735 0.228295 0.010882 0.021591 +1 0.038676 0.345795 0.025000 0.050227 +3 0.393971 0.564886 0.007353 0.021136 +4 0.895147 0.464886 0.010882 0.021136 +4 0.646912 0.306023 0.007353 0.014318 +5 0.645735 0.032159 0.009706 0.017500 +3 0.583382 0.774659 0.007353 0.021591 +4 0.343971 0.597159 0.010882 0.021136 +4 0.820147 0.250114 0.010294 0.020682 +5 0.355147 0.531932 0.009706 0.017045 +1 0.037794 0.536023 0.024412 0.050682 +4 0.665441 0.986023 0.011471 0.021591 +1 0.038676 0.956932 0.025000 0.050682 +3 0.465735 0.534886 0.007353 0.021136 +4 0.430441 0.564659 0.010882 0.021591 +3 0.929853 0.434659 0.007353 0.021591 +4 0.552206 0.206932 0.010882 0.021591 +3 0.346912 0.308977 0.007353 0.021136 +5 0.835441 0.431932 0.009118 0.016136 +4 0.414265 0.637386 0.010294 0.021591 +4 0.678088 0.495568 0.010882 0.021591 +1 0.036618 0.846477 0.024412 0.043409 +3 0.293088 0.332386 0.007941 0.020682 +4 0.143676 0.352386 0.010294 0.021591 +4 0.825735 0.916250 0.010882 0.022045 +3 0.206029 0.252159 0.007941 0.021136 +4 0.598971 0.330114 0.007941 0.014318 +4 0.141912 0.637159 0.010294 0.021136 +4 0.511618 0.926705 0.010882 0.021136 +4 0.891618 0.330795 0.007353 0.014773 +4 0.752500 0.393977 0.010294 0.022045 +4 0.552500 0.667159 0.011471 0.022045 +4 0.737206 0.963068 0.007941 0.013864 +1 0.037500 0.637386 0.025000 0.050682 +4 0.874265 0.567159 0.011471 0.022045 +4 0.279265 0.666250 0.010882 0.021136 +4 0.353676 0.926477 0.010294 0.021591 +4 0.195735 0.329659 0.013235 0.020682 +3 0.038676 0.443750 0.010882 0.018864 +4 0.695735 0.329886 0.007353 0.013864 +4 0.844559 0.306705 0.007353 0.013864 +4 0.799412 0.330455 0.007059 0.013636 +3 0.774118 0.329545 0.005882 0.013636 +4 0.073824 0.430682 0.010000 0.020455 +4 0.064118 0.420455 0.009412 0.020909 +3 0.725000 0.306136 0.005294 0.013182 +4 0.744412 0.305909 0.006471 0.013636 +4 0.075000 0.239091 0.010000 0.020000 +4 0.065000 0.229091 0.010000 0.020000 +4 0.800294 0.558864 0.010000 0.020455 +4 0.810000 0.552045 0.009412 0.020455 +4 0.075000 0.147727 0.010000 0.020909 +4 0.065588 0.137273 0.010000 0.020909 +4 0.963824 0.332045 0.005294 0.011364 +4 0.073824 0.342727 0.010000 0.020000 +4 0.064412 0.332727 0.010000 0.020909 +4 0.072647 0.633864 0.010000 0.020455 +4 0.062647 0.623864 0.010000 0.020455 +4 0.076176 0.056364 0.010000 0.020000 +4 0.065882 0.046364 0.009412 0.020000 +3 0.664118 0.332500 0.005882 0.012273 +3 0.678824 0.329318 0.004706 0.014091 +3 0.614706 0.308864 0.004706 0.014091 +3 0.629412 0.305682 0.004706 0.013182 +4 0.934412 0.306818 0.006471 0.013636 +3 0.919412 0.306136 0.004706 0.012273 +4 0.202059 0.659773 0.010000 0.019545 +4 0.212353 0.653182 0.009412 0.020000 +4 0.775000 0.939545 0.006471 0.013636 +3 0.813235 0.309091 0.005294 0.013636 +3 0.827647 0.306364 0.004706 0.012727 +4 0.476471 0.660000 0.009412 0.020000 +4 0.485588 0.653409 0.010000 0.019545 +4 0.073235 0.952955 0.011176 0.020455 +4 0.063824 0.942955 0.010000 0.020455 +4 0.072353 0.846818 0.010588 0.020000 +4 0.063529 0.836591 0.010588 0.020455 +3 0.865735 0.058977 0.009706 0.021136 +3 0.099265 0.161591 0.009706 0.019091 +4 0.063971 0.522159 0.009706 0.021136 +4 0.074118 0.532159 0.009412 0.021136 +3 0.836324 0.070227 0.009706 0.020909 +4 0.045882 0.419432 0.009412 0.021136 +4 0.063382 0.729659 0.009706 0.021136 +4 0.073529 0.739886 0.009412 0.021136 +3 0.895147 0.828523 0.009706 0.021136 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_8.jpg b/data_dataset/tch/debug/debug_8.jpg new file mode 100644 index 0000000..5e7d095 Binary files /dev/null and b/data_dataset/tch/debug/debug_8.jpg differ diff --git a/data_dataset/tch/debug/debug_8.txt b/data_dataset/tch/debug/debug_8.txt new file mode 100644 index 0000000..7240ae4 --- /dev/null +++ b/data_dataset/tch/debug/debug_8.txt @@ -0,0 +1,716 @@ +10 0.217206 0.974886 0.007353 0.006136 +9 0.357794 0.971932 0.012059 0.012955 +10 0.124559 0.961250 0.018529 0.002500 +10 0.351029 0.946705 0.009118 0.003409 +9 0.109559 0.946250 0.008529 0.022500 +10 0.357500 0.940795 0.007941 0.002500 +7 0.223971 0.941364 0.005588 0.010000 +7 0.651912 0.953295 0.016765 0.030227 +7 0.791618 0.951932 0.007941 0.026591 +10 0.674853 0.888750 0.007353 0.004773 +10 0.346029 0.888750 0.008529 0.004773 +10 0.641618 0.888068 0.010294 0.005227 +9 0.571324 0.875114 0.010882 0.012045 +10 0.113382 0.866477 0.009118 0.002955 +10 0.807206 0.864432 0.009706 0.005227 +9 0.406912 0.849432 0.009118 0.012500 +9 0.744853 0.849886 0.009706 0.012500 +10 0.506029 0.844205 0.019118 0.004773 +10 0.156618 0.861250 0.012059 0.003409 +9 0.822794 0.849886 0.009118 0.033409 +10 0.589853 0.788068 0.007941 0.006136 +9 0.715441 0.780341 0.007353 0.022500 +9 0.931324 0.769886 0.008529 0.013409 +10 0.953088 0.764432 0.008529 0.004318 +10 0.755441 0.758295 0.008529 0.002955 +6 0.823088 0.754659 0.008529 0.023864 +10 0.648088 0.737614 0.009118 0.002500 +10 0.952206 0.740341 0.007941 0.003409 +10 0.674853 0.738295 0.017941 0.005682 +10 0.488676 0.738295 0.010294 0.005682 +10 0.253382 0.663977 0.011471 0.003409 +10 0.312794 0.663068 0.010294 0.003409 +10 0.382794 0.661705 0.013824 0.006136 +9 0.925147 0.647159 0.009118 0.012500 +9 0.345147 0.644318 0.013824 0.038636 +9 0.238382 0.639432 0.014412 0.053409 +10 0.769265 0.573068 0.010294 0.005227 +6 0.090147 0.571477 0.006176 0.012955 +10 0.843676 0.564205 0.010882 0.004773 +10 0.110147 0.560795 0.008529 0.005227 +10 0.476324 0.553295 0.007941 0.002955 +10 0.118676 0.554886 0.013824 0.006136 +10 0.295735 0.552614 0.007941 0.003409 +10 0.547206 0.552159 0.010882 0.005227 +10 0.593676 0.551023 0.010882 0.005682 +10 0.757794 0.545341 0.008529 0.003409 +9 0.680441 0.544205 0.011471 0.035682 +10 0.707206 0.539432 0.008529 0.004318 +9 0.214265 0.536932 0.009706 0.012955 +10 0.919265 0.542614 0.020882 0.005227 +9 0.616912 0.537841 0.009118 0.032955 +9 0.533971 0.532841 0.005588 0.042955 +9 0.449853 0.526250 0.016176 0.056136 +7 0.240735 0.456932 0.013235 0.016591 +7 0.141618 0.456932 0.012647 0.016591 +9 0.381324 0.461705 0.016765 0.044318 +6 0.169559 0.455795 0.012059 0.024318 +9 0.931618 0.456818 0.011471 0.031818 +9 0.877500 0.457841 0.013824 0.035682 +9 0.680441 0.459886 0.012647 0.040682 +10 0.108382 0.427614 0.009706 0.005227 +9 0.211324 0.422386 0.013235 0.030227 +9 0.711324 0.446477 0.013235 0.062045 +10 0.587206 0.420114 0.007353 0.006591 +10 0.440147 0.418523 0.007353 0.003409 +7 0.533088 0.421250 0.012059 0.013409 +10 0.670735 0.371705 0.008529 0.005227 +7 0.457500 0.372614 0.012647 0.016136 +10 0.505147 0.364886 0.009118 0.003409 +10 0.677794 0.365568 0.017941 0.005682 +10 0.594853 0.363523 0.016765 0.004318 +7 0.861618 0.366023 0.012647 0.017500 +10 0.305147 0.358295 0.007941 0.002955 +10 0.506618 0.356477 0.008529 0.002955 +9 0.608971 0.350341 0.008529 0.031591 +8 0.269853 0.353750 0.009118 0.024773 +10 0.616618 0.346932 0.008529 0.005682 +9 0.240735 0.354659 0.007353 0.023864 +9 0.535735 0.346250 0.011471 0.027045 +10 0.250147 0.369432 0.026176 0.003409 +10 0.334853 0.362841 0.017941 0.006591 +9 0.516029 0.343068 0.010882 0.033409 +10 0.727206 0.339886 0.008529 0.004318 +10 0.697794 0.339886 0.008529 0.004318 +10 0.351618 0.339205 0.007941 0.002955 +10 0.211324 0.339659 0.009706 0.003864 +10 0.543971 0.339659 0.009118 0.004773 +10 0.929559 0.315114 0.016765 0.003864 +10 0.273382 0.285114 0.009118 0.004773 +10 0.874265 0.283068 0.007353 0.004318 +7 0.923382 0.261705 0.012647 0.017045 +9 0.493088 0.250568 0.013235 0.035682 +9 0.465735 0.262045 0.017353 0.033182 +9 0.431912 0.261136 0.014412 0.035909 +9 0.400735 0.262500 0.014412 0.034091 +9 0.363676 0.264659 0.013235 0.038409 +10 0.258088 0.249432 0.012647 0.006136 +10 0.228088 0.248977 0.009118 0.005227 +7 0.653676 0.240341 0.007353 0.028864 +10 0.718971 0.192614 0.014412 0.006136 +10 0.653088 0.189886 0.013235 0.005227 +7 0.753971 0.190341 0.013824 0.016136 +10 0.830147 0.186705 0.010882 0.005227 +10 0.718971 0.186705 0.009706 0.005227 +10 0.658088 0.184205 0.011471 0.004773 +10 0.716324 0.181250 0.012647 0.005227 +9 0.150735 0.167841 0.016765 0.051136 +10 0.173382 0.145341 0.013824 0.004318 +9 0.738676 0.157159 0.011471 0.042500 +10 0.446912 0.138977 0.010294 0.002500 +10 0.472206 0.136477 0.020882 0.005682 +10 0.743088 0.097159 0.009706 0.005227 +7 0.948088 0.067386 0.012647 0.016591 +10 0.859559 0.053977 0.009706 0.003409 +10 0.830735 0.053523 0.008529 0.003409 +10 0.409853 0.053750 0.011471 0.006591 +10 0.321029 0.051023 0.017353 0.002955 +9 0.376618 0.070568 0.010882 0.040227 +10 0.750441 0.051023 0.010294 0.006591 +8 0.709265 0.085568 0.009118 0.025682 +9 0.456029 0.066705 0.013235 0.057045 +10 0.572206 0.079432 0.007941 0.002500 +18 0.214559 0.975909 0.007353 0.005000 +13 0.218676 0.961250 0.010882 0.007500 +18 0.640441 0.974886 0.007353 0.004773 +13 0.642794 0.959886 0.010882 0.007500 +13 0.186618 0.964432 0.010294 0.006591 +13 0.239559 0.964091 0.010294 0.006364 +13 0.337206 0.963636 0.010294 0.005909 +13 0.805588 0.962955 0.010588 0.005455 +13 0.478676 0.963636 0.010882 0.006818 +13 0.380882 0.963523 0.010588 0.006591 +13 0.762500 0.963409 0.010294 0.007273 +13 0.665294 0.962727 0.011176 0.005909 +13 0.619559 0.962614 0.010294 0.005682 +13 0.522941 0.963295 0.011176 0.007045 +13 0.359265 0.960795 0.010882 0.007500 +13 0.501029 0.960568 0.010882 0.007955 +18 0.497500 0.975341 0.007353 0.004773 +13 0.784265 0.959886 0.011471 0.007500 +13 0.316176 0.940568 0.010000 0.007045 +13 0.165294 0.940795 0.010588 0.007500 +13 0.111471 0.940568 0.009412 0.007045 +13 0.413971 0.940114 0.009706 0.007045 +13 0.272353 0.940227 0.010000 0.007273 +17 0.906324 0.940000 0.012059 0.007727 +17 0.843382 0.939545 0.012059 0.007727 +13 0.697794 0.939318 0.010294 0.007273 +13 0.598971 0.939318 0.010882 0.007273 +13 0.554853 0.939318 0.010294 0.007273 +13 0.456176 0.939545 0.009412 0.007727 +13 0.741324 0.938636 0.010294 0.007727 +13 0.142794 0.937045 0.010882 0.007273 +13 0.294118 0.936818 0.010000 0.007727 +13 0.434853 0.935909 0.010294 0.006818 +13 0.718971 0.935682 0.010294 0.007273 +13 0.578088 0.935455 0.010882 0.007727 +13 0.519853 0.891477 0.010882 0.007955 +13 0.456324 0.891477 0.009706 0.007955 +13 0.493529 0.887727 0.010000 0.007727 +13 0.430441 0.866705 0.009706 0.005682 +13 0.716029 0.866477 0.010294 0.006136 +13 0.368971 0.866477 0.010294 0.006136 +13 0.768382 0.866136 0.010294 0.006364 +13 0.600147 0.866136 0.011471 0.006364 +13 0.546324 0.866250 0.010882 0.006591 +13 0.404265 0.864091 0.011471 0.007727 +13 0.742353 0.863750 0.011176 0.007955 +13 0.573088 0.863295 0.011471 0.007955 +13 0.173971 0.843977 0.009706 0.007500 +13 0.110294 0.843977 0.009412 0.007500 +13 0.288529 0.843523 0.010588 0.007500 +13 0.855735 0.842727 0.010882 0.007727 +13 0.802353 0.842727 0.011176 0.007727 +13 0.342059 0.842841 0.011176 0.007955 +13 0.688824 0.842273 0.009412 0.007727 +13 0.637647 0.841932 0.010000 0.007955 +13 0.147500 0.840682 0.010882 0.008182 +13 0.315735 0.839545 0.009706 0.007727 +13 0.830294 0.839091 0.011176 0.007727 +13 0.663676 0.838636 0.010294 0.006818 +18 0.199265 0.820795 0.010882 0.007500 +18 0.262941 0.820000 0.010588 0.007727 +18 0.939853 0.819318 0.009706 0.007273 +18 0.887500 0.818864 0.009706 0.007273 +18 0.235147 0.816591 0.010882 0.007273 +18 0.914118 0.815795 0.010588 0.007500 +11 0.109265 0.787273 0.009706 0.007727 +12 0.406029 0.786705 0.010294 0.007500 +11 0.190000 0.786705 0.010000 0.007500 +13 0.716324 0.786250 0.010882 0.007500 +12 0.591618 0.786250 0.010882 0.007500 +12 0.530735 0.786477 0.010294 0.007955 +12 0.343088 0.786591 0.010882 0.008182 +13 0.758676 0.785909 0.010882 0.007727 +11 0.154853 0.783295 0.010294 0.007955 +13 0.737206 0.782500 0.010294 0.008182 +12 0.560441 0.782614 0.010882 0.008409 +12 0.375000 0.782727 0.010588 0.008636 +18 0.465147 0.773977 0.007353 0.004773 +12 0.467353 0.758750 0.011765 0.007955 +18 0.652206 0.773523 0.006176 0.004773 +12 0.655147 0.758750 0.012059 0.007955 +11 0.227794 0.762727 0.010294 0.006818 +11 0.307500 0.762386 0.010882 0.007045 +13 0.952794 0.761818 0.009706 0.006364 +13 0.911176 0.761705 0.011176 0.006591 +13 0.820147 0.761705 0.010882 0.006591 +13 0.778088 0.761932 0.010882 0.007045 +12 0.685147 0.761818 0.010882 0.006818 +12 0.623529 0.761818 0.011176 0.006818 +12 0.497794 0.761932 0.011471 0.007045 +12 0.436324 0.761818 0.010882 0.006818 +11 0.271029 0.759432 0.010882 0.007500 +13 0.931765 0.758750 0.011176 0.007955 +13 0.799118 0.758750 0.011765 0.007955 +13 0.890735 0.737841 0.010294 0.007955 +13 0.845000 0.737500 0.010000 0.008182 +13 0.871471 0.733750 0.010000 0.008864 +12 0.116324 0.693864 0.008529 0.008182 +12 0.116618 0.673295 0.009118 0.005227 +12 0.116618 0.656591 0.009118 0.007273 +12 0.116029 0.639318 0.010294 0.007273 +11 0.793971 0.690682 0.010882 0.007273 +11 0.857500 0.690341 0.009706 0.007500 +14 0.774853 0.686932 0.009118 0.007955 +14 0.750735 0.687273 0.009118 0.008636 +11 0.828676 0.686705 0.010882 0.008409 +14 0.727794 0.683636 0.010294 0.007727 +14 0.703676 0.683750 0.010294 0.007955 +11 0.715735 0.656818 0.013824 0.005000 +14 0.678971 0.679091 0.010294 0.007727 +11 0.687794 0.650909 0.006765 0.004091 +13 0.639559 0.675909 0.010294 0.007727 +14 0.663824 0.675682 0.010588 0.008182 +14 0.625147 0.672045 0.010882 0.007273 +12 0.593971 0.669318 0.010882 0.008182 +11 0.952059 0.666250 0.010588 0.007500 +11 0.889559 0.665795 0.010294 0.007500 +12 0.563382 0.665227 0.010882 0.006364 +11 0.925441 0.663068 0.011471 0.007500 +12 0.541912 0.662614 0.010294 0.007500 +12 0.508088 0.656023 0.009706 0.007955 +12 0.483971 0.652500 0.009706 0.007273 +12 0.697500 0.650227 0.005588 0.004545 +12 0.462500 0.649545 0.011471 0.007727 +12 0.431912 0.645909 0.011471 0.008636 +12 0.400735 0.642045 0.011471 0.008182 +12 0.377794 0.638750 0.010294 0.008864 +12 0.348676 0.632500 0.009706 0.008182 +12 0.324853 0.628295 0.010294 0.007955 +12 0.303088 0.625568 0.010294 0.007955 +18 0.270735 0.622500 0.011471 0.008182 +12 0.239853 0.618864 0.009706 0.008182 +12 0.215735 0.615795 0.009118 0.007500 +12 0.171471 0.616136 0.010588 0.008182 +12 0.150735 0.616023 0.010294 0.007955 +12 0.326471 0.583295 0.008824 0.007955 +12 0.327500 0.565568 0.010882 0.007955 +12 0.326912 0.548977 0.008529 0.006591 +12 0.326912 0.527386 0.010882 0.007955 +14 0.947059 0.580568 0.009412 0.007955 +14 0.926765 0.576705 0.009412 0.008409 +12 0.934559 0.549205 0.006176 0.005682 +14 0.901765 0.573182 0.010000 0.007727 +14 0.902941 0.546364 0.015882 0.005909 +14 0.877794 0.568636 0.010294 0.007727 +14 0.880882 0.539659 0.012941 0.006136 +14 0.861912 0.565455 0.011471 0.007727 +14 0.844412 0.561932 0.010588 0.007045 +18 0.110588 0.559545 0.007647 0.007273 +12 0.121912 0.555568 0.009118 0.006136 +18 0.122500 0.540341 0.006765 0.003864 +12 0.165147 0.559432 0.009706 0.007500 +12 0.176765 0.555455 0.008824 0.005909 +12 0.214265 0.556023 0.009706 0.007045 +12 0.295000 0.555341 0.009412 0.006591 +12 0.255882 0.555682 0.010000 0.007273 +13 0.803235 0.555227 0.010588 0.007273 +17 0.816618 0.539318 0.015000 0.005455 +14 0.820735 0.558977 0.011471 0.007500 +12 0.785147 0.552045 0.010882 0.008182 +18 0.918088 0.549318 0.008529 0.004545 +12 0.756912 0.548409 0.009706 0.007273 +12 0.730147 0.545227 0.011471 0.008182 +12 0.706912 0.541818 0.009706 0.006818 +12 0.688382 0.538182 0.010294 0.007727 +12 0.660147 0.534432 0.009118 0.007500 +12 0.143382 0.531705 0.010882 0.007500 +12 0.234265 0.531364 0.010294 0.007727 +12 0.195441 0.531477 0.011471 0.007955 +12 0.639265 0.531023 0.010882 0.007955 +12 0.277059 0.531023 0.011176 0.007955 +12 0.619265 0.527955 0.009706 0.008182 +12 0.589559 0.523864 0.010294 0.008182 +12 0.559559 0.521250 0.009118 0.008409 +12 0.538676 0.517273 0.009706 0.007727 +12 0.518529 0.514318 0.010588 0.008182 +12 0.490294 0.511136 0.010000 0.008182 +18 0.469853 0.507955 0.010882 0.008182 +18 0.398382 0.504545 0.011471 0.007727 +12 0.366618 0.504659 0.010294 0.007955 +18 0.448676 0.504318 0.010882 0.008182 +12 0.110441 0.468182 0.008529 0.005909 +13 0.110441 0.449659 0.010882 0.007955 +11 0.110147 0.425568 0.010294 0.007045 +12 0.819853 0.456250 0.010882 0.007500 +12 0.818971 0.445568 0.009118 0.006136 +12 0.535147 0.455568 0.009706 0.007045 +17 0.535147 0.462614 0.009706 0.007045 +12 0.534559 0.445227 0.010882 0.006364 +11 0.385000 0.462614 0.010000 0.007045 +12 0.385000 0.455568 0.010000 0.007045 +12 0.384706 0.445227 0.010588 0.006364 +12 0.681029 0.456023 0.008529 0.012955 +12 0.680735 0.445455 0.010294 0.006818 +12 0.807206 0.449432 0.009118 0.007500 +12 0.932500 0.446250 0.009118 0.006591 +12 0.932500 0.452841 0.009118 0.006591 +12 0.877206 0.445341 0.010294 0.006591 +12 0.877206 0.451932 0.010294 0.006591 +12 0.746765 0.445455 0.010000 0.006818 +12 0.746765 0.452273 0.010000 0.006818 +12 0.746765 0.459091 0.010000 0.006818 +11 0.211029 0.425455 0.010882 0.006818 +12 0.210882 0.459545 0.008824 0.005909 +12 0.210882 0.442727 0.011176 0.007727 +13 0.606029 0.425341 0.009118 0.007500 +13 0.309412 0.425227 0.010000 0.007273 +13 0.455441 0.425227 0.009118 0.008182 +12 0.955294 0.422614 0.008235 0.007500 +12 0.904265 0.422614 0.009118 0.007500 +11 0.171324 0.421932 0.010294 0.007955 +12 0.846324 0.422159 0.009706 0.009318 +12 0.776618 0.421591 0.010294 0.008182 +17 0.711618 0.421364 0.009706 0.007727 +17 0.646471 0.421364 0.009412 0.007727 +13 0.585735 0.421477 0.009118 0.007955 +13 0.437206 0.421364 0.009118 0.007727 +13 0.289412 0.421364 0.009412 0.007727 +17 0.349853 0.421136 0.009706 0.008182 +17 0.498824 0.420568 0.010000 0.007955 +13 0.329706 0.418295 0.010000 0.007955 +13 0.625147 0.417500 0.010294 0.007273 +13 0.475735 0.417727 0.009706 0.007727 +13 0.416471 0.417500 0.009412 0.007273 +13 0.564559 0.417273 0.009706 0.007727 +13 0.269412 0.417955 0.010000 0.009091 +12 0.425147 0.379091 0.008529 0.006818 +12 0.424265 0.361477 0.010294 0.007045 +11 0.424853 0.339091 0.011471 0.007727 +17 0.830441 0.373636 0.008529 0.006818 +11 0.830441 0.339318 0.012059 0.007273 +11 0.829706 0.355682 0.010000 0.007273 +13 0.115294 0.365909 0.008235 0.003182 +13 0.114559 0.339318 0.010882 0.007273 +13 0.614853 0.348636 0.010294 0.006818 +13 0.239559 0.348636 0.009118 0.006818 +13 0.269265 0.348523 0.009706 0.007045 +13 0.641029 0.345568 0.009706 0.007045 +13 0.166618 0.345795 0.010294 0.007500 +14 0.669265 0.345455 0.010882 0.007727 +13 0.329853 0.345455 0.010882 0.007727 +13 0.298676 0.345455 0.010882 0.007727 +13 0.135588 0.342500 0.009412 0.006364 +14 0.725735 0.342273 0.009706 0.006818 +14 0.697206 0.342159 0.009118 0.006591 +13 0.543088 0.341705 0.010294 0.006591 +13 0.350441 0.342045 0.009706 0.007273 +13 0.210441 0.341818 0.009706 0.006818 +13 0.933971 0.339886 0.010882 0.007500 +14 0.753235 0.339091 0.011765 0.007727 +13 0.187206 0.338977 0.011471 0.007500 +13 0.585441 0.338750 0.010294 0.007955 +13 0.523676 0.338750 0.011471 0.007955 +13 0.913676 0.336023 0.011471 0.007045 +11 0.776029 0.335455 0.011471 0.007727 +13 0.493676 0.335455 0.010294 0.007727 +11 0.375147 0.335568 0.012059 0.007955 +13 0.563971 0.335114 0.010882 0.007955 +13 0.955147 0.332273 0.009706 0.007727 +13 0.892794 0.331818 0.010882 0.007727 +12 0.872206 0.285909 0.008529 0.007727 +12 0.872500 0.268523 0.009118 0.007500 +12 0.872500 0.254886 0.011471 0.007500 +11 0.858382 0.251136 0.010294 0.006364 +12 0.122794 0.274773 0.009706 0.008182 +12 0.110441 0.254545 0.008529 0.007727 +12 0.121618 0.251591 0.008529 0.006364 +12 0.158676 0.270795 0.009706 0.006136 +12 0.146029 0.254545 0.010294 0.007727 +12 0.157206 0.250682 0.009118 0.006364 +12 0.229265 0.267727 0.008529 0.007727 +18 0.218971 0.253977 0.011471 0.007955 +12 0.227206 0.251477 0.011471 0.007955 +12 0.192059 0.267727 0.009412 0.007727 +18 0.180735 0.254205 0.011471 0.007955 +12 0.190735 0.251477 0.011471 0.007955 +12 0.257794 0.263977 0.009118 0.006591 +12 0.246324 0.254205 0.009706 0.007045 +12 0.257500 0.250455 0.008529 0.005909 +12 0.330735 0.261364 0.009118 0.007727 +17 0.318971 0.254205 0.009118 0.007955 +12 0.331029 0.250568 0.008529 0.006136 +12 0.295441 0.261364 0.010294 0.007727 +12 0.283382 0.254091 0.008529 0.007727 +12 0.295147 0.250909 0.009706 0.005909 +11 0.768971 0.254545 0.006765 0.005000 +12 0.457500 0.254318 0.008529 0.007273 +12 0.467794 0.250682 0.009118 0.006364 +12 0.392353 0.254432 0.008824 0.007500 +12 0.403676 0.250795 0.009118 0.006591 +12 0.403676 0.257386 0.009118 0.006591 +11 0.778676 0.251250 0.007353 0.005682 +18 0.740147 0.251250 0.017353 0.007500 +18 0.701029 0.251023 0.011471 0.007955 +18 0.707206 0.251023 0.011471 0.007955 +18 0.686471 0.251136 0.017059 0.007273 +12 0.662059 0.250455 0.010000 0.005909 +12 0.650294 0.250795 0.010588 0.006591 +12 0.631324 0.250909 0.009118 0.006818 +12 0.620000 0.250568 0.011176 0.006136 +12 0.599853 0.250795 0.009706 0.006591 +12 0.587647 0.250682 0.010000 0.006364 +12 0.568088 0.250795 0.008529 0.006591 +12 0.556029 0.250455 0.009118 0.005909 +12 0.536618 0.250682 0.009118 0.006364 +12 0.523971 0.250568 0.008529 0.006136 +12 0.504706 0.250909 0.009412 0.006818 +12 0.492941 0.250682 0.010000 0.006364 +18 0.421912 0.254432 0.011471 0.007955 +12 0.431912 0.251477 0.011471 0.007955 +18 0.356029 0.251477 0.011471 0.007955 +12 0.364559 0.251477 0.011471 0.007955 +11 0.802500 0.247955 0.011471 0.007273 +12 0.145441 0.188295 0.010294 0.007955 +12 0.145441 0.170000 0.010294 0.007727 +12 0.217206 0.184205 0.011471 0.007955 +12 0.216029 0.166023 0.009118 0.006136 +12 0.182206 0.184205 0.010882 0.007955 +12 0.180735 0.166136 0.009118 0.006364 +12 0.280294 0.180000 0.010588 0.007727 +12 0.280441 0.163636 0.010882 0.007727 +12 0.316176 0.179659 0.010588 0.007955 +12 0.316618 0.163182 0.010294 0.007727 +12 0.411324 0.176477 0.011471 0.007955 +18 0.408235 0.160000 0.006471 0.005000 +12 0.352794 0.176477 0.010882 0.007955 +12 0.352059 0.159659 0.010000 0.006136 +18 0.556618 0.175568 0.011471 0.007955 +18 0.564265 0.175568 0.011471 0.007955 +14 0.561029 0.150000 0.008529 0.007727 +14 0.560588 0.131591 0.009412 0.008182 +18 0.467647 0.172614 0.006471 0.004773 +12 0.484412 0.172727 0.010588 0.005909 +12 0.483676 0.156705 0.010294 0.007500 +12 0.448971 0.172500 0.011471 0.006364 +12 0.448676 0.156818 0.010882 0.007727 +12 0.508235 0.170000 0.007647 0.005000 +12 0.507500 0.153864 0.007353 0.005455 +12 0.887794 0.170682 0.010294 0.007273 +12 0.886324 0.153977 0.009706 0.007500 +14 0.851029 0.170568 0.009706 0.007955 +14 0.849412 0.154091 0.010000 0.006818 +14 0.824265 0.167273 0.007941 0.006818 +14 0.823529 0.150568 0.010000 0.007955 +14 0.795735 0.163977 0.008529 0.007500 +14 0.794853 0.146705 0.010294 0.007500 +14 0.769559 0.163864 0.009118 0.007273 +14 0.768971 0.146364 0.010294 0.007727 +14 0.706912 0.160568 0.008529 0.006591 +14 0.706912 0.142045 0.010882 0.008182 +14 0.740147 0.159773 0.007941 0.006364 +14 0.739853 0.142045 0.009706 0.008182 +14 0.676912 0.157045 0.009706 0.007273 +14 0.676471 0.138636 0.009412 0.007727 +14 0.622941 0.153977 0.008235 0.004773 +14 0.622794 0.135114 0.009706 0.007955 +14 0.648971 0.153068 0.007941 0.006591 +14 0.648676 0.135455 0.009706 0.007727 +12 0.384265 0.153182 0.010294 0.006818 +14 0.595735 0.150227 0.008529 0.007273 +14 0.595588 0.132045 0.009412 0.007273 +14 0.533382 0.146591 0.008529 0.007273 +14 0.532500 0.129091 0.010294 0.007727 +12 0.946176 0.129886 0.010000 0.007500 +12 0.249265 0.129205 0.009706 0.007045 +12 0.108382 0.129545 0.010294 0.007727 +12 0.149265 0.096136 0.009706 0.008636 +12 0.148676 0.078295 0.010882 0.007955 +12 0.227941 0.092727 0.010588 0.007727 +12 0.227206 0.074886 0.010294 0.005682 +12 0.189559 0.092727 0.010294 0.007727 +12 0.188529 0.074318 0.009412 0.006364 +12 0.298235 0.089545 0.011176 0.007727 +12 0.297500 0.071364 0.009706 0.007727 +12 0.336029 0.089318 0.010294 0.007727 +12 0.336029 0.071364 0.010294 0.007727 +12 0.375000 0.085568 0.011765 0.007955 +12 0.373676 0.067841 0.010882 0.006136 +14 0.665147 0.080909 0.012059 0.004091 +12 0.486618 0.081932 0.010294 0.007045 +12 0.486618 0.065000 0.010294 0.006818 +12 0.448676 0.081818 0.010882 0.007727 +12 0.448382 0.064886 0.011471 0.007500 +14 0.604853 0.078068 0.008529 0.003864 +12 0.518088 0.078636 0.010882 0.007727 +12 0.516912 0.061250 0.009706 0.005682 +12 0.568382 0.078864 0.017353 0.009091 +12 0.563971 0.052159 0.010294 0.007500 +12 0.562941 0.034773 0.009412 0.008182 +12 0.917206 0.076932 0.010294 0.006136 +12 0.917353 0.060795 0.009412 0.007500 +12 0.889559 0.076818 0.009118 0.006818 +13 0.888676 0.060341 0.009706 0.007500 +12 0.539118 0.075682 0.007059 0.005455 +12 0.538676 0.058864 0.006176 0.004545 +13 0.860147 0.073636 0.007941 0.007727 +12 0.859853 0.056705 0.009706 0.007500 +13 0.831324 0.073295 0.009118 0.007955 +13 0.829853 0.056705 0.009706 0.007500 +13 0.765000 0.069545 0.008824 0.005000 +13 0.764412 0.052500 0.010588 0.008182 +13 0.801912 0.069432 0.007941 0.006591 +13 0.801912 0.053068 0.010294 0.007500 +14 0.736471 0.066136 0.008824 0.007273 +13 0.736029 0.048750 0.010294 0.007955 +14 0.708676 0.062273 0.009706 0.006818 +14 0.708088 0.043977 0.010882 0.008409 +14 0.680294 0.062273 0.008235 0.006818 +14 0.680147 0.044773 0.011471 0.008182 +14 0.649559 0.058977 0.009118 0.007500 +14 0.648529 0.040795 0.008824 0.008409 +14 0.622794 0.058977 0.009706 0.007500 +14 0.621618 0.041364 0.009706 0.007727 +14 0.591618 0.055795 0.008529 0.004773 +14 0.591471 0.037273 0.010000 0.007727 +13 0.408235 0.054659 0.010000 0.007045 +12 0.107794 0.030909 0.010294 0.007727 +12 0.261029 0.030341 0.009706 0.007500 +3 0.849559 0.261023 0.017353 0.036136 +3 0.740441 0.338977 0.007353 0.021136 +4 0.666618 0.045114 0.010294 0.020682 +4 0.723088 0.048750 0.010294 0.019773 +4 0.555735 0.050568 0.013235 0.018864 +3 0.602500 0.348750 0.007941 0.019773 +5 0.683971 0.338523 0.009706 0.017500 +4 0.579559 0.038295 0.010294 0.020682 +4 0.339265 0.160114 0.009706 0.020682 +4 0.548676 0.131705 0.009706 0.020227 +4 0.750735 0.069432 0.010294 0.020227 +4 0.815147 0.338750 0.010882 0.020682 +3 0.813971 0.373068 0.007353 0.021136 +3 0.286029 0.071250 0.007941 0.021136 +3 0.265147 0.180568 0.007353 0.019773 +1 0.038088 0.062614 0.023824 0.044773 +3 0.343088 0.257841 0.007941 0.020682 +4 0.498676 0.169432 0.007353 0.012955 +1 0.039853 0.261023 0.025000 0.050682 +4 0.760147 0.254432 0.007941 0.013864 +1 0.038382 0.163750 0.024412 0.050682 +4 0.838382 0.154205 0.010294 0.020682 +3 0.712794 0.342159 0.007353 0.020227 +3 0.832794 0.561932 0.007353 0.020682 +5 0.771324 0.548750 0.009118 0.017955 +5 0.255147 0.756477 0.009706 0.017045 +3 0.286029 0.345341 0.007941 0.021136 +3 0.175735 0.074659 0.007353 0.020682 +3 0.790147 0.248068 0.009118 0.022045 +3 0.529853 0.662386 0.007353 0.020682 +3 0.313382 0.582841 0.007353 0.020682 +4 0.133676 0.096250 0.010294 0.020227 +5 0.813676 0.683068 0.009118 0.017500 +3 0.504853 0.514205 0.007941 0.019773 +3 0.101324 0.672841 0.007941 0.020682 +5 0.352794 0.501932 0.009706 0.017045 +3 0.795147 0.449432 0.008529 0.021136 +4 0.868971 0.162159 0.018529 0.036591 +3 0.097794 0.465114 0.007941 0.018864 +5 0.651029 0.672386 0.009706 0.017955 +4 0.131618 0.170114 0.009706 0.019773 +4 0.445441 0.254205 0.011471 0.021591 +4 0.197500 0.425795 0.010882 0.021136 +1 0.039559 0.349205 0.023235 0.044318 +5 0.312500 0.523977 0.009118 0.016591 +4 0.579853 0.668750 0.009706 0.020682 +5 0.909853 0.659659 0.009706 0.017045 +3 0.101029 0.638977 0.007353 0.022045 +4 0.418382 0.646477 0.010294 0.020682 +4 0.256912 0.621932 0.009706 0.020682 +1 0.038676 0.663295 0.025000 0.050682 +1 0.039853 0.957841 0.023824 0.044318 +1 0.039559 0.864659 0.024412 0.050682 +1 0.038676 0.552386 0.025000 0.050682 +3 0.410441 0.338750 0.007353 0.020682 +1 0.039853 0.759659 0.025000 0.049773 +1 0.039853 0.439205 0.023824 0.044318 +3 0.101618 0.338977 0.007353 0.021136 +3 0.509853 0.338977 0.007353 0.021136 +4 0.140147 0.271023 0.011471 0.020682 +3 0.308676 0.261023 0.007353 0.021591 +4 0.693088 0.142386 0.010294 0.020682 +4 0.152206 0.559432 0.010882 0.021136 +5 0.273971 0.257614 0.009706 0.017500 +3 0.228382 0.348523 0.007941 0.020227 +4 0.154265 0.345795 0.010294 0.021136 +3 0.288676 0.624886 0.007353 0.019318 +5 0.138971 0.780568 0.009118 0.017045 +5 0.628676 0.341932 0.009706 0.017955 +3 0.674265 0.538068 0.006765 0.020227 +3 0.611324 0.671705 0.007941 0.020227 +5 0.478382 0.884432 0.009118 0.016591 +4 0.210441 0.267841 0.010882 0.020682 +5 0.128971 0.933523 0.010294 0.016591 +4 0.316324 0.345341 0.010882 0.021136 +3 0.448382 0.649205 0.007941 0.019773 +4 0.743971 0.548295 0.009706 0.020682 +3 0.409559 0.361705 0.007941 0.021136 +4 0.471324 0.156705 0.010294 0.020227 +3 0.656029 0.345341 0.007941 0.021136 +5 0.205147 0.958068 0.009706 0.017500 +3 0.137500 0.616023 0.007353 0.019773 +5 0.218676 0.813523 0.009706 0.016591 +4 0.256618 0.348750 0.010294 0.020682 +5 0.389265 0.861023 0.009706 0.017045 +4 0.100735 0.694205 0.010294 0.019773 +3 0.364559 0.639659 0.007353 0.020682 +4 0.690294 0.682955 0.008824 0.019545 +4 0.575294 0.523864 0.009412 0.019545 +3 0.551471 0.520455 0.011176 0.020000 +5 0.913824 0.573409 0.007647 0.015909 +4 0.889706 0.573182 0.008824 0.020000 +4 0.358529 0.085909 0.008824 0.019091 +3 0.361471 0.067955 0.007647 0.019545 +4 0.467647 0.081591 0.009412 0.020455 +4 0.474412 0.064545 0.008824 0.019091 +3 0.635294 0.058864 0.005882 0.019545 +3 0.636765 0.041136 0.006471 0.019545 +3 0.167353 0.184091 0.006471 0.019091 +3 0.170294 0.166364 0.006471 0.019091 +3 0.695882 0.062273 0.007059 0.020000 +3 0.696176 0.044545 0.006471 0.019091 +3 0.529706 0.075227 0.005294 0.014091 +3 0.531176 0.058409 0.005882 0.013182 +4 0.662059 0.157045 0.008824 0.018636 +3 0.666176 0.139773 0.007647 0.019545 +3 0.635000 0.153409 0.006471 0.019545 +3 0.636176 0.135682 0.006471 0.019545 +3 0.739412 0.686591 0.005882 0.019545 +5 0.761765 0.684091 0.008235 0.016364 +3 0.781765 0.163636 0.005882 0.020000 +3 0.783235 0.147273 0.006471 0.020000 +4 0.791176 0.052273 0.009412 0.019091 +3 0.782647 0.061136 0.012353 0.036818 +4 0.076471 0.756818 0.009412 0.020000 +4 0.066176 0.746364 0.010000 0.020000 +4 0.075588 0.550000 0.010000 0.020000 +4 0.066176 0.539318 0.010000 0.020455 +4 0.429412 0.172955 0.009412 0.019545 +3 0.435588 0.156136 0.006471 0.019545 +3 0.846176 0.073409 0.006471 0.019545 +3 0.848824 0.056818 0.007059 0.019091 +4 0.078824 0.957955 0.010588 0.020455 +4 0.068529 0.947500 0.010000 0.020455 +4 0.075000 0.349091 0.010000 0.020000 +4 0.066176 0.338864 0.010000 0.020455 +3 0.316765 0.087727 0.006471 0.018182 +4 0.322647 0.071136 0.008824 0.019545 +4 0.076765 0.862045 0.010000 0.020455 +4 0.067647 0.851136 0.009412 0.020455 +4 0.076471 0.439545 0.010588 0.020000 +4 0.066471 0.429318 0.009412 0.020455 +3 0.573529 0.149773 0.005882 0.019545 +4 0.073235 0.160682 0.010000 0.019545 +4 0.064706 0.150455 0.010588 0.020000 +3 0.718235 0.160455 0.007059 0.020000 +3 0.903235 0.076818 0.006471 0.020000 +3 0.904706 0.059773 0.005882 0.017727 +4 0.075294 0.659773 0.010588 0.020455 +4 0.066176 0.649545 0.010000 0.020000 +4 0.730735 0.458295 0.009118 0.020682 +3 0.435000 0.065568 0.007059 0.020682 +3 0.435000 0.079432 0.007059 0.020682 +4 0.380882 0.257841 0.008824 0.020682 +4 0.517794 0.462841 0.009118 0.020682 +3 0.370147 0.462841 0.009118 0.020682 +4 0.609559 0.041932 0.009118 0.020682 +4 0.605735 0.057614 0.009118 0.020682 +4 0.063088 0.051477 0.009118 0.020682 +4 0.075000 0.061023 0.008824 0.020682 +4 0.611324 0.135114 0.009118 0.020682 +4 0.607794 0.153068 0.009118 0.020682 +4 0.519559 0.146591 0.009118 0.020000 +3 0.863676 0.452386 0.009118 0.020682 +3 0.581618 0.132614 0.009118 0.020682 +4 0.581618 0.148977 0.009118 0.020682 +4 0.811324 0.151023 0.009118 0.020682 +4 0.808088 0.166705 0.009118 0.020682 +4 0.917206 0.452841 0.009118 0.020682 +3 0.924853 0.452841 0.009118 0.020682 +4 0.213676 0.074659 0.009118 0.020682 +4 0.208088 0.092614 0.009118 0.020682 +4 0.818088 0.057386 0.009118 0.020682 +4 0.813676 0.072614 0.009118 0.020682 +4 0.064853 0.247386 0.009118 0.020682 +4 0.075588 0.257841 0.008824 0.020682 +4 0.876029 0.060114 0.009118 0.020682 +4 0.871912 0.077159 0.009118 0.020682 +4 0.757206 0.146932 0.009118 0.020682 +4 0.754559 0.163068 0.009118 0.020682 +3 0.725735 0.142614 0.009118 0.020682 +4 0.727206 0.159432 0.009118 0.020682 +4 0.204265 0.166932 0.009118 0.020682 +4 0.200735 0.183977 0.009118 0.020682 +4 0.304265 0.163750 0.009118 0.020682 +4 0.299559 0.178977 0.009118 0.020682 \ No newline at end of file diff --git a/data_dataset/tch/debug/debug_9.jpg b/data_dataset/tch/debug/debug_9.jpg new file mode 100644 index 0000000..d09e566 Binary files /dev/null and b/data_dataset/tch/debug/debug_9.jpg differ diff --git a/data_dataset/tch/debug/debug_9.txt b/data_dataset/tch/debug/debug_9.txt new file mode 100644 index 0000000..70b6d26 --- /dev/null +++ b/data_dataset/tch/debug/debug_9.txt @@ -0,0 +1,498 @@ +10 0.582061 0.965607 0.008514 0.004767 +10 0.395919 0.940636 0.009689 0.005221 +10 0.464328 0.936776 0.011450 0.003859 +10 0.172783 0.932009 0.008514 0.005675 +9 0.631092 0.941317 0.016148 0.028831 +9 0.831914 0.939728 0.016148 0.028831 +9 0.929243 0.940295 0.015854 0.029058 +9 0.730182 0.940182 0.017029 0.029739 +10 0.822666 0.923837 0.008808 0.003405 +10 0.718732 0.923383 0.008221 0.002497 +9 0.456400 0.923269 0.009102 0.037684 +10 0.329859 0.863451 0.015561 0.006129 +10 0.618761 0.861180 0.010863 0.004767 +10 0.114944 0.861407 0.008514 0.005221 +10 0.163975 0.858683 0.007927 0.002497 +10 0.241779 0.859364 0.013212 0.004767 +10 0.469025 0.858002 0.007340 0.003405 +10 0.590575 0.856413 0.008514 0.005221 +10 0.173664 0.853689 0.019084 0.006129 +9 0.545948 0.852554 0.012038 0.030193 +10 0.356870 0.858683 0.009689 0.003859 +10 0.159278 0.828944 0.007927 0.002951 +9 0.490458 0.840182 0.016148 0.029512 +9 0.718585 0.839047 0.015561 0.028604 +9 0.611421 0.842338 0.016148 0.034279 +9 0.818996 0.838706 0.015561 0.028377 +9 0.927041 0.838252 0.015561 0.028377 +9 0.178362 0.835982 0.015561 0.030647 +9 0.279360 0.835641 0.015561 0.030874 +9 0.379477 0.834166 0.016148 0.028377 +10 0.831327 0.821453 0.008514 0.004767 +9 0.699501 0.831328 0.012625 0.031782 +10 0.704198 0.816686 0.012625 0.004767 +10 0.589695 0.762883 0.014974 0.003405 +10 0.917792 0.762429 0.007634 0.004767 +10 0.439078 0.761521 0.008514 0.002951 +10 0.698767 0.761294 0.007634 0.002951 +10 0.472255 0.761975 0.008514 0.004767 +10 0.388432 0.755165 0.009982 0.003859 +9 0.641515 0.761067 0.011744 0.029739 +10 0.366853 0.749943 0.012625 0.005221 +9 0.422049 0.750624 0.009689 0.032917 +9 0.831180 0.747333 0.007046 0.027242 +9 0.495596 0.740295 0.008808 0.034960 +9 0.600851 0.743814 0.016735 0.030647 +9 0.704492 0.744154 0.017322 0.032236 +9 0.929977 0.743473 0.016148 0.032236 +9 0.816353 0.742679 0.016735 0.030647 +9 0.175719 0.732463 0.014386 0.031555 +9 0.481650 0.737684 0.016735 0.031555 +10 0.177187 0.720658 0.007927 0.006129 +9 0.282883 0.731896 0.014974 0.031328 +9 0.382707 0.731782 0.017322 0.031555 +10 0.887992 0.662089 0.007340 0.005675 +10 0.766442 0.653008 0.009689 0.003859 +9 0.676600 0.649830 0.007340 0.028831 +9 0.783177 0.643360 0.009102 0.032690 +7 0.508221 0.582066 0.012331 0.016345 +7 0.584410 0.568104 0.012625 0.017026 +7 0.136083 0.565380 0.012038 0.011578 +10 0.441133 0.555392 0.009102 0.002951 +8 0.386524 0.564472 0.009102 0.023837 +10 0.222108 0.555165 0.009102 0.002951 +10 0.402085 0.456640 0.007340 0.004313 +9 0.906195 0.452100 0.010276 0.011578 +10 0.595860 0.458910 0.016735 0.005675 +10 0.363036 0.454370 0.017322 0.003405 +10 0.839841 0.438479 0.012625 0.003405 +9 0.945244 0.433825 0.010863 0.036776 +10 0.163975 0.359251 0.019084 0.005221 +10 0.670728 0.354938 0.009689 0.005675 +10 0.932032 0.354030 0.016735 0.003405 +10 0.858338 0.348127 0.016148 0.002497 +10 0.620523 0.347900 0.010276 0.002497 +10 0.871550 0.347900 0.007340 0.002951 +10 0.831621 0.350851 0.023782 0.003405 +10 0.413535 0.350397 0.022607 0.003405 +10 0.387698 0.351532 0.022607 0.005675 +10 0.361861 0.351532 0.022607 0.005675 +10 0.570611 0.351759 0.022020 0.005675 +10 0.309014 0.351532 0.022607 0.005675 +10 0.283177 0.351305 0.022607 0.005675 +10 0.227099 0.347900 0.017322 0.004313 +10 0.647827 0.292736 0.010863 0.005675 +10 0.743247 0.287287 0.014974 0.005221 +10 0.469025 0.280477 0.011450 0.003405 +10 0.333382 0.275028 0.012625 0.003405 +10 0.208309 0.271169 0.012625 0.002497 +10 0.719466 0.268331 0.007340 0.004086 +10 0.897093 0.261862 0.010276 0.003405 +9 0.940399 0.277299 0.017029 0.032917 +9 0.537581 0.255959 0.017029 0.032009 +9 0.351439 0.255959 0.017029 0.031555 +10 0.176307 0.269580 0.032002 0.005675 +10 0.835731 0.182860 0.007927 0.002497 +10 0.818409 0.173780 0.007340 0.005221 +10 0.436142 0.164245 0.014386 0.005221 +9 0.419994 0.151532 0.009102 0.034279 +8 0.740311 0.153802 0.010863 0.036095 +9 0.448180 0.147900 0.009102 0.039728 +10 0.334850 0.082520 0.010276 0.003405 +10 0.461832 0.080023 0.011744 0.005675 +10 0.588373 0.077526 0.007634 0.006583 +10 0.658837 0.069807 0.012331 0.005675 +8 0.524662 0.060953 0.015267 0.032463 +9 0.892249 0.056754 0.011744 0.031782 +9 0.349237 0.055165 0.006753 0.042225 +9 0.292719 0.053348 0.015267 0.046311 +9 0.330153 0.050284 0.009689 0.051532 +12 0.769231 0.953008 0.011744 0.007719 +12 0.667939 0.949943 0.010570 0.006583 +13 0.114651 0.949943 0.011450 0.007491 +12 0.870669 0.949035 0.010863 0.007037 +12 0.567087 0.944495 0.010863 0.007491 +14 0.750147 0.943814 0.010570 0.006583 +13 0.706107 0.943360 0.010570 0.007037 +13 0.134028 0.943473 0.011450 0.007264 +13 0.810188 0.943133 0.010863 0.007037 +14 0.852466 0.942906 0.010863 0.007491 +13 0.223282 0.942792 0.011450 0.007719 +13 0.536260 0.941544 0.011450 0.007946 +13 0.608191 0.937911 0.009689 0.007037 +14 0.650470 0.937344 0.010863 0.006810 +13 0.152525 0.936776 0.010863 0.007491 +13 0.326629 0.936209 0.010276 0.007719 +13 0.241486 0.936095 0.010276 0.007946 +13 0.517763 0.935414 0.010863 0.007491 +14 0.951703 0.933371 0.010863 0.007037 +12 0.172490 0.933258 0.008514 0.007264 +13 0.258368 0.932917 0.009395 0.007037 +13 0.908250 0.932804 0.010863 0.007264 +13 0.203171 0.929966 0.011157 0.007491 +12 0.279360 0.929398 0.010863 0.008173 +13 0.345713 0.925880 0.012038 0.007946 +13 0.307546 0.925880 0.012038 0.007946 +13 0.498826 0.924972 0.011744 0.007946 +13 0.364797 0.921339 0.010863 0.007946 +13 0.478274 0.917367 0.010570 0.008173 +13 0.421609 0.917480 0.009982 0.008400 +12 0.393277 0.917253 0.010276 0.007946 +13 0.458162 0.911010 0.008514 0.008173 +13 0.440840 0.907491 0.009689 0.007491 +18 0.901497 0.852894 0.007340 0.006356 +13 0.902672 0.832009 0.010863 0.007264 +13 0.398708 0.833939 0.011157 0.007491 +12 0.757046 0.851532 0.010863 0.007264 +11 0.621991 0.851192 0.007340 0.007946 +13 0.631679 0.835982 0.011450 0.007491 +12 0.650910 0.848922 0.011157 0.007037 +12 0.860393 0.848241 0.010863 0.007037 +12 0.546242 0.842906 0.009689 0.006810 +13 0.691867 0.841998 0.010863 0.006810 +14 0.840135 0.841884 0.011450 0.007037 +13 0.794627 0.841771 0.010863 0.006810 +14 0.736054 0.841998 0.011157 0.007264 +12 0.318996 0.840863 0.010863 0.007719 +12 0.426160 0.840295 0.011450 0.007491 +12 0.113476 0.838252 0.010863 0.007491 +12 0.215355 0.837684 0.010276 0.007264 +13 0.467557 0.836776 0.010863 0.006810 +14 0.508514 0.836663 0.009982 0.007037 +13 0.588520 0.836322 0.010863 0.007264 +13 0.354815 0.834166 0.012038 0.007946 +13 0.156342 0.831555 0.009689 0.005902 +14 0.948914 0.832009 0.011744 0.007719 +14 0.197152 0.831328 0.010276 0.007264 +13 0.256459 0.830988 0.011450 0.007491 +13 0.300206 0.830874 0.010863 0.007719 +12 0.333676 0.756867 0.010863 0.004086 +13 0.837493 0.738252 0.010276 0.007719 +12 0.642543 0.751759 0.010276 0.007037 +12 0.858485 0.751646 0.011157 0.007264 +12 0.536847 0.746084 0.011450 0.007491 +12 0.746477 0.745289 0.011450 0.007264 +13 0.405608 0.725426 0.010863 0.007491 +12 0.424545 0.740068 0.011157 0.007719 +13 0.576189 0.739501 0.009102 0.007037 +13 0.679830 0.739160 0.009689 0.007264 +14 0.622284 0.739160 0.009689 0.007264 +14 0.951850 0.738706 0.011157 0.007264 +13 0.900029 0.738479 0.009689 0.007264 +13 0.789636 0.738479 0.009689 0.007264 +14 0.724457 0.738479 0.010863 0.007719 +12 0.322519 0.733258 0.010276 0.007719 +14 0.502496 0.732690 0.009689 0.007491 +13 0.457868 0.732917 0.010863 0.007946 +12 0.224604 0.725312 0.010570 0.007719 +13 0.360100 0.725085 0.010276 0.007719 +12 0.112889 0.720091 0.011450 0.008173 +13 0.261157 0.719183 0.009689 0.008173 +14 0.304316 0.718502 0.010276 0.007264 +14 0.197446 0.715891 0.010276 0.007037 +13 0.155167 0.716118 0.010276 0.007491 +12 0.234439 0.649262 0.011450 0.007264 +13 0.900029 0.636436 0.009689 0.007491 +13 0.527892 0.655278 0.011157 0.007491 +11 0.378009 0.652327 0.012038 0.007491 +13 0.551674 0.652213 0.011744 0.007719 +13 0.503376 0.652327 0.011450 0.007946 +12 0.467264 0.652100 0.012038 0.007946 +12 0.200088 0.649603 0.010863 0.007037 +11 0.112008 0.649716 0.009689 0.007264 +12 0.430270 0.648808 0.009689 0.006810 +13 0.265267 0.646084 0.010863 0.007264 +12 0.164709 0.646425 0.009982 0.007946 +13 0.582355 0.645289 0.010863 0.007491 +13 0.707134 0.644835 0.010276 0.007491 +13 0.850998 0.644608 0.010276 0.007491 +13 0.285232 0.642338 0.009689 0.007491 +13 0.603787 0.641430 0.010276 0.007037 +13 0.730916 0.641430 0.009689 0.007491 +13 0.683500 0.641317 0.011157 0.007719 +12 0.642249 0.640976 0.009689 0.007037 +13 0.877129 0.641090 0.010863 0.007719 +13 0.308280 0.637911 0.009982 0.007719 +13 0.755285 0.636663 0.010276 0.007946 +13 0.338373 0.634733 0.010276 0.007719 +12 0.809601 0.633258 0.009689 0.007491 +13 0.785526 0.633371 0.009689 0.007719 +13 0.922196 0.632804 0.010570 0.008400 +13 0.945831 0.630079 0.010863 0.007946 +11 0.610393 0.584677 0.009395 0.007037 +12 0.611274 0.561748 0.010570 0.007491 +12 0.611127 0.551305 0.011450 0.008400 +11 0.557839 0.584563 0.009982 0.006810 +12 0.558133 0.561748 0.009982 0.007491 +12 0.557252 0.551305 0.010570 0.007491 +17 0.159718 0.585017 0.011157 0.007719 +17 0.159571 0.571283 0.011450 0.007491 +11 0.159718 0.555165 0.011744 0.007946 +17 0.320464 0.571510 0.011450 0.007491 +11 0.318702 0.558343 0.010276 0.006583 +12 0.417058 0.561862 0.010863 0.007264 +12 0.651938 0.561748 0.010863 0.007491 +12 0.651644 0.551305 0.011450 0.008400 +13 0.241192 0.561521 0.011450 0.007037 +12 0.494568 0.557889 0.010863 0.006583 +12 0.439812 0.558343 0.009395 0.007491 +12 0.385790 0.558229 0.009395 0.007264 +13 0.221227 0.558002 0.009102 0.007264 +13 0.878743 0.555278 0.009982 0.007719 +12 0.361861 0.555051 0.010863 0.007264 +13 0.259982 0.554824 0.010276 0.007264 +12 0.112742 0.554824 0.010570 0.007264 +12 0.847769 0.554824 0.011450 0.007719 +11 0.781709 0.554938 0.010863 0.007946 +12 0.469319 0.554711 0.010863 0.007491 +11 0.469759 0.584563 0.008808 0.007264 +11 0.468732 0.571169 0.009689 0.006810 +13 0.681298 0.554711 0.010863 0.007946 +12 0.518350 0.554711 0.011450 0.007946 +13 0.897240 0.551873 0.010570 0.008173 +12 0.821932 0.551305 0.011450 0.007037 +13 0.699794 0.551192 0.009102 0.007264 +13 0.915003 0.547333 0.010863 0.008173 +13 0.716530 0.546992 0.010863 0.007946 +13 0.278626 0.546992 0.011157 0.007946 +13 0.931445 0.543927 0.008514 0.007719 +13 0.732384 0.543927 0.009689 0.008627 +13 0.955520 0.540522 0.010863 0.007719 +13 0.751174 0.540409 0.012038 0.007946 +14 0.346888 0.486152 0.010276 0.007491 +14 0.517469 0.486606 0.009689 0.008854 +13 0.690399 0.486039 0.010276 0.008173 +13 0.693042 0.448695 0.009102 0.007037 +11 0.704492 0.441998 0.017322 0.009535 +14 0.429096 0.485698 0.010276 0.007491 +14 0.600264 0.485812 0.010863 0.008173 +14 0.258808 0.485585 0.010276 0.008627 +14 0.172930 0.485358 0.009982 0.008173 +12 0.650470 0.482860 0.011450 0.007719 +14 0.559454 0.482974 0.011450 0.007946 +14 0.537728 0.482974 0.010276 0.007946 +14 0.112595 0.482747 0.011450 0.007491 +14 0.477540 0.482747 0.010863 0.007946 +14 0.388285 0.482747 0.010863 0.007946 +14 0.279654 0.482406 0.010863 0.007719 +14 0.219612 0.482293 0.010570 0.007491 +14 0.193629 0.482406 0.010276 0.007719 +14 0.449941 0.482066 0.010863 0.007491 +14 0.368614 0.482066 0.010276 0.007491 +14 0.306078 0.482406 0.010863 0.008173 +14 0.711245 0.482066 0.010863 0.007946 +14 0.622871 0.482179 0.011450 0.008173 +14 0.739430 0.479228 0.010863 0.008173 +14 0.409131 0.479115 0.010276 0.007946 +14 0.671169 0.479001 0.010570 0.008173 +14 0.580299 0.479115 0.010863 0.008400 +14 0.326776 0.479001 0.010570 0.008173 +14 0.498092 0.479115 0.010863 0.008854 +14 0.239137 0.478434 0.009689 0.007946 +14 0.143423 0.478547 0.010863 0.008173 +14 0.758221 0.475596 0.010863 0.007264 +17 0.772460 0.443360 0.017029 0.006356 +14 0.777598 0.472077 0.010863 0.007491 +14 0.798004 0.468899 0.010570 0.007491 +14 0.816794 0.465040 0.010570 0.006129 +14 0.847181 0.462543 0.011450 0.007491 +14 0.865678 0.458683 0.010863 0.007037 +14 0.884469 0.455959 0.010863 0.007946 +14 0.903846 0.452440 0.009689 0.006356 +14 0.923958 0.449603 0.011157 0.007946 +14 0.943482 0.446198 0.010276 0.007491 +14 0.863623 0.384790 0.009689 0.007719 +14 0.890047 0.384790 0.009689 0.008173 +12 0.655901 0.384222 0.009982 0.007946 +14 0.473136 0.384222 0.009689 0.007946 +14 0.447005 0.384222 0.010276 0.007946 +14 0.264680 0.383882 0.010863 0.007719 +14 0.238550 0.383995 0.010276 0.007946 +14 0.681004 0.383768 0.009689 0.008400 +14 0.786700 0.381271 0.010863 0.007491 +14 0.760863 0.381385 0.010863 0.007719 +14 0.551967 0.381044 0.009982 0.007491 +14 0.139313 0.381044 0.010276 0.007491 +14 0.343365 0.380931 0.010863 0.007719 +14 0.577951 0.380590 0.010276 0.007491 +14 0.369789 0.380477 0.010863 0.007719 +14 0.112595 0.380363 0.010863 0.007946 +14 0.941427 0.378547 0.010276 0.008400 +14 0.838373 0.377980 0.010863 0.007719 +14 0.916031 0.377866 0.009982 0.007946 +14 0.812243 0.377866 0.010276 0.007946 +14 0.732678 0.377412 0.009689 0.007946 +14 0.421169 0.377299 0.010276 0.007719 +14 0.394745 0.377299 0.010276 0.007719 +14 0.316794 0.377412 0.009982 0.007946 +14 0.175719 0.377185 0.010276 0.007491 +14 0.603641 0.377072 0.009982 0.007719 +14 0.525250 0.377185 0.010570 0.007946 +14 0.200969 0.376958 0.009102 0.007491 +14 0.499853 0.377185 0.010276 0.008400 +14 0.290517 0.376958 0.010863 0.007946 +13 0.284058 0.354257 0.010863 0.003859 +14 0.707575 0.376844 0.009982 0.008173 +14 0.629331 0.376958 0.009689 0.008400 +14 0.902965 0.296027 0.010863 0.007719 +14 0.883881 0.295914 0.011450 0.007491 +14 0.940986 0.288649 0.010570 0.007491 +14 0.921756 0.288536 0.010863 0.007264 +14 0.823106 0.281498 0.010863 0.007719 +14 0.805344 0.281271 0.011744 0.008173 +14 0.863329 0.275142 0.011450 0.007719 +14 0.844245 0.275028 0.010863 0.007491 +14 0.738403 0.271283 0.009982 0.007264 +14 0.718585 0.270829 0.009689 0.007264 +13 0.550499 0.269012 0.007046 0.005902 +14 0.779066 0.264699 0.009689 0.007719 +14 0.760276 0.264586 0.009689 0.007491 +13 0.645479 0.257208 0.011450 0.007719 +11 0.593511 0.257321 0.012038 0.007946 +14 0.697299 0.249489 0.010570 0.007719 +14 0.676894 0.249376 0.010863 0.007491 +12 0.465062 0.246084 0.009982 0.007719 +11 0.395479 0.245970 0.009395 0.007491 +13 0.516588 0.239955 0.011450 0.007719 +13 0.561803 0.239728 0.010276 0.008173 +13 0.199501 0.239614 0.010276 0.007946 +13 0.164122 0.239501 0.011157 0.007719 +11 0.114063 0.239047 0.010863 0.007719 +13 0.226806 0.236095 0.009689 0.008173 +18 0.261157 0.233031 0.011450 0.007491 +18 0.288462 0.229398 0.010863 0.007491 +18 0.376248 0.226788 0.011450 0.008173 +18 0.330153 0.226561 0.010863 0.007719 +14 0.562683 0.195914 0.009689 0.008627 +11 0.514240 0.195687 0.010276 0.008173 +14 0.582648 0.192395 0.010863 0.007946 +14 0.600558 0.189103 0.011450 0.007719 +14 0.619642 0.185358 0.010863 0.007491 +11 0.631239 0.151646 0.011157 0.008173 +14 0.638285 0.182066 0.010570 0.007264 +14 0.861127 0.180931 0.008221 0.005448 +14 0.861568 0.145970 0.010863 0.008173 +14 0.656048 0.178661 0.010863 0.007719 +14 0.673958 0.175028 0.010276 0.005902 +14 0.702437 0.172418 0.010863 0.007946 +14 0.705226 0.153235 0.012331 0.005902 +14 0.879771 0.142452 0.009689 0.008400 +14 0.720640 0.169126 0.009689 0.006810 +14 0.737816 0.166288 0.011157 0.007946 +14 0.759689 0.162770 0.010276 0.007264 +13 0.779654 0.159591 0.010276 0.008173 +13 0.780388 0.179342 0.015854 0.008627 +14 0.797416 0.156413 0.009395 0.007264 +14 0.815913 0.153121 0.009982 0.007946 +14 0.843365 0.149830 0.009689 0.006810 +12 0.351879 0.148014 0.010863 0.007719 +12 0.251908 0.147446 0.011157 0.007946 +12 0.377569 0.143587 0.011157 0.007946 +12 0.316060 0.143587 0.010863 0.007946 +12 0.277158 0.143473 0.009982 0.008173 +11 0.168673 0.142906 0.010863 0.007946 +12 0.216383 0.142679 0.011157 0.008400 +12 0.422049 0.140749 0.010276 0.008627 +14 0.897974 0.138820 0.009689 0.008400 +14 0.944510 0.136436 0.009395 0.007719 +14 0.916177 0.135982 0.009689 0.008173 +12 0.450822 0.134166 0.010276 0.008173 +12 0.115825 0.129512 0.010863 0.007491 +12 0.476659 0.127242 0.010276 0.007037 +18 0.140194 0.123156 0.011450 0.007491 +13 0.483558 0.084790 0.009982 0.007491 +13 0.504110 0.078093 0.011157 0.007719 +13 0.462419 0.077639 0.011157 0.006810 +13 0.431591 0.074688 0.011744 0.008173 +13 0.524516 0.071510 0.011450 0.006810 +13 0.548297 0.062316 0.010863 0.007491 +13 0.313417 0.061521 0.010863 0.007264 +13 0.565179 0.055732 0.011157 0.007946 +13 0.414122 0.051759 0.011450 0.007719 +12 0.866412 0.049943 0.009982 0.007719 +11 0.826336 0.049035 0.010276 0.007719 +12 0.651057 0.048468 0.009689 0.007946 +13 0.580593 0.048014 0.009102 0.007946 +13 0.393864 0.047673 0.009689 0.007719 +12 0.893570 0.046765 0.009689 0.007719 +18 0.177041 0.046425 0.016442 0.007491 +18 0.118321 0.046538 0.016442 0.007719 +12 0.678068 0.045176 0.009689 0.008627 +13 0.631386 0.045176 0.009102 0.008627 +13 0.599824 0.044381 0.009982 0.007037 +12 0.921756 0.043927 0.009689 0.007491 +13 0.374780 0.043814 0.010276 0.008173 +12 0.706107 0.041544 0.010570 0.007719 +12 0.945978 0.040636 0.009982 0.008173 +13 0.353053 0.040068 0.009689 0.007946 +12 0.731503 0.038138 0.009689 0.006810 +13 0.616999 0.037911 0.009689 0.007719 +13 0.332501 0.036436 0.010276 0.007037 +17 0.241486 0.036663 0.011450 0.007946 +13 0.292572 0.036663 0.011450 0.008400 +11 0.772314 0.035755 0.011450 0.007491 +18 0.798738 0.029512 0.011450 0.007719 +4 0.930857 0.136549 0.010863 0.021112 +3 0.579125 0.258002 0.007927 0.021112 +4 0.237962 0.147446 0.010863 0.020658 +4 0.299912 0.143814 0.010276 0.021112 +3 0.723576 0.478774 0.007340 0.021339 +5 0.414709 0.645516 0.009102 0.016572 +5 0.161039 0.373780 0.009102 0.016572 +4 0.830446 0.149943 0.010863 0.020658 +4 0.499853 0.196368 0.010863 0.020885 +4 0.688344 0.171964 0.010863 0.021566 +3 0.500000 0.239728 0.008221 0.021339 +1 0.041838 0.568104 0.023782 0.050624 +1 0.041251 0.660045 0.024369 0.050170 +1 0.042425 0.352667 0.024369 0.050170 +1 0.044627 0.066629 0.023488 0.050170 +4 0.201850 0.049830 0.007340 0.014302 +3 0.833382 0.462316 0.007340 0.020658 +5 0.665443 0.735414 0.009102 0.017026 +4 0.159571 0.485017 0.010276 0.021112 +3 0.574134 0.836436 0.007927 0.020204 +4 0.403259 0.561521 0.010276 0.021112 +3 0.522607 0.746311 0.008221 0.020658 +3 0.210658 0.726107 0.007340 0.020204 +3 0.595273 0.938365 0.007340 0.019750 +3 0.776130 0.739047 0.007340 0.020204 +5 0.885056 0.734279 0.009102 0.017026 +3 0.142836 0.831669 0.007340 0.020658 +4 0.223282 0.383314 0.010276 0.021112 +4 0.451703 0.836663 0.010863 0.020204 +4 0.183940 0.239387 0.010863 0.021112 +3 0.454492 0.584449 0.007634 0.020658 +3 0.408544 0.917026 0.009102 0.023837 +1 0.042132 0.841657 0.024369 0.050170 +1 0.042719 0.943814 0.023782 0.050170 +4 0.567968 0.645062 0.010276 0.020658 +3 0.251762 0.646652 0.007340 0.019296 +1 0.041691 0.751078 0.024662 0.050624 +5 0.240311 0.826901 0.009689 0.016572 +5 0.413829 0.837344 0.009102 0.017026 +4 0.245302 0.232577 0.010276 0.021112 +1 0.043306 0.454370 0.024369 0.050170 +1 0.043600 0.160159 0.023782 0.043814 +1 0.043600 0.269807 0.023194 0.043360 +3 0.100264 0.838706 0.007927 0.021112 +4 0.080299 0.064699 0.009689 0.021793 +4 0.070464 0.053348 0.009395 0.019977 +4 0.078978 0.451759 0.009395 0.020431 +4 0.068702 0.441317 0.009982 0.020431 +4 0.078391 0.565267 0.009395 0.020431 +4 0.068409 0.554143 0.009395 0.019069 +4 0.078391 0.838365 0.009395 0.019977 +4 0.067528 0.828377 0.009982 0.019977 +4 0.080153 0.940522 0.009982 0.019977 +4 0.070317 0.930306 0.009102 0.019523 +4 0.077951 0.747560 0.009689 0.019977 +4 0.067528 0.737684 0.009395 0.020658 +4 0.077217 0.656527 0.009982 0.019523 +4 0.067528 0.646311 0.009395 0.019977 +4 0.079565 0.160499 0.009395 0.019977 +4 0.069877 0.150284 0.009982 0.020431 +4 0.078391 0.350057 0.009982 0.020431 +4 0.068996 0.339841 0.009982 0.019977 +4 0.078978 0.270148 0.009982 0.020431 +4 0.069289 0.259932 0.009395 0.019977 \ No newline at end of file diff --git a/data_dataset/tch/tch.pdf b/data_dataset/tch/tch.pdf new file mode 100644 index 0000000..e3964d2 Binary files /dev/null and b/data_dataset/tch/tch.pdf differ diff --git a/dd_classes.py b/dd_classes.py index 92b1589..30a9a81 100644 --- a/dd_classes.py +++ b/dd_classes.py @@ -2,12 +2,13 @@ from typing import Tuple class RestNg: - def __init__(self, length, groupId, isRest, numNotes, beamLength, beamEnd): + def __init__(self, length, groupId, isRest, numNotes, beamLength, beamEnd, acrossLineNGID=None): self.length:Fraction = length self.groupId:int = groupId # =1: rest, 0: singleNote, other: groupId self.isRest:bool = isRest self.numNotes:int = numNotes # number of notes in the Ng, 0 for rest self.beamLength:Tuple[int,int] = beamLength # single note in Ng: (left, right) else (-1, -1) for rest, others self.beamEnd: Tuple[int,int]= beamEnd # single note in Ng: the x,y for the end of beam or (-1,-1) + self.acrossLineNGID: int|None = acrossLineNGID self.newGroupId: int|None = None self.newLength:Fraction|None = None # the tuned length diff --git a/exportXml.py b/exportXml.py new file mode 100644 index 0000000..95ff2ec --- /dev/null +++ b/exportXml.py @@ -0,0 +1,526 @@ +import statistics +import cv2 +import numpy as np + +from typing import List,Tuple, Union, Set +from music21 import stream, note, metadata, chord, meter, clef, key +from scipy import stats + +from utils import * + +CLEF_OPTIONS = [[1],[1],[0,1],[-1,-2,1]] +TRACK_SHIFT = [0,0,0,0] + +def exportXML(barList:List[List[Bar]], numTrack:int, image:np.ndarray|None = None, + beamMapImg:np.ndarray|None = None, + barsBreakPoints: List[int] = [0], + beamMapList:List[np.ndarray]|None = None, + beamMapRefList:List[int]|None = None, + lineNoList:List[int] | None = None): + # Stem's label -> rhythm meaning + # class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + if image is None: + debugXMLImg = None + else: + debugXMLImg = image.copy() + if beamMapImg is not None: + bb,gg,rr = cv2.split(beamMapImg) + score = stream.Score() + score.metadata = metadata.Metadata() + score.metadata.title = "Example MusicXML" + score2 = stream.Score() # for those with shift + score2.metadata = metadata.Metadata() + score2.metadata.title = "Example MusicXML" + + part = [stream.Part() for n in range(numTrack)] + part2 = [stream.Part() for n in range(numTrack)] + keyName = ['C','D','E','F','G','A','B'] + keyCharFlat = ['C','D-','D','E-','E','F','G-','G','A-','A','B-','B'] + keyCharSharp = ['C','C#','D','D#','E','F','F#','G','G#','A','A#','B'] + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + restClassNames = ['1/4','1/8','1/16','1/32'] # only for >=0 + currentClef = [None]*numTrack + sharps = [3,0,4,1,5,2,6] # F C G D A E B + flats = [6,2,5,1,4,0,3] # B E A D G C F + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + currentKs = [0 for n in range(numTrack)] + trksOriginal = [[] for _ in range (numTrack)] # for tracking all original notes we see + trksShifted = [[] for _ in range (numTrack)] # for tracking all shifted notes + def setKS(ks:float, trkNo): + ks = int(ks) + nonlocal ksSharp + nonlocal ksFlat + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def setKSNeutral(Oriks:float, trkNo, trackShift): + Oriks = int(Oriks) + nonlocal ksSharp + nonlocal ksFlat + ks = Oriks+trackShift + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def parseClefOne(elem:Clef, lineNo:int): + nonlocal currentClef + currentClef[lineNo%numTrack] = elem.type + return elem.type + def getClefFromType(clefType:int): + clf = clef.TrebleClef() + if clefType == 1: + clf = clef.TrebleClef() + elif clefType == 0: + clf = clef.AltoClef() + elif clefType == -1: #-1 + clf = clef.BassClef() + elif clefType == -2: + clf = clef.TenorClef() + return clf + + def parseClef(elem:Clef, lineNo:int): + nonlocal currentClef + if elem.type == currentClef[lineNo%numTrack]: + return None + clf = None + if elem.type == 1: + clf = clef.TrebleClef() + elif elem.type == 0: + clf = clef.AltoClef() + elif elem.type == -1: #-1 + clf = clef.BassClef() + elif elem.type == -2: + clf = clef.TenorClef() + currentClef[lineNo%numTrack] = elem.type + return clf + def parseAccidentals(elem:Accidentals, lineNo:int): + if not elem.isKeySignature: # it's accidentals + return None + ys = elem.shrinkYs + if elem.ksKeySop is None: + keyNum = np.sum(rr[ys[0]:ys[1],(lineNo+1)%4])/((ys[1]-ys[0]))*2-25 + elem.ksKeySop= keyNum + return elem + def calculatePitch(inputPitch:str): + outputNum = keyCharFlat.index(inputPitch[0])+12*(int(inputPitch[-1])+1) + if len(inputPitch)==3: + if inputPitch[1] == '#': + outputNum+=1 + elif inputPitch[1] == '-' : + outputNum-=1 + return outputNum + def pitchListShift(inputPitchList:List[str], shift: int, sharp = True): # shift: how many half notes + returnList = [] + for pitch in inputPitchList: + pitchNum = calculatePitch(pitch) + pitchNum = pitchNum + shift + returnList.append(pitchNum) + referenceList = keyCharFlat + if sharp: + referenceList = keyCharSharp + for idx,pitchNo in enumerate(returnList): + clefNum = pitchNo//12-1 + pitchName = referenceList[pitchNo%12] + returnList[idx] = pitchName + str(clefNum) + return returnList + def parseNoteGroupShift(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, trkShift, flatSharp, linNo): + # trkShift: 0 if original: -2, new: -2 (two flats), 1 if original: -2, new: -1 + # flatSharp: how many flats/sharp, -2: two flats + # flatSharp = 2, trkShift = 0: (-2), flatSharp = 2, trkShift = 1: (-1) + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1 or currKey in flatSet: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen0) + trksShifted[linNo].append(keyShiftedList) + if len(keyShiftedList) > 1: + return flatSet, sharpSet, chord.Chord(keyShiftedList, quarterLength = currLength*4) + elif len(keyShiftedList) == 1: + return flatSet, sharpSet, note.Note(keyShiftedList[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None + # actualPitch, 0: B4, 1: C5, 2: D5 + + def parseNoteGroup(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, linNo, trkShift = 0): + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen 1: + return flatSet, sharpSet, chord.Chord(keyLst, quarterLength = currLength*4) + elif len(keyLst) == 1: + return flatSet, sharpSet, note.Note(keyLst[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None # ornament + # actualPitch, 0: B4, 1: C5, 2: D5 + def parseRest(elem:Rest): + restLength = float(elem.tunedLength) + if restLength>0: + # restLength = float(Fraction(restClassNames[elem.rhythm])) + # if elem.hasdot: + # restLength = restLength*1.5 + return note.Rest(quarterLength=restLength*4) + else: + pass + # print("setting rest to full") + # return note.Rest(quarterLength=4) + def assignKsCurrClef(accList:List[Accidentals], currentClef:int): + pitchShift = 0 + if currentClef == 0: + pitchShift -= 6 + elif currentClef== -1: + pitchShift -= 12 + elif currentClef== -2: + pitchShift -= 8 + i = 0 + while i= len(accList): + return None + totalLength = len(accList)-i + pitchList = [(accList[r].ksKeySop+pitchShift-1)%7 for r in range(i, len(accList))] + if not False in [abs(pitchList[k] - sharps[k%7])<1.2 or pitchList[k]-sharps[k%7]>5.8 for k in range(totalLength)]: + return totalLength + elif not False in [abs(pitchList[k] - flats[k%7])<1.2 or pitchList[k]-flats[k%7]>5.8 for k in range(totalLength)]: + return -totalLength + else: + return None + def assignKS(accList:List[Accidentals]): + pitchShift = 0 + if currentClef[lineNo%numTrack] == 0: + pitchShift -= 6 + elif currentClef[lineNo%numTrack] == -1: + pitchShift -= 12 + elif currentClef[lineNo%numTrack] == -2: + pitchShift -= 8 + i = 0 + while i= len(accList): + return None + totalLength = len(accList)-i + pitchList = [(accList[r].ksKeySop+pitchShift-1)%7 for r in range(i, len(accList))] + if not False in [abs(pitchList[k] - sharps[k%7])<1.2 or pitchList[k]-sharps[k%7]>5.8 for k in range(totalLength)]: + return totalLength + elif not False in [abs(pitchList[k] - flats[k%7])<1.2 or pitchList[k]-flats[k%7]>5.8 for k in range(totalLength)]: + return -totalLength + else: + return None + numBars = len(barList[0]) + ksBarMat = np.ones((numTrack, numBars))*np.inf + clefMat = np.ones((numTrack, numBars))*np.inf + currentClef = [None]*numTrack + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + if len(CLEF_OPTIONS[lineNo]) == 1: + clefMat[lineNo, currBarNumber] = CLEF_OPTIONS[lineNo][0] + else: + currBar = barList[lineNo][currBarNumber] + for elem in currBar.elementList: + if type(elem) == Clef: + newClef = parseClefOne(elem, lineNo) + if newClef in CLEF_OPTIONS[lineNo]: + clefMat[lineNo, currBarNumber] = newClef + if clefMat[lineNo, currBarNumber] == np.inf: + if currBarNumber == 0: + clefMat[lineNo, currBarNumber] = CLEF_OPTIONS[lineNo][0] + else: + clefMat[lineNo, currBarNumber] = clefMat[lineNo, currBarNumber-1] + global DEBUGIMG + beamMapRefIndex = -1 + for currBarNumber in range(numBars): + if beamMapRefList is not None: + if beamMapRefList[currBarNumber] != beamMapRefIndex: + beamMapRefIndex = beamMapRefList[currBarNumber] + beamMapImg = beamMapList[beamMapRefIndex] + bb,gg,rr = cv2.split(beamMapImg) + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + accumAcc: List[Accidentals] = [] # will have the list of accidentals to process + for elem in currBar.elementList: + if type(elem) == Accidentals: + if lineNoList is not None: + currAcc = parseAccidentals(elem,lineNoList[currBarNumber]) # return none if it's accidentals + else: + currAcc = parseAccidentals(elem, lineNo) + if currAcc is None: + if debugXMLImg is not None: + x0,y0,x1,y1 = elem.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),elem.getColor(), 1, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),elem.getColor(), 1, cv2.LINE_AA) + if len(accumAcc)>0: + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is None: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.circle(debugXMLImg, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.circle(DEBUGIMG, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + if barNumber == 1: + modShift = statistics.mode([a.shift for a in accumAcc]) + currentKs[lineNo%numTrack] = modShift*len(accumAcc) + ksBarMat[lineNo, currBarNumber] = modShift*len(accumAcc) + debugXMLImg = cv2.putText(debugXMLImg,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + else: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + debugXMLImg = cv2.putText(debugXMLImg,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + if ksCurr is not None and ksCurr != currentKs[lineNo%numTrack]: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + elif currAcc.endKeySignature: + accumAcc.append(currAcc) + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is None: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.circle(debugXMLImg, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.circle(DEBUGIMG, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + if barNumber == 1: + modShift = statistics.mode([a.shift for a in accumAcc]) + currentKs[lineNo%numTrack] = modShift*len(accumAcc) + ksBarMat[lineNo, currBarNumber] = modShift*len(accumAcc) + debugXMLImg = cv2.putText(debugXMLImg,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + else: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + debugXMLImg = cv2.putText(debugXMLImg,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + if ksCurr is not None and ksCurr != currentKs[lineNo%numTrack]: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + else: + accumAcc.append(currAcc) + if len(accumAcc)>0: + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is not None: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + if ksBarMat[lineNo, currBarNumber] == np.inf: + if currBarNumber in barsBreakPoints: + ksBarMat[lineNo, currBarNumber] = 0 + else: + ksBarMat[lineNo, currBarNumber] = ksBarMat[lineNo, currBarNumber-1] + kk = ksBarMat.copy() + for idx, trShift in enumerate(TRACK_SHIFT): + kk[idx,:] = kk[idx,:]-trShift + ksBarMatNeutral = np.zeros_like(ksBarMat) # the "standard" orchestra clef we want + ksBarMatNeutral[:,:] = stats.mode(kk, axis=0)[0] + ksBarMatNew = np.zeros_like(ksBarMat) + for idx, trShift in enumerate(TRACK_SHIFT): + ksBarMatNew[idx,:] = ksBarMatNeutral[idx,:]+trShift + ksBarMatNeutral = ksBarMatNeutral.astype(int) + ksBarMatNew = ksBarMatNew.astype(int) + clefMat = clefMat.astype(int) + tssList = [b.ts for b in barList[0]] + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + accumAcc = [] # will have the list of accidentals to process + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNew[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + elif tssList[currBarNumber]!=tssList[currBarNumber-1]: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNew[lineNo, currBarNumber-1]: + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + else: + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroup(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + lineNo, + trkShift=0) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part[lineNo%numTrack].append(measure) + for p in part: + score.append(p) + # Part 2: with shift + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + for currBarNumber in range(numBars): # for the new one shifted + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + # barNumber = barNumber+1 + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + accumAcc = [] # will have the list of accidentals to process + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNeutral[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKSNeutral(ks, lineNo, TRACK_SHIFT[lineNo]) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNeutral[lineNo, currBarNumber-1]: + setKSNeutral(ks, lineNo, TRACK_SHIFT[lineNo]) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroupShift(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + TRACK_SHIFT[lineNo], + ksBarMatNeutral[0,currBarNumber], + lineNo) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part2[lineNo%numTrack].append(measure) + for p in part2: + score2.append(p) + return score, score2, {'ksAssigned':debugXMLImg} diff --git a/instrumentMapping.json b/instrumentMapping.json new file mode 100644 index 0000000..30ba952 --- /dev/null +++ b/instrumentMapping.json @@ -0,0 +1,29 @@ +{ + "violin": ["treble"], + "viola": ["alto", "treble"], + "cello": ["bass", "tenor", "treble"], + "double_bass": ["bass"], + "bass": ["bass"], + "piccolo": ["treble"], + "flute": ["treble"], + "oboe": ["treble"], + "english_horn": ["treble"], + "clarinet": ["treble"], + "bass_clarinet": ["treble", "bass"], + "bassoon": ["bass", "tenor", "treble"], + "contrabassoon": ["bass"], + "french_horn": ["treble", "bass"], + "trumpet": ["treble"], + "trombone": ["bass", "tenor", "alto"], + "bass_trombone": ["bass"], + "tuba": ["bass"], + "harp": ["treble", "bass"], + "piano": ["treble", "bass"], + "celesta": ["treble", "bass"], + "timpani": ["bass"], + "xylophone": ["treble"], + "marimba": ["treble", "bass"], + "glockenspiel": ["treble"], + "vibraphone": ["treble"], + "horn": ["treble","bass"] +} \ No newline at end of file diff --git a/keySignatureMapping.json b/keySignatureMapping.json new file mode 100644 index 0000000..8e5ddb9 --- /dev/null +++ b/keySignatureMapping.json @@ -0,0 +1,15 @@ +{ + "C": [0,0], + "D flat": [-5, -11], + "D": [2, -10], + "E flat": [-3, -9], + "E": [4, -8], + "F": [-1, -7], + "F sharp": [6, -6], + "G flat": [-6, -6], + "G": [1, -5], + "A flat": [-4, -4], + "A": [3, -3], + "B flat": [-2, -2], + "B": [5, -1] +} diff --git a/md22musicxml.py b/md22musicxml.py new file mode 100644 index 0000000..a15be2e --- /dev/null +++ b/md22musicxml.py @@ -0,0 +1,308 @@ +from music21 import stream, note, metadata, chord, meter, clef, key, instrument +import re +from typing import Tuple, List +from fractions import Fraction +from music21.musicxml.m21ToXml import ScoreExporter +from xml.etree.ElementTree import tostring +def processLine(lineStr: str): + match lineStr[0]: + case " ": + pass +def printt(st): + print(st) +def printtt(st): + print(f" --- {st}") + +def updatePartName(part, name): + part.partName = name + +class ParserState: + def __init__(self): + self.isBeginningOfTrack: bool = True + self.isDirty: bool = True + self.currentInstrument: str = '' + self.currClef: clef = clef.TrebleClef() + self.currPart: stream.Part = stream.Part() + # quarterNum = 3: length 3 is a quarter note, length 1 is a triplet + self.quarterNum: int = 0 + # 3: ###, -4: bbbb + self.keySigature: int = 0 + self.timeSignature: Tuple[int,int] = [4,4] + + def reset(self): + self.isBeginningOfTrack: bool = True + self.isDirty: bool = True + self.currentInstrument: str = '' + self.currClef: clef = clef.TrebleClef() + self.currPart: stream.Part = stream.Part() + # quarterNum = 3: length 3 is a quarter note, length 1 is a triplet + self.quarterNum: int = 0 + # 3: ###, -4: bbbb + self.keySigature: int = 0 + self.timeSignature: Tuple[int,int] = [4,4] + + + def setCurrentInstrument(self, insName: str): + self.currentInstrument = insName + self.currPart.partName = insName + + def getClef(self): + return self.currClef + def setClef(self, clefNum: int): + match clefNum: + case 4: self.currClef = clef.TrebleClef() + case 13: self.currClef = clef.AltoClef() + case 12: self.currClef = clef.TenorClef() + case 22: self.currClef = clef.BassClef() + case _: self.currClef = clef.TrebleClef() + + def getCurrPart(self): + return self.currPart + + def getKeySignature(self): + return self.keySigature + def setKeySignature(self, ks:int): + self.keySigature = ks + + def setQuarterNum(self, qn:int): + self.quarterNum = qn + def getQuarterNum(self): + return self.quarterNum + + def setTimeSignature(self, ts: Tuple[int,int]): + if ts[1] == 1 and ts[0] == 1: + self.timeSignature = [4,4] + elif ts[1] == 0 and ts[0] == 0: + self.timeSignature = [2,2] + elif ts[1]*ts[0] != 0: + self.timeSignature = ts + def getTimeSignatureString(self): + ts = self.timeSignature + return f'{ts[0]}/{ts[1]}' + def updateParserState(self, line: str): + # line is something like '$ K:0 Q:12 T:1/1 C:4 D:Allegro (\\0& = 84)' + # parse keySignature + ksMatch = re.search(r"K:(\d+)", line) + if ksMatch: + ks = int(ksMatch.group(1)) + self.setKeySignature(ks) + printtt(f"setting key signature to {ks}") + + # parse quarter Num + qnMatch = re.search(r"Q:(\d+)", line) + if qnMatch: + qn = int(qnMatch.group(1)) + self.setQuarterNum(qn) + printtt(f"setting quarter number to {qn}") + + tsMatch = re.search(r"T:(\d+)/(\d+)", line) + if tsMatch: + num = int(tsMatch.group(1)) + den = int(tsMatch.group(2)) + self.setTimeSignature([num, den]) + printtt(f"setting time signature to {num}/{den}") + + clfMatch = re.search(r"C:(\d+)", line) + if clfMatch: + clef_num = int(clfMatch.group(1)) + self.setClef(clef_num) + printtt(f"setting clef to {clef_num}") + + self.isDirty = True + + + def addMeasureToPart(self, measure: stream.Measure): + self.currPart.append(measure) + + def getIsDirty(self): + return self.isDirty + def setDirtyFalse(self): + self.isDirty = False + + +class RestNGObj: + def __init__(self, pitchs: List[str], dur: int): + self.pitchs = pitchs + self.dur = dur + def decode(self, div: int): + onlyNote = [p.replace('f','-') for p in self.pitchs if p != 'rest'] + ql = self.dur/div + if ql == 0: + print() + if len(onlyNote) == 0: + return note.Rest(quarterLength=ql) + elif len(onlyNote) == 0: + return note.Note(onlyNote[0], quarterLength=ql) + else: + return chord.Chord(onlyNote, quarterLength=ql) + +def parseMeasure(msStringLst: List[str], parserState: ParserState, currentMeasureNumber: int): + m: stream.Measure = stream.Measure(number=currentMeasureNumber) + msDict = dict() + currOnset = 0 + prevOnset = 0 + prevLen = 0 + for msString in msStringLst: + ky = msString[0] + match ky: + case 'A'|'B'|'C'|'D'|'E'|'F'|'G'|'r': + noteStr = msString[0:4].strip() + dur = int(msString[5:8].strip()) + dictKy = f'{currOnset},{dur}' + if msDict.get(dictKy): + msDict[dictKy].append(noteStr) + else: + msDict[dictKy] = [noteStr] + prevOnset = currOnset + prevLen = dur + currOnset += dur + case ' ': + # chord + dur = int(msString[5:8].strip()) + dictKy = f'{prevOnset},{prevLen}' + noteStr = msString[1:5].strip() + msDict[dictKy].append(noteStr) + case 'b': + # going back + dur = int(msString[5:8]) + currOnset -= dur + case 'i': + dur = int(msString[5:8]) + currOnset += dur + # invisible rest, ignore + # rest + resLst = [] + while len(msDict) > 0: + currTrk = [] + prevEnd = 0 + keys_to_delete = [] + consumed_any = False + for dictKy in list(msDict): # iterate over a snapshot of keys + match = re.search(r"(\d+),(\d+)", dictKy) + if not match: + keys_to_delete.append(dictKy) + continue + onset = int(match.group(1)) + dur = int(match.group(2)) + if onset == prevEnd: + currTrk.append(RestNGObj(msDict[dictKy], dur)) + keys_to_delete.append(dictKy) + prevEnd += dur + consumed_any = True + elif onset > prevEnd: + currTrk.append(RestNGObj(['rest'], onset - prevEnd)) + currTrk.append(RestNGObj(msDict[dictKy], dur)) + keys_to_delete.append(dictKy) + prevEnd = onset + dur + consumed_any = True + for k in keys_to_delete: + del msDict[k] + resLst.append(currTrk) + if not consumed_any: # nothing was consumed → infinite loop guard + printtt(f"nothing updated in voice, left: {msDict}") + break + if parserState.getIsDirty(): + m.append(parserState.getClef()) + m.append(key.KeySignature(parserState.getKeySignature())) + m.append(meter.TimeSignature(parserState.getTimeSignatureString())) + parserState.setDirtyFalse() + # Ef3: flat F#3: sharp + if len(resLst) == 1: + # only one track + for r in resLst[0]: + m.append(r.decode(parserState.getQuarterNum())) + return m + elif len(resLst) > 1: + for i in range(len(resLst)): + v = stream.Voice() + for r in resLst[i]: + v.append(r.decode(parserState.getQuarterNum())) + m.insert(0, v) + return m + else: + printtt("issue processing measure") + return m + + + +def numberToString(num: int, strLen: int = 6): + stringNum = str(num) + strAppend = strLen-len(stringNum) + return ' '*strAppend + stringNum + + + +if __name__ == '__main__': + md2Paths = [rf"C:\Ellie\APIs\25-omr\md_gt\{j}_{i}.md2" for i in range(1,5) for j in [1,2,3,4,6,7,8]] + md2Paths.append(rf"C:\Ellie\APIs\25-omr\md_gt\6_5.md2") + for md2Path in md2Paths: + score = stream.Score() + allTrackStringsDict = dict() + allStrings = [] + with open(md2Path, "r", encoding="utf-8") as f: + for line_num, lineOrig in enumerate(f, start=1): + line = lineOrig.rstrip("\n") + allStrings.append(line) + parserState = ParserState() + skipUntilLine = -1 + isComment = False + measureAccumList = [] + currentMeasureNumber = 1 + inMeasureTitle = ['A','B','C','D','E','F','G',' ','b','i','r'] + ignoreList = ['S','*','g','f','c'] + for (line_num, line) in enumerate(allStrings): + fmtLineNum = numberToString(line_num+1) + if (line_num < skipUntilLine + or len(line) < 1 + or line[0] == '@' # single line comments + or line[0] == 'P' # print suggestion record + or (isComment and line[0] != '&') + ): + printt(f"{fmtLineNum}:") + continue + line = line.rstrip("\n") + if line.startswith("/END"): + score.append(parserState.getCurrPart()) + parserState.reset() + continue + elif line.startswith("&&&&&&"): + skipUntilLine = line_num + 16 + currentMeasureNumber = 1 + parserState.setCurrentInstrument(allStrings[line_num+11]) + printt(f"{fmtLineNum}:&&&&& start of score") + continue + elif line[0] == '&': + isComment = not isComment + printt(f"{fmtLineNum}: toggle comment to {isComment}") + continue + elif line[0] == '$': + printt(f"{fmtLineNum}: setting state {line}") + parserState.updateParserState(line) + continue + elif line[0] in inMeasureTitle: + printt(f"{fmtLineNum}: adding {line[0]} to measure") + measureAccumList.append(line) + continue + elif line[0] == 'm': + # it's the end of the current measure + newMeasure = parseMeasure(measureAccumList, parserState, currentMeasureNumber) + parserState.addMeasureToPart(newMeasure) + measureAccumList = [] + printt(f"{fmtLineNum}: m {currentMeasureNumber}") + currentMeasureNumber += 1 + continue + elif line[0] in ignoreList: + printt(f"{fmtLineNum}: {line[0]}") + continue + elif line.startswith('/'): + printt(f"{fmtLineNum}: {line}") + continue + exporter = ScoreExporter(score) + xmlStr = exporter.parse() + xmlBytes = tostring(xmlStr, encoding='unicode') + with open(md2Path.replace('.md2','.musicxml'), 'w', encoding='utf-8') as f: + f.write(xmlBytes) + print(f"finish parsing {md2Path}") + print() + + diff --git a/omr/inference.py b/omr/inference.py index 4f43e2c..eb1e169 100644 --- a/omr/inference.py +++ b/omr/inference.py @@ -35,6 +35,8 @@ def inference( manual_th: Optional[Any] = None, use_tf: bool = False ) -> Tuple[ndarray, ndarray]: + import gc + gc.collect() if use_tf: import tensorflow as tf @@ -83,7 +85,9 @@ def inference( batch = np.array(data[idx:idx+batch_size]) out = model.predict(batch) if use_tf else sess.run(output_names, {'input': batch})[0] pred.append(out) - + del sess + import gc + gc.collect() # Merge prediction patches output_shape = image.shape[:2] + (output_shape[-1],) out = np.zeros(output_shape, dtype=np.float32) diff --git a/omr/part2.py b/omr/part2.py index 5fc6c78..8f5e09d 100644 --- a/omr/part2.py +++ b/omr/part2.py @@ -360,10 +360,14 @@ def extract(image, output_dir): return staffList -def runModel2(npy_path: str, img_path: str, output_dir: str): +def runModel2(npy_path: str, img_path: str, output_dir: str, packedImg: bool = False): # output_dir will be images/tch/tch dataDict = np.load(npy_path,allow_pickle=True) dataDict = dataDict.tolist() + if packedImg: + for idx, ky in enumerate(list(dataDict.keys())): + img = dataDict[ky] + dataDict[ky] = cv2.resize(img, None, fx=2, fy=2, interpolation=cv2.INTER_NEAREST) image = loadModel1(img_path, dataDict) staffList = extract(image, output_dir) return staffList diff --git a/omr/staffline_extraction.py b/omr/staffline_extraction.py index 3082206..2c6282e 100644 --- a/omr/staffline_extraction.py +++ b/omr/staffline_extraction.py @@ -294,6 +294,10 @@ def init_zones(staff_pred: ndarray, splits: int) -> Tuple[ndarray, int, int, int accum_x = np.sum(staff_pred, axis=0) accum_x = accum_x / np.mean(accum_x) half = round(len(accum_x) / 2) + if xs.size == 0: + xs = np.append(xs, 0) + if ys.size == 0: + ys = np.append(ys, 0) right_bound = min(max(xs) + 50, staff_pred.shape[1]) left_bound = max(min(xs) - 50, 0) for i in range(half+10, len(accum_x)): diff --git a/orch_dataset/Tchai_4.pdf b/orch_dataset/Tchai_4.pdf new file mode 100644 index 0000000..628034d Binary files /dev/null and b/orch_dataset/Tchai_4.pdf differ diff --git a/pdf2Dataset.py b/pdf2Dataset.py new file mode 100644 index 0000000..14cb022 --- /dev/null +++ b/pdf2Dataset.py @@ -0,0 +1,103 @@ + + +import os +os.environ["OMP_NUM_THREADS"] = "1" +os.environ["MKL_NUM_THREADS"] = "1" + +from utils import * +from png2decode import png2decode +from pdf2png import savePdf2Png +import glob + +if __name__ == '__main__': + + pieceName = 'dvo' + if not os.path.exists(f'data_dataset/{pieceName}/imgs/{pieceName}_1/{pieceName}_1.png'): + savePdf2Png(f'data_dataset/{pieceName}', 1, False, dpi=200) + allImgPath = glob.glob(f'data_dataset/{pieceName}/imgs/{pieceName}*/{pieceName}*.png') + + for idx in range(len(allImgPath)): + if os.path.exists(f'data_dataset/{pieceName}/debug/debug_{idx+1}.txt'): + print(f"skipping page {idx+1}") + continue + imgPath = f'data_dataset/{pieceName}/imgs/{pieceName}_{idx+1}/{pieceName}_{idx+1}.png' + noteGroupMap: np.ndarray + stemIdxMap: np.ndarray + noteGroupVerticallyMerged: List[NoteGroup | None] + restMap: np.ndarray + restList: List[Rest | None] + sfnClefMap: np.ndarray + sfnClefList: List[Union[Accidentals, Clef, None]] + beamMapImg: np.ndarray + staffList: List[Staff] + imgName = os.path.basename(imgPath).split('.')[0] + + try: + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = png2decode(imgName, imgPath) + + + # sfn_colors = [(255,255,0),(255,0,125),(255,0,255),(255,0,0),(0,255,0),(0,0,255)] + # sfn_names = ['flat', 'natural', 'sharp','BassF', 'ViolaC', 'trebleG'] + clef_colors = [(0,255,0),(0,0,255),(255,0,0)] + clef_yolo = [0,1,2] # 0: alto, 1: treble, 2: bass + sfn_colors = [(255,0,125),(255,0,255),(255,255,0)] + sfn_yolo = [3,4,5] # 3: natural, 4: sharp, 5: flat + rest_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40)] + rest_yolo = [6,7,8,9,10] # 6: 1/4, 7: 1/8, 8: 1/16, 9:1/32, 10: half or whole + knn_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + knn_yolo = [11,12,13,14,15,16,17,18] # 11: 1/4, 12: 1/8, 13: 1/16, 14: 1/32, 15: 1/64, 16:1/128, 17: 1/2, 18: whole + knn_stem = [19,20,21,22,23,24,25,26] # 19: 1/4's stem, 20: 1/8 ... etc. + img = dataDict['image'].copy() + labelList = [] + h, w = img.shape[:2] + def add_yolo_label(class_id, x0, y0, x1, y1): + x_center = ((x0 + x1) / 2) / w + y_center = ((y0 + y1) / 2) / h + bw = (x1 - x0) / w + bh = (y1 - y0) / h + labelList.append( + f"{class_id} {x_center:.6f} {y_center:.6f} {bw:.6f} {bh:.6f}" + ) + + for rest in restList: + if rest is not None: + x0, y0, x1, y1 = rest.boundingBox + img = cv2.rectangle(img, (x0,y0), (x1,y1), rest_colors[rest.rhythm], 3, cv2.LINE_AA) + add_yolo_label(rest_yolo[rest.rhythm], x0, y0, x1, y1) + for ng in noteGroupVerticallyMerged: + if ng is not None: + for stem in ng.noteStemList: + x0,y0,x1,y1 = stem.noteBox + add_yolo_label(knn_yolo[stem.rhythm], x0, y0, x1, y1) + img = cv2.rectangle(img, (x0,y0), (x1,y1), knn_colors[stem.rhythm], 2, cv2.LINE_AA) + add_yolo_label(knn_stem[stem.rhythm], stem.getX()-3, stem.getTopCoord()[1], stem.getX()+3, stem.getBottomCoord()[1]) + img = cv2.rectangle(img, (stem.getX()-3, stem.getTopCoord()[1]), (stem.getX()+3, stem.getBottomCoord()[1]), knn_colors[stem.rhythm], 2, cv2.LINE_AA) + for sfn in sfnClefList: + if type(sfn) == Accidentals: + x0,y0,x1,y1 = sfn.getBbox() + add_yolo_label(sfn_yolo[sfn.getValue()], x0, y0, x1, y1) + img = cv2.rectangle(img, (x0,y0), (x1,y1), sfn_colors[sfn.getValue()], 1, cv2.LINE_AA) + elif type(sfn) == Clef: + x0,y0,x1,y1 = sfn.getBbox() + add_yolo_label(clef_yolo[sfn.getValue()], x0, y0, x1, y1) + img = cv2.rectangle(img, (x0,y0), (x1,y1), clef_colors[sfn.getValue()], 1, cv2.LINE_AA) + + if not os.path.exists(f'data_dataset/{pieceName}/debug'): + os.mkdir(f'data_dataset/{pieceName}/debug') + cv2.imwrite(f'data_dataset/{pieceName}/debug/debug_{idx+1}.jpg',img) + with open(f'data_dataset/{pieceName}/debug/debug_{idx+1}.txt', "w") as f: + f.write("\n".join(labelList)) + print() + except: + print(f"error processing, skipping {idx+1}") \ No newline at end of file diff --git a/pdf2musicXML.py b/pdf2musicXML.py index feab82b..728a86e 100644 --- a/pdf2musicXML.py +++ b/pdf2musicXML.py @@ -2086,6 +2086,7 @@ def assignRestDots(restList:List[Rest], beamMapImg:np.ndarray, noteGroupStemMap: rs.hasdot = True imwrite('dotRestBox.jpg',imgbgr) return restList,{'dotRestBox':imgbgr} + def getNoteChunks(image: np.ndarray, noteGroupMap:np.ndarray, beamMapImg:np.ndarray, noteGroupVerticallyMerged:List[NoteGroup]): imgrgb = image.copy() beamBinary = np.zeros((beamMapImg.shape[0],beamMapImg.shape[1])) @@ -3676,8 +3677,8 @@ def exportYolo(sfnClefList:List[Accidentals|Clef], image:np.ndarray,img_name:str beamMapImg,noteGroupMap = extendNotegroupsToStaff(noteGroupMap, noteGroupVerticallyMerged,staffObjList,beamMapImg) barList, barRanges, numBarsPerLine = constructBar(noteGroupMap, stemIdxMap, noteGroupVerticallyMerged, restMap,restList,sfnClefMap,sfnClefList,beamMapImg,staffObjList) # maskImg, tsBoxes, tsBoxesFiltered, debugImages = createMask(barList, barRanges, staffObjList, image, beamMapImg) - for si in debugImages.keys(): - outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + # for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) # saveBarToCsv(img_name, barList, desiredLengtdh=1) # trackNo = 1 # if img_wholename in is2: diff --git a/pdf2musicXMLorch.py b/pdf2musicXMLorch.py new file mode 100644 index 0000000..76be1d6 --- /dev/null +++ b/pdf2musicXMLorch.py @@ -0,0 +1,1566 @@ +from typing import List +import numpy as np +import pandas as pd +import csv +import os +import json +import pickle +import itertools +import statistics + +from collections import defaultdict, Counter +from music21 import stream, note, metadata, chord, meter, clef, key, instrument +from scipy import stats + +from png2decode import png2decode +from utils import * +from tune_bar import tuneBar + + +BAR_MAX_GAP = 5 # if two "lines" are within this pixel then they are considered the same barline +DEBUGIMG = None +class ScoreMetaData: + # static + instruments: List[str] = [] + + def __init__(self, pd_frame: pd.DataFrame, json_path: str, initInstruments = False): + self.jsonPath: str = json_path + self.pdFrame: pd.DataFrame = pd_frame + self.trackRange: List[Tuple[int,int]] = [] + self.groupingRange: List[List[Tuple[int,int]]] = [] + for i in range(1,4): + df[f"combined{i}"] = ( + df[f"ins{i}"] + + df[f"part{i}"].apply(lambda x: "" if pd.isna(x) else '__'+str(int(x))) + + df[f"tone{i}"].apply(lambda x: "" if pd.isna(x) else ':'+x) + ) # 'clarinet_1:B flat' + # special case for timpani + mask = df["ins1"] == "timpani" + df.loc[mask, "combined1"] = "timpani" + df.loc[mask, ["combined2", "combined3"]] = np.nan + if initInstruments: + df_filtered = df[['combined1', 'combined2','combined3']][df['system'] == 1] + instrument_list = [str(x) for x in df_filtered.to_numpy().flatten() if pd.notna(x)] + self.set_instruments(instrument_list) + with open(self.jsonPath, "w", encoding="utf-8") as f: + json.dump(instrument_list, f, ensure_ascii=False, indent=2) + filteredInstrument = input("filter instrument and enter") + with open(self.jsonPath, "r", encoding="utf-8") as f: + instrument_list = json.load(f) + self.set_instruments(instrument_list) + elif os.path.exists(self.jsonPath) and self.get_instruments() == []: + with open(self.jsonPath, "r", encoding="utf-8") as f: + instrument_list = json.load(f) + self.set_instruments(instrument_list) + + + def getTrackRange(self) -> List[Tuple[int,int]]: + if len(self.trackRange)!= 0: + return self.trackRange + col = self.pdFrame["system"] + groups = col.ne(col.shift()).cumsum() + ranges = ( + self.pdFrame + .groupby(groups) + .apply(lambda g: (g.index[0], g.index[-1])) + .tolist() + ) + self.trackRange = ranges + return ranges + + def getTrackXYRange(self, staffList:List[Staff]): + ranges = self.getTrackRange() + retRangeList = [] + for r in ranges: + start = r[0] + end = r[1] # included + retRangeList.append((staffList[start].left, staffList[start].right, staffList[start].ys[0], staffList[end].ys[-1])) + return retRangeList + + def getGroupingRange(self)->List[List[Tuple[int,int]]]: + if len(self.groupingRange)!= 0: + return self.groupingRange + range1 = self.getTrackRange() + + col2 = self.pdFrame["staffgroup"] + groups2 = col2.ne(col2.shift()).cumsum() + ranges2 = ( + self.pdFrame + .groupby(groups2) + .apply(lambda g: (g.index[0], g.index[-1])) + .tolist() + ) + rangeList = [] + currentIdx = 0 + for r in range1: + rangeInLine = [] + while currentIdx < len(ranges2) and ranges2[currentIdx][1] <= r[1]: + rangeInLine.append(ranges2[currentIdx]) + currentIdx += 1 + rangeList.append(rangeInLine) + self.groupingRange = rangeList + return rangeList + def getInstrumentEachTrack(self) -> List[List[str]]: + return self.pdFrame[['combined1', 'combined2', 'combined3']].apply( + lambda row: row.dropna().tolist(), + axis=1 + ).tolist() + def getInstrumentIndexEachTrack(self) -> List[List[int]]: + strList = self.getInstrumentEachTrack() + insList = self.get_instruments() + return [[insList.index(r) for r in row] for row in strList] + + # get the number of track that line belongs to + def getTrackForLineIdx(self, lineIdx: int) -> int: + for i, (start, end) in enumerate(self.trackRange): + if start <= lineIdx <= end: + return i + return -1 + + # get the line number of that line inside that track. + # let's say [3,6] are the 2nd group (inclusive), then + # fn(3) -> (1,0), 2nd group(count starts at 0), index 0 + # fn(6) -> (1,3), 2nd group, index 3 + def getTrackIdxForLineIdx(self, lineIdx: int) -> Tuple[int,int]: + for i, (start, end) in enumerate(self.trackRange): + if start <= lineIdx <= end: + return (i, lineIdx - start) + return (-1,-1) + + + # static + @classmethod + def set_instruments(cls, instrumentList: List[str]): + cls.instruments = instrumentList + + + @classmethod + def add_instrument(cls, instrument: str): + cls.instruments.append(instrument) + + @classmethod + def get_instruments(cls) -> List[str]: + return cls.instruments.copy() + +def parseCsvData(csv_path: str): + with open(csv_path) as f: + csvData = list(csv.reader(f)) + return csvData + +def findBarPosition(staffImgBinary: np.ndarray, tolerance, row_ratio:float = 0.7): + kernel = np.ones((1, 2*tolerance+1), dtype=np.uint8) + expanded = cv2.dilate(staffImgBinary.astype(np.uint8), kernel) + acc = np.sum(expanded, axis=0) + threshold = staffImgBinary.shape[0] * row_ratio + barPos = np.where(acc > threshold)[0] + return barPos + +def getBarsEachTrack(image:np.ndarray, beamMapImg:np.ndarray, staffList:List[Staff], tolerance:int = 20): + img = image.copy() + staffCenters = [sf.ys[2] for sf in staffList] + _,itemMap,_ = cv2.split(beamMapImg) + staffImgBinary = (itemMap == 4)[staffCenters,:] + barEachTrack = [] + for trkRange in pageMetadata.getTrackRange(): + staffStart = staffList[trkRange[0]].ys[0] + staffEnd = staffList[trkRange[1]].ys[-1] + barPos = findBarPosition(staffImgBinary[trkRange[0]:trkRange[1],:], tolerance) + img[staffStart:staffEnd, barPos] = (0,0,255) + barEachTrack += [barPos.tolist()] + imwrite(f"barForTracks{tolerance}.jpg", img) + return barEachTrack + + +def getAllObjectInEachLine( + noteGroupMap: np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup | None], + restMap: np.ndarray, + restList: List[Rest | None], + sfnClefMap: np.ndarray, + sfnClefList: List[Union[Accidentals, Clef, None]], + beamMapImg: np.ndarray, + staffList: List[Staff] + ): + _, objMap, _ = cv2.split(beamMapImg) + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + allItems = [] + for sf in staffList: + allItemInLine = [] + currX = sf.left + while currX < sf.right: + lineLst = np.unique(objMap[sf.ys[0]-sf.get_yOne():sf.ys[-1]+sf.get_yOne(), currX]).tolist() + if 0 in lineLst: + lineLst.remove(0) + if len(lineLst)>1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst) == 0 or 4 in lineLst: + currX += 1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf.ys[0]-sf.get_yOne():sf.ys[-1]+sf.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if (len(inMapId) == 1): + currentElementId = inMapId[0] + allItemInLine.append(currLst[currentElementId]) + currX = max(currX, currLst[currentElementId].boundingBox[2])+1 + else: + currX += 1 + allItems.append(allItemInLine) + return allItems + +def constructBar(noteGroupMap:np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup|None], + restMap: np.ndarray, + restList:List[Rest|None], + sfnClefMap:np.ndarray, + sfnClefList:List[Union[Accidentals,Clef, None]], + beamMapImg:np.ndarray, + staffList:List[Staff], + pageMetadata:ScoreMetaData, + barEachTrack:List[List[int]], + barChangeList:dict[str, tuple[int, int]] #(track, num),(TStop, TSbottom) + ): + numLines = len(staffList) + bb,gg,rr = cv2.split(beamMapImg) + barList:List[List[Bar]] = [[] for _ in range(numLines)] + numBarsEachLine:List[int] = [0 for _ in range(numLines)] + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + notFinishedBar = None + allRanges = [] + for barThisTrack in barEachTrack: + prevIdx = 0 + rangeThisTrack = [] + if len(barThisTrack) > 1: + while prevIdx < len(barThisTrack)-1: + if barThisTrack[prevIdx+1] - barThisTrack[prevIdx] > BAR_MAX_GAP: + rangeThisTrack.append((barThisTrack[prevIdx], barThisTrack[prevIdx+1])) + prevIdx += 1 + allRanges.append(rangeThisTrack) + + currTS = barChangeList.get('0,0') + for t in range(numLines): # trackNo + printedLineNo = t # the current line number + currBarList:List[Bar] = [] + sf0 = staffList[printedLineNo] + trackForThatLine = pageMetadata.getTrackForLineIdx(t) + ranges = allRanges[trackForThatLine] + isBar = barEachTrack[trackForThatLine] + + for ridx, rng in enumerate(ranges): + if barChangeList.get(f'{trackForThatLine},{ridx}'): + currTS = barChangeList.get(f'{trackForThatLine},{ridx}') + if currTS != [9,8]: + print(f'ridx: {ridx}, rng: {rng}') + if notFinishedBar is not None: + bar = notFinishedBar + notFinishedBar = None + else: + bar = Bar(currTS) + currX = rng[0] + while currX1: + for i in [1,5,3,2]: # noteGroup(1), rest(5), clef(3), accidentals(2) + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId) > 1 and typeId == 1: # if it's multiple notegroups in that line + # get the noteGroup that's closer to the center of the staff + yCenter = sf0.ys[2] + newInMapIdIdx = -1 + currSmallestDist = np.inf + for idid in range(0,len(inMapId)): + x0,y0,x1,y1 = currLst[inMapId[idid]].boundingBox + if abs((y1+y0)/2-yCenter) < currSmallestDist: + currSmallestDist = abs((y1+y0)/2-yCenter) + newInMapIdIdx = idid + inMapId = [inMapId[newInMapIdIdx]] + if len(inMapId)==1: + sanityCheck = True + if typeId == 3: # clef + currClef:Clef = sfnClefList[inMapId[0]] + _,yy0,_,yy1 = currClef.boundingBox + if yy1-yy0 < sf0.get_yOne_float()*3: + sanityCheck = False + if currClef.type ==0: + if yy00)[1] + # nextIdx = 0 + # if len(notfinishedBarStuff) > 0: + # nextIdx = np.max(np.unique(np.where(gg[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), rng[1]:]>0)[1])) + # if nextIdx>5: + # rng = (isBar[-1]+sf0.left+1, rng[1]+nextIdx) + # bar = Bar(currTS) + # currX = rng[0] + # while currX1: + # for i in [1,5,3,2]: + # if i in lineLst: + # lineLst = [i] + # break + # if len(lineLst)==0 or 4 in lineLst: + # currX+=1 + # else: + # typeId = lineLst[0] + # currMap = mapForMatching[typeId] + # currLst = listForMatching[typeId] + # inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + # if 0 in inMapId: + # inMapId.remove(0) + # if len(inMapId)==1: + # bar.addElement(currLst[inMapId[0]]) + # currX = currLst[inMapId[0]].boundingBox[2]+1 + # else: + # currX+=1 + # print("has more than 1 id") + # notFinishedBar = bar + barList[t] = currBarList + numBarsEachLine[t] = len(currBarList) + # in order of vln1's 1st line, 2nd line ... | vln2's 1st line, 2nd line ... + return barList,allRanges, numBarsEachLine + +# TODO: rotate the image at here? as long as all maps are rotated it should be fine +def stackItemVertically(image:np.ndarray, + barList: List[List[Bar]], + pageMetadata: ScoreMetaData, + staffList:List[Staff], + noteGroupVerticallyMerged: List[NoteGroup], + restList: List[Rest]): + noteRestMap = np.zeros((image.shape[0], image.shape[1]), dtype=np.int16) + for oneLine in barList: + for oneBar in oneLine: + for elem in oneBar.elementList: + if type(elem) == NoteGroup: + x0,y0,x1,y1 = elem.boundingBox + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0),(x1,y1),elem.indexNumber, -1) + elif type(elem) == Rest: + x0,y0,x1,y1 = elem.boundingBox + if elem.rhythm != -1: + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0),(x1,y1),-elem.indexNumber, -1) + img2 = image.copy() + img2[noteRestMap>0] = (0,0,255) + img2[noteRestMap<0] = (255,255,0) + imwrite("finalNoteRest.jpg", img2) + retImg = image.copy() + oneLineDist = staffList[0].get_yOne() + acrossLineNGID = 1 + for (xStart, xEnd, yStart, yEnd) in pageMetadata.getTrackXYRange(staffList): + currX = xStart + while currX < xEnd: + inLineIds = np.unique(noteRestMap[yStart:yEnd, currX]).tolist() + if inLineIds == [0]: + currX += 1 + continue + allElementLists:List[NoteGroup|Rest] = [] + allXCenters = [currX] + allXEnds = [currX] + for inLineId in inLineIds: + if inLineId == 0: + continue + if inLineId > 0: # note + currElem = noteGroupVerticallyMerged[inLineId] + elif inLineId < 0: # rest + currElem = restList[-inLineId] + allElementLists.append(currElem) + if currElem.boundingBox[2]-currElem.boundingBox[1] <= oneLineDist*2: + allXCenters.append((currElem.boundingBox[0]+currElem.boundingBox[2])//2) + allXEnds.append(currElem.boundingBox[2]) + xCenterAvg = sum(allXCenters)//len(allXCenters) + newInLineIdx = np.unique(noteRestMap[yStart:yEnd, xCenterAvg]).tolist() + if set(inLineIds) == set(newInLineIdx): + # current Center is the center of this whole noteGroup thingy + # !!! I'm gonna draw on the image for now but other things have to be done here + # cv2.rectangle(sfnClefImg, (x0,y0),(x1,y1), class_colors2[predict_idx],2,cv2.LINE_AA) + retImg = cv2.rectangle(retImg, (xCenterAvg, yStart), (xCenterAvg, yEnd), (255,100,0), 3, cv2.LINE_AA) + for elem in allElementLists: + x0,y0,x1,y1 = elem.boundingBox + retImg = cv2.rectangle(retImg, (x0,y0), (x1,y1), (255,255,0), -1, cv2.LINE_AA) + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0), (x1,y1), 0, -1, cv2.LINE_AA) + elem.setAcrossLineNGID(acrossLineNGID) + acrossLineNGID += 1 + currX = max(max(allXEnds), currX)+1 + else: + currX = max(xCenterAvg+1, currX+1) + imwrite("stackingNotes.jpg", retImg) + return noteRestMap, retImg + +# originally we pass in a list of each track [vln1's bars: [bar1, bar2 ...], vln2's bars: [bar1, bar2 ...]] +# now we have each line differently +# return the breakPoint (aka which bar is the starting of next line) +def tuneBarList(barList:List[List[Bar]], numBarsPerTrackLine:List[int], ): + trackRange = pageMetadata.getTrackRange() + + for lineRangeForTrack in trackRange: + startIdx = lineRangeForTrack[0] + endIdx = lineRangeForTrack[1]+1 + emptyBarsIndexs = np.where(np.sum(np.array([[len(b.elementList) for b in oneTrack] for oneTrack in barList[startIdx:endIdx]]),axis=0)==0)[0].tolist() + emptyBarsIndexs.reverse() + for emptyBarsIndex in emptyBarsIndexs: + for i in range(startIdx, endIdx): + del barList[i][emptyBarsIndex] + qq = 0 + while emptyBarsIndex+1>sum(numBarsPerTrackLine[0:qq]): + qq+=1 + numBarsPerTrackLine[qq-1]-=1 + + # delete all elements that's ornament + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + bar.elementList = [ + elem for elem in bar.elementList + if not (isinstance(elem, NoteGroup) and all(s.isOrnament for s in elem.noteStemList)) + ] + # now all bars are suppose to be valid + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + origLengths = bar.getRhythmList() + newLengths = [None]*len(origLengths) + if bar.getTotalBeat() == Fraction(bar.ts[0],bar.ts[1]): + newLengths = [None]*len(origLengths) + elif bar.getTotalBeat() == 0: + continue # will be later added a rest + else: + newLengths = tuneBar(bar.getRestNg(), bar.ts) + reassignedLengths = [origLengths[i] if newLengths[i] is None else newLengths[i] for i in range(len(newLengths))] + bar.reassignLength(origLengths, newLengths) + if bar.getTunedTotalBeat() != Fraction(bar.ts[0], bar.ts[1]): + print("bar doesn't have right length") + + for lineii, oneTrack in enumerate(barList): + for barii, bb in enumerate(oneTrack): + if bb.getTunedTotalBeat() != Fraction(bb.ts[0],bb.ts[1]): + print(f"bar at {lineii},{barii} has total beat {bb.getTotalBeat()}") + barBreakPoints = [0] + list(itertools.accumulate(numBarsPerTrackLine)) + return barBreakPoints + +def assignBarlistInstrument(barList:List[List[Bar]], pageMetadata:ScoreMetaData): + def getEmptyBarDefaultList(barTrack: List[Bar]): + return [Bar(b.ts) for b in barTrack] + def build_grouped_lookup(instrument_list): + grouped = defaultdict(list) + for item in instrument_list: + if ":" in item: + base, suffix = item.split(":", 1) + key_suffix = ":" + suffix + else: + base = item + key_suffix = "" + base_name = base.split("__")[0] + key = base_name + key_suffix + grouped[key].append(item) + return dict(grouped) + + def build_instrument_lookup_no_section(instrument_list): + grouped = defaultdict(list) + for item in instrument_list: + base = item.split(":", 1)[0] + base_name = base.split("__")[0] + grouped[base_name].append(item) + return dict(grouped) + def getInstruments(instrumentLookup: dict, instrumentLookupNoSec: dict, ins: str): + if instrumentLookup.get(ins): + return instrumentLookup.get(ins) + if instrumentLookupNoSec.get(ins): + return instrumentLookupNoSec.get(ins) + return [ins] + instrumentTrack = pageMetadata.getInstrumentEachTrack() + trackRange = pageMetadata.getTrackRange() + retBarList = dict() + numBarsTotal = 0 + for trackLineIdx, currTrackRange in enumerate(trackRange): + startIdx = currTrackRange[0] + endIdx = currTrackRange[1]+1 + instrumentList = ScoreMetaData.get_instruments() + if trackLineIdx == 0: + for ins in instrumentList: + retBarList[ins] = [] + instrumentLookup = build_grouped_lookup(instrumentList) + instrumentLookupNoSec = build_instrument_lookup_no_section(instrumentList) + numBarsTotal += len(barList[startIdx]) + for i in range(startIdx, endIdx): + instrumentInThisLineList = [getInstruments(instrumentLookup,instrumentLookupNoSec,ins) for ins in instrumentTrack[i]] + instrumentInThisLine = [item for sublist in instrumentInThisLineList for item in sublist] + print(f"instrument in this line: {instrumentInThisLine}") + for ins in instrumentInThisLine: + if not ins in instrumentList: + print(f'WARNING: instrument {ins} not in list') + continue + if trackLineIdx == 0: + retBarList[ins] = list(barList[i]) + else: + if len(retBarList[ins]) == numBarsTotal: + print(f"double instrument: {ins}") + N = len(barList[i]) + retBarList[ins][-N:] = barList[i] + else: + retBarList[ins] += barList[i] + if ins in instrumentList: + instrumentList.remove(ins) + else: + print(f"instrument {ins} not in list") + for resIns in instrumentList: + if trackLineIdx == 0: + retBarList[resIns] = getEmptyBarDefaultList(barList[startIdx]) + else: + retBarList[resIns] += getEmptyBarDefaultList(barList[startIdx]) + assert len(np.unique([len(retBarList[b]) for b in retBarList])) == 1 + barListPerInstrument = [retBarList[k] for k in list(retBarList.keys())] + instrumentEachLine = list(retBarList.keys()) + return retBarList, barListPerInstrument, instrumentEachLine + +# return (1) ksMat for each track (exactly as how it's presented visually), metric of [number of lines, bars] +# (2) the keySignature of each track (concert pitch) as an array +def getKSMatAndKSList(pageMetadata: ScoreMetaData, barList: List[List[Bar]], toneHelper: ToneHelper): + def checkAndAssignKS( + prevIsAcc: bool, + new_elements: List[Accidentals|Clef|Rest|NoteGroup|KeySignature], + accumulatedAccidentals: List[KeySignature], + trackGroupNo: int, + lineOfThatTrackNo: int, + barNo: int, + ksBarMatForEachTrack: List[np.ndarray]): + if prevIsAcc: + newKS = KeySignature(accumulatedAccidentals) + new_elements.append(newKS) + ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] = newKS.getSharpFlatInt() + accumulatedAccidentals = [] + return new_elements, accumulatedAccidentals, ksBarMatForEachTrack + # return the list of concert pitch keySignature for each bar (inf: no signature) + def modeKSForAllTrack(ksMat:np.ndarray): + result = [] + prev = 0 + for col in ksMat.T: + finite_vals = col[~np.isinf(col)] # remove infs + if finite_vals.size > 0: + values, counts = np.unique(finite_vals, return_counts=True) + prev = values[np.argmax(counts)] + result.append(prev) + return np.array(result) + oneInstrumentEachLine: List[str] = [i[0] for i in pageMetadata.getInstrumentEachTrack()] + tone: List[str] = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in oneInstrumentEachLine] + trackShiftEachLine = [] + for idx in range(len(oneInstrumentEachLine)): + currTone: str = tone[idx] + currIns: str = oneInstrumentEachLine[idx] + if isInstrumentIncluded(currIns): + trackShiftEachLine.append(-toneHelper.getKsShift(currTone)) + else: + trackShiftEachLine.append(-np.inf) + ksBarMatForEachTrack = [] + ksBarShiftForEachTrack = [] + trackRanges = pageMetadata.getTrackRange() + for trackRange in trackRanges: + numTrack = trackRange[1]-trackRange[0] + 1 # inclusive of the start and end + numBars = len(barList[trackRange[0]]) + ksBarMat = np.ones((numTrack, numBars))*np.inf + ksBarMatForEachTrack.append(ksBarMat) + ksBarShift = np.array(trackShiftEachLine[trackRange[0]:trackRange[1]+1])[:, None] * np.ones(numBars) + ksBarShiftForEachTrack.append(ksBarShift) + + for (lineNo, oneLine) in enumerate(barList): + # the line #lineOfThatTrackNo of the track #trackGroupNo + trackGroupNo, lineOfThatTrackNo = pageMetadata.getTrackIdxForLineIdx(lineNo) + for (barNo, oneBar) in enumerate(oneLine): + accumulatedAccidentals = [] + new_elements = [] + prevIsAcc = False + for elem in oneBar.elementList: + if isinstance(elem, Accidentals) and elem.isKeySignature: + accumulatedAccidentals.append(elem) + prevIsAcc = True + else: + new_elements, accumulatedAccidentals, ksBarMatForEachTrack = checkAndAssignKS(prevIsAcc, new_elements, accumulatedAccidentals, trackGroupNo, lineOfThatTrackNo, barNo, ksBarMatForEachTrack) + new_elements.append(elem) + prevIsAcc = False + new_elements, accumulatedAccidentals, ksBarMatForEachTrack = checkAndAssignKS(prevIsAcc, new_elements, accumulatedAccidentals, trackGroupNo, lineOfThatTrackNo, barNo, ksBarMatForEachTrack) + # assign the basic to 0 if there's no changes + if barNo == 0 and ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] == np.inf: + ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] = 0 + oneBar.elementList = new_elements + # now ksBarMatForEachTrack is exactly what we see on the score + ksEachTrack = [] + ksMatEachTrackSameAsVisual = [] + for idx in range(len(ksBarMatForEachTrack)): + ksBarMatShifted = ksBarMatForEachTrack[idx]-ksBarShiftForEachTrack[idx] + modeKSArray = modeKSForAllTrack(ksBarMatShifted) + ksEachTrack.append(modeKSArray) + ksMatEachTrackSameAsVisual.append(np.tile(modeKSArray, (ksBarMatForEachTrack[idx].shape[0],1)) + ksBarShiftForEachTrack[idx]) + return ksMatEachTrackSameAsVisual, ksEachTrack, barList +def readCsvAndEditViolin(csvPath: str): + df = pd.read_csv(csvPath) + # Ensure part1 is nullable int + if 'part1' in df.columns: + df['part1'] = df['part1'].astype('Int64') + else: + df['part1'] = pd.Series([pd.NA]*len(df), dtype="Int64") + n = len(df) + for i in range(n): + if df.at[i, 'ins1'] == 'viola': + if i - 2 >= 0: + cond = ( + pd.notna(df.at[i-2, 'ins1']) and df.at[i-2, 'ins1'] == 'violin' and pd.notna(df.at[i-2, 'part1']) and df.at[i-2, 'part1'] == 1 and + pd.notna(df.at[i-1, 'ins1']) and df.at[i-1, 'ins1'] == 'violin' and pd.notna(df.at[i-1, 'part1']) and df.at[i-1, 'part1'] == 2 + + ) + if not cond: + df.at[i-2, 'ins1'] = 'violin' + df.at[i-2, 'part1'] = 1 + df.at[i-1, 'ins1'] = 'violin' + df.at[i-1, 'part1'] = 2 + df = df.copy() + # Ensure nullable int + df['part1'] = df['part1'].astype('Int64') + n = len(df) + for i in range(n): + if pd.notna(df.at[i, 'part1']) and df.at[i, 'part1'] == 1: + # Check if next row exists and is matching part 2 + if not ( + i + 1 < n and + df.at[i+1, 'ins1'] == df.at[i, 'ins1'] and + df.at[i+1, 'part1'] == 2 + ): + df.at[i, 'part1'] = pd.NA + return df + +def exportXML(barList:List[List[Bar]], + instrumentEachLine: List[str], + toneHelper: ToneHelper, + instrument_dict: dict, + ksListAllTrack: np.ndarray, # array([-4., inf, inf, inf, inf, inf, 2, inf, inf]) + image:np.ndarray|None = None, + imgName: str = "Title"): + + def getTrackKsAndNoteShift(toneHelper: ToneHelper, instrumentList: List[str]) -> Tuple[List[int|None], List[int]]: + tone = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in instrumentList] + trackKsShift = [] + trackNoteShift = [] + for idx, tn in enumerate(tone): + ksShift, noteShift = toneHelper.getKsAndNoteShift(tn) + if isInstrumentIncluded(instrumentList[idx]): + trackKsShift.append(-ksShift) + else: + trackKsShift.append(None) + trackNoteShift.append(noteShift) + return trackKsShift, trackNoteShift + numTrack = len(instrumentEachLine) + # Stem's label -> rhythm meaning + # class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + if image is None: + debugXMLImg = None + else: + debugXMLImg = image.copy() + def initializeScore(instrumentList: List[str], title): + score = stream.Score() + score.metadata = metadata.Metadata() + score.metadata.title = title + part = [] + for instr_name in instrumentList: + p = stream.Part() + # Assign instrument + instr_obj = get_instrument_from_string(instr_name) + p.insert(0, instr_obj) + p.partName = instr_name + p.partAbbreviation = instr_name + part.append(p) + return score, part + score, part = initializeScore(instrumentEachLine, imgName) + score2, part2 = initializeScore(instrumentEachLine, f"{imgName} Shifted") + keyName = ['C','D','E','F','G','A','B'] + keyCharFlat = ['C','D-','D','E-','E','F','G-','G','A-','A','B-','B'] + keyCharSharp = ['C','C#','D','D#','E','F','F#','G','G#','A','A#','B'] + currentClef = [None]*numTrack + sharps = [3,0,4,1,5,2,6] # F C G D A E B + flats = [6,2,5,1,4,0,3] # B E A D G C F + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + trksOriginal = [[] for _ in range (numTrack)] # for tracking all original notes we see + trksShifted = [[] for _ in range (numTrack)] # for tracking all shifted notes + + # trackKsShift will be None for Timpani, Horn and Trumpet + # # trackNoteShift works for everything except for Timpani + trackKsShift, trackNoteShift = getTrackKsAndNoteShift(toneHelper, instrumentEachLine) + + cleanedInstrumentList = [s.split('__')[0].split(':')[0] for s in instrumentEachLine] + clefOptionEachLine = [instrument_dict.get(instr, [1,0,-1,-2]) for instr in cleanedInstrumentList] + + def setKS(ks:float, trkNo): + ks = int(ks) + nonlocal ksSharp + nonlocal ksFlat + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def setKSNeutral(Oriks:float, trkNo, trackShift): + Oriks = int(Oriks) + nonlocal ksSharp + nonlocal ksFlat + ks = Oriks+trackShift + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def parseClefOne(elem:Clef, lineNo:int): + nonlocal currentClef + currentClef[lineNo%numTrack] = elem.type + return elem.type + def getClefFromType(clefType:int): + clf = clef.TrebleClef() + if clefType == 1: + clf = clef.TrebleClef() + elif clefType == 0: + clf = clef.AltoClef() + elif clefType == -1: #-1 + clf = clef.BassClef() + elif clefType == -2: + clf = clef.TenorClef() + return clf + def calculatePitch(inputPitch:str): + outputNum = keyCharFlat.index(inputPitch[0])+12*(int(inputPitch[-1])+1) + if len(inputPitch)==3: + if inputPitch[1] == '#': + outputNum+=1 + elif inputPitch[1] == '-' : + outputNum-=1 + return outputNum + def pitchListShift(inputPitchList:List[str], shift: int, sharp = True): # shift: how many half notes + returnList = [] + for pitch in inputPitchList: + pitchNum = calculatePitch(pitch) + pitchNum = pitchNum + shift + returnList.append(pitchNum) + referenceList = keyCharFlat + if sharp: + referenceList = keyCharSharp + for idx,pitchNo in enumerate(returnList): + clefNum = pitchNo//12-1 + pitchName = referenceList[pitchNo%12] + returnList[idx] = pitchName + str(clefNum) + return returnList + def parseNoteGroupShift(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, flatSharp, linNo, noteValShift): + # trkShift: + # 0 if original: -2, new: -2 (two flats), + # 1 if original: -2, new: -1 + # flatSharp: how many flats/sharp, -2: two flats + # flatSharp = 2, trkShift = 0: (-2), + # flatSharp = 2, trkShift = 1: (-1) + # ksShift: + # if original key signature is -2, ksShift is 1: -> actually it's -1 (the key signature we actually hear) + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1 or currKey in flatSet: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen0) + trksShifted[linNo].append(keyShiftedList) + if len(keyShiftedList) > 1: + return flatSet, sharpSet, chord.Chord(keyShiftedList, quarterLength = currLength*4) + elif len(keyShiftedList) == 1: + return flatSet, sharpSet, note.Note(keyShiftedList[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None + # actualPitch, 0: B4, 1: C5, 2: D5 + + def parseNoteGroup(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, linNo, trkShift = 0): + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen 1: + for k in keyLst: + if k[-1] == '-': + keyLst.remove(k) + keyLst.append(k[:-1]+'4') + return flatSet, sharpSet, chord.Chord(keyLst, quarterLength = currLength*4) + elif len(keyLst) == 1: + return flatSet, sharpSet, note.Note(keyLst[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None # ornament + # actualPitch, 0: B4, 1: C5, 2: D5 + def parseRest(elem:Rest): + restLength = float(elem.tunedLength) + if restLength>0: + # restLength = float(Fraction(restClassNames[elem.rhythm])) + # if elem.hasdot: + # restLength = restLength*1.5 + return note.Rest(quarterLength=restLength*4) + else: + pass + # print("setting rest to full") + # return note.Rest(quarterLength=4) + numBars = len(barList[0]) + clefMat = np.ones((numTrack, numBars))*np.inf + currentClef = [None]*numTrack + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + if len(clefOptionEachLine[lineNo]) == 1: + clefMat[lineNo, currBarNumber] = clefOptionEachLine[lineNo][0] + else: + currBar = barList[lineNo][currBarNumber] + for elem in currBar.elementList: + if type(elem) == Clef: + newClef = parseClefOne(elem, lineNo) + if newClef in clefOptionEachLine[lineNo]: + clefMat[lineNo, currBarNumber] = newClef + if clefMat[lineNo, currBarNumber] == np.inf: + if currBarNumber == 0: + clefMat[lineNo, currBarNumber] = clefOptionEachLine[lineNo][0] + else: + clefMat[lineNo, currBarNumber] = clefMat[lineNo, currBarNumber-1] + global DEBUGIMG + ksListAllTrackNoInf = ksListAllTrack.copy() + for i in range(1, numBars): + if np.isinf(ksListAllTrackNoInf[i]): + ksListAllTrackNoInf[i] = ksListAllTrackNoInf[i - 1] + ksBarMatNeutral = np.tile(ksListAllTrackNoInf, (numTrack,1)) + ksBarMatNeutral = ksBarMatNeutral.astype(int) + trackShiftInf = [t if t is not None else np.inf for t in trackKsShift] + ksBarMatNew = ksBarMatNeutral + np.tile(np.array(trackShiftInf),(numBars,1)).T + # if we want to replace it then + ksBarMatNeutral[np.isinf(ksBarMatNew)] = 0 + ksBarMatNew[np.isinf(ksBarMatNew)] = 0 + ksBarMatNew = ksBarMatNew.astype(int) + clefMat = clefMat.astype(int) + tssList = [b.ts for b in barList[0]] + for currBarNumber in range(numBars): # how many bars each line + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): # each track + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNew[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + elif tssList[currBarNumber]!=tssList[currBarNumber-1]: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNew[lineNo, currBarNumber-1]: + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + else: + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroup(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + lineNo, + trkShift=0) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part[lineNo%numTrack].append(measure) + for p in part: + score.append(p) + ''' + # Part 2: with shift + ksBarMatNeutral + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + for currBarNumber in range(numBars): # for the new one shifted + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + # barNumber = barNumber+1 + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNeutral[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKSNeutral(ks, lineNo, ks) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNeutral[lineNo, currBarNumber-1]: + setKSNeutral(ks, lineNo, ks) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroupShift(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + ks, + lineNo, + trackNoteShift[lineNo]) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part2[lineNo%numTrack].append(measure) + for p in part2: + score2.append(p) + ''' + return score, {'ksAssigned':debugXMLImg} + +def numberToString(num: int, strLen: int = 3): + stringNum = str(num) + strAppend = strLen-len(stringNum) + return '0'*strAppend + stringNum + +def getTrackKsAndNoteShift(toneHelper: ToneHelper, instrumentList: List[str]) -> Tuple[List[int|None], List[int]]: + tone = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in instrumentList] + trackKsShift = [] + trackNoteShift = [] + for idx, tn in enumerate(tone): + ksShift, noteShift = toneHelper.getKsAndNoteShift(tn) + if isInstrumentIncluded(instrumentList[idx]): + trackKsShift.append(-ksShift) + else: + trackKsShift.append(None) + trackNoteShift.append(noteShift) + return trackKsShift, trackNoteShift + +# time signatures +def getMeasuresEachStaff(image: np.ndarray, beamMapImg: np.ndarray, staffList: List[Staff], barEachTrack:List[List[int]], trackRange: List[Tuple[int,int]]): + allRanges = [] + for barThisTrack in barEachTrack: + prevIdx = 0 + rangeThisTrack = [] + if len(barThisTrack) > 1: + while prevIdx < len(barThisTrack)-1: + if barThisTrack[prevIdx+1] - barThisTrack[prevIdx] > BAR_MAX_GAP: + rangeThisTrack.append((barThisTrack[prevIdx], barThisTrack[prevIdx+1])) + prevIdx += 1 + allRanges.append(rangeThisTrack) + retList = [] + for trackIdx, track in enumerate(trackRange): + start = track[0] + end = track[1]+1 + for i in range(start, end): + sf = staffList[i] + retList.append([[rng[0], rng[1], sf.ys[0], sf.ys[1]] for rng in allRanges[trackIdx]]) + return retList + + img = image.copy() + # 第一維:哪一行 staff (長度等於 len(staffList)) + allStavesMeasures = [[] for _ in range(len(staffList))] + + # 取得類別 Map 並只關注小節線類別 (4) + _, itemMap, _ = cv2.split(beamMapImg) + staffCenters = [sf.ys[2] for sf in staffList] + staffImgBinary = (itemMap == 4)[staffCenters, :] + + # 利用 TrackRange 偵測,因為同一個 Track 的小節線通常是垂直對齊的 + for trkRange in pageMetadata.getTrackRange(): + staves_in_track = range(trkRange[0], trkRange[1] + 1) + + # 投影判定小節線位置 + barSum = np.sum(staffImgBinary[trkRange[0]:trkRange[1]+1, :], axis=0) + numStaves = len(staves_in_track) + barPos = np.where(barSum > numStaves * 0.7)[0] + + if len(barPos) > 0: + # --- 1. 篩選小節線:連續像素內 (<=5) 僅保留最右邊的一個值 --- + barLinesX = [] + if len(barPos) > 0: + temp_group_max = barPos[0] + for i in range(1, len(barPos)): + if barPos[i] - barPos[i-1] <= BAR_MAX_GAP: + temp_group_max = barPos[i] # 持續更新,保留最右邊 + else: + barLinesX.append(temp_group_max) + temp_group_max = barPos[i] + barLinesX.append(temp_group_max) + + # --- 2. 根據小節線生成「小節 (Measures)」 --- + # 如果有 N 條線 (barLinesX),產生 N-1 個小節 + if len(barLinesX) >= 2: + for m_idx in range(len(barLinesX) - 1): + m_left = barLinesX[m_idx] + m_right = barLinesX[m_idx+1] + + # 分配給該 Track 裡的每一行 Staff + for s_idx in staves_in_track: + target_staff = staffList[s_idx] + top = target_staff.ys[0] + bottom = target_staff.ys[-1] + + # 建立小節 Bounding Box [left, right, top, bottom] + measure_bbox = [int(m_left), int(m_right), int(top), int(bottom)] + allStavesMeasures[s_idx].append(measure_bbox) + + # 視覺化:畫出小節範圍 (用藍色框表示小節) + cv2.rectangle(img, (m_left, top), (m_right, bottom), (255, 0, 0), 1) + + cv2.imwrite("measures_detected.jpg", img) + return allStavesMeasures + +def detect_time_signatures(model_path: str, img_path: str, imgsz: int = 1792, conf: float = 0.5) -> List[TimeSignature]: + from ultralytics import YOLO + time_signatures = [] + + model = YOLO(str(model_path)) + results = model.predict( + source=str(img_path), + imgsz=imgsz, + conf=conf, + save=False, + verbose=False + ) + + r = results[0] + if r.boxes is not None and len(r.boxes) > 0: + clss = r.boxes.cls.cpu().tolist() + confs = r.boxes.conf.cpu().tolist() + xyxys = r.boxes.xyxy.cpu().tolist() + + for i in range(len(clss)): + cls_id = int(clss[i]) + conf_val = float(confs[i]) + x1, y1, x2, y2 = xyxys[i] + bbox = (int(x1), int(y1), int(x2), int(y2)) + ts_obj = TimeSignature(yolo_class=cls_id, bbox=bbox, confidence=conf_val) + time_signatures.append(ts_obj) + + return time_signatures + +def map_time_signatures_to_score(time_signature_list, staffList, allStavesMeasures, allItemInScore, imgResizeRatio = 1): + """ + 將 TimeSignature 物件映射到對應的 Staff 和 Measure。 + """ + for ts in time_signature_list: + # if not ts.isValid(): + # continue + + tx1, ty1, tx2, ty2 = [int(s*imgResizeRatio) for s in ts.getBbox()] + + ts_cx = (tx1 + tx2) / 2 # 中心 X + ts_cy = (ty1 + ty2) / 2 # 中心 Y + ts_h = ty2 - ty1 # bbox 高度 + + # --- 規則 1: 縱向尋找最靠近的 staff --- + best_staff_idx = -1 + min_dist = float('inf') + + for s_idx, staff in enumerate(staffList): + # 計算該 staff 的中心 Y (五條線的平均值) + staff_cy = sum(staff.ys) / len(staff.ys) + dist = abs(ts_cy - staff_cy) + + if dist < min_dist: + min_dist = dist + best_staff_idx = s_idx + + # 檢查垂直相差距離是否大過本身 bbox 高度 + if best_staff_idx == -1 or min_dist > ts_h: + ts.setValid(False) + continue + + ts.setstaffline(best_staff_idx) + + # --- 規則 2: 水平尋找小節 (Measure) --- + measures = allStavesMeasures[best_staff_idx] + found_bar_idx = -2 # 預設未找到 + + # 檢查是否落在某個小節內 + for m_idx, m_bbox in enumerate(measures): + mx1, mx2, my1, my2 = m_bbox + if mx1 <= ts_cx <= mx2: + found_bar_idx = m_idx + break + + # 如果沒在小節內,檢查是否在最後一個小節的右邊 + if found_bar_idx == -2: + last_mx2 = measures[-1][1] # 最後一個小節的 x2 + if ts_cx > last_mx2: + found_bar_idx = -1 + else: + # 既不在小節內,也不在右邊(可能在第一小節左邊邊緣外) + ts.setValid(False) + continue + + ts.setBarLoc(found_bar_idx) + + # --- 規則 3: 檢查小節內的 Rest 和 NoteGroup --- + # 如果 barLoc 為 -1 (在最右邊之外),通常不具備音樂意義上的音符檢查需求,可視情況跳過或判定無效 + if found_bar_idx == -1: + # 依據一般邏輯,拍號不應出現在所有音符之後的最右側,建議設為無效 + ts.setValid(False) + continue + + # 獲取該 staff 的所有物件 + staff_items = allItemInScore[best_staff_idx] + mx1, mx2, _, _ = measures[found_bar_idx] + + is_invalid_by_context = False + for item in staff_items: + # 只考慮 Rest 和 NoteGroup (透過類別名稱判斷) + class_name = item.__class__.__name__ + if class_name in ["Rest", "NoteGroup"]: + ix1, iy1, ix2, iy2 = item.boundingBox + item_cx = (ix1 + ix2) / 2 + + # 判斷該物件是否屬於當前小節 (中心在小節範圍內) + if mx1 <= item_cx <= mx2: + # 如果物件的中心在拍號中心的左邊 -> 拍號位置錯誤 + if item_cx < ts_cx: + is_invalid_by_context = True + break + + if is_invalid_by_context: + ts.setValid(False) + continue + +def map_to_track(a, trackList): + for i, (start, end) in enumerate(trackList): + if start <= a <= end: + return i + return None # in case a doesn't fall into any range +def prepareTSBarChangeList(data, trackList): + grouped = defaultdict(list) + + # Group values + for (a, b), value in data: + track_index = map_to_track(a, trackList) + key = (track_index, b) + grouped[key].append(value) + + result = {} + + # Compute most common per group + for key, values in grouped.items(): + most_common, common_count = Counter(values).most_common(1)[0] + if 'c' in most_common: + most_common = '4,4' + currentTrack = key[0] + if common_count > (trackList[currentTrack][1] - trackList[currentTrack][0]+1)* 0.5: + result[key] = list(map(int, most_common.split(','))) + + # Find the "last" group based on sorted (track_index, b) + if result: + last_key = sorted(result.keys())[-1] + last_value = result[last_key] + else: + last_value = None + + # Convert keys to "x,y" + formatted_result = { + f"{k[0]},{k[1]}": v for k, v in result.items() + } + + return formatted_result, last_value + +if __name__ == '__main__': + noteGroupMap: np.ndarray + stemIdxMap: np.ndarray + noteGroupVerticallyMerged: List[NoteGroup | None] + restMap: np.ndarray + restList: List[Rest | None] + sfnClefMap: np.ndarray + sfnClefList: List[Union[Accidentals, Clef, None]] + beamMapImg: np.ndarray + staffList: List[Staff] + symNum = 6 + sheetName = f'Bee_{symNum}_challenge' + prevBarTS = [12,8] + lenString = 3 + runWholeModel = True + fullBarList = [] + fullksListAllTrack = np.array([]) + dataSepList = dict() + dataSepList['bee5'] = [1, 12, 33, 53, 77, 98, 119, 141, 160, 170, 181, 194, 223, 248, 267, 287, 309, 333, 356, 376,386, 397, 408, 418, 429, 441, 455, 469, 480, 491, + 1, 8, 25, 38, 57, 73, 82, 92, 102, 110, 118, 133, 148, 164, 172, 183, 187, 191, 204, 215, 230, + 1, 12, 38, 61, 82, 83, 104, 123, 131,150, 166, 182, 190, 205, 231, 263, 293, 323, 349, + 1, 6, 12, 17, 21, 26, 33, 39, 44, 49, 54, 59, 62, 69, 74, 81, 85, 90, 94, 104, 112, 117, 122, 127, 132, 136, 140, 145, 150, 161, 186, 207, 214, 219, 224, 228, 234, 240, 247, 252, 257, 262, 268, 272, 279, 285, 294, 300, 305, 309, 316, 324, 330, 336, 343, 349, 354, 364, 374, 383, 391, 397, 405, 415, 422, 432] + dataSepList['bee6'] = [1,17,31,43,57,83,95,111,124,139,154,166,177,196,209,221,241,260,276,298,317,329,354,368,381,395,407,426,440,452,464,479,493, + 1,4,8,10,12,16,21,25,29,31,35,39,42,44,46,49,51,53,57,61,65,70,74,79,83,87,89,91,93,95,97,99,101,103,107,111,116,118,121,123,125,127,133, + 1,19,39,59,80,111,141,161,176,191,205,224,244,125, + 1,14,22,25,28,31,34,40,17,51,56,65,72,78,82,87,93,103,107,110,114,125,137,145, + 1,14,23,26,32,36,40,44,48,52,57,28,77,85,93,101,105,109,117,131,134,137,141,149,153,157,161,170,179,191,196,204,212,219,225,231,245,260] + dataSepList['bee7'] = [1,8,16,19,22,30,36,39,46,53,63,75,87,91,95,99,103,108,118,127,138,148,157,162,167,171,184,196,205,209,213,225,235,245,255,260,270,279,283,287,291,295,300,311,323,331,335,346,358,366,370,376,380,384,397,409,416,422,428,433,439,444, + 1,32,63,77,84,91,106,120,134,146,158,170,182,192,212,217,230,244,261, + 1,16,34,56,76,97,118,135,143,160,181,198,214,233,250,259,277,293,317,337,357,377,396,404,424,441,459,477,496,513,531,554,574,593,613,629,637,645, + 1,7,12,17,21,28,34,39,52,60,73,81,90,104,113,119,122,129,146,151,154,159,163,177,191,203,218,226,231,238,245,251,257,263,271,278,290,302,314,320,328,335,340,347,358,370,382,394,400,406,414,421,429,437,445,453,459] + dataSepList['bee8'] = [1,8,13,20,26,34,48,64,80,92,98,112,124,138,151,163,169,175,182,187,193,200,213,219,226,241,255,263,277,289,295,307,317,328,334,345,349,353,357,364, + 1,8,16,24,32,41,48,55,63,71,78, + 1,6,11,16,21,31,38,52,66, + 1,8,22,31,42,54,65,75,85,99,112,123,135,148,161,173,183,191,201,211,225,238,244,250,260,274,291,302,312,324,336,348,361,373,383,391,394,401,407,412,417,428,439,449,454,461,474,487] + dataSeperate = dataSepList[f'bee{symNum}'] + for number in range(39,40): #(51,53): + isInit = dataSeperate[number-1] == 1 + jsonPath = rf"orch_dataset\{sheetName}\csv\{sheetName}.json" + csvPath = rf"orch_dataset\{sheetName}\csv\{sheetName}_{numberToString(number, lenString)}.csv" + df = readCsvAndEditViolin(csvPath) + pageMetadata = ScoreMetaData(df, jsonPath, isInit) + instrumentList = ScoreMetaData.get_instruments() + if (isInit): + print(f"initing the instrument List to {pageMetadata}") + print(f"updated instrument list: {instrumentList}") + + imgName = rf"{sheetName}_{number}" + imgPath = rf"orch_dataset\{sheetName}\imgs\{sheetName}_{number}\{sheetName}_{number}.png" + pklPath = rf"orch_dataset\{sheetName}\imgs\{sheetName}_{number}\{sheetName}_{number}.pkl" + scorePath = rf"orch_dataset\{sheetName}\xmls\{sheetName}_{number}.musicxml" + scoreShiftedPath = rf"orch_dataset\{sheetName}\xmls\{sheetName}_{number}_shifted.musicxml" + if not os.path.isdir(rf"orch_dataset\{sheetName}\xmls"): + os.mkdir(rf"orch_dataset\{sheetName}\xmls") + if not os.path.exists(pklPath) or runWholeModel: + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = png2decode(imgName, imgPath) + with open(pklPath, "wb") as f: + pickle.dump( + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ), + f + ) + print(f"finishing processing sheet {sheetName}_{number}") + # to save time running previous step (Debug only) + else: + with open(pklPath, "rb") as f: + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = pickle.load(f) + + # # !!! decoded stuff from score (by bar) + # # !!! note object by staff line (object not just decoded) + allItemInScore = getAllObjectInEachLine(noteGroupMap, noteGroupVerticallyMerged, restMap, restList, sfnClefMap, sfnClefList, beamMapImg, staffList) + + # patch the object to make it up to date + for obj in noteGroupVerticallyMerged: + if obj and not hasattr(obj, "acrossLineNGID"): + obj.acrossLineNGID = None + for obj in restList: + if obj and not hasattr(obj, "acrossLineNGID"): + obj.acrossLineNGID = None + image = dataDict['image'] + # get Barline locations -> bar center for each track: List[List[int]] + + barEachTrack = getBarsEachTrack(image, beamMapImg, staffList, tolerance = 20) + + allStavesMeasures = getMeasuresEachStaff(image, beamMapImg, staffList, barEachTrack, pageMetadata.getTrackRange()) + + # load in image + img = cv2.imread(imgPath) + img_height, img_width, channels = img.shape + + # yolo detect time signature + yolo_model_path = "best_time_signature.pt" + time_signature_list = detect_time_signatures(yolo_model_path, imgPath) + + # filter for valid time signatures only + map_time_signatures_to_score(time_signature_list, staffList, allStavesMeasures, allItemInScore, imgResizeRatio=image.shape[0]/img.shape[0]) + valid_ts_only = time_signature_list #[ts for ts in time_signature_list if ts.isValid()] + time_sig_thres = 0.5 + final_time_sig_list = [ + [(ts.staffline, ts.barLoc if not ts.barLoc == None else 0), ts.getString()] + for ts in valid_ts_only + if ts.getConfidence() >= time_sig_thres + ] + final_time_sig_list.sort(key=lambda x: (x[0][0], x[0][1])) + print("Detected Time Signatures (after filtering):", final_time_sig_list) + barChangeList, lastTS = prepareTSBarChangeList(final_time_sig_list, pageMetadata.getTrackRange()) + # TODO: add in the bar time signature, [[(9.8),(9,8)...], [(9.8),(9,8),(4,4)...]] etc. + if not barChangeList.get('0,0'): + barChangeList['0,0'] = prevBarTS + if lastTS: + prevBarTS = lastTS + # get the list of barList (untuned) + barList,allRanges, numBarsEachLine = constructBar(noteGroupMap, noteGroupVerticallyMerged, restMap ,restList, sfnClefMap, sfnClefList, beamMapImg, staffList, pageMetadata, barEachTrack, barChangeList) + + numBarsEachTrack = [numBarsEachLine[p[0]] for p in pageMetadata.getTrackRange()] + + # noteRestMap, retImg = stackItemVertically(image, barList, pageMetadata, staffList, noteGroupVerticallyMerged, restList) + # outputImWrite(f"{imgName}_stack.jpg", retImg) + # cv2.imwrite(f"test{number}.jpg",retImg) + + rest_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + knn_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + imgrgb = image.copy() + beamWidth = 9 + for oneTrack in barList: + for oneBar in oneTrack: + for elem in oneBar.elementList: + if type(elem) == NoteGroup: + for stem in elem.noteStemList: + x0,y0,x1,y1 = stem.noteBox + imgrgb = cv2.rectangle(imgrgb, (stem.getX()-beamWidth//3, stem.getTopCoord()[1]), (stem.getX()+beamWidth//3, stem.getBottomCoord()[1]), knn_colors[stem.rhythm], 1, cv2.LINE_AA) + imgrgb = cv2.rectangle(imgrgb, (x0,y0),(x1,y1), knn_colors[stem.rhythm], 1, cv2.LINE_AA) + elif type(elem) == Rest: + x0,y0,x1,y1 = elem.boundingBox + imgrgb = cv2.rectangle(imgrgb, (x0,y0),(x1,y1),rest_colors[elem.rhythm], 2, cv2.LINE_AA) + cv2.imwrite('test.jpg',imgrgb) + # tune bar list based on timeSignature + barBreakPoints = tuneBarList(barList, numBarsEachTrack) + + # get all the elements on that line and continue changing currX + toneHelper = ToneHelper("keySignatureMapping.json") + + # returned BarList is exactly what we see in the score (two instrument in one line etc.) + ksMatEachTrackDirectMap, ksEachTrack, barList = getKSMatAndKSList(pageMetadata, barList, toneHelper) + + # add instruments tracks for those not appearing + # all instrument seperated (and added if not present) + barDictPerInstrument, barListPerInstrument, instrumentEachLine = assignBarlistInstrument(barList, pageMetadata) + + ksListAllTrack = np.concatenate(ksEachTrack) + assert len(ksListAllTrack) == len(barListPerInstrument[0]) + + instrument_dict = constructInstrumentMappingDict("instrumentMapping.json") + score, debugImages = exportXML(barListPerInstrument, instrumentEachLine, toneHelper, instrument_dict, ksListAllTrack, image, imgName) + score.write('musicxml', scorePath) + print(f"score write to {scorePath}") + # scoreShifted.write('musicxml',scoreShiftedPath) + # print(f"shifted score write to {scoreShiftedPath}") + # if isInit: + # fullBarList = barListPerInstrument + # else: + # for i in range(len(barListPerInstrument)): + # fullBarList[i]+=barListPerInstrument[i] + fullksListAllTrack = np.append(fullksListAllTrack, ksListAllTrack) + print() + # fullscore, fulldebugImages = exportXML(fullBarList, instrumentEachLine, toneHelper, instrument_dict, fullksListAllTrack) + # fullscore.write('musicxml',f'{imgName}.musicxml') + + print() + + + + + + + + + +# todo: +# Timpani only use one row + + + # current data structure documentation: + # noteChunkList: list of None|NoteChunks + # by noteChunkList[n].noteGroupIdxs you can get the Ids of them + # noteGroupMap, stemIdxMap <-> noteGroupVerticallyMerged + # noteGroupMap value == 0: no note, + # >0: is the noteGroupVerticallyMerged[idx] + # stemIdxMap value == -1: no noteBox + # >=0: is the index of noteGroupVerticallyMerged[idx].noteStemList[index] + # restMap <-> restList + # RestMap value == 0: no rest + # >0: is the restList[idx] + # sfnClefMap <-> sfnClefList + # sfnClefMap value == 0: no clef/sfn + # >0: is the sfnClefList[idx] + # beamMapImg: bb,gg,rr + # bb: the gradient beam image, 255 where there's beam, + # 254-2*stepSize*n: go how far down to beam + # 253-2*stepSize*n: go how far up to beam + # gg: 0 if there's nothing there + # 1 if it's place of a noteGroup object + # 2 if it's place of an accidentals + # 3 if it's place of a clef + # 4 if it's place of a barline + # 5 if it's place of a rest + # 6 if it's place of a noteGroup ornament? TODO not implemented yet + # rr: staff position map + staff number + how far to the bottom of staff + # x = 0~3 (total of 4): the position of the note (1~24, A is 12, C is 13) + # x = 4: the staffnum of the closest one (starting with 1 instead of 0) + # x = -1: how far pixel to the top of the staff (if it's in the staff range and 1 barheight above, else 0) + # x = -2: how far pixel to the bottom of the staff (if it's in the staff range and 1 barheight below, else 0) + # within the x of staff: the staff number + # if it contains anything in the staff it will be that, else it will diff --git a/pdf2musicXMLsingleLine.py b/pdf2musicXMLsingleLine.py new file mode 100644 index 0000000..2c0b21c --- /dev/null +++ b/pdf2musicXMLsingleLine.py @@ -0,0 +1,3764 @@ +import cv2 +import glob +import os +import numpy as np +from scipy import stats +from omr.part1 import runModel1 +from omr.staffline_extraction import staff_extract_staffobj +from omr.part2 import runModel2 +from omr import layers +from typing import List,Tuple, Union, Set +import statistics +import matplotlib.pyplot as plt +from sklearn.cluster import KMeans +import math +from get_prediction_singleStem import Single_Stem_Classifier +from omr.bbox import ( + BBox, + merge_nearby_bbox, +) +import json +import math +from get_prediction import Sfn_Clef_classifier +from get_prediction_rest import Rest_Classifier +from abc import ABC, abstractmethod +from music21 import stream, note, metadata, chord, meter, clef, key +from fractions import Fraction +from dd_classes import RestNg +from tune_bar import tuneBar +from collections import Counter +from pdf2png import savePdf2Png +import pickle +import itertools + +OUTPUT_BASE_FOLDER = '' +NUM_TRACK = 4 +TRACK_SHIFT = [0,0,0,0] +CLEF_OPTIONS = [[1],[1],[0,1],[-1,-2,1]] +RESIZE_RATIO_PACKED = 2 +TIME_SIGNATURE = [9,8] +DEBUGIMG = None +class Staff: + def __init__(self, left:int, right:int, ys:Tuple[int,int,int,int,int], minMaxDiff:int=0): + self.left = left + self.right = right + self.ys = ys + self.minDiff = minMaxDiff + def get_yOne(self)->int: + x = [self.ys[i+1] - self.ys[i] for i in range(len(self.ys) - 1)] + return sum(x)//len(x) + def get_yOne_float(self)->float: + x = [self.ys[i+1] - self.ys[i] for i in range(len(self.ys) - 1)] + return sum(x)/len(x) + def IsStaffAligned(self, barheight:int)->bool: + return self.minDiffint: + # if hasLineMiddle the number has to be even + if self.hasLineMiddle is None: + return round(self.pitchWideFloat) + upperInt:int = math.ceil(self.pitchWideFloat) + lowerInt:int = math.floor(self.pitchWideFloat) + if upperInt == lowerInt: + return upperInt + if self.hasLineMiddle: + return upperInt if upperInt%2==0 else lowerInt + else: + return upperInt if upperInt%2==1 else lowerInt + + def getX(self): + return self.start[0] + def setYlen(self, ylen:int): + x = self.start[0] + if self.isup: + self.end = (x,self.start[1]-abs(ylen)) + else: + self.end = (x,self.start[1]+abs(ylen)) + def getTopCoord(self): + if self.isup: + return self.end + else: + return self.start + def getBottomCoord(self): + if self.isup: + return self.start + else: + return self.end + def getY0Y1(self): + return (min(self.start[1],self.end[1]), max(self.start[1],self.end[1])) + def getLineX0Y0X1Y1(self, width:int=3): + return (self.start[0]-width//2, self.getTopCoord()[1], self.start[0]+(width-width//2), self.getBottomCoord()[1]) + def getYLen(self)->int: + return int(abs(self.start[1]-self.end[1])) + def setBeam(self, typ:str,top:int|None = None, bottom:int|None = None): + if typ.lower().startswith('l'): + self.setLeftBeam(top=top, bottom=bottom) + else: + self.setRightBeam(top=top, bottom=bottom) + def setLeftBeam(self, top:int|None = None, bottom:int|None = None): + if top is not None: + self.leftBeam[0] = top + if bottom is not None: + self.leftBeam[1] = bottom + def setRightBeam(self, top:int|None = None, bottom:int|None = None): + if top is not None: + self.rightBeam[0] = top + if bottom is not None: + self.rightBeam[1] = bottom + def getBeamHeights(self): + return (self.leftBeam[1]-self.leftBeam[0], self.rightBeam[1]-self.rightBeam[0]) + def getBoundingBox(self): + x0,y0,x1,y1 = self.noteBox + yy0 = self.start[1] + yy2 = self.end[1] + return (x0,min(y0,yy0,yy2), x1, max(y0,yy0,yy2)) + def getString(self): + keyName = ['C','D','E','F','G','A','B'] + currKeyName = keyName[(self.pitchSoprano-1)%7] + currKey = currKeyName+str((self.pitchSoprano-1)//7+5) + if self.accidentals is not None: # it has keySignature + if self.accidentals == -1: + currKey = currKey[0]+'-'+currKey[1] + elif self.accidentals == 1: + currKey = currKey[0]+'#'+currKey[1] + return currKey + +class Rest: + def __init__(self, bbox:Tuple[int,int,int,int], rhythm: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + # rest -1: whole rest or 1/2 depending, 0: 1/4, 1:1/8, 2:1/16 ... (the number of lines) + self.rhythm: int = rhythm + self.hasdot: bool = False + self.noteGroupId: int|None = None + self.tunedLength: Fraction|None = None + def setNgId(self, ngId:int): + self.noteGroupId = ngId + def getLengthFraction(self): + restClassNames = ['1/4','1/8','1/16','1/32','1/2'] # only for >=0 + ratio = Fraction(3,2) if self.hasdot else 1 + return Fraction(restClassNames[self.rhythm])*ratio + def getString(self): + return f"Rest_{self.tunedLength}" + +class NoteGroup: + def __init__(self, noteStemObj:Stem): + # the width of the stem box we want + self.stemWidth:int = 3 + # x0,y0,x1,y1 + self.noteBoxes:List[Tuple[int,int,int,int]] = [noteStemObj.noteBox] + # x0, y0, x1, y1 + self.stemLineBoxes:List[Tuple[int,int,int,int]] = [noteStemObj.getLineX0Y0X1Y1(width=self.stemWidth)] + # x0,y0,x1,y1 + self.boundingBox: Tuple[int,int,int,int]|None = None + self.noteStemList: List[Stem] = [noteStemObj] + self.updateBoundingBox() + self.noteChunkId: int|None = None + # self.pitchLists: List[float] = [] + # for instance C has line, D doesn't + # self.noteLineMiddle: List[bool] = [] + self.restList:List[Rest] = [] + self.tunedLength: Fraction|None = None + def addRest(self, rest:Rest): + self.restList.append(rest) + self.updateBoxRest(rest.boundingBox) + def addNoteStem(self, noteStemObj: Stem): + self.noteStemList.append(noteStemObj) + self.noteBoxes.append(noteStemObj.noteBox) + self.stemLineBoxes.append(noteStemObj.getLineX0Y0X1Y1(width=self.stemWidth)) + self.updateBoundingBox() + def updateBoundingBox(self): + noteMinX = min([n[0] for n in self.noteBoxes]) + noteMaxX = max([n[2] for n in self.noteBoxes]) + noteMinY = min([n[1] for n in self.noteBoxes]) + noteMaxY = max([n[3] for n in self.noteBoxes]) + stemMinX = min([n[0] for n in self.stemLineBoxes]) + stemMaxX = max([n[2] for n in self.stemLineBoxes]) + stemMinY = min([n[1] for n in self.stemLineBoxes]) + stemMaxY = max([n[3] for n in self.stemLineBoxes]) + self.boundingBox = (min(noteMinX, stemMinX), min(noteMinY, stemMinY), max(noteMaxX, stemMaxX), max(noteMaxY, stemMaxY)) + def updateBoxRest(self, restBox:Tuple[int,int,int,int]): + minx,miny,maxx,maxy = self.boundingBox + x0,y0,x1,y1 = restBox + self.boundingBox = (min(minx, x0), min(miny, y0), max(maxx, x1), max(maxy, y1)) + def getMinLength(self): + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + minLength = 1 + for ns in self.noteStemList: + if Fraction(class_names[ns.rhythm])*(1.5 if ns.hasdot else 1) filter out the one with greater beams value and >0.5 + if len(nsl1) == 1 and len(nsl2) ==1: + if nslSum1[0] > nslSum2[0]*2 and nslSum1[0]>thres: + return ng2 + elif nslSum2[0] > nslSum1[0]*2 and nslSum2[0]>thres: + return ng1 + else: + ng1.addNoteStem(ng2.noteStemList[0]) + return ng1 + # if one has more than one notes -> check the other one + else: + if len(nsl1)>len(nsl2): + if nslSum2[0]>thres: + return ng1 + elif nslSum1[0]>nslSum2[0]*2 and nslSum1[0]>thres: + return ng2 + else: + if nslSum1[0]>thres: + return ng2 + elif nslSum2[0]>nslSum1[0]*2 and nslSum2[0]>thres: + return ng1 + for ns in nsl2: + ng1.addNoteStem(ns) + return ng1 + +class NoteChunk: + def __init__(self, noteGroups:Set[int]): + self.noteGroupIdxs:Set[int] = noteGroups + def mergeNoteChunk(self, noteGroup2: Set[int]): + self.noteGroupIdxs:Set[int] = self.noteGroupIdxs.union(noteGroup2) + def getBoundingBox(self,noteGroupList:List[NoteGroup]): + x0s = min([noteGroupList[i].boundingBox[0] for i in self.noteGroupIdxs]) + x1s = max([noteGroupList[i].boundingBox[2] for i in self.noteGroupIdxs]) + y0s = min([noteGroupList[i].boundingBox[1] for i in self.noteGroupIdxs]) + y1s = max([noteGroupList[i].boundingBox[3] for i in self.noteGroupIdxs]) + return [x0s, y0s, x1s, y1s] +class sfnClefInterface(ABC): + @abstractmethod + def getString(self): + pass + @abstractmethod + def getBbox(self) -> Tuple[int,int,int,int]: + pass + @abstractmethod + def getValue(self) -> int: + pass + @abstractmethod + def getType(self) -> int: + # 0 is accidental, 1 is clef + pass +class Accidentals(sfnClefInterface): + def __init__(self, bbox:Tuple[int,int,int,int], shift: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + # shift is 1 for sharp, 0 for natural, -1 for flat + self.shift: int = shift + self.isKeySignature:bool = False + self.endKeySignature:bool = False + self.ksKeySop: float|None = None + self.shrinkYs: Tuple[int,int]|None = None + self.ngIndex: int|None = None + def getString(self): + if self.shift == 0: + return 'natural' + elif self.shift == 1: + return 'sharp' + elif self.shift == -1: + return 'flat' + else: + return 'invalid accidentals' + def getColor(self): + clrs = [(255,255,0),(255,0,125),(255,0,255)] + return clrs[self.shift] + def getBbox(self) -> Tuple[int]: + return self.boundingBox + def getValue(self) -> int: + return self.shift + # 0 if is accidentals + def getType(self)->int: + return 0 + def getSign(self)->int: + if self.shift == 0: + return '%' + elif self.shift == 1: + return '#' + elif self.shift == -1: + return 'b' + else: + return 'invalid accidentals' +class Clef(sfnClefInterface): + def __init__(self, bbox:Tuple[int,int,int,int], type: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + self.type:int = type + # how far it should shift if the staff position is 0 in the sidebar + def getString(self): + if self.type == 1: + return 'violin' + elif self.type == 0: + return 'viola' + elif self.type == -1: + return 'bass' + elif self.type == -2: + return 'violaCello' + else: + return 'invalid clef' + def getBbox(self) -> Tuple[int]: + return self.boundingBox + def getValue(self) -> int: + return self.type + # 1 if it's clef + def getType(self)->int: + return 1 + + +class Bar: + def __init__(self, TS:Tuple[int,int]=TIME_SIGNATURE): + self.ts = TS + self.elementList:List[Accidentals|Clef|Rest|NoteGroup] = [] + self.restNgList:List[RestNg] = [] + def getString(self): + retStr = [] + for elem in self.elementList: + retStr.append(elem.getString()) + return retStr + def addElement(self, elem:Union[Accidentals, Clef, Rest, NoteGroup]): + if type(elem) == NoteGroup: + if elem.noteChunkId is not None and not False in [j.rhythm<=0 for j in elem.noteStemList]: + print(f'removing element in noteChunk {elem.noteChunkId} > quarter') + return + self.elementList.append(elem) + def getTunedTotalBeat(self) -> Fraction: + bt = 0 + for elm in self.elementList: + if type(elm) == NoteGroup: + bt += elm.tunedLength + elif type(elm) == Rest: + bt += elm.tunedLength + return bt + + def getTotalBeat(self)->Fraction: + bt = 0 + for elm in self.elementList: + if type(elm) == NoteGroup: + bt += elm.getMinLength() + elif type(elm) == Rest: + bt += elm.getLengthFraction() + return bt + def getRhythmList(self) -> List[Fraction]: + retLst = [] + for elm in self.elementList: + if type(elm) == NoteGroup: + retLst.append(elm.getMinLength()) + elif type(elm) == Rest: + retLst.append(elm.getLengthFraction()) + return retLst + def getRestNg(self) -> List[RestNg]: + if len(self.restNgList)!= 0: + print("returning restNg list from last time") + return self.restNgList + retLst = [] + for elm in self.elementList: + if type(elm) == NoteGroup: + groupId = 0 + if elm.noteChunkId is not None: + groupId = elm.noteChunkId + beamLength = (-1,-1) + beamEnd = [-1,-1] # for grouped notes + length = elm.getMinLength() + if len(elm.noteStemList) == 1: + currStm = elm.noteStemList[0] + beamLength = [int(a) for a in currStm.getBeamHeights()] + if currStm.isup: + beamEnd = [currStm.getX(), int(min(currStm.getY0Y1()))] + else: + beamEnd = [currStm.getX(), int(max(currStm.getY0Y1()))] + newElm = RestNg(length=Fraction(length), + groupId = groupId, + isRest = False, + numNotes = len(elm.noteStemList), + beamLength = beamLength, + beamEnd=beamEnd) + retLst.append(newElm) + elif type(elm) == Rest: + newElm = RestNg(length=elm.getLengthFraction()*Fraction(3,2) if elm.hasdot else elm.getLengthFraction(), + groupId = -1, + isRest = True, + numNotes = 0, + beamLength = (-1,-1), + beamEnd=[-1,-1]) + retLst.append(newElm) + self.restNgList = retLst + return retLst + def reassignLength(self, origLens: List[Fraction], newLens: List[Fraction]): + currNewLenIdx = 0 + for elm in self.elementList: + if type(elm)!=NoteGroup and type(elm)!=Rest: + continue + if newLens[currNewLenIdx] is not None: + elm.tunedLength = newLens[currNewLenIdx] + else: + elm.tunedLength = origLens[currNewLenIdx] + currNewLenIdx+=1 +print_str = True +def printt(str): + if print_str: + print(str) + +debugImg = False + +def imwrite(str,img,strictlyYes=False, startingFolder = f'{OUTPUT_BASE_FOLDER}/'): + debugFolderPath = f'{startingFolder}debug' + if not os.path.exists(debugFolderPath): + os.mkdir(debugFolderPath) + if debugImg or strictlyYes: + print(f'saving {str}') + cv2.imwrite(f'{debugFolderPath}/{str}',img) + + +def outputImWrite(str,img, startingFolder = f'{OUTPUT_BASE_FOLDER}/'): + outputImgPath = f'{startingFolder}output' + if not os.path.exists(outputImgPath): + os.mkdir(outputImgPath) + cv2.imwrite(f'{outputImgPath}/{str}',img) + +# barline_height = 12 + +def getStemBox(dataDict, missing_height = 33): + stems_rests = dataDict['stems_rests'] + clefs_keys = dataDict['clefs_keys'] + notehead = dataDict['notehead'] + staff = dataDict['staff'] + symbols = dataDict['symbols'] + image = dataDict['image'] + + _, img128 = cv2.threshold(image, 128, 255, cv2.THRESH_BINARY_INV) + kernel = np.ones((5,5),dtype=np.uint8) + beam = cv2.erode(img128, kernel, iterations = 1) + imwrite('beam.jpg',beam) + + combine = beam.copy() + notehead_clefkey = notehead+clefs_keys + xs, ys = np.where(notehead_clefkey>0) + combine[xs,ys] = 0 + xs, ys = np.where(symbols>0) + combine[xs,ys] = 255 + combine = cv2.bitwise_not(combine) + imwrite('combine.jpg',combine) + + stem = np.zeros_like(img128) + xs, ys = np.where(stems_rests>0) + stem[xs,ys] = 255 + stem = cv2.erode(stem, np.ones((3,1),dtype=np.uint8),iterations = 1) + stem = cv2.bitwise_not(stem) + imwrite('stem.jpg',stem) + + note_stem = notehead+stems_rests + notestem = np.zeros_like(img128) + xs,ys = np.where(note_stem>0) + notestem[xs,ys] = 255 + notestem = cv2.erode(notestem, np.ones((3,1),dtype=np.uint8),iterations = 1) + notestem = cv2.bitwise_not(notestem) + imwrite('notestem.jpg',notestem) + + ret,mod_stem = cv2.threshold(cv2.cvtColor(stem, cv2.COLOR_BGR2GRAY), 128,255,cv2.THRESH_BINARY_INV) + # now 255 is where the stems etc are + + imwrite('mod_stem.jpg',mod_stem) + # remove circles (the rests) + circle_size = 6 + remove = cv2.erode(mod_stem, cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(circle_size,circle_size)), iterations=1) + remove = cv2.dilate(remove, cv2.getStructuringElement(cv2.MORPH_RECT,(circle_size*4,circle_size*6)), iterations=1) + + # remove long beams + remove1 = cv2.dilate(mod_stem, np.ones((1,3),dtype=np.uint8),iterations = 1) + remove1 = cv2.erode(remove1, np.ones((1,7),dtype=np.uint8), iterations=1) + remove1 = cv2.dilate(remove1,np.ones((3,9),dtype=np.uint8), iterations=1) + + mod_stem[remove>0]=0 + mod_stem[remove1>0] = 0 + imwrite('test_remove1.jpg',remove1) + imwrite('test_remove.jpg',remove) + imwrite('test_mod.jpg',mod_stem) + + + # remove noise + single_kernel = np.array([ + [0,255,0], + [0,255,0], + ], dtype=np.uint8) + mod = cv2.erode(mod_stem, single_kernel, iterations = 1) + mod = cv2.dilate(mod, single_kernel, iterations = 1) + imwrite('test_mod2.jpg',mod) + + currLen = missing_height + while currLen>=3: + kernel = np.zeros((currLen,1),dtype=np.uint8) + kernel[0]=1 + kernel[currLen-1]=1 + add = cv2.dilate(mod, kernel, iterations=1) + mod = mod+add + mod[mod>255] = 255 + currLen = currLen//2+1 + + imwrite('test.jpg',cv2.bitwise_not(mod)) + xs,ys = np.where(mod>0) + imgrgb_ori = combine + imgrgb = imgrgb_ori.copy() + assert imgrgb.shape[0] == stem.shape[0] + assert imgrgb.shape[1] == stem.shape[1] + imgrgb[xs,ys] = (0,0,255) + imwrite('add_imgrgb.jpg',imgrgb) + imwrite('stemLocation_mod.jpg',mod) + return image, imgrgb_ori, mod + +def get_bbox(data: np.ndarray) -> List[Tuple[int,int,int,int]]: + contours, _ = cv2.findContours(data.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + bboxes = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + box = (x, y, x+w, y+h) + bboxes.append(box) + return bboxes + +def filter_small_bbox_area(data: np.ndarray, noteimg:np.ndarray, xmin, ymin, areamin): + filtered_Box = [] + for box in data: + x0,y0,x1,y1 = box + w = x1-x0 + h = y1-y0 + if w>=xmin and h>=ymin and w*h>areamin: + filtered_Box.append(box) + else: + noteimg[y0:y1,x0:x1] = 0 + return filtered_Box,noteimg + +def filter_small_bbox(data: np.ndarray, xmin, ymin): + filtered_Box = [] + for box in data: + x0,y0,x1,y1 = box + w = x1-x0 + h = y1-y0 + if w>=xmin and h>=ymin: + filtered_Box.append(box) + return filtered_Box + +def staffs_to_omrStaffList(staffs): + left = min([sf.x_left for sf in staffs[0,:]]) + right = max([sf.x_right for sf in staffs[-1,:]]) + omrstaff_list: List[Staff] = [] + staffRange = [] + mindiffs = [] + maxdiffs = [] + for i in range(staffs.shape[1]): + yuppers = [sf.y_upper for sf in staffs[:,i]] + ybottoms = [sf.y_lower for sf in staffs[:,i]] + top = statistics.median(yuppers) + bottom = statistics.median(ybottoms) + unit_size = statistics.median([sf.unit_size for sf in staffs[:,i]]) + minMaxDiff = min(max(yuppers)-min(yuppers), max(ybottoms)-min(ybottoms)) + maxMaxDiff = max(max(yuppers)-min(yuppers), max(ybottoms)-min(ybottoms)) + ys = [int(top), int(top+unit_size), int((top+bottom)/2),int(bottom-unit_size),int(bottom)] + sf = Staff(int(left), int(right), ys, minMaxDiff) + mindiffs.append(minMaxDiff) + maxdiffs.append(maxMaxDiff) + omrstaff_list.append(sf) + staffRange.append(range(int(top),int(bottom))) + # print(f'MinDiff: {["{:.2f}".format(num) for num in mindiffs]}, average = {np.mean(mindiffs)}') + # print(f'MaxDiff: {["{:.2f}".format(num) for num in maxdiffs]}, average = {np.mean(maxdiffs)}') + # print('') + return omrstaff_list, staffRange + +def init_bar_height(dataDict, min_barheight = 8): + staff = dataDict['staff'] + staffs, zones = staff_extract_staffobj(staff, min_barheight) + staffList, staffRange = staffs_to_omrStaffList(staffs) + barheight = [sf.get_yOne_float() for sf in staffList] + avg_barheight = int(sum(barheight)/len(barheight)) + return avg_barheight, staffList + +def split_connected_notes(bboxList, bar_height,image): + minh = int(bar_height*0.9) + minw = int(bar_height) + retlst = [] + for bbox in bboxList: + x0,y0,x1,y1 = bbox + wrat = (x1-x0)/minw + hrat = (y1-y0)/minh + wnum = int(wrat) + hnum = int(hrat) + note_w = int(minw*1.3) + note_h = int(minh*1.3) + if wnum*hnum <= 1: + retlst.append(bbox) + elif wnum>=2: + if y1-y0<=bar_height or wnum>=3: + xwid = (x1-x0)//wnum + for i in range(wnum): + retlst.append((x0+i*xwid,y0,x0+(i+1)*xwid,y1)) + # it's a scatter of three vertically stacked notes with two adjacent notes + elif hnum>2.5 and hnum>wnum: + # first get the top and bottom ones + # if the top part has more black on the left (x0) + option2s = [] + if np.sum(image[y0:y0+note_h,x0:x0+note_w])>np.sum(image[y0:y0+note_h,x1-note_w:x1]): + retlst.append((x0,y0,x0+note_w, y0+note_h)) + # the other side go down once + option2s.append((x1-note_w,y0+note_h//2,x1, y0+int(note_h*1.5))) + else: + retlst.append((x1-note_w,y0,x1, y0+note_h)) + option2s.append((x0,y0+note_h//2,x0+note_w, y0+int(note_h*1.5))) + # if the bottom part has more black on the left (x0) + if np.sum(image[y1-note_h:y1,x0:x0+note_w])>np.sum(image[y1-note_h:y1,x1-note_w:x1]): + retlst.append((x0,y1-note_h,x0+note_w, y1)) + option2s.append((x1-note_w,y1-int(note_h*1.5),x1, y1-note_h//2)) + else: + retlst.append((x1-note_w,y1-note_h,x1, y1)) + option2s.append((x0,y1-int(note_h*1.5),x0+note_w, y1-note_h//2)) + # deal with the middle one + if np.sum(image[option2s[0][1]:option2s[0][3], option2s[0][0]:option2s[0][2]]) > np.sum(image[option2s[1][1]:option2s[1][3], option2s[1][0]:option2s[1][2]]): + retlst.append(option2s[0]) + else: + retlst.append(option2s[1]) + else: + # if the left part has more black on top(y0) + if np.sum(image[y0:y0+note_h,x0:x0+note_w])>np.sum(image[y1-note_h:y1,x0:x0+note_w]): + retlst.append((x0,y0,x0+note_w, y0+note_h)) + else: + retlst.append((x0,y1-note_h,x0+note_w, y1)) + # if the right part has more black on top(y1) + if np.sum(image[y0:y0+note_h,x1-note_w:x1])>np.sum(image[y1-note_h:y1,x1-note_w:x1]): + retlst.append((x1-note_w,y0,x1, y0+note_h)) + else: + retlst.append((x1-note_w,y1-note_h,x1, y1)) + + elif hnum>=2: + ywid = (y1-y0)//hnum + for i in range(hnum): + retlst.append((x0,y0+i*ywid,x1,y0+(i+1)*ywid)) + return retlst + + + +def assignBeamLengthBeamImg(stem_list:List[Stem], image:np.ndarray, beam:np.ndarray, barheight:int): + x_diff = barheight//2 + beam = cv2.cvtColor(beam, cv2.COLOR_BGR2GRAY) + # if it's completely white in the white_buffer_max area then stop + white_buffer_max = barheight + beam_start_buffer_max = barheight//3 + for stem in stem_list: + xCenter,yCenter = stem.start + xLeft = xCenter-x_diff + xRight = min(image.shape[1]-1,xCenter+x_diff) + yMax = stem.getYLen() + if stem.getYLen() == 0: + continue + if stem.isup: + for xtype in ['left', 'right']: + if xtype=='left': + currX = xLeft + else: + currX = xRight + currY = stem.getTopCoord()[1] + # if the starting point of beam is not white, meaning that it might be a symbol, staff line etc + # keep going down until it's at the right place + if sum(np.max(beam[currY:currY+beam_start_buffer_max, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max: + while(sum(np.max(beam[currY:currY+beam_start_buffer_max, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max and currYstem.getBottomCoord()[1]+bar_height//2): + currY = currY+1 + else: + while beam[currY-1, currX] == 255: + currY = currY-1 + # now the topStartY is the "real start" + stem.setBeam(typ=xtype, top=currY) + # go down until it's wholely black + while sum(beam[currY:currY+white_buffer_max, currX])>255: + currY+=1 + stem.setBeam(typ=xtype, bottom=currY) + else: + for xtype in ['left', 'right']: + if xtype=='left': + currX = xLeft + else: + currX = xRight + currY = stem.getBottomCoord()[1] + + # if the starting point of beam is not white, meaning that it might be a symbol, staff line etc + # keep going up until it's at the right place + if sum(np.max(beam[currY-beam_start_buffer_max:currY, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max: + while(sum(np.max(beam[currY-beam_start_buffer_max:currY, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max and currY>stem.getTopCoord()[1]+bar_height//2): + currY = currY-1 + stem.end = (stem.end[0], currY) + + # if it's black (need to go up) + if beam[currY, currX] == 0: + while(beam[currY, currX] == 0 and currY255: + currY-=1 + stem.setBeam(typ=xtype, top=currY) + imgBgr = image.copy() + beam_heights = [] + for stem in stem_list: + beam_heights.append(stem.leftBeam[1]-stem.leftBeam[0]) + beam_heights.append(stem.rightBeam[1]-stem.rightBeam[0]) + imgBgr = cv2.rectangle(imgBgr, (stem.start[0]-x_diff, stem.leftBeam[0]), (stem.start[0]-x_diff, stem.leftBeam[1]),(0,0,255),3,cv2.LINE_AA) + imgBgr = cv2.rectangle(imgBgr, (stem.start[0]+x_diff, stem.rightBeam[0]), (stem.start[0]+x_diff, stem.rightBeam[1]),(255,255,0),3, cv2.LINE_AA) + imwrite('leftrightRectBeam.jpg', imgBgr) + return imgBgr, stem_list, beam_heights + +def save_beam_hist(beam_heights: List[int], img_name:str, barheight): + plt.hist([beam_height/bar_height for beam_height in beam_heights], max(beam_heights)) + plt.xlim(0,3.5) + plt.savefig(f'hist_{img_name}.jpg', format='jpg') + plt.close() + count, _ = np.histogram(beam_heights, max(beam_heights)) + whole_thres = [1, int(barheight*0.6), int(barheight*1.5), int(barheight*2.7), int(barheight*3.2)] + # expand the list to be able to access list[init_thres[-1]] + init_thres = whole_thres[:sum([0 if thres>len(count) else 1 for thres in whole_thres])+1] + expanded_count = list(count) + [0]*(init_thres[-1]+1-len(count)) + while sum(expanded_count[init_thres[-1]:])len(count) else 1 for thres in whole_thres])+1] + expanded_count = list(count) + [0]*(init_thres[-1]+1-len(count)) + while len(init_thres)>0 and sum(expanded_count[init_thres[-1]:])tooBig else bh for bh in beam_heights] + expanded_count[tooBig:] = [0]*len(expanded_count[tooBig:]) + init_thres.append(len(expanded_count)) + centers = [0]*len(init_thres) + for i in range(1,len(init_thres)): + centers[i] = np.argmax(expanded_count[init_thres[i-1]:init_thres[i]])+init_thres[i-1] + kmeans = KMeans(n_clusters = len(centers), init = np.array(centers, dtype=np.uint8).reshape(-1, 1), n_init = 1) + kmeans.fit(np.array(beam_heights,dtype=np.uint8).reshape(-1,1)) + return kmeans.labels_.tolist() + +keyCharMap = {'z':'n2', + 'x': 'n4', + 'c': 'n8', + 'v': 'n16', + 's':'noClass', + 'b': 'n1'} +def init_label_folder(rootFolder = 'training'): + for saveFolderName in ['StemUp', 'StemDown']: + for saveFolderNameAdd in ['img200', 'beam']: + folderPath = os.path.join(rootFolder,f'{saveFolderName}_{saveFolderNameAdd}') + if not os.path.exists(folderPath): + os.mkdir(folderPath) + for one_dir in list(keyCharMap.values()): + if not os.path.exists(os.path.join(folderPath,one_dir)): + os.mkdir(os.path.join(folderPath,one_dir)) + +def labelStemData(stem: Stem, img200bwInv: np.ndarray, beamImgBwInv: np.ndarray, idx:int=0, rootFolder = 'training') -> bool: + sy0, sy1 = stem.getY0Y1() + nx0, ny0, nx1, ny1 = stem.noteBox + if stem.isup: + subFolder='StemUp' + x0 = nx0 + x1 = min(nx1+(nx1-nx0), img200bwInv.shape[1]-1) + y0 = sy0 + y1 = ny1 + else: + subFolder = 'StemDown' + x0 = max(nx0-(nx1-nx0)//2,0) + x1 = nx1 + y0 = ny0 + y1 = sy1 + img200Crop = img200bwInv[y0:y1, x0:x1] + beamCrop = beamImgBwInv[y0:y1, x0:x1] + assert beamCrop.shape[0] == beamCrop.shape[0] + cv2.imshow(f'{idx}', np.hstack((img200Crop, beamCrop))) + k=cv2.waitKey() + cv2.destroyAllWindows() + if chr(k) == 'a': + print(f"stopping at img idx: {idx}") + return False + else: + filname = f'{img_name}_{idx}.jpg' + classFolder = 'x' + key_chr = chr(k) + try: + classFolder = keyCharMap[key_chr] + except: + print(f'invalid keychr: {key_chr}') + cv2.imwrite(f'{rootFolder}/{subFolder}_img200/{classFolder}/{filname}', img200Crop) + cv2.imwrite(f'{rootFolder}/{subFolder}_beam/{classFolder}/{filname}', beamCrop) + return True +def getSingleStemPred(img, model:Single_Stem_Classifier): + # ['n2', 'n4', 'n816'] (0,1,2)if it's flat then it should be n1 3 + if img.shape[1]/img.shape[0]>1.5: + return 3 + else: + return model.predict(img) +def knnRhythmAndDraw(stem_list_assigned:List[Stem], beam_heights, image, bar_height, beamMapImg, stemUpClassifier, stemDownClassifier,img_name): + # save_beam_hist(beam_heights, img_name, bar_height) + beam_type = get_beam_height(beam_heights, bar_height) + class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + imgrgb = image.copy() + x_diff = bar_height//2 + mapBeamVal, middle, mapStaffNum = cv2.split(beamMapImg) + # the first one is a empty one just for easier indexing + noteGroupStemMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + noteGroupList:List[NoteGroup|None] = [None] + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _,img200bw = cv2.threshold(img200, 200, 255, cv2.THRESH_BINARY_INV) + for j in range(0,len(class_names)): + imgrgb = cv2.putText(imgrgb,class_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + # stillLabel = True + # init_label_folder() + predLabelConvert = [-2,0,1,-1] + for idx,stem in enumerate(stem_list_assigned): + stem.rhythm = max(beam_type[idx*2: idx*2+2]) + leftHeight, rightHeight = stem.getBeamHeights() + # solve the issue of misclassify something to no stem when there's one (since knn also train on 0s) + if stem.rhythm==0 and max(leftHeight, rightHeight)>0: + stem.rhythm = 1 + elif stem.rhythm == 0: + sy0, sy1 = stem.getY0Y1() + nx0, ny0, nx1, ny1 = stem.noteBox + if stem.isup: + x0 = nx0 + x1 = min(nx1+(nx1-nx0), img200bw.shape[1]-1) + y0 = sy0 + y1 = ny1 + else: + x0 = max(nx0-(nx1-nx0)//2,0) + x1 = nx1 + y0 = ny0 + y1 = sy1 + img200Crop = img200bw[y0:y1, x0:x1] + # ['n2', 'n4', 'n816'] (0,1,2), 3 if the box doesn't have stem + predLabel = getSingleStemPred(img200Crop, model=stemUpClassifier if stem.isup else stemDownClassifier) + stem.rhythm = predLabelConvert[predLabel] + stem.isSingle = True + xcenter = stem.start[0] + if len(stem.alternativeBox)==0: + stemX0 = xcenter - bar_height//3 #(bar_height*2//3 if stem.isup else bar_height//3) + stemX1 = xcenter + bar_height//3 #(bar_height//3 if stem.isup else bar_height*2//3) + stemY0,stemY1 = stem.getY0Y1() + else: + # x0,y0,x1,y1, x0 == x1 + x00, stemY0, xcenter2, stemY1 =stem.alternativeBox[0] + assert x00 == xcenter2 + stemX0 = xcenter2 - bar_height//3 + stemX1 = xcenter2 + bar_height//3 + + if stemY0 == stemY1: + stemY1 = stemY0+1 + elif len(stem.alternativeBox)==0: + # y0 is the top, smaller one + stemY0 = stemY0 - beamMapImg[stemY0, -1, 2] + stemY1 = stemY1 + beamMapImg[stemY1, -2, 2] + cropPart = noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] + staffNumPart = mapStaffNum[stemY0:stemY1, stemX0:stemX1] + staffNum = np.max(staffNumPart) + # there's no overlapping group + if np.max(cropPart) == 0: + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = len(noteGroupList) + mapStaffNum[stemY0:stemY1, stemX0:stemX1] = staffNum + noteGroupList.append(NoteGroup(stem)) + else: + overlappingIndex = np.unique(cropPart).tolist() + if 0 in overlappingIndex: + overlappingIndex.remove(0) + if len(overlappingIndex)==1: + currGroupIdx = overlappingIndex[0] + # xcenter-bar_height//2:xcenter+bar_height//2 + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = currGroupIdx + yy,xx = np.where(noteGroupStemMap == currGroupIdx) + mapStaffNum[yy,xx] = np.max(mapStaffNum[yy,xx]) + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx], NoteGroup(stem), beamMapImg) + # noteGroupList[currGroupIdx].addNoteStem(stem) + else: + currGroupIdx = overlappingIndex[0] + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = currGroupIdx + for gIdx in overlappingIndex[1:]: + ys,xs = np.where(cropPart == gIdx) + noteGroupStemMap[ys,xs] = currGroupIdx + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx],noteGroupList[gIdx], beamMapImg) + noteGroupList[gIdx] = None + yy,xx = np.where(noteGroupStemMap == currGroupIdx) + mapStaffNum[yy,xx] = np.max(mapStaffNum[yy,xx]) + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx], NoteGroup(stem), beamMapImg) + + noteSizes = [] + for ng in noteGroupList: + if ng is None: + continue + for stem in ng.noteStemList: + imgrgb = cv2.rectangle(imgrgb, (stem.getX()-bar_height//3, stem.getTopCoord()[1]), (stem.getX()+bar_height//3, stem.getBottomCoord()[1]), + class_colors[stem.rhythm], 1, cv2.LINE_AA) + x0,y0,x1,y1 = stem.noteBox + noteSizes.append((x1-x0)*(y1-y0)) + imgrgb = cv2.rectangle(imgrgb, (x0,y0),(x1,y1), class_colors[stem.rhythm], 1, cv2.LINE_AA) + if len(stem.alternativeBox) >0: + alterBoxes = stem.alternativeBox + for alterBox in alterBoxes: + imgrgb = cv2.rectangle(imgrgb, (alterBox[0], alterBox[1]),(alterBox[2],alterBox[3]),(120,150,255), 3, cv2.LINE_AA) + kmeans = KMeans(n_clusters = 2, init = np.array([min(noteSizes), max(noteSizes)], dtype=np.uint16).reshape(-1, 1), n_init = 1) + kmeans.fit(np.array(noteSizes,dtype=np.uint16).reshape(-1,1)) + + if kmeans.cluster_centers_[1]/kmeans.cluster_centers_[0]>2: + imgrgb2 = image.copy() + currentCount = -1 + minSize = int(kmeans.cluster_centers_[1]//2) + for ngId, ng in enumerate(noteGroupList): + if ng is None: + continue + stmToRemove = [] + for stemId, stem in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stem.noteBox + currentCount = currentCount+1 + # if kmeans.labels_[currentCount] == 0: + # break + if (x1-x0)*(y1-y0)0: + alterBoxes = stem.alternativeBox + for alterBox in alterBoxes: + imgrgb2 = cv2.rectangle(imgrgb2, (alterBox[0], alterBox[1]),(alterBox[2],alterBox[3]),(120,150,255), 3, cv2.LINE_AA) + stmToRemove.reverse() + for rmId in stmToRemove: + del ng.noteStemList[rmId] + if len(ng.noteStemList) == 0: + noteGroupList[ngId] = None + else: + imgrgb2 = imgrgb + noteGroupMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + ngImg = image.copy() + + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + for idx,ng in enumerate(noteGroupList): + if ng is not None: + x0,y0,x1,y1 = ng.boundingBox + noteGroupMap = cv2.rectangle(noteGroupMap, (x0,y0),(x1,y1), idx, -1) + staffnum = np.max(mapStaffNum[y0:y1, x0:x1]) + mapStaffNum[y0:y1+1, x0:x1+1] = staffnum + coloridx = -1 if staffnum ==0 else staffnum%3 + ngImg = cv2.rectangle(ngImg, (x0,y0),(x1,y1), colors[coloridx], 1, cv2.LINE_AA) + for nb in ng.noteBoxes: + xx0,yy0,xx1,yy1 = nb + ngImg = cv2.rectangle(ngImg, (xx0,yy0),(xx1,yy1), colors[coloridx], 1, cv2.LINE_AA) + beamMapImg = cv2.merge([mapBeamVal, middle, mapStaffNum]) + imwrite('ngImg.jpg',ngImg) + imwrite('knnbeams.jpg',imgrgb) + imwrite('knnbeams2.jpg',imgrgb2) + global DEBUGIMG + DEBUGIMG = imgrgb.copy() + return noteGroupList, beamMapImg, noteGroupStemMap, noteGroupMap, {'knnbeams':imgrgb,'ngImg': ngImg, 'knnbeams2': imgrgb2} + +# savebeam is a black image with white on the place of beam and notes and clefs +def generateBeamStaffImg(savebeam:np.ndarray, staffObjList:List[Staff], barheight:int,stepSize=1): + # beamThick = cv2.dilate(savebeam, np.ones((3,1), dtype=np.uint8), iterations=1) + mappingImgRgb = np.zeros((savebeam.shape[0], savebeam.shape[1], 3)) + savebeambw = cv2.cvtColor(savebeam, cv2.COLOR_BGR2GRAY) + contours, _ = cv2.findContours(savebeambw.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + selectedContours = [] + bb,gg,rr = cv2.split(mappingImgRgb) + staffYCenters = [] + for idx,staff in enumerate(staffObjList): + if staff.left <= 4: + staff.left = 5 + if staff.right >= savebeam.shape[1]-3: + staff.right = savebeam.shape[1]-4 + staffYs = staff.ys + oneY:float = staff.get_yOne_float() + staffYCenter = staffYs[2] + rr = cv2.rectangle(rr, (staff.left, staffYs[0]), (staff.right, staffYs[-1]), idx+1,-1) + # -1: how far to the top [0] + rr[staffYs[0]:min(staffYs[-1]+barheight, savebeam.shape[0]),-1] = np.array(range(0, min(staffYs[-1]+barheight, savebeam.shape[0])-staffYs[0])) + rr[max(staffYs[0]-barheight, 0):staffYs[-1],-2] = np.array(range(staffYs[-1]-max(staffYs[0]-barheight, 0),0,-1)) + # line one's index will be 1~10:1, 2s will be 20~200:20 + indexRatio = (idx%2)*20+(1-idx%2)*1 + staffYCenter = staffYs[2] + staffYCenters.append(staffYCenter) + + for i in range(1,13): + if staffYCenter-i*oneY>0: + rr[round(staffYCenter-i*oneY):round(staffYCenter-(i-1)*oneY),(idx+1)%4] = i+12 + else: + break + for i in range(1,13): + if staffYCenter+i*oneYbarheight*1.5 and ww and not (w<2*barheight and h/w>0.5)and w>h: + selectedContours.append(cnt) + bb = cv2.drawContours(bb, selectedContours,-1, 255,thickness=-1) + imwrite('beamOri.jpg',savebeambw) + mappingImgRgb = cv2.merge([bb,gg,rr]) + imwrite('beamOricontours.jpg',mappingImgRgb) + bbUint8 = bb.astype(np.uint8) + kernel = np.ones((1,barheight//3), dtype=np.uint8) + bbUint8 = cv2.dilate(bbUint8, kernel, iterations=1) + mappingImgUint8= cv2.merge([bbUint8,gg.astype(np.uint8),rr.astype(np.uint8)]) + print('preparing for beam image') + for xIdx in range(0,savebeam.shape[1], stepSize*2): + # no white in this place + if sum(mappingImgUint8[:,xIdx,0]) == 0: + continue + startingY = np.where(mappingImgUint8[:,xIdx,0]==255)[0].tolist() + # the ending of the bottommost one + startingY.append(min(mappingImgUint8.shape[0],startingY[-1]+barheight*5)) + for i in range(0,len(startingY)-1): + yStartVal = 253 + for yIdx in range((startingY[i]+stepSize)//(2*stepSize)*(2*stepSize)+stepSize, startingY[i+1],stepSize*2): + if yStartVal<=0: + break + mappingImgUint8[yIdx,xIdx,0]=yStartVal + yStartVal-=stepSize*2 + # the ending of the topmost one + startingY.pop() + startingY.insert(0, max(startingY[0]-barheight*5, 0)) + for i in range(len(startingY)-1, 0,-1): + yStartVal = 254 + for yIdx in range((startingY[i]-1)//(2*stepSize)*(2*stepSize), startingY[i-1],-stepSize*2): + if yStartVal<=0: + break + mappingImgUint8[yIdx,xIdx,0]=yStartVal + yStartVal-=stepSize*2 + onlyBImg = mappingImgUint8.copy() + onlyBImg[:,:,1] = onlyBImg[:,:,0] + onlyBImg[:,:,2] = onlyBImg[:,:,0] + imwrite('onlyBImg.jpg',onlyBImg) + saveImages = {} + saveImages['gradImg']=onlyBImg + saveImages['beamContour']=mappingImgRgb + return mappingImgUint8, saveImages + +def getBeamImage(dataDict, bar_height, staffObjList:List[Staff]): + stems_rests = dataDict['stems_rests'] + clefs_keys = dataDict['clefs_keys'] + notehead = dataDict['notehead'] + symbols = dataDict['symbols'] + image:np.ndarray = dataDict['image'] + + _, img128 = cv2.threshold(image, 128, 255, cv2.THRESH_BINARY_INV) + kernel = np.ones((bar_height//3, bar_height//3),dtype=np.uint8) + beam = cv2.erode(img128, kernel, iterations = 1) + imwrite('note_beam1.jpg',beam) + + for ll in range(3): + haslinecount = 0 + totalCount = 0 + for staff in staffObjList: + for b in range(len(staff.ys)): + curr = sum(np.max(beam[max(staff.ys[b]-bar_height//3,0):min(staff.ys[b]+bar_height//3, beam.shape[0]), staff.left:staff.right,1],0)==255) + if curr>(staff.right-staff.left)//3: + haslinecount+=1 + totalCount+=1 + if haslinecount/totalCount>0.6: + kernel = np.ones((bar_height//4, bar_height//4),dtype=np.uint8) + beam = cv2.erode(beam, kernel, iterations = 1) + else: + break + imwrite('note_beam1.5.jpg',beam) + xs,ys = np.where(clefs_keys>0) + beam[xs,ys] = (0,0,0) + beamWithoutStemRest = beam.copy() + imwrite('note_beam2.jpg',beamWithoutStemRest) + # beamret is beamNoClefKey + xs,ys = np.where(stems_rests>0) + beam[xs,ys] = (255,255,255) + imwrite('note_beam3.jpg', beam) + # beam is beam with stem_rests + + kernel_tall = np.ones((1,bar_height*2), np.uint8) + beam_nostem = cv2.erode(beam, kernel_tall) + beam_nostem = cv2.dilate(beam_nostem, kernel_tall) + imwrite('note_beam4.jpg', beam_nostem) + beam_nostem_nostaff = beam_nostem.copy() + savebeambw = cv2.cvtColor(beam_nostem, cv2.COLOR_BGR2GRAY) + toDel = np.where(np.sum(savebeambw>127,axis=1)>savebeambw.shape[1]*0.4)[0] # VARIABLE threshold to delete + for d in toDel: + beam_nostem_nostaff[d,:] = 0 + imwrite('note_beam5.jpg', beam_nostem_nostaff) + # beam nostem is beam with stemRest + erode (also has notes) + return beam, beamWithoutStemRest, beam_nostem_nostaff + +def filter_boxes_on_beam(notehead_boxes, beamMapImg, areamin): + filtered_Boxes = [] + for box in notehead_boxes: + x0,y0,x1,y1 = box + if np.max(beamMapImg[y0:y1, x0:x1, 0])==255: + w = x1-x0 + h = y1-y0 + if w*h0) + notehead_mod = notehead.copy()*255 + notehead_mod[xs,ys] = 0 + + imwrite('notehead_ori.jpg', notehead_mod) + dilation_ratio1 = 0.33 + dilation_ratio2 = 0.4 + # dilate->erode twice to clear image + get clear noteheads + size1 = int(round(bar_height*dilation_ratio1)) + note_kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size1, size1)) + notehead_mod = cv2.erode(cv2.dilate(notehead_mod.astype(np.uint8), note_kernel), note_kernel) + size2 = int(round(bar_height*dilation_ratio2)) + + note_kernel2 = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size2,size2)) + notehead_mod2 = cv2.erode(notehead_mod, note_kernel2) + note_kernel3 = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size2+1, size2+1)) + notehead_mod2 = cv2.dilate(notehead_mod2, note_kernel3) + + # both b&w image, white is where there's stuff + imwrite('notehead_mod.jpg',notehead_mod) + imwrite('notehead_mod2.jpg',notehead_mod2) + # notehead mod is basically the cleaned beams + + # get the boxes, if the boxes is in + notehead_boxes_all = get_bbox(notehead_mod2) + notehead_boxes_big, notehead_mod3= filter_small_bbox_area(notehead_boxes_all, notehead_mod2,xmin = bar_height*0.5,ymin = bar_height*0.2, areamin = bar_height*bar_height*0.4) + imwrite('notehead_mod3.jpg',notehead_mod3) + notehead_boxes = split_connected_notes(notehead_boxes_big, bar_height,notehead_mod2) + notehead_boxes_filtered = filter_boxes_on_beam(notehead_boxes, beamMapImg,areamin = bar_height*bar_height*0.8) + return notehead_boxes_filtered, notehead_mod2 + +# noteheadInitial : b&w 2d image, 255: notehead, +# beamMapImg: gradient image, the 1st dimension is what we care about +def getStemList(dataDict, notehead_boxes:List[Tuple[int,int,int,int]], beamWithStemRest): + image:np.ndarray = dataDict['image'] + + drawimg = image.copy() + # 255 is where there's stuff, 0 is empty + _, img200 = cv2.threshold(cv2.cvtColor(image, cv2.COLOR_BGR2GRAY), 200, 255, cv2.THRESH_BINARY_INV) + imgh = image.shape[0] + notehead_rectangle = np.zeros((image.shape[0],image.shape[1])) + stem_init_lst:List[Stem]=[] + # beambw is suppose to be white where there's beam + beambw = cv2.cvtColor(beamWithStemRest, cv2.COLOR_BGR2GRAY) + imwrite('beambw.jpg',beambw) + # get the stem's directions + for idx,boxOriginal in enumerate(notehead_boxes): + x0,y0,x1,y1 = boxOriginal + xleft = (x0+x1*2)//3 + xright = (x0*2+x1)//3 + + leftRange = np.where(img200[y0:y1,xleft]==255)[0].tolist() + rightRange = np.where(img200[y0:y1, xright] ==255)[0].tolist() + if len(leftRange)*len(rightRange) != 0: + y1 = y0+max(max(leftRange),max(rightRange)) + y0 += min(min(leftRange), min(rightRange)) + if y1<=y0: + x0,y0,x1,y1 = boxOriginal + box = (x0,y0,x1,y1) + notehead_rectangle[y0:y1,x0:x1] = 1 + length = bar_height*3 + width = (x1-x0)//3 + leftXrange = range(x0-width//2,x0+width+1) + rightXrange = range(x1-width, x1+width//2+1) + topYrange = range(max(y0-length, 0),y0) + bottomYrange = range(y1,min(y1+length, imgh)) + left_area = beambw[bottomYrange.start:bottomYrange.stop, + leftXrange.start: leftXrange.stop] + left_centerX = np.argmax(np.sum(left_area,0)) + right_area = beambw[topYrange.start:topYrange.stop, + rightXrange.start:rightXrange.stop] + right_centerX = np.argmax(np.sum(right_area,0)) + # has to be more strict not too far to the left + leftup_area = beambw[topYrange.start:topYrange.stop, + leftXrange.start: leftXrange.stop] + leftup_centerX = np.argmax(np.sum(leftup_area,0)) + rightdn_area = beambw[bottomYrange.start:bottomYrange.stop, + rightXrange.start:rightXrange.stop] + rightdn_centerX = np.argmax(np.sum(rightdn_area,0)) + isup = True + hasStem = True + alterBox = [] + leftRightRatio = np.sum(left_area[:,left_centerX])/np.sum(right_area[:, right_centerX]) + if leftRightRatio>1: + # stem is in left bottom + maxRange = [leftXrange, bottomYrange] + isup = False + if leftRightRatio<1.25: + alterBox.append([rightXrange.start+right_centerX,topYrange.start,rightXrange.start+right_centerX,topYrange.stop]) + else: + # it's either close enough or in right bottom + maxRange = [rightXrange, topYrange] + # they are close enough -> alterbox will always record the left bottom one + if leftRightRatio>0.8: + alterBox.append([leftXrange.start+left_centerX,bottomYrange.start,leftXrange.start+left_centerX,bottomYrange.stop]) + maxArea = max(np.sum(left_area[:,left_centerX]),np.sum(right_area[:, right_centerX])) + maxAlterArea = max(np.sum(leftup_area[:,leftup_centerX]),np.sum(rightdn_area[:,rightdn_centerX])) + if maxAlterArea>255*length//2 and maxAlterArea/maxArea>1.5: + if np.sum(leftup_area[:,leftup_centerX])>np.sum(rightdn_area[:,rightdn_centerX]): + alterBox.append([leftXrange.start+leftup_centerX, topYrange.start, leftXrange.start+leftup_centerX, topYrange.stop]) + else: + alterBox.append([rightXrange.start+rightdn_centerX, bottomYrange.start, rightXrange.start+rightdn_centerX, bottomYrange.stop]) + if len(alterBox)==0 and maxArea < 255*length//3: + hasStem = False + # hasStem is a flag for later grouping notes + xrange, yrange = maxRange + crop = img200[yrange.start:yrange.stop, xrange.start:xrange.stop] + a = (np.where(np.sum(crop,0)==np.max(np.sum(crop,0)))[0]).tolist() + chosenx = a[len(a)//2] + x_y = (xrange.start+chosenx, y0 if isup else y1) + stem_init_lst.append(Stem(x_y, isup,boxOriginal,box, hasStem=hasStem, alterbox=alterBox)) + if len(alterBox)==0 and hasStem: + drawimg = cv2.rectangle(drawimg, (xrange.start+chosenx-1, yrange.start),(xrange.start+chosenx+1,yrange.stop),(255,0,120), 1, cv2.LINE_AA) + elif hasStem: + drawimg = cv2.putText(drawimg, str(idx), (x0,y0),cv2.FONT_HERSHEY_SIMPLEX, 1, (120,0,120), 2, cv2.LINE_AA) + drawimg = cv2.rectangle(drawimg, (xrange.start+chosenx-1, yrange.start),(xrange.start+chosenx+1,yrange.stop),(255,255,0), 2, cv2.LINE_AA) + for ab in alterBox: + drawimg = cv2.rectangle(drawimg, (ab[0], ab[1]),(ab[2],ab[3]),(0,255,0), 3, cv2.LINE_AA) + drawimg = cv2.rectangle(drawimg, (x0,y0),(x1,y1),(0,0,255), 2, cv2.LINE_AA) + imwrite('notehead_drawimg.jpg',drawimg) + return stem_init_lst, image, {'notehead_drawimg':drawimg} + +def assignStemLength(stem_init_lst:List[Stem], image, beamMapImg:np.ndarray, stepsize: int, bar_height): + # get the stem's length + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _,img200bw = cv2.threshold(img200, 200, 255, cv2.THRESH_BINARY_INV) + # img200 is black and white, white is where there's stem + imwrite('img200inv.jpg', img200bw) + # wid = 1 + topthres = bar_height//2 + ending_black_height = 3 + # make it whiter for better visualization + drawimg2 = np.ones_like(img200bw)*255 - img200bw.copy()//4 + drawimg2 = cv2.cvtColor(drawimg2, cv2.COLOR_GRAY2BGR) + bigStep = stepSize*2 + for idx,coordStart in enumerate(stem_init_lst): + x,yOri = coordStart.start + wid = (coordStart.noteBox[2]-coordStart.noteBox[0])//3 + yend = yOri + sign = 1 if coordStart.isup else -1 + # is in staff +- 3.5 barheight, no alternative box, has stem + # +beamMapImg[max(yOri-int(2.5*bar_height)*sign,0),x,2] + isTypical:bool = (len(coordStart.alternativeBox) == 0) and coordStart.hasStem and min([abs(posIdx-11.5) for posIdx in beamMapImg[yOri,0:4,2]])<5 + + # if the beamMap is less than 4*barheight away and the beam itself is somewhere in a staffArea, assign it + # elif it's not too far away (2*4*barheight), see if the area has at least 1/2 blacks + # else it's gonna go through the clssification model to see if it's a single quarter/eighth/sixteenth + xLeft = x//bigStep*bigStep + xRight = min(beamMapImg.shape[1]-1,x//bigStep*bigStep+bigStep) + staffLineNumber:int = beamMapImg[yOri, 4, 2] + barPositionI: int = beamMapImg[yOri, staffLineNumber%4, 2] + stemUpLongest:int = 0 if (barPositionI<8 or barPositionI>17) else 17-barPositionI + stemDownLongest:int = 0 if (barPositionI<8 or barPositionI>17) else barPositionI-8 + if coordStart.isup: + longestNormal = stemUpLongest + # go how far is considered normal and ok + y = yOri//bigStep*bigStep-stepsize + leftUpValue = beamMapImg[y,xLeft, 0] + rightUpValue = beamMapImg[y,xRight, 0] + if leftUpValue>rightUpValue: + maxMapValue = leftUpValue + else: + maxMapValue = rightUpValue + assert maxMapValue%2==1 or maxMapValue == 0 + if maxMapValue != 0: + if isTypical and (253-maxMapValue)+bigStep<=(longestNormal)*bar_height: + if maxMapValue < 255: + yend = y-(253-maxMapValue) + assert max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 253 + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 253-bar_height//2: + yend -= bigStep + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) == 255: + yend -= 1 + # the end of the stem doesn't have enough "stem (white)" (the image is inversed) + if (253-maxMapValue)+bigStep>(longestNormal-3)*bar_height and (sum(np.max(img200bw[yend:y, x-wid:x+wid+1],1))<(y-yend)*255*0.8 or sum(np.max(img200bw[yend:(y+yend)//2, x-wid:x+wid+1],1))<(y-yend)*255*0.4): + yend = yOri + if yend==yOri: + if isTypical and coordStart.hasStem and len(coordStart.alternativeBox)==0: + yend -= min(3,longestNormal)*bar_height + # while there is still things in the inversed bw original image + while sum(np.max(img200bw[yend-ending_black_height:yend, x-wid:x+wid+1],1))!=0: + yend -= 1 + else: + while sum(np.max(img200bw[yend-ending_black_height:yend, x-1:x+2],1))!=0: # and max([(10-beamMapImg[yend,x,1]%11)%10,(10-beamMapImg[yend,x,1]//20)%10]): + yend -= 1 + else: + longestNormal = stemDownLongest + y = min(yOri//bigStep*bigStep+bigStep,beamMapImg.shape[0]-1) + leftUpValue = beamMapImg[y,xLeft, 0] + rightUpValue = beamMapImg[y,xRight, 0] + if leftUpValue>rightUpValue: + maxMapValue = leftUpValue + else: + maxMapValue = rightUpValue + xRight = x//bigStep*bigStep+bigStep + assert maxMapValue%2==0 or maxMapValue == 255 + if isTypical and (254-maxMapValue)+bigStep<=longestNormal*bar_height: + if maxMapValue < 255: + yend = y+(254-maxMapValue) + assert max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >=254 + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 254-bar_height//2 and (yend-yOri)<=(longestNormal)*bar_height: + yend += bigStep + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) == 255 and (yend-yOri)<=(longestNormal)*bar_height: + yend += 1 + # the end of the stem doesn't have enough "stem (white)" (the image is inversed) + if (254-maxMapValue)+bigStep>(longestNormal-3)*bar_height and (sum(np.max(img200bw[y:yend, x-wid:x+wid+1],1))<(yend-y)*128 or sum(np.max(img200bw[(y+yend)//2:yend, x-wid:x+wid+1],1))<(yend-y)*64): + yend = yOri + if yend==yOri: + if isTypical and coordStart.hasStem and len(coordStart.alternativeBox)==0: + yend += min(3,longestNormal)*bar_height + # while there is still things in the inversed bw original image + while sum(np.max(img200bw[yend:yend+ending_black_height, x-wid:x+wid+1],1))!=0 and (yend-yOri)<=(longestNormal)*bar_height: + yend += 1 + else: + while sum(np.max(img200bw[yend:yend+ending_black_height, x-1:x+2],1))!=0: # and min([beamMapImg[yend,x,1]%11,beamMapImg[yend,x,1]//20])<2: + yend += 1 + if abs(yend-y)0) # where there's note but no beam + beamNoNotes = beamNoClefKeyWithStemRest.copy() + beamNoNotes[xs,ys] = (0,0,0) + imwrite('beamNoNotes1.jpg',beamNoNotes) + xs,ys = np.where(beambw==255) + beamNoNotes[xs,ys] = (255,255,255) + imwrite('beamNoNotes2.jpg',beamNoNotes) + + return beamNoNotes + +def mergeVerticalNoteGroups(staffObjList:List[Staff],noteGroupList:List[NoteGroup], noteGroupMap:np.ndarray,beamMapImg:np.ndarray, image:np.ndarray, + restMap, restList:List[Rest]): + for staff in staffObjList: + barh = staff.get_yOne() + oneStep = barh//3 + y0 = max(staff.ys[0]-int(barh*2.5),0) + y1 = min(staff.ys[-1]+int(barh*2.5), noteGroupMap.shape[0]) + tempRestMap = restMap.copy() + for x in range(staff.left, staff.right-oneStep, oneStep): + indexes = set(np.unique(noteGroupMap[y0:y1, x])) + indexesNext = set(np.unique(noteGroupMap[y0:y1, x+oneStep])) + rIndex = set(np.unique(tempRestMap[y0:y1, x])) + rIndexNext = set(np.unique(tempRestMap[y0:y1, x+oneStep])) + line = set(np.unique(beamMapImg[y0:y1, x:x+oneStep,2])) + indexes -= {0} + indexesNext-={0} + line-={0} + rIndex-={0} + rIndexNext-={0} + if len(line)>1: + continue + if len(indexes) == 0: + continue + # the overlapping x width is at least oneStep width + noteGroupId = list(indexes)[0] + lineList = list(line) + idxList = list(indexes) + + if len(indexes)>1 and indexes==indexesNext: # two noteGroup overlap + noteGroupId = idxList.pop() + for gid in idxList: + ys,xs = np.where(noteGroupMap == gid) + noteGroupMap[ys,xs] = noteGroupId + beamMapImg[ys, xs, 2] = lineList[0] + noteGroupList[noteGroupId]=mergeNoteGroup(noteGroupList[noteGroupId], noteGroupList[gid], beamMapImg) + noteGroupList[gid] = None + if len(rIndex)>0 and rIndex == rIndexNext: + ridLst = list(rIndex) + for rid in ridLst: + ys,xs = np.where(tempRestMap == rid) + if restList[rid].rhythm == -1: + continue + else: + tempRestMap[ys,xs] = 0 + beamMapImg[ys,xs,2] = lineList[0] + noteGroupList[noteGroupId].addRest(restList[rid]) + restList[rid].setNgId(noteGroupId) + ngImg = image.copy() + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + for ng in noteGroupList: + if ng is not None: + x0,y0,x1,y1 = ng.boundingBox + ngImg = cv2.rectangle(ngImg, (x0,y0),(x1,y1), colors[(np.max(beamMapImg[y0:y1, x0:x1, 2])%3 if np.max(beamMapImg[y0:y1, x0:x1, 2])>0 else 3)], 2, cv2.LINE_AA) + imwrite('vertically_merged.jpg', ngImg) + return noteGroupList, noteGroupMap, beamMapImg, {'vertically_merged':ngImg} + +def getbbox(clefs_keys: np.ndarray, bar_height:int)-> List[Tuple[int,int,int,int]]: + contours, _ = cv2.findContours(clefs_keys.astype(np.uint8), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + bboxes = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + if w>3 and h>bar_height*1.6 and h>w: + box = (x, y, x+w, y+h) + bboxes.append(box) + return bboxes + + +def getBestRange(avg_color_lst: list, desire_length:int): + if desire_length>=len(avg_color_lst)-1: + return 0, len(avg_color_lst)-1 + most_white_value = 0 + most_white_ending_idx = 0 + for i in range(desire_length,len(avg_color_lst)-1): + currSum = sum(avg_color_lst[i-desire_length:i]) + if currSum>most_white_value: + most_white_value=currSum + most_white_ending_idx = i + return most_white_ending_idx-desire_length, most_white_ending_idx +def sfnClefToDataType(bbox:Tuple[int,int,int,int], predictionId: int) -> Union[Accidentals, Clef]: + # 'BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG' + isClef = [True, True, False, False, False, False, True] + mapId = [-1, 0, -1, 0, -3, 1, 1] + # we should never try to assign a noClass + assert predictionId != 4 + if isClef[predictionId]: + return Clef(bbox, mapId[predictionId]) + else: + return Accidentals(bbox, mapId[predictionId]) + + +def symbol_classification(dataDict: dict, model:Sfn_Clef_classifier, bar_height:int): + # output_dir will be images/tch/tch SYMBOL + clefs_keys_ori:np.ndarray = dataDict['clefs_keys'] + clefs_keys = (clefs_keys_ori*255).astype(np.uint8) + clefs_keys_expand = cv2.dilate(clefs_keys, cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(4,4))) + image:np.ndarray = dataDict['image'] + round1_sfn_img = image.copy() + ori_bboxes = getbbox(clefs_keys_expand, bar_height) + bboxes = merge_nearby_bbox(ori_bboxes, bar_height*3) + class_names = ['BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG','wide'] # Replace with actual class names + class_symbols = ['Bass','Viola','b','n','x','#','Treble','Wide'] + class_colors = [(255,0,0),(0,255,0),(255,255,0),(255,0,125),(0,120,255),(255,0,255),(0,0,255),(101,134,168)] + for j in range(0,len(class_colors)): + round1_sfn_img = cv2.putText(round1_sfn_img,class_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + noClass_bbox = [] + sfn_height_lst = [] + sfn_width_lst = [] + # the 0th is a stub for better alignment + returnSfnList:List[Union[Accidentals,Clef, None]] = [None] + for b in bboxes: + if (b[3]-b[1])<(b[2]-b[0]): # height likely it's flat instead + predict_idx = 2 + if predict_idx == 2 or predict_idx==5 or predict_idx==3: + # this is flat | sharp | natural + sfn_height_lst.append(b[3]-b[1]) + sfn_width_lst.append(b[2]-b[0]) + round1_sfn_img = cv2.rectangle(round1_sfn_img, (b[0],b[1]),(b[2],b[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round1_sfn_img = cv2.putText(round1_sfn_img, class_symbols[predict_idx], (b[0],b[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + if predict_idx == 4 or predict_idx==7: + noClass_bbox.append(b) + else: + returnSfnList.append(sfnClefToDataType(b, predict_idx)) + noClass_bbox2 = [] + round2_sfn_img = round1_sfn_img.copy() + sfn_median_height = bar_height*2 + sfn_median_width = bar_height + if len(sfn_height_lst)>0: + sfn_median_height = int(np.median(sfn_height_lst)) + sfn_median_width = int(np.median(sfn_width_lst)) + + for box1 in noClass_bbox: + x0 = box1[0] + y0 = box1[1] + clef_key_crop = clefs_keys[box1[1]:box1[3], box1[0]:box1[2]] + smallbbox = getbbox(clef_key_crop, bar_height) + if len(smallbbox)<=1: + if len(smallbbox)==1 and ((box1[2]-box1[0])>sfn_median_width*1.5 or (box1[3]-box1[1])>sfn_median_height*1.5): + noClass_bbox2.append(box1) + predict_idx = 4 + round2_sfn_img = cv2.rectangle(round2_sfn_img, (box1[0],box1[1]),(box1[2],box1[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round2_sfn_img = cv2.putText(round2_sfn_img, class_symbols[predict_idx], (box1[0],box1[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + continue + for bb in smallbbox: + b = [x0+bb[0],y0+bb[1],x0+bb[2],y0+bb[3]] + small_crop = clefs_keys[b[1]:b[3], b[0]:b[2]] + predict_idx = model.predict(small_crop) + round2_sfn_img = cv2.rectangle(round2_sfn_img, (b[0],b[1]),(b[2],b[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round2_sfn_img = cv2.putText(round2_sfn_img, class_symbols[predict_idx], (b[0],b[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + + if predict_idx == 4: + if (small_crop.shape[0]>sfn_median_height*1.5 and small_crop.shape[1]>sfn_median_width*0.8) or (small_crop.shape[0]>sfn_median_height*0.8 and small_crop.shape[1]>sfn_median_width*1.5): + noClass_bbox2.append(b) + else: + continue + else: + returnSfnList.append(sfnClefToDataType(b, predict_idx)) + for box1 in noClass_bbox2: + x0 = box1[0] + y0 = box1[1] + w = box1[2]-x0 + h = box1[3]-y0 + seg_img = clefs_keys[y0:y0+h, x0:x0+w] + width_ratio =w/sfn_median_width + height_ratio = h/sfn_median_height + num_symbol = round(max(width_ratio, height_ratio)) + if num_symbol<2: + continue + if width_ratio>height_ratio: + left_center = sfn_median_width//2 + right_center = w-sfn_median_width//2 + avg_width:float = (right_center-left_center)/(num_symbol-1) + for i in range(num_symbol): + img_left = int(i*avg_width) + crop_img = seg_img[:,img_left:min(img_left+sfn_median_width,seg_img.shape[1])] + vertical_avg = np.mean(crop_img,1) + front,back = getBestRange(vertical_avg, sfn_median_height) + # b: x0, y0, x1, y1 relative to the croped image + b = [max(img_left,0),max(front,0), + min(img_left+sfn_median_width,seg_img.shape[1]), min(back,seg_img.shape[0])] + crop_crop_img = seg_img[b[1]:b[3], b[0]:b[2]] + # predict_idx = model.predict(crop_crop_img) + if sum(np.max(crop_crop_img,1))<=0: + continue + if sum(np.max(crop_crop_img,1))/255/crop_crop_img.shape[0]<=0.6: + continue + predict_lst = model.get_prediction_vector(crop_crop_img) + pred_filter = [x for x in predict_lst if x not in [0,1,4,6,7]] + predict_idx = pred_filter[0] + returnSfnList.append(sfnClefToDataType((x0+b[0], y0+b[1], x0+b[2],y0+b[3]), predict_idx)) + else: + seg_img_to_delete = seg_img.copy() + vertical_boxes = [] + pred_idx = [] + + b = [0,0,w,sfn_median_height] #x0, y0, x1, y1 + hor_avg_top = np.mean(seg_img[b[1]:b[3],:],0) + b[0],b[2] = getBestRange(hor_avg_top, sfn_median_width) + seg_img_to_delete[b[1]:b[3],b[0]:b[2]] = 0 + vertical_boxes.append(b) + + b = [0,h-sfn_median_height-1,w,h-1] + hor_avg_bot = np.mean(seg_img[b[1]:b[3],:],0) + b[0],b[2] = getBestRange(hor_avg_bot, sfn_median_width) + seg_img_to_delete[b[1]:b[3],b[0]:b[2]] = 0 + vertical_boxes.append(b) + + if h>sfn_median_height*2: + b = [0,0,0,0] + # middle_del = seg_img_to_delete[sfn_median_height//2:h-sfn_median_height//2,:] + ver_avg_mid = np.mean(seg_img_to_delete,1) + b[1],b[3] = getBestRange(ver_avg_mid, sfn_median_height) + expanded_left_right = [min(vertical_boxes[0][0],vertical_boxes[1][0]), + max(vertical_boxes[0][2],vertical_boxes[1][2])] + if expanded_left_right[0]>=w-expanded_left_right[1]-sfn_median_width//5: + b[2] = sfn_median_width + else: + b[0] = w-sfn_median_width-1 + b[2] = w-1 + vertical_boxes.append(b) + seg_img_bgr = cv2.cvtColor(seg_img,cv2.COLOR_GRAY2BGR) + seg_img_bgr = cv2.rectangle(seg_img_bgr, (b[0],b[1]),(b[2],b[3]),(0,255,0),2,cv2.LINE_AA) + + for idx, b in enumerate(vertical_boxes): + predict_lst = model.get_prediction_vector(seg_img[b[1]:b[3],b[0]:b[2]]) + pred_filter = [x for x in predict_lst if x not in [0,1,4,6,7]] + predict_idx = pred_filter[0] + if idx == 2 and predict_lst[0] == 4: + continue + returnSfnList.append(sfnClefToDataType((x0+b[0], y0+b[1], x0+b[2],y0+b[3]), predict_idx)) + sfnClefImg = image.copy() + class_colors2 = [(255,255,0),(255,0,125),(255,0,255),(255,0,0),(0,255,0),(0,0,255)] + class_names2 = ['flat', 'natural', 'sharp','BassF', 'ViolaC', 'trebleG'] + for j in range(0,len(class_colors2)): + sfnClefImg = cv2.putText(sfnClefImg,class_names2[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors2[j], 2, cv2.LINE_AA) + # class_names = ['BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG','wide'] + + sfnClefMap = np.zeros((sfnClefImg.shape[0], sfnClefImg.shape[1]), dtype=np.uint16) + for idx,clefAccidentals in enumerate(returnSfnList): + if clefAccidentals is not None: + x0,y0,x1,y1 = clefAccidentals.getBbox() + # 0 if it's accidentals + predict_idx = clefAccidentals.getType()*3+clefAccidentals.getValue()+1 + sfnClefImg = cv2.rectangle(sfnClefImg, (x0,y0),(x1,y1), class_colors2[predict_idx],2,cv2.LINE_AA) + sfnClefMap = cv2.rectangle(sfnClefMap, (x0,y0),(x1,y1), idx, -1) + + imwrite('round1Sfn.jpg',round1_sfn_img) + imwrite('round2Sfn.jpg',round2_sfn_img) + imwrite('round3Sfn.jpg', sfnClefImg) + + return returnSfnList, sfnClefMap, {'sfnClef':sfnClefImg} + +# filter out the sfn that is overlapping with noteGroupList +def filterSfnClefModifyBeamMap(sfnClefList:List[Union[Accidentals, Clef, None]], + noteGroupMap: np.ndarray, + beamMapImg:np.ndarray): + sfnClefMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + bb,gg,rr = cv2.split(beamMapImg) + assert len(np.unique(gg)) <=2 + for idx, sfnClef in enumerate(sfnClefList): + if sfnClef is not None: + x0,y0,x1,y1 = sfnClef.getBbox() + if np.sum(noteGroupMap[y0:y1,x0:x1]>0)/((x1-x0)*(y1-y0))>0.5: + sfnClefList[idx] = None + else: + sfnClefMap[y0:y1,x0:x1] = idx + # 2 for accidentals, 3 for clef + gg[y0:y1,x0:x1] = sfnClef.getType()+2 + # will want the noteGroup to be "more dominent" than the sfnClef, so it overwrites if it's place of a sfn + ys,xs = np.where(noteGroupMap>0) + gg[ys,xs] = 1 + beamMapImg = cv2.merge([bb,gg,rr]) + return sfnClefList,sfnClefMap, beamMapImg + +def findBarlines(image:np.ndarray, beamMapImg:np.ndarray, staffObjList:List[Staff], noteGroupStemMap:np.ndarray, thres:float)->np.ndarray: + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + barlineImg = np.zeros((image.shape[0], image.shape[1]),dtype=np.uint8) + # (1) where there's stuff, (0) where there's no + _,img200bin = cv2.threshold(img200, 200, 1, cv2.THRESH_BINARY_INV) + ys,xs = np.where(beamMapImg[:,:,1]>0) + img200bin[ys,xs] = 0 + ys,xs = np.where(noteGroupStemMap>0) + img200bin[ys,xs] = 0 + if len(staffObjList)%NUM_TRACK!= 0: + print(f"staff List is not divisible: {len(staffObjList)}%{NUM_TRACK}") + for idx,staff in enumerate(staffObjList): + ys = staff.ys + y0 = ys[0] + y1 = ys[-1] + xs = np.where(np.sum(img200bin[y0:y1, :],0)>(y1-y0)*thres)[0] + beamMapImg[y0:y1,xs,1] = 4 + beamMapImg[y0:y1,xs-1,1] = 4 + beamMapImg[y0:y1,xs+1,1] = 4 + barlineImg[y0:y1, xs] = 1 + contours, _ = cv2.findContours(barlineImg, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + barlineboxes:List[Tuple[int,int,int,int]] = [] + imgbgr = image.copy() + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + barlineboxes.append((x,y,x+w,y+h)) + imgbgr = cv2.rectangle(imgbgr, (x,y), (x+w, y+h), (0,0,255),1,cv2.LINE_AA) + else: + for linNo in range(len(staffObjList)//NUM_TRACK): + y0 = staffObjList[NUM_TRACK*linNo].ys[0] + y1 = staffObjList[NUM_TRACK*(linNo+1)-1].ys[-1] + xs = np.where(np.sum(img200bin[y0:y1, :],0)>(y1-y0)*thres)[0] + if xs[0] == 0: + xs = xs[1:] + while xs[-1] >= img200bin.shape[1]-1: + xs = xs[:-1] + beamMapImg[y0:y1,xs,1] = 4 + beamMapImg[y0:y1,xs-1,1] = 4 + beamMapImg[y0:y1,xs+1,1] = 4 + barlineImg[y0:y1, xs] = 1 + contours, _ = cv2.findContours(barlineImg, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + barlineboxes:List[Tuple[int,int,int,int]] = [] + imgbgr = image.copy() + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + barlineboxes.append((x,y,x+w,y+h)) + imgbgr = cv2.rectangle(imgbgr, (x,y), (x+w, y+h), (0,0,255),1,cv2.LINE_AA) + imwrite("barLineImg.jpg",imgbgr) + return beamMapImg, barlineboxes, imgbgr + +def filterBarlineBoxes(image:np.ndarray, barlineboxes:List[Tuple[int,int,int,int]]): + imgbgr = image.copy() + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _,img200bin = cv2.threshold(img200, 200, 1, cv2.THRESH_BINARY_INV) + for b in barlineboxes: + thres = (b[3]-b[1])/4 + if np.sum(img200bin[b[1]:b[3],b[0]-2:b[0]])0) + mask[ys,xs] = 0 + stem_rests[ys,xs] = 0 + stem_rests = cv2.dilate(stem_rests.astype(np.uint8), np.ones((barheight//3, barheight//3), dtype= np.uint8)) + + # remaining = cv2.bitwise_or(cv2.bitwise_and(mask,symbol), stem_rests)*255 + remaining = cv2.bitwise_and(mask,symbol)*255 + remaining = cv2.cvtColor(remaining,cv2.COLOR_GRAY2BGR) + symbol = cv2.cvtColor(symbol*255,cv2.COLOR_GRAY2BGR) + + contours, _ = cv2.findContours(stem_rests.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + stem_rests = cv2.cvtColor((stem_rests*255).astype(np.uint8), cv2.COLOR_GRAY2BGR) + + # save the image version (later can give img128 version), stem_rests itself, remaining + bboxes = [] + longBoxes = [] + # imageClean = image.copy() + remainingClean = remaining.copy() + class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + restClassNames = ['X', 'r16', 'r32', 'r4', 'r8'] + restToRhythm = [0,2,3,0,1] + imgrgb = dataDict['image'].copy() + for j in range(0,len(restClassNames)): + imgrgb = cv2.putText(imgrgb,restClassNames[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + if (w>barheight*0.6 and h>barheight): + box = (max(x-barheight//2, 0), max(y-barheight*2, 0), min(x+w+barheight//2, symbol.shape[1]-1), min(y+h+barheight*2, symbol.shape[0]-1)) + # shrink the box so it centers around the rest + yTopBlank = max(np.max(np.where(np.sum(remainingClean[box[1]:(box[1]+box[3])//2, box[0]:box[2],1],1)<255)[0].tolist()+[0])-barheight//4, 0) + # the index of the ending (the new height) + yBottomBlank = min(np.min(np.where(np.sum(remainingClean[(box[1]+box[3])//2:box[3], box[0]:box[2],1],1)<255)[0].tolist()+[box[3]-box[1]])+(box[3]-box[1])//2+barheight//4, box[3]-box[1]) + # xLeftBlank = max(np.max(np.where(np.sum(remainingClean[box[1]:box[3], box[0]:(box[0]+box[2])//2,1],0)<255)[0].tolist()+[0]), 0) + # yRightBlank = min(np.min(np.where(np.sum(remainingClean[box[1]:box[3], (box[0]+box[2])//2:box[2],1],0)<255)[0].tolist()+[box[2]-box[0]])+(box[2]-box[0])//2, box[2]-box[0]) + # redo the training? No + predict_idx = model.predict(remainingClean[box[1]:box[3], box[0]:box[2],:]) + # predict_idx = model.predict(remainingClean[box[1]+yTopBlank:box[1]+yBottomBlank, box[0]+xLeftBlank:box[0]+yRightBlank,:]) + box = (x, box[1]+yTopBlank, x+w, box[1]+yBottomBlank) + if predict_idx>0: + bboxes.append(box) + restMap[box[1]:box[3],box[0]:box[2]] = len(restList) + restList.append(Rest(box,restToRhythm[predict_idx])) + gg = cv2.rectangle(gg, (box[0], box[1]), (box[2],box[3]),5, -1) + imgrgb = cv2.rectangle(imgrgb,(box[0], box[1]), (box[2],box[3]), class_colors[predict_idx], 2, cv2.LINE_AA) + # remaining = cv2.rectangle(remaining, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + # stem_rests = cv2.rectangle(stem_rests, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + # symbol = cv2.rectangle(symbol, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + elif (w>barheight*0.8 and hbarheight*0.3): + box = (x,y,x+w,y+h) + longBoxes.append(box) + gg = cv2.rectangle(gg, (box[0], box[1]), (box[2],box[3]),5, -1) + imgrgb = cv2.rectangle(imgrgb,(box[0], box[1]), (box[2],box[3]), (255,0,255), 2, cv2.LINE_AA) + restMap[box[1]:box[3],box[0]:box[2]] = len(restList) + restList.append(Rest(box,-1)) + # remaining = cv2.rectangle(remaining, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # stem_rests = cv2.rectangle(stem_rests, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # symbol = cv2.rectangle(symbol, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # init_rest_folder() + # labelRestData([imageClean, stemRestClean, remainingClean], bboxes, imgname) + + imwrite('remaining.jpg',remaining) + imwrite('remainingStemRests.jpg',stem_rests) + imwrite('RestClassification.jpg',imgrgb) + beamMapImg = cv2.merge([bb,gg,rr]) + # return {'RestBarline1': remaining, 'RestBarline2': symbol} + return restMap, restList, beamMapImg, {'RestClassification': imgrgb} + +def assignPitch(image:np.ndarray, noteGroupList:List[NoteGroup|None], beamMapImg:np.ndarray, barheight:int): + # assign the "pitch" relative to the center of the staff (12.5), + # ex: in violin, B will be 0, C:1,D:2, A: -1 etc + # if it doesn't have a staff line id yet, group it using the beamMapImg[:,:,4] + # image is for outputting debug images + pitchImg = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _, imgBin = cv2.threshold(pitchImg, 200, 1, cv2.THRESH_BINARY_INV) + _,pitchImg = cv2.threshold(pitchImg, 200, 255, cv2.THRESH_BINARY) + pitchLineImg = pitchImg.copy() + pitchLineImg = cv2.cvtColor(pitchLineImg, cv2.COLOR_GRAY2BGR) + pitchImg = pitchImg//4+191 + pitchImg = cv2.cvtColor(pitchImg, cv2.COLOR_GRAY2BGR) + pitch_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (255,0,255),(230,130,175),(165,170, 70)] + pitch_names = ['B','C','D','E','F','G','A'] + for j in range(0,len(pitch_names)): + pitchImg = cv2.putText(pitchImg,pitch_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, pitch_colors[j], 2, cv2.LINE_AA) + for ng in noteGroupList: + if ng is None: + continue + for stemObj in ng.noteStemList: + x0,y0,x1,y1 = stemObj.smallNoteBox + staffNum = np.max(beamMapImg[y0:y1,x0:x1,2]) + if staffNum == 0: + staffNum = round(np.sum(beamMapImg[y0:y1,4,2]/(y1-y0))) + height = np.sum((beamMapImg[y0:y1,staffNum%4,2]-12.5)*2)/(y1-y0) + stemObj.pitchFloat = height + + x0,y0,x1,y1 = stemObj.noteBox + height2 = np.sum((beamMapImg[y0:y1,staffNum%4,2]-12.5)*2)/(y1-y0) + if height2-int(height2) == 0: + stemObj.pitchWideFloat = height + else: + stemObj.pitchWideFloat = height2 + + pitchAndLineImg = pitchImg.copy() + modifiedPitchImg = pitchImg.copy() + + for ngIdx, ng in enumerate(noteGroupList): + if ng is None: + continue + for idx,stemObj in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stemObj.smallNoteBox + _,y0B, _, y1B = stemObj.noteBox + pitch = stemObj.pitchFloat + xx0 = max(x0-barheight//2, 0) + xx1 = min(x1+barheight//2, beamMapImg.shape[1]-1) + cc = np.sum(imgBin[max(y0B,y0-2):min(y1B,y1+3), xx0:xx1],1).tolist() + ccNozero = [c for c in cc if c>0] + maxIdx = [i for i in range(len(ccNozero)) if ccNozero[i]==max(ccNozero)] + # center that was tilted and thick + if (maxIdx[0]>len(ccNozero)/2 and maxIdx[0]len(ccNozero)*0.8) and maxIdx[-1]-maxIdx[0]>=3: # TODO!!! + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + # center + if len(set.intersection(set([len(ccNozero)//2,len(ccNozero)//2-1, len(ccNozero)//2+1]), maxIdx))>0: + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + # top or bottom + elif y1-y0>barheight//2 and (maxIdx[0]<=3 or maxIdx[-1]>=len(ccNozero)-4): + stemObj.hasLineMiddle = False + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0),(xx1, y1),(0,255,0), 1, cv2.LINE_AA) + # if it has line in the middle + elif ccNozero[maxIdx[0]]>(x1-x0): + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + else: + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,255,0), 2, cv2.LINE_AA) + + p1 = math.ceil(pitch) + p2 = math.floor(pitch) + pitchLineImg = cv2.putText(pitchLineImg, str(ngIdx), (x0,y0-barheight*2), cv2.FONT_HERSHEY_SIMPLEX, 0.2, (0,0,0), 1, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(ngIdx), (x0,y0-barheight*2), cv2.FONT_HERSHEY_SIMPLEX, 0.2, (0,0,0), 1, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(pitch_names[p1%7]), (x0,y0), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[p1%7], 2, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(pitch_names[p2%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[p2%7], 2, cv2.LINE_AA) + pitchAndLineImg = cv2.rectangle(pitchAndLineImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + pitchImg = cv2.putText(pitchImg, str(pitch_names[round(pitch)%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[round(pitch)%7], 2, cv2.LINE_AA) + pitchImg = cv2.rectangle(pitchImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + + xend = pitchLineImg.shape[1]-1 + for i in range(pitchLineImg.shape[0]-1): + currStaffNum = beamMapImg[i,4,2] + if beamMapImg[i,currStaffNum%4, 2] != beamMapImg[i+1,currStaffNum%4, 2]: + pitchLineImg = cv2.line(pitchLineImg,(0,i),(xend,i),pitch_colors[currStaffNum%4],thickness=1, lineType=cv2.LINE_AA) + pitchAndLineImg = cv2.line(pitchAndLineImg,(0,i),(xend,i),pitch_colors[currStaffNum%4],thickness=1, lineType=cv2.LINE_AA) + + for idx, ng in enumerate(noteGroupList): + if ng is None: + continue + for stem in ng.noteStemList: + pitchInt = stem.getBestPitchInt() + x0,y0,x1,y1 = stem.noteBox + # modifiedPitchImg = cv2.putText(modifiedPitchImg, str(idx), (x0,y0), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[pitchInt%7], 2, cv2.LINE_AA) + modifiedPitchImg = cv2.putText(modifiedPitchImg, str(pitch_names[pitchInt%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[pitchInt%7], 2, cv2.LINE_AA) + modifiedPitchImg = cv2.rectangle(modifiedPitchImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + stem.pitchSoprano = pitchInt + + + imwrite('pitchline.jpg', pitchLineImg) + imwrite('pitchAndLine.jpg', pitchAndLineImg) + imwrite('pitch.jpg', pitchImg) + imwrite('pitchModified.jpg', modifiedPitchImg) + return noteGroupList, {'pitch':pitchImg, + 'pitchAndLine':pitchAndLineImg, + 'pitchline': pitchLineImg, + 'pitchModified':modifiedPitchImg} + +def enhanceStaff(image:np.ndarray, staffObjList:List[Staff],barheight:int): + _, img200 = cv2.threshold(image, 200, 255, cv2.THRESH_BINARY) + for staff in staffObjList: + if staff.IsStaffAligned(barheight): + for y in staff.ys: + img200 = cv2.line(img200, (staff.left, y), (staff.right, y), (0,0,0), 1, cv2.LINE_AA) + imwrite('enhanceStaff.jpg',img200) + return img200 + +def assignDots(noteGroupVerticallyMerged:List[NoteGroup],beamMapImg:np.ndarray, image:np.ndarray,bar_height:int,StaffObjList:List[Staff]): + global DEBUGIMG + imgbgr = image.copy() #bgr + _,gg,_ = cv2.split(beamMapImg) + params = cv2.SimpleBlobDetector_Params() + + params.filterByArea = True + params.minArea = bar_height*bar_height//16 + params.maxArea = bar_height*bar_height//2 + + params.filterByCircularity = False + params.filterByConvexity = False + params.filterByInertia = True + params.minInertiaRatio = 0.5 + + detector = cv2.SimpleBlobDetector_create(params) + _, thresh_image = cv2.threshold(image[:,:,1], 150, 255, cv2.THRESH_BINARY) + thresh_origin = thresh_image.copy() + for sf in staffObjList: + for yOne in sf.ys: + thresh_image[yOne-math.ceil(bar_height/8):yOne+bar_height//8+1,:] = 255 + + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for sm in ng.noteStemList: + oldbox = sm.noteBox + newbox = (oldbox[2],max(0,oldbox[1]-2*bar_height), + min(oldbox[2]+bar_height, image.shape[1]-1), min(oldbox[1]+2*bar_height, image.shape[0]-1)) + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==0)[0],0)) + # since the barline usually isn't thick enough + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==4)[0],realWidth))) + if realWidth>=bar_height-1: + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==0)[0],0)) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==4)[0],realWidth))) + if realWidth>bar_height*0.5: + dotBox = (oldbox[2], max(0,oldbox[1]-bar_height), + min(oldbox[2]+realWidth,image.shape[1]-1),min(oldbox[1]+int(bar_height*1.5), image.shape[0]-1)) + keypoints = detector.detect(thresh_image[dotBox[1]:dotBox[3], dotBox[0]:dotBox[2]]) + if len(keypoints)==0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(0,255,255),1,cv2.LINE_AA) + elif (np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255)[0]).shape[0]>0 and np.min(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255))>bar_height: + DEBUGIMG = cv2.rectangle(DEBUGIMG,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(160,100,240),2,cv2.LINE_AA) + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(160,100,240),2,cv2.LINE_AA) + else: + sm.hasdot = True + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + + imwrite('dotBox.jpg',imgbgr) + return noteGroupVerticallyMerged,{'dotBox':imgbgr} + +def assignRestDots(restList:List[Rest], beamMapImg:np.ndarray, noteGroupStemMap:np.ndarray, image:np.ndarray, bar_height:int, staffObjList:List[Staff]): + imgbgr = image.copy() #bgr + _,gg,_ = cv2.split(beamMapImg) + params = cv2.SimpleBlobDetector_Params() + + params.filterByArea = True + params.minArea = bar_height*bar_height//16 + params.maxArea = bar_height*bar_height//2 + + params.filterByCircularity = False + params.filterByConvexity = False + params.filterByInertia = True + params.minInertiaRatio = 0.5 + + detector = cv2.SimpleBlobDetector_create(params) + _, thresh_image = cv2.threshold(image[:,:,1], 150, 255, cv2.THRESH_BINARY) + thresh_origin = thresh_image.copy() + for sf in staffObjList: + for yOne in sf.ys: + thresh_image[yOne-math.ceil(bar_height/8):yOne+bar_height//8+1,:] = 255 + for rs in restList: + if rs is None: + continue + elif rs.rhythm<0: + continue + newbox = (rs.boundingBox[2],rs.boundingBox[1], + min(rs.boundingBox[2]+bar_height,image.shape[1]),min(rs.boundingBox[1]+2*bar_height,image.shape[0])) + # 先用一個barheight寬度,高度從最高點往下兩個barheight,往上一個,用stem跟rest來縮減 + realWidth = np.max(np.append(np.where(np.max(noteGroupStemMap[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==0)[0],0)) + realWidth = min(realWidth, np.max(np.append(np.where(np.max(beamMapImg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)!=5)[0],0))) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==4)[0],realWidth))) + # 如果寬度還是滿格的話再往右延長到2*barheight用beamMapImg 來縮減 + if realWidth>=bar_height-1: + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==0)[0],0)) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==4)[0],realWidth))) + elif realWidth>bar_height*0.5: + realWidth = realWidth+bar_height//3 + if realWidth>bar_height*0.5: + dotBox = newbox + keypoints = detector.detect(thresh_image[dotBox[1]:dotBox[3], dotBox[0]:dotBox[2]]) + if len(keypoints)==0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(0,255,200),1,cv2.LINE_AA) + elif len(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255)[0]) == 0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + elif np.min(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255))>bar_height: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(160,100,240),2,cv2.LINE_AA) + else: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + rs.hasdot = True + imwrite('dotRestBox.jpg',imgbgr) + return restList,{'dotRestBox':imgbgr} +def getNoteChunks(image: np.ndarray, noteGroupMap:np.ndarray, beamMapImg:np.ndarray, noteGroupVerticallyMerged:List[NoteGroup]): + imgrgb = image.copy() + beamBinary = np.zeros((beamMapImg.shape[0],beamMapImg.shape[1])) + xs,ys = np.where(beamMapImg[:,:,0]==255) + beamBinary[xs,ys] = 1 + contours, _ = cv2.findContours(beamBinary.astype(np.uint8),cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + beamBoxes:List[Tuple[int,int,int,int]] = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + beamBoxes.append((x,y,x+w,y+h)) + imgrgb = cv2.rectangle(imgrgb,(x,y), (x+w, y+h), (0,0,255), 2, cv2.LINE_AA) + imwrite('beamContour.jpg',imgrgb) + + noteChunkList:List[NoteChunk] = [None] + noteChunkMap = np.zeros_like(noteGroupMap) + for box in beamBoxes: + currentNoteChunkIdxs = set(np.unique(noteChunkMap[box[1]:box[3], box[0]:box[2]])) + allNoteGroupIdxs = set(np.unique(noteGroupMap[box[1]:box[3], box[0]:box[2]])) + allNoteGroupIdxs.add(0) + allNoteGroupIdxs.remove(0) + currentNoteChunkIdxs.add(0) + currentNoteChunkIdxs.remove(0) + if len(allNoteGroupIdxs) == 0: + continue + if len(currentNoteChunkIdxs)==0: + n = NoteChunk(allNoteGroupIdxs) + for a in allNoteGroupIdxs: + ys,xs = np.where(noteGroupMap==a) + noteChunkMap[ys,xs] = len(noteChunkList) + noteChunkList.append(n) + elif len(currentNoteChunkIdxs) == 1: + noteChunkList[min(currentNoteChunkIdxs)].mergeNoteChunk(allNoteGroupIdxs) + for a in allNoteGroupIdxs: + ys,xs = np.where(noteGroupMap==a) + noteChunkMap[ys,xs] = min(currentNoteChunkIdxs) + else: + minChunkIdx = min(currentNoteChunkIdxs) + currentNoteChunkIdxs.remove(minChunkIdx) + for chunkIdx in list(currentNoteChunkIdxs): + ys,xs = np.where(noteChunkMap==chunkIdx) + noteChunkMap[ys,xs] = minChunkIdx + noteChunkList[minChunkIdx].mergeNoteChunk(noteChunkList[chunkIdx].noteGroupIdxs) + noteChunkList[chunkIdx] = None + imggg = image.copy() + for ii, nc in enumerate(noteChunkList): + if nc is None: + continue + for id in nc.noteGroupIdxs: + noteGroupVerticallyMerged[id].noteChunkId = ii + bx = nc.getBoundingBox(noteGroupList) + imggg = cv2.rectangle(imggg, (bx[0],bx[1]),(bx[2], bx[3]),(0,0,255), 2, cv2.LINE_AA) + imwrite("horizontalGrouping.jpg", imggg) + return noteChunkList, imggg + +def getMaskedImageTimeSignature(image:np.ndarray, beamMapImg: np.ndarray, staffList:List[Staff], barheight: int,img_name:str): + bb,gg,_ = cv2.split(beamMapImg) + imgMasked = image.copy() + topBound = 0 + for sf in staffList: + lowerBound = sf.ys[0] + imgMasked = cv2.rectangle(imgMasked, (0, topBound),(imgMasked.shape[1], lowerBound), (255,255,255), -1) + topBound = sf.ys[-1] + # imgCrop = image[sf.ys[0]+1:sf.ys[-1],:,:] + # cv2.imwrite(f'TimeSignature/tsLong/{img_name}{topBound}{lowerBound}.jpg', imgCrop) + lowerBound = imgMasked.shape[0] + imgMasked = cv2.rectangle(imgMasked, (0, topBound),(imgMasked.shape[1], lowerBound), (255,255,255), -1) + imwrite('imgMasked.jpg', imgMasked) + return imgMasked + +def getCTimeSignature(image:np.ndarray, imgMasked:np.ndarray, staffList:List[Staff]): + tsCImage = image.copy() + # create a matrix of zeros for later (add 1 for each matching boxes and then count + threshold) + tsCount = np.zeros((image.shape[0], image.shape[1])) + match_CThick = cv2.imread("training/CpatternThick.jpg",cv2.IMREAD_GRAYSCALE) + match_COri = cv2.imread("training/CpatternLong.jpg",cv2.IMREAD_GRAYSCALE) + for staff in staffList: + sf = staff.ys + seg_img = image[sf[0]:sf[-1],:,1] + resize_ratio = seg_img.shape[0]/match_CThick.shape[0] + match_c = cv2.resize(match_CThick, None, fx=resize_ratio, fy=resize_ratio, interpolation = cv2.INTER_AREA) + newHeight = match_c.shape[0] + match_c = match_c[newHeight//12:newHeight-newHeight//12] + res1 = cv2.matchTemplate(seg_img, match_c, cv2.TM_SQDIFF_NORMED) + + resize_ratio2 = seg_img.shape[0]/match_COri.shape[0] + match_c2 = cv2.resize(match_COri, None, fx=resize_ratio2, fy=resize_ratio2, interpolation = cv2.INTER_AREA) + newHeight2 = match_c2.shape[0] + match_c2 = match_c2[newHeight2//12:newHeight2-newHeight2//12] + res2 = cv2.matchTemplate(seg_img, match_c2, cv2.TM_SQDIFF_NORMED) + resLst = [res1, res2] + refLst = [match_c, match_c2] + + for idx, res in enumerate(resLst): + w,h = refLst[idx].shape[::-1] + threshold = 0.15 + loc = np.where(res <= threshold) + if len(loc[0])>0: + for pt in zip(*loc[::-1]): + tsCount[pt[1]+sf[0]:pt[1]+sf[0]+h, pt[0]:pt[0]+w]+=1 + # tsCImage = cv2.rectangle(tsCImage, (pt[0],pt[1]+sf[0]), (pt[0] + w, pt[1] + h + sf[0]), (0,0,255), 1) + + _,cPositionFiltered = cv2.threshold(tsCount, 5, 255, cv2.THRESH_BINARY) + contours, _ = cv2.findContours(cPositionFiltered.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + tsCImage = cv2.rectangle(tsCImage, (x,y), (x + w,y+h), (0,0,255), 2) + imwrite('tsCImage.jpg',tsCImage) + return tsCImage + +def getTimeSignature4(image:np.ndarray, imgMasked:np.ndarray, staffList:List[Staff]): + tsCImage = image.copy() + # create a matrix of zeros for later (add 1 for each matching boxes and then count + threshold) + tsCount = np.zeros((image.shape[0], image.shape[1])) + match_8Ori = cv2.imread("training/8Pattern.jpg",cv2.IMREAD_GRAYSCALE) + match_4Ori = cv2.imread("training/4Pattern4x3.jpg",cv2.IMREAD_GRAYSCALE) + thres = [0.15, 0.13] + for staff in staffList: + sf = staff.ys + seg_img = image[sf[2]:sf[-1]+1,:,1] + for currId, match_ori in enumerate([match_4Ori, match_8Ori]): + resize_ratio = seg_img.shape[0]/match_ori.shape[0] + match_c = cv2.resize(match_ori, None, fx=resize_ratio, fy=resize_ratio, interpolation = cv2.INTER_AREA) + newHeight = match_c.shape[0] + match_c = match_c[newHeight//12:newHeight-newHeight//12] + res1 = cv2.matchTemplate(seg_img, match_c, cv2.TM_SQDIFF_NORMED) + + resLst = [res1] + refLst = [match_c] + + for idx, res in enumerate(resLst): + w,h = refLst[idx].shape[::-1] + threshold = thres[currId] + loc = np.where(res <= threshold) + if len(loc[0])>0: + for pt in zip(*loc[::-1]): + tsCount[pt[1]+sf[0]:pt[1]+sf[2]+h, pt[0]:pt[0]+w]+=1 + # tsCImage = cv2.rectangle(tsCImage, (pt[0],pt[1]+sf[0]), (pt[0] + w, pt[1] + h + sf[0]), (0,0,255), 1) + + _,cPositionFiltered = cv2.threshold(tsCount, 1, 255, cv2.THRESH_BINARY) + contours, _ = cv2.findContours(cPositionFiltered.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + tsCImage = cv2.rectangle(tsCImage, (x,y), (x + w,y+h), (0,0,255), 2) + imwrite('ts4Image.jpg',tsCImage) + return tsCImage + +def assignSfnToNote(image:np.ndarray, noteGroupMap:np.ndarray, noteGroupVerticallyMerged:List[NoteGroup],sfnClefMap:np.ndarray,sfnClefList:List[Union[Accidentals, Clef, None]]): + stemIdxMap = np.ones((noteGroupMap.shape[0], noteGroupMap.shape[1]), dtype=np.uint8)*(-1) + accidentalsImg = image.copy() + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for idx, stem in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stem.noteBox + stemIdxMap[y0:y1, x0:x1] = idx + sfnGroupList = [] + for currSfnIdx, sfnc in enumerate(sfnClefList): + if sfnc is None: + continue + if sfnc.getType() == 1: # is Clef + continue + sfnc:Accidentals + x0,y_0,x1,y_1 = sfnc.getBbox() # y0: smaller (top), y1: bigger (bottom) + if sfnc.shift >=0: # sharp or natural + y0 = (y_0+y_1)//2-(y_1-y_0)//6 + y1 = (y_0+y_1)//2+(y_1-y_0)//6 + else: + y0 = (y_0+y_1)//2 + y1 = y_1 + sfnc.shrinkYs = (y0,y1) + stemIdxLst = np.unique(stemIdxMap[y0:y1,x1:x1+(x1-x0)]).tolist() + if -1 in stemIdxLst: + stemIdxLst.remove(-1) + ngIdxLst = np.unique(noteGroupMap[y0:y1,x1:x1+(x1-x0)]).tolist() + if 0 in ngIdxLst: + ngIdxLst.remove(0) + if len(stemIdxLst)==0 or len(ngIdxLst)==0: + # is Key signature or has overlapping sfns + sfnList = np.unique(sfnClefMap[y_0:y_1,x1:x1+(x1-x0)//2]).tolist() + if sfnList == [0]: + sfnc.isKeySignature = True + else: + if 0 in sfnList: + sfnList.remove(0) + sfnNext = sfnList[0] # sfnNext is the index of the next sfn + if type(sfnClefList[sfnNext]) is not Accidentals: + continue + hasAssigned = False + for sIdx in range(len(sfnGroupList)): + if sfnNext in sfnGroupList[sIdx]: + sfnGroupList[sIdx] = [currSfnIdx]+sfnGroupList[sIdx] + hasAssigned = True + continue + elif currSfnIdx in sfnGroupList[sIdx]: + sfnGroupList[sIdx] = sfnGroupList[sIdx]+[sfnNext] + hasAssigned = True + continue + if not hasAssigned: + sfnGroupList.append([currSfnIdx, sfnNext]) + continue + stemIdx = stemIdxLst[0] + ngIdx = ngIdxLst[0] + if len(ngIdxLst)>1: + cntLst = [np.sum(noteGroupMap[y0:y1,x1:x1+(x1-x0)]==i) for i in ngIdxLst] + ngIdx = ngIdxLst[cntLst.index(max(cntLst))] + if len(stemIdxLst)>1: + ngx0, _, ngx1, _ = noteGroupVerticallyMerged[ngIdx].boundingBox + cntLst = [np.sum(np.sum(stemIdxMap[y0:y1,ngx0:ngx1]==i,0)>0) for i in stemIdxLst] + stemIdx = stemIdxLst[cntLst.index(max(cntLst))] + noteGroupVerticallyMerged[ngIdx].noteStemList[stemIdx].accidentals = sfnc.getValue() + sfnc.ngIndex = ngIdx + for grps in sfnGroupList: + currNgIdx = sfnClefList[grps[-1]].ngIndex + if currNgIdx is None: + sfnClefList[grps[-1]].endKeySignature = True + for grr in grps: + sfnClefList[grr].isKeySignature = True + continue + currNg:NoteGroup = noteGroupVerticallyMerged[currNgIdx] + if len(currNg.noteStemList)==1: + continue + ngx0, _, ngx1, _ = currNg.boundingBox + for grr in grps[:-1]: + currSfn = sfnClefList[grr] + y0,y1 = currSfn.shrinkYs + stemIdxLst = np.unique(stemIdxMap[y0:y1,ngx0:ngx1]).tolist() + if -1 in stemIdxLst: + stemIdxLst.remove(-1) + if len(stemIdxLst)>=1: + cntLst = [np.sum(np.sum(stemIdxMap[y0:y1,ngx0:ngx1]==i,0)>0) for i in stemIdxLst] + stemIdx = stemIdxLst[cntLst.index(max(cntLst))] + if currNg.noteStemList[stemIdx].accidentals is None: + noteGroupVerticallyMerged[currNgIdx].noteStemList[stemIdx].accidentals = currSfn.getValue() + noteGroupVerticallyMerged[currNgIdx].noteStemList[stemIdx].accidentalBox = currSfn.boundingBox + else: + print('Error') + + + accidentalsColors = [(255,255,0),(255,0,125),(255,0,255)] # flat, natural, sharp + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for idx, stem in enumerate(ng.noteStemList): + if stem.accidentals is not None: + x0,y0,x1,y1 = stem.noteBox + currColor = accidentalsColors[stem.accidentals+1] + accidentalsImg = cv2.rectangle(accidentalsImg, (x0,y0),(x1,y1),currColor,3, cv2.LINE_AA) + imwrite("assignedAccidentals.jpg",accidentalsImg,strictlyYes=True) + return stemIdxMap, noteGroupVerticallyMerged, {'assignedAccidentals':accidentalsImg} + +def constructBar(noteGroupMap:np.ndarray, + stemIdxMap: np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup|None], + restMap: np.ndarray, + restList:List[Rest|None], + sfnClefMap:np.ndarray, + sfnClefList:List[Union[Accidentals,Clef, None]], + beamMapImg:np.ndarray, + staffList:List[Staff]): + #TODO + bb,gg,rr = cv2.split(beamMapImg) + barList:List[List[Bar]] = [[] for _ in range(NUM_TRACK)] + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + notFinishedBar = None + if len(staffList)%NUM_TRACK != 0: + print(f"staff List is not divisible: {len(staffList)}%{NUM_TRACK}") + numBarsEachLine = [] + allRanges = [] + for kk in range(len(staffList)//NUM_TRACK): + allBars = [] + for j in range(NUM_TRACK): + sf0 = staffList[kk*NUM_TRACK+j] + barPlace = np.unique(np.where(gg[sf0.ys[0]:sf0.ys[-1], sf0.left:]==4)[1]) + allBars.append(barPlace) + barsFlat = Counter(np.concatenate(allBars)) + isBar = np.sort(np.array([k for k, v in barsFlat.items() if v > 1])) + ranges = [] + points = [0,isBar[0]] + i = 1 + while i < len(isBar): + while isBar[i] == isBar[i-1]+1 and ipoints[i]+sf0.get_yOne(): + ranges.append((points[i]+sf0.left, points[i+1]+sf0.left)) + allRanges.append(ranges) + for t in range(NUM_TRACK): # trackNo + for j in range(len(staffList)//NUM_TRACK): # number of lines + printedLineNo = j*NUM_TRACK+t # the + currBarList:List[Bar] = [] + sf0 = staffList[printedLineNo] + ranges = allRanges[j] + for ridx, rng in enumerate(ranges): + if notFinishedBar is not None: + bar = notFinishedBar + notFinishedBar = None + else: + bar = Bar() + currX = rng[0] + while currX1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId)==1: + sanityCheck = True + if typeId == 3: # clef + currClef:Clef = sfnClefList[inMapId[0]] + _,yy0,_,yy1 = currClef.boundingBox + if yy1-yy0 < sf0.get_yOne_float()*3: + sanityCheck = False + if currClef.type ==0: + if yy00)[1])) + if nextIdx>5: + rng = (isBar[-1]+sf0.left+1, rng[1]+nextIdx) + bar = Bar() + currX = rng[0] + while currX1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId)==1: + bar.addElement(currLst[inMapId[0]]) + currX = currLst[inMapId[0]].boundingBox[2]+1 + else: + currX+=1 + print("has more than 1 id") + notFinishedBar = bar + barList[t]+=currBarList + if t == 0: + numBarsEachLine.append(len(currBarList)) + # in order of vln1's 1st line, 2nd line ... | vln2's 1st line, 2nd line ... + return barList,allRanges, numBarsEachLine + +def exportXML(barList:List[List[Bar]], numTrack:int, image:np.ndarray|None = None, + beamMapImg:np.ndarray|None = None, + barsBreakPoints: List[int] = [0], + beamMapList:List[np.ndarray]|None = None, + beamMapRefList:List[int]|None = None, + lineNoList:List[int] | None = None): + # Stem's label -> rhythm meaning + # class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + if image is None: + debugXMLImg = None + else: + debugXMLImg = image.copy() + if beamMapImg is not None: + bb,gg,rr = cv2.split(beamMapImg) + score = stream.Score() + score.metadata = metadata.Metadata() + score.metadata.title = "Example MusicXML" + score2 = stream.Score() # for those with shift + score2.metadata = metadata.Metadata() + score2.metadata.title = "Example MusicXML" + + part = [stream.Part() for n in range(numTrack)] + part2 = [stream.Part() for n in range(numTrack)] + keyName = ['C','D','E','F','G','A','B'] + keyCharFlat = ['C','D-','D','E-','E','F','G-','G','A-','A','B-','B'] + keyCharSharp = ['C','C#','D','D#','E','F','F#','G','G#','A','A#','B'] + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + restClassNames = ['1/4','1/8','1/16','1/32'] # only for >=0 + currentClef = [None]*numTrack + sharps = [3,0,4,1,5,2,6] # F C G D A E B + flats = [6,2,5,1,4,0,3] # B E A D G C F + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + currentKs = [0 for n in range(numTrack)] + trksOriginal = [[] for _ in range (numTrack)] # for tracking all original notes we see + trksShifted = [[] for _ in range (numTrack)] # for tracking all shifted notes + def setKS(ks:float, trkNo): + ks = int(ks) + nonlocal ksSharp + nonlocal ksFlat + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def setKSNeutral(Oriks:float, trkNo, trackShift): + Oriks = int(Oriks) + nonlocal ksSharp + nonlocal ksFlat + ks = Oriks+trackShift + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def parseClefOne(elem:Clef, lineNo:int): + nonlocal currentClef + currentClef[lineNo%numTrack] = elem.type + return elem.type + def getClefFromType(clefType:int): + clf = clef.TrebleClef() + if clefType == 1: + clf = clef.TrebleClef() + elif clefType == 0: + clf = clef.AltoClef() + elif clefType == -1: #-1 + clf = clef.BassClef() + elif clefType == -2: + clf = clef.TenorClef() + return clf + + def parseClef(elem:Clef, lineNo:int): + nonlocal currentClef + if elem.type == currentClef[lineNo%numTrack]: + return None + clf = None + if elem.type == 1: + clf = clef.TrebleClef() + elif elem.type == 0: + clf = clef.AltoClef() + elif elem.type == -1: #-1 + clf = clef.BassClef() + elif elem.type == -2: + clf = clef.TenorClef() + currentClef[lineNo%numTrack] = elem.type + return clf + def parseAccidentals(elem:Accidentals, lineNo:int): + if not elem.isKeySignature: # it's accidentals + return None + ys = elem.shrinkYs + if elem.ksKeySop is None: + keyNum = np.sum(rr[ys[0]:ys[1],(lineNo+1)%4])/((ys[1]-ys[0]))*2-25 + elem.ksKeySop= keyNum + return elem + def calculatePitch(inputPitch:str): + outputNum = keyCharFlat.index(inputPitch[0])+12*(int(inputPitch[-1])+1) + if len(inputPitch)==3: + if inputPitch[1] == '#': + outputNum+=1 + elif inputPitch[1] == '-' : + outputNum-=1 + return outputNum + def pitchListShift(inputPitchList:List[str], shift: int, sharp = True): # shift: how many half notes + returnList = [] + for pitch in inputPitchList: + pitchNum = calculatePitch(pitch) + pitchNum = pitchNum + shift + returnList.append(pitchNum) + referenceList = keyCharFlat + if sharp: + referenceList = keyCharSharp + for idx,pitchNo in enumerate(returnList): + clefNum = pitchNo//12-1 + pitchName = referenceList[pitchNo%12] + returnList[idx] = pitchName + str(clefNum) + return returnList + def parseNoteGroupShift(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, trkShift, flatSharp, linNo): + # trkShift: 0 if original: -2, new: -2 (two flats), 1 if original: -2, new: -1 + # flatSharp: how many flats/sharp, -2: two flats + # flatSharp = 2, trkShift = 0: (-2), flatSharp = 2, trkShift = 1: (-1) + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1 or currKey in flatSet: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen0) + trksShifted[linNo].append(keyShiftedList) + if len(keyShiftedList) > 1: + return flatSet, sharpSet, chord.Chord(keyShiftedList, quarterLength = currLength*4) + elif len(keyShiftedList) == 1: + return flatSet, sharpSet, note.Note(keyShiftedList[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None + # actualPitch, 0: B4, 1: C5, 2: D5 + + def parseNoteGroup(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, linNo, trkShift = 0): + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen 1: + return flatSet, sharpSet, chord.Chord(keyLst, quarterLength = currLength*4) + elif len(keyLst) == 1: + return flatSet, sharpSet, note.Note(keyLst[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None # ornament + # actualPitch, 0: B4, 1: C5, 2: D5 + def parseRest(elem:Rest): + restLength = float(elem.tunedLength) + if restLength>0: + # restLength = float(Fraction(restClassNames[elem.rhythm])) + # if elem.hasdot: + # restLength = restLength*1.5 + return note.Rest(quarterLength=restLength*4) + else: + pass + # print("setting rest to full") + # return note.Rest(quarterLength=4) + def assignKsCurrClef(accList:List[Accidentals], currentClef:int): + pitchShift = 0 + if currentClef == 0: + pitchShift -= 6 + elif currentClef== -1: + pitchShift -= 12 + elif currentClef== -2: + pitchShift -= 8 + i = 0 + while i= len(accList): + return None + totalLength = len(accList)-i + pitchList = [(accList[r].ksKeySop+pitchShift-1)%7 for r in range(i, len(accList))] + if not False in [abs(pitchList[k] - sharps[k%7])<1.2 or pitchList[k]-sharps[k%7]>5.8 for k in range(totalLength)]: + return totalLength + elif not False in [abs(pitchList[k] - flats[k%7])<1.2 or pitchList[k]-flats[k%7]>5.8 for k in range(totalLength)]: + return -totalLength + else: + return None + def assignKS(accList:List[Accidentals]): + pitchShift = 0 + if currentClef[lineNo%numTrack] == 0: + pitchShift -= 6 + elif currentClef[lineNo%numTrack] == -1: + pitchShift -= 12 + elif currentClef[lineNo%numTrack] == -2: + pitchShift -= 8 + i = 0 + while i= len(accList): + return None + totalLength = len(accList)-i + pitchList = [(accList[r].ksKeySop+pitchShift-1)%7 for r in range(i, len(accList))] + if not False in [abs(pitchList[k] - sharps[k%7])<1.2 or pitchList[k]-sharps[k%7]>5.8 for k in range(totalLength)]: + return totalLength + elif not False in [abs(pitchList[k] - flats[k%7])<1.2 or pitchList[k]-flats[k%7]>5.8 for k in range(totalLength)]: + return -totalLength + else: + return None + numBars = len(barList[0]) + ksBarMat = np.ones((numTrack, numBars))*np.inf + clefMat = np.ones((numTrack, numBars))*np.inf + currentClef = [None]*numTrack + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + if len(CLEF_OPTIONS[lineNo]) == 1: + clefMat[lineNo, currBarNumber] = CLEF_OPTIONS[lineNo][0] + else: + currBar = barList[lineNo][currBarNumber] + for elem in currBar.elementList: + if type(elem) == Clef: + newClef = parseClefOne(elem, lineNo) + if newClef in CLEF_OPTIONS[lineNo]: + clefMat[lineNo, currBarNumber] = newClef + if clefMat[lineNo, currBarNumber] == np.inf: + if currBarNumber == 0: + clefMat[lineNo, currBarNumber] = CLEF_OPTIONS[lineNo][0] + else: + clefMat[lineNo, currBarNumber] = clefMat[lineNo, currBarNumber-1] + global DEBUGIMG + beamMapRefIndex = -1 + for currBarNumber in range(numBars): + if beamMapRefList is not None: + if beamMapRefList[currBarNumber] != beamMapRefIndex: + beamMapRefIndex = beamMapRefList[currBarNumber] + beamMapImg = beamMapList[beamMapRefIndex] + bb,gg,rr = cv2.split(beamMapImg) + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + accumAcc: List[Accidentals] = [] # will have the list of accidentals to process + for elem in currBar.elementList: + if type(elem) == Accidentals: + if lineNoList is not None: + currAcc = parseAccidentals(elem,lineNoList[currBarNumber]) # return none if it's accidentals + else: + currAcc = parseAccidentals(elem, lineNo) + if currAcc is None: + if debugXMLImg is not None: + x0,y0,x1,y1 = elem.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),elem.getColor(), 1, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),elem.getColor(), 1, cv2.LINE_AA) + if len(accumAcc)>0: + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is None: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.circle(debugXMLImg, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.circle(DEBUGIMG, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + if barNumber == 1: + modShift = statistics.mode([a.shift for a in accumAcc]) + currentKs[lineNo%numTrack] = modShift*len(accumAcc) + ksBarMat[lineNo, currBarNumber] = modShift*len(accumAcc) + debugXMLImg = cv2.putText(debugXMLImg,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + else: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + debugXMLImg = cv2.putText(debugXMLImg,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + if ksCurr is not None and ksCurr != currentKs[lineNo%numTrack]: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + elif currAcc.endKeySignature: + accumAcc.append(currAcc) + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is None: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.circle(debugXMLImg, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.circle(DEBUGIMG, ((x0+x1)//2, (y0+y1)//2), (x1-x0)//2, ac.getColor(), 3, cv2.LINE_AA) + if barNumber == 1: + modShift = statistics.mode([a.shift for a in accumAcc]) + currentKs[lineNo%numTrack] = modShift*len(accumAcc) + ksBarMat[lineNo, currBarNumber] = modShift*len(accumAcc) + debugXMLImg = cv2.putText(debugXMLImg,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(modShift*len(accumAcc)), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + else: + for ac in accumAcc: + x0,y0,x1,y1 = ac.boundingBox + debugXMLImg = cv2.rectangle(debugXMLImg, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + DEBUGIMG = cv2.rectangle(DEBUGIMG, (x0,y0),(x1,y1),ac.getColor(), 3, cv2.LINE_AA) + debugXMLImg = cv2.putText(debugXMLImg,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + DEBUGIMG = cv2.putText(DEBUGIMG,str(ksCurr), (x1,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.7, ac.getColor(), 2, cv2.LINE_AA) + if ksCurr is not None and ksCurr != currentKs[lineNo%numTrack]: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + else: + accumAcc.append(currAcc) + if len(accumAcc)>0: + ksCurr = assignKsCurrClef(accumAcc, clefMat[lineNo, currBarNumber]) + if ksCurr is not None: + currentKs[lineNo%numTrack] = ksCurr + ksBarMat[lineNo, currBarNumber] = ksCurr + if ksBarMat[lineNo, currBarNumber] == np.inf: + if currBarNumber in barsBreakPoints: + ksBarMat[lineNo, currBarNumber] = 0 + else: + ksBarMat[lineNo, currBarNumber] = ksBarMat[lineNo, currBarNumber-1] + kk = ksBarMat.copy() + for idx, trShift in enumerate(TRACK_SHIFT): + kk[idx,:] = kk[idx,:]-trShift + ksBarMatNeutral = np.zeros_like(ksBarMat) # the "standard" orchestra clef we want + ksBarMatNeutral[:,:] = stats.mode(kk, axis=0)[0] + ksBarMatNew = np.zeros_like(ksBarMat) + for idx, trShift in enumerate(TRACK_SHIFT): + ksBarMatNew[idx,:] = ksBarMatNeutral[idx,:]+trShift + ksBarMatNeutral = ksBarMatNeutral.astype(int) + ksBarMatNew = ksBarMatNew.astype(int) + clefMat = clefMat.astype(int) + tssList = [b.ts for b in barList[0]] + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + accumAcc = [] # will have the list of accidentals to process + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNew[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + elif tssList[currBarNumber]!=tssList[currBarNumber-1]: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNew[lineNo, currBarNumber-1]: + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + else: + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroup(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + lineNo, + trkShift=0) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part[lineNo%numTrack].append(measure) + for p in part: + score.append(p) + # Part 2: with shift + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + for currBarNumber in range(numBars): # for the new one shifted + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + # barNumber = barNumber+1 + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + accumAcc = [] # will have the list of accidentals to process + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNeutral[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKSNeutral(ks, lineNo, TRACK_SHIFT[lineNo]) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNeutral[lineNo, currBarNumber-1]: + setKSNeutral(ks, lineNo, TRACK_SHIFT[lineNo]) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroupShift(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + TRACK_SHIFT[lineNo], + ksBarMatNeutral[0,currBarNumber], + lineNo) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part2[lineNo%numTrack].append(measure) + for p in part2: + score2.append(p) + return score, score2, {'ksAssigned':debugXMLImg} + +def saveBarToCsv(imgName:str, barList:List[List[Bar]], desiredLength=1): + retBarLst = [] + for lineId, oneLine in enumerate(barList): + for barId, bar in enumerate(oneLine): + if bar.getTotalBeat() != desiredLength: + currBar = dict(sheetName=imgName, + lineNo=lineId, + barNo=barId, + targetLength=desiredLength, + elms=[]) + for elm in bar.elementList: + if type(elm) == NoteGroup: + groupId = 0 + if elm.noteChunkId is not None: + groupId = elm.noteChunkId + beamLength = (-1,-1) + beamEnd = [-1,-1] # for grouped notes + length = elm.getMinLength() + if len(elm.noteStemList) == 1: + currStm = elm.noteStemList[0] + if currStm.hasdot: + length = length*1.5 + beamLength = [int(a) for a in currStm.getBeamHeights()] + if currStm.isup: + beamEnd = [currStm.getX(), int(min(currStm.getY0Y1()))] + else: + beamEnd = [currStm.getX(), int(max(currStm.getY0Y1()))] + newElm = dict(length=str(Fraction(length)), + groupId = groupId, + isRest = False, + numNotes = len(elm.noteStemList), + beamLength = beamLength, + beamEnd=beamEnd) + currBar['elms'].append(newElm) + elif type(elm) == Rest: + newElm = dict(length=str(elm.getLengthFraction()*1.5 if elm.hasdot else elm.getLengthFraction()), + groupId = -1, + isRest = True, + numNotes = 0, + beamLength = (-1,-1), + beamEnd=[-1,-1]) + currBar['elms'].append(newElm) + retBarLst.append(currBar) + with open(f"debugBars/{imgName}.json", "w") as file: + json.dump(retBarLst, file, indent=4) + +def tuneBarList(barList:List[List[Bar]], numBarsPerLine:List[int]): + assert len(np.unique([len(barr) for barr in barList])) == 1 + emptyBarsIndexs = np.where(np.sum(np.array([[len(b.elementList) for b in oneTrack] for oneTrack in barList]),axis=0)==0)[0].tolist() + emptyBarsIndexs.reverse() + for emptyBarsIndex in emptyBarsIndexs: + for i in range(NUM_TRACK): + del barList[i][emptyBarsIndex] + qq = 0 + while emptyBarsIndex+1>sum(numBarsPerLine[0:qq]): + qq+=1 + numBarsPerLine[qq-1]-=1 + # delete all elements that's ornament + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + bar.elementList = [ + elem for elem in bar.elementList + if not (isinstance(elem, NoteGroup) and all(s.isOrnament for s in elem.noteStemList)) + ] + # now all bars are suppose to be valid + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + origLengths = bar.getRhythmList() + newLengths = [None]*len(origLengths) + if bar.getTotalBeat() == Fraction(bar.ts[0],bar.ts[1]): + newLengths = [None]*len(origLengths) + elif bar.getTotalBeat() == 0: + continue # will be later added a rest + else: + newLengths = tuneBar(bar.getRestNg(), bar.ts) + reassignedLengths = [origLengths[i] if newLengths[i] is None else newLengths[i] for i in range(len(newLengths))] + bar.reassignLength(origLengths, newLengths) + if bar.getTunedTotalBeat() != Fraction(bar.ts[0], bar.ts[1]): + print("bar doesn't have right length") + + for lineii, oneTrack in enumerate(barList): + for barii, bb in enumerate(oneTrack): + if bb.getTunedTotalBeat() != Fraction(bb.ts[0],bb.ts[1]): + print(f"bar at {lineii},{barii} has total beat {bb.getTotalBeat()}") + assert sum(numBarsPerLine) == len(barList[0]) + barBreakPoints = [0] + list(itertools.accumulate(numBarsPerLine)) + return barBreakPoints + +def extendNotegroupsToStaff(noteGroupMap:np.ndarray, + noteGroupVerticallyMerged:List[NoteGroup], + staffObjList:List[Staff], + beamMapImg:np.ndarray): + bb,gg,rr = cv2.split(beamMapImg) + ngZero = np.zeros_like(noteGroupMap) + for sf in staffObjList: + ngZero[sf.ys[0]:sf.ys[-1], sf.left:sf.right] = 1 + for idx, ng in enumerate(noteGroupVerticallyMerged): + if ng is None: + continue + x0,y0,x1,y1 = ng.boundingBox + if np.sum(ngZero[y0:y1,x0:x1])==0: + clefNo = round(np.mean(rr[y0:y1,4])) + if len(np.unique(noteGroupMap[y0:y1,x0:x1])) == 1: + noteNo =np.unique(noteGroupMap[y0:y1,x0:x1])[0] + if y0>staffObjList[clefNo-1].ys[2]: # is at the bottom + y00 = staffObjList[clefNo-1].ys[-2] + y11 = y1 + else: + y00 = y0 + y11 = staffObjList[clefNo-1].ys[1] + gg[y00:y11,x0:x1] = 1 + noteGroupMap[y00:y11,x0:x1]=noteNo + rr[y00:y11,x0:x1] = clefNo + ng.boundingBox = (x0,y00,x1,y11) + + return cv2.merge([bb,gg,rr]), noteGroupMap + +def getAccidentalsChanges(barList:List[List[Bar]]): + # barList: [[track 1's bars], [track 2's bars], ...] + numTracks = len(barList) + numBars = len(barList[0]) + accTracks = [[0]*numBars for _ in range(numTracks)] + clefTracks = [[None]*numBars for _ in range(numTracks)] + imgCircleAcc = image.copy() + clrs = [(0,0,255),(0,255,0),(255,255,0)] + for lineNo,currBarList in enumerate(barList): + for barNo,currBar in enumerate(currBarList): + for elem in currBar.elementList: + if type(elem) == Clef: + # 1: treble, 0: alto, -1: bass, -2: tenor + clefTracks[lineNo][barNo] = elem.type + print(f"at line {lineNo}, bar {barNo}, element has type {elem.type}") + if clefTracks[lineNo][barNo] is None and barNo>0: + clefTracks[lineNo][barNo] = clefTracks[lineNo][barNo-1] + # TODO: fill in if there's none in clefTracks + if [True] in [[None in f] for f in clefTracks]: + print("need to reassign!") + for lineNo,currBarList in enumerate(barList): + for barNo,currBar in enumerate(currBarList): + for elem in currBar.elementList: + if type(elem) == Accidentals and elem.isKeySignature: + x0,y0,x1,y1 = elem.boundingBox + currClef = clefTracks[lineNo][barNo] + # ys = elem.shrinkYs + # keyNum = np.sum(rr[ys[0]:ys[1],(lineNo+1)%4])/((ys[1]-ys[0]))*2-25 + # elem.ksKeySop = keyNum + imgCircleAcc = cv2.rectangle(imgCircleAcc,(x0,y0),(x1,y1),clrs[elem.shift],3, cv2.LINE_AA) + +def createMask(barList:List[List[Bar]], barRanges:List[List[Tuple[int,int]]], staffObjList:List[Staff], image:np.ndarray,beamMapImg:np.ndarray): + maskImg = image.copy() + brWidth = 2 # VARIABLE: 1 third of the size of mask + barlineCenters = [] + tsBounding1 = image.copy() + tsBounding2 = image.copy() + + for lineIdx,brList in enumerate(barRanges): + yStart = staffObjList[lineIdx*NUM_TRACK].ys[0] + yEnd = staffObjList[(lineIdx+1)*NUM_TRACK-1].ys[-1] + brCenters = [br[0] for br in brList]+[brList[-1][-1]] + barlineCenters.append(brCenters) + for br in brCenters: + maskImg = cv2.rectangle(maskImg, (br-brWidth, yStart),(br+2*brWidth, yEnd), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + tsBounding2 = cv2.rectangle(tsBounding2, (br-brWidth, yStart),(br+2*brWidth, yEnd), (0,255,0), lineType=cv2.LINE_AA, thickness=-1) + for tracks in barList: + for bar in tracks: + for elem in bar.elementList: + if type(elem) == Accidentals: + x0,y0,x1,y1 = elem.boundingBox + maskImg = cv2.rectangle(maskImg, (x0,y0),(x1,y1), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + elif type(elem) == NoteGroup: + x0,y0,x1,y1 = elem.boundingBox + maskImg = cv2.rectangle(maskImg, (x0,y0),(x1,y1), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + for stm in elem.noteStemList: + if stm.accidentalBox is not None: + x0,y0,x1,y1 = stm.accidentalBox + maskImg = cv2.rectangle(maskImg, (x0,y0),(x1,y1), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + elif type(elem) == Rest: + x0,y0,x1,y1 = elem.boundingBox + maskImg = cv2.rectangle(maskImg, (x0,y0),(x1,y1), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + elif type(elem) == Clef: + x0,y0,x1,y1 = elem.boundingBox + maskImg = cv2.rectangle(maskImg, (x0,y0),(x1,y1), (255,255,255), lineType=cv2.LINE_AA, thickness=-1) + beamMapBW = beamMapImg[:,:,0] + _, bmINV = cv2.threshold(beamMapBW, 127,1, cv2.THRESH_BINARY_INV) + maskImgBW = cv2.cvtColor(maskImg, cv2.COLOR_BGR2GRAY) + _, maskImgINV = cv2.threshold(maskImgBW, 127, 1, cv2.THRESH_BINARY_INV) + imgBW = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + maskImgINV = maskImgINV*bmINV + maskWhole = np.zeros_like(maskImgBW) + yPrev = 0 + for sfId,sf in enumerate(staffObjList): + y0 = sf.ys[0] + y1 = sf.ys[-1] + maskWhole[yPrev:y0,:] = 0 + x0 = sf.left + x1 = sf.right + currLine = maskImgINV[y0:y1,:] + h,w = currLine.shape + sumCurr = np.sum(currLine,axis=0) + val,cnts = np.unique(sumCurr, return_counts = True) + sorted_indices = np.argsort(-cnts) + minIdx = np.where(sorted_indices>=np.percentile(np.sum(currLine,axis=0),75))[0][0] + thres = np.max(sorted_indices[:3]) + thres = max(thres, sorted_indices[minIdx]) + xPos = np.where(np.sum(currLine,axis=0)>thres)[0] + mask = np.zeros(w, dtype=np.uint8) + mask[xPos] = 1 + mask[:x0] = 0 + mask[x1:] = 0 + mask = np.tile(mask, (h,1)) + maskWhole[y0:y1,:] = mask + yPrev = y1 + maskWhole[yPrev:,:] = 0 + retImgBlack = cv2.bitwise_not(imgBW)*maskWhole + retImgWhite = cv2.bitwise_not(maskWhole*maskImgINV*255) + contours, _ = cv2.findContours(retImgBlack, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + rett = image.copy() + whiteBG = np.zeros_like(imgBW) # put 1s on where there's residual stuff + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + if h>sf.get_yOne(): + rett = cv2.rectangle(rett, (x,y),(x+w,y+h),(0,0,255),-1,cv2.LINE_AA) + whiteBG = cv2.rectangle(whiteBG, (x,y),(x+w,y+h),1,-1,cv2.LINE_AA) + sfTrack = np.zeros((len(staffObjList),image.shape[1])) + for sfId,sf in enumerate(staffObjList): + y0 = sf.ys[0] + y1 = sf.ys[-1] + currLine = whiteBG[y0:y1,:] + xLoc = np.max(currLine, axis=0) + sfTrack[sfId,:] = xLoc + windowWidth = sf.get_yOne() #VARIABLE: how much we want the sliding window to be (width) + windowThres = 0.5 + boxList = [(0,0,0,0,-1)] # x0,y0,x1,y1,lineNo(starting 0) + for linNo in range(len(staffObjList)//NUM_TRACK): # go through window and record + currSFTrack = sfTrack[linNo*NUM_TRACK:(linNo+1)*(NUM_TRACK),:] + for xLeft in range(0, image.shape[1]-windowWidth): + if np.mean(currSFTrack[:,xLeft:xLeft+windowWidth])>windowThres: + if xLeft=0: # no overlap for sure + continue + while barlineCenters[currBrCenter[0]][currBrCenter[1]]0: + tsBounding2 = cv2.rectangle(tsBounding2, (x0,y0), (x1,y1), (0,0,255),3,cv2.LINE_AA) + for idx,crpImg in enumerate(cropImgLst): + cv2.imwrite(f"ts_dataset/{img_name}_{x0}_{y0}_{idx}.jpg", crpImg) + print(f"writing dataset to ts_dataset/{img_name}_{x0}_{y0}_{idx}.jpg") + imwrite("TSboundingBox_.jpg", tsBounding1) + imwrite("TSboundingBoxNoBr_.jpg", tsBounding2) + imwrite("filteredTS_.jpg",rett) + return maskImg, boxList, boxListFiltered,{'tsboundingBox':tsBounding1,'tsboundingBoxNoBr':tsBounding2, 'filteredTS':rett} + + for box in boxList[1:]: + x0,y0,x1,y1,currLine = box + tsBounding1 = cv2.rectangle(tsBounding1, (x0,y0), (x1,y1), (0,0,255),3,cv2.LINE_AA) + cropImgLst = [] + for trkNo in range(NUM_TRACK): + yss = staffObjList[currLine*NUM_TRACK+trkNo].ys + crpImg = imgBW[yss[0]:yss[-1],x0:x1] + cropImgLst.append(crpImg) + matchScores = [] + for i in range(4): + for j in range(i+1,4): + result = cv2.matchTemplate(cropImgLst[i], cropImgLst[j], cv2.TM_CCOEFF_NORMED) + _, max_val, _, max_loc = cv2.minMaxLoc(result) + matchScores.append(max_val) + if min(matchScores)>0: + tsBounding2 = cv2.rectangle(tsBounding2, (x0,y0), (x1,y1), (0,0,255),3,cv2.LINE_AA) + boxListFiltered.append(box) + for idx,crpImg in enumerate(cropImgLst): + cv2.imwrite(f"ts_dataset/{img_name}_{x0}_{y0}_{idx}.jpg", crpImg) + imwrite("TSboundingBox_.jpg", tsBounding1) + imwrite("TSboundingBoxNoBr_.jpg", tsBounding2) + imwrite("filteredTS_.jpg",rett) + return maskImg, boxList, boxListFiltered,{'tsboundingBox':tsBounding1,'tsboundingBoxNoBr':tsBounding2, 'filteredTS':rett} +# pagenum starts with 1 +def editBarTS(barList:List[List[Bar]], allChanges:List[dict], pageNum, numBarsPerLine:List[int]): + prev = max([i for i, val in enumerate([allChanges[i]['page'] for i in range(len(allChanges))]) if val < pageNum]+[0]) + TIME_SIGNATURE = allChanges[prev]['time_signature'] + indexes = [i+1 for i, val in enumerate([allChanges[i]['page'] for i in range(1,len(allChanges))]) if val == pageNum] + if len(indexes) > 0: + breakPoints = [0] + list(itertools.accumulate(numBarsPerLine)) + numBarsThisPage = len(barList[0]) # how many bars are in this page + locBarNumChanges = [allChanges[ind]['loc'] for ind in indexes] + barNumChanges = [breakPoints[l[0]]+l[1] for l in locBarNumChanges]+[numBarsThisPage*2] # [0,6, xx (too large)] if we have ts change in bar 0, 6 + tss = [TIME_SIGNATURE]+[allChanges[ind]['time_signature'] for ind in indexes] # [[orig],[3/4],[9/8]] + # from 0 to barNumChanges[0] : TIME_SIGNATURE + # from barNumChanges[0] to barNumChanges[1]: tss[0] + for currTrack in barList: + currTsIndex = 0 # tss[currTsIndex] is the one we want to assign + TIME_SIGNATURE = tss[0] + for barNum, bar in enumerate(currTrack): + if barNum == barNumChanges[currTsIndex]: + currTsIndex += 1 + TIME_SIGNATURE = tss[currTsIndex] + bar.ts = TIME_SIGNATURE + else: + for currTrack in barList: + for barNum, bar in enumerate(currTrack): + bar.ts = TIME_SIGNATURE +def exportYolo(sfnClefList:List[Accidentals|Clef], image:np.ndarray,img_name:str, barheight: int): + if not os.path.isdir("yolo"): + os.mkdir("yolo") + if not os.path.isdir("yolo/debug"): + os.mkdir("yolo/debug") + height, width, _ = image.shape + outputString = "" + imgg = image.copy() + for sfnClef in sfnClefList: + if type(sfnClef) == Clef: + if sfnClef.getValue() == 0 or sfnClef.getValue() == -2: + x0,y0,x1,y1 = sfnClef.boundingBox + if y1-x1 < 3*barheight: + continue + cv2.rectangle(imgg, (x0,y0),(x1,y1),(0,0,255), 2, cv2.LINE_AA) + xPerc = (x1+x0)/2/width + yPerc = (y1+y0)/2/height + xWidth = (x1-x0)/width + yHeight = (y1-y0)/height + print(f"{1} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}") + outputString += f"{1} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}\n" + elif type(sfnClef) == Accidentals: + if sfnClef.getValue() == -1: + # is flat + x0,y0,x1,y1 = sfnClef.boundingBox + cv2.rectangle(imgg, (x0,y0),(x1,y1),(0,255,0), 2, cv2.LINE_AA) + xPerc = (x1+x0)/2/width + yPerc = (y1+y0)/2/height + xWidth = (x1-x0)/width + yHeight = (y1-y0)/height + print(f"{0} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}") + outputString += f"{0} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}\n" + with open(f"yolo/{img_name}.txt","w") as f: + f.write(outputString) + cv2.imwrite(f"yolo/{img_name}.jpg", image) + cv2.imwrite(f"yolo/debug/{img_name}.jpg",imgg) + +if __name__ == '__main__': + root_folder = 'string_dataset' + base_folder = f'{root_folder}/pdf_data/' + base_output_folder = f'{root_folder}/output/' + pieces = [] + if not os.path.isdir(base_folder): + os.mkdir(base_folder) + if not os.path.isdir(base_output_folder): + os.mkdir(base_output_folder) + with open(f'{root_folder}/piecesToRun.json','r') as f: + pieces = json.load(f) + for piece_name in pieces: + OUTPUT_BASE_FOLDER = os.path.join(base_output_folder, piece_name) + if not os.path.isdir(OUTPUT_BASE_FOLDER): + os.mkdir(OUTPUT_BASE_FOLDER) + if not os.path.isdir(f"{OUTPUT_BASE_FOLDER}/output"): + os.mkdir(f"{OUTPUT_BASE_FOLDER}/output") + piece_base_folder = os.path.join(base_folder, piece_name) # 'string_dataset/pdf_data/beethoven1' + with open(f"{piece_base_folder}/{piece_name}.json") as f: + config = json.load(f) + NUM_TRACK = config['numTrack'] + TRACK_SHIFT = config['track_shift'] + CLEF_OPTIONS = config['clef_options'] + TIME_SIGNATURE = config['tsChange'][0]['time_signature'] + + run_img_folder = os.path.join(piece_base_folder, 'imgs') + if not os.path.isdir(run_img_folder): + savePdf2Png(piece_base_folder,config['numPerPage'],config['rotate']) + + stemUpPth = "training/stemupImg32x32_best.pth" + stemDownPth = "training/stemdownImg32x32_best.pth" + stemUpModel = Single_Stem_Classifier(stemUpPth, 3) + stemDownModel = Single_Stem_Classifier(stemDownPth, 3) + + img_name_list = [f'{piece_name}_{i}' for i in range(1,config['numPage']+1)] + wholeBarList:List[List[Bar]] = [[] for _ in range(NUM_TRACK)] + beamRefList: List[int] = [] # which beamMapImg should it refer to (which page was it in), start with 0 + allBeamMaps: List[np.ndarray] = [] + lineNoList: List[int] = [] + allBarBreakPoints: List[int] = [] + for imgIdx,img_name in enumerate(img_name_list): + MIN_BAR_HEIGHT = 8 + img_path = f"{run_img_folder}/{img_name}/{img_name}.png" + base_path = f"{run_img_folder}/{img_name}/{img_name}" + npy_path = f"{run_img_folder}/{img_name}/{img_name}.npy" + pkl_path = f"{run_img_folder}/{img_name}/{img_name}_staffList.pkl" + barList_path = f"{run_img_folder}/{img_name}/{img_name}_barlist.pkl" + # beamMapImg_path = f"{run_img_folder}/{img_name}/{img_name}_beamMapInit.jpg" + if not os.path.exists(npy_path): + printt(f"missing npy for {img_name}") + dataDictOrigin = runModel1(img_path,outputPath = base_path,dodewarp=False,save_npy=True) + if not os.path.exists(pkl_path): + printt(f"missing pkl for {img_name}") + staffListOrigin = runModel2(npy_path, img_path, base_path) + if os.path.exists(npy_path) and os.path.exists(pkl_path): + printt(f"working on {img_path}") + dataDict = np.load(npy_path,allow_pickle=True) + dataDict = dataDict.tolist() + resize_ratio = 2 + # the minimum pixel height between staffline should be higher than 8 to ensure proper processing of image + if img_name.startswith('packed_'): + for k in dataDict.keys(): + img = dataDict[k] + resized_image = cv2.resize(img, None, fx=resize_ratio, fy=resize_ratio, interpolation=cv2.INTER_NEAREST) + dataDict[k] = resized_image + else: + resize_ratio = 2 + for k in dataDict.keys(): + img = dataDict[k] + resized_image = cv2.resize(img, None, fx=resize_ratio, fy=resize_ratio, interpolation=cv2.INTER_NEAREST) + dataDict[k] = resized_image + + img = np.ones_like(dataDict['image'])*255 + ys,xs = np.where(dataDict['stems_rests']>0) + img[ys,xs] = (0,0,255) + # outputImWrite(f'{img_name}_stemrests.jpg', img) + imwrite(f'stemrests_.jpg', img) + + img = np.ones_like(dataDict['image'])*255 + ys,xs = np.where(dataDict['symbols']>0) + img[ys,xs] = (255,0,0) + # outputImWrite(f'{img_name}_symbols.jpg', img) + imwrite(f'symbols_.jpg', img) + + # ori_img, binary_img, symbol = getStemBox(dataDict) + bar_height, staffObjList = init_bar_height(dataDict, min_barheight=MIN_BAR_HEIGHT) + print(f'barheight: {bar_height}') + print(bar_height) + stepSize = int(bar_height/4) + + # get the beam image + beamNoClefKeyWithStemRest, beamWithoutStemRest, beam_nostem = getBeamImage(dataDict, bar_height, staffObjList) + # get the gradient beamMap and (dont filter noteheadInitial with longer beams cause might remove noteheads) + beamMapImg, debugImages = generateBeamStaffImg(beam_nostem, staffObjList, bar_height,stepSize=stepSize) + # get the inital black and white image of notehead (white: has note), it's b&w, depth=1 + # noteBwImage is the cleaned but not filtered note image, + + # if os.path.exists(barList_path): + # with open(barList_path, "rb") as f: + # barLists = pickle.load(f) + # for tr in range(NUM_TRACK): + # wholeBarList[tr] += barLists[tr] + # beamRefList += [imgIdx]*len(barLists[0]) + # cv2.imwrite(beamMapImg_path, beamMapImg) + # lineNoList += [i for i in range(len(barLists[0]))] + # allBeamMaps.append(beamMapImg) + # continue + + noteheadBoxesInitList, noteBwImageOrigin = getInitialNoteheadBoxList(dataDict, beam_nostem, beamMapImg, bar_height) + + # mask the note image with the notehead boxes + maskedNoteBwImage = maskImage(noteheadBoxesInitList, noteBwImageOrigin) + + stem_init_list, image, debugImages= getStemList(dataDict, noteheadBoxesInitList, beamNoClefKeyWithStemRest) + # {'notehead_drawimg':drawimg} + for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg', debugImages[si]) + stem_list_assigned_height, debugImages = assignStemLength(stem_init_list, image, beamMapImg, stepSize, bar_height) + # {'notestem_drawimg': drawimg2} + for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg', debugImages[si]) + + beamRemoveNotes = removeNotes(maskedNoteBwImage, beamNoClefKeyWithStemRest, beamMapImg) + beam_img2, stem_list_assigned, beam_heights = assignBeamLengthBeamImg(stem_list_assigned_height, image, beamRemoveNotes, bar_height) + # outputImWrite(f'{img_name}_knn_beam.jpg', beamRemoveNotes) + # outputImWrite(f'{img_name}_knn_beamImg.jpg', beam_img2) + imwrite(f'knn_beam.jpg', beamRemoveNotes) + imwrite(f'knn_beamImg.jpg', beam_img2) + + noteGroupList, beamMapImg, noteGroupStemMap, noteGroupMap, debugImages = knnRhythmAndDraw(stem_list_assigned, beam_heights, image, bar_height, beamMapImg, stemUpClassifier=stemUpModel, stemDownClassifier=stemDownModel,img_name=img_name) + # {'knnbeams':imgrgb,'ngImg': ngImg, 'knnbeams2': knnbeams2} + for si in ['ngImg','knnbeams2']:#debugImages.keys(): + # outputImWrite(f'{img_name}_notehead_Boxes.jpg', drawimg) + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg',debugImages[si]) + + ys,xs = np.where(noteGroupStemMap>0) + zz = image.copy() + zz[ys,xs,1:2] = 100 + # outputImWrite(f'{img_name}_noteGroupStemMap.jpg', zz) + imwrite(f'noteGroupStemMap.jpg', zz) + + + ys,xs = np.where(noteGroupMap>0) + zz = image.copy() + zz[ys,xs,1:2] = 100 + # outputImWrite(f'{img_name}_noteGroupStemMap.jpg', zz) + imwrite(f'noteGroupMap.jpg', zz) + + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + _,_,rr = cv2.split(beamMapImg) + zz = image.copy() + for i in range(len(staffObjList)): + ys,xs = np.where(rr==(i+1)) + zz[ys,xs] = colors[i%4] + imwrite('GroupMap.jpg',zz) + # outputImWrite(f'{img_name}_GroupMap_1.jpg', zz) + + pth_path = r'training\rest_remain2x1_best.pth' + num_classes = 5 + restClassifier = Rest_Classifier(pth_path, num_classes) + restMap, restList, beamMapImg, debugImages = findRests(dataDict, beamMapImg, bar_height, restClassifier) + # {'RestClassification': imgrgb} + # for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + # pass + + # beamMapImg: modified beamMap1 with vertically grouped ones + noteGroupVerticallyMerged, noteGroupMapWithIssues, beamMapImg, debugImages = mergeVerticalNoteGroups(staffObjList,noteGroupList, noteGroupMap, beamMapImg, image,restMap, restList) + + noteGroupMap = np.zeros_like(noteGroupMapWithIssues) + for i in range(len(noteGroupVerticallyMerged)): + if noteGroupVerticallyMerged[i] is not None: + ng = noteGroupVerticallyMerged[i] + x0,y0,x1,y1 = ng.boundingBox + noteGroupMap[y0:y1, x0:x1] = i + + # {'vertically_merged':ngImg} + for si in debugImages.keys(): + # outputImWrite(f'{img_name}_notehead_Boxes.jpg', drawimg) + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg',debugImages[si]) + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + _,_,rr = cv2.split(beamMapImg) + zz = image.copy() + for i in range(len(staffObjList)): + ys,xs = np.where(rr==(i+1)) + zz[ys,xs] = colors[i%4] + # outputImWrite(f'{img_name}_GroupMap_2.jpg', zz) + imwrite(f'GroupMap2.jpg', zz) + + + pth_path = 'training/best_model32x32_seg_dil4x4.pth' + num_classes = 7 + sfnClassifier = Sfn_Clef_classifier(pth_path, num_classes) + sfnClefList, sfnClefMap, debugImages = symbol_classification(dataDict, sfnClassifier, bar_height) + exportYolo(sfnClefList, image,img_name, bar_height) + # {'sfnClef':sfnClefImg} + for si in debugImages.keys(): + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg',debugImages[si]) + + # filter the sfn and clef that are overlapping with beam map + sfnClefList, sfnClefMap, beamMapImg = filterSfnClefModifyBeamMap(sfnClefList, noteGroupMap, beamMapImg) + bb,gg,_ = cv2.split(beamMapImg) + _,zz = cv2.threshold(image, 200, 255, cv2.THRESH_BINARY) + zzmask = zz.copy() + zzmask[:max(staffObjList[0].ys[0]-bar_height*2,0),:] = (255,255,255) + zzmask[min(staffObjList[-1].ys[-1]+bar_height*2,zzmask.shape[0]):,:] = (255,255,255) + for sf in staffObjList: + xMaskOut = np.where(np.max(noteGroupMap[max(sf.ys[0]-2*bar_height, 0):min(sf.ys[-1]+2*bar_height, zzmask.shape[0]), :],0)>0)[0] + zzmask[max(sf.ys[0]-2*bar_height, 0):min(sf.ys[-1]+2*bar_height,zzmask.shape[0]),xMaskOut] = (255,255,255) + ys,xs = np.where(gg>0) + zzmask[ys,xs] = (255,255,255) + bb = cv2.dilate(bb, np.ones((bar_height//2, bar_height//2), dtype= np.uint8), iterations=1) + ys,xs = np.where(bb>=255) + zzmask[ys,xs] = (255,255,255) + # zzmask = cv2.dilate(zzmask, np.ones((bar_height//3,1),dtype=np.uint8),iterations=1) + # zzmask = cv2.erode(zzmask, np.ones((bar_height//3,bar_height//3),dtype=np.uint8),iterations=1) + # cv2.imwrite('test.jpg',zzmask) + imwrite('SfnClefNoteWhite.jpg', zzmask) + # outputImWrite(f'{img_name}_SfnClefNoteWhite.jpg', zzmask) + + for i in range(1,4): + ys,xs = np.where(gg==i) + zz[ys,xs,(i-2)%3] = 100 + zz[ys,xs,(i-3)%3] = 0 + ys,xs = np.where(image[:,:,0]<128) + zz[ys,xs,:] = (0,0,0) + # outputImWrite(f'{img_name}_SfnClefNote.jpg', zz) + imwrite(f'SfnClefNote.jpg', zz) + + + staffEnhancedImg = enhanceStaff(image, staffObjList,bar_height) + noteGroupPitchList, debugImages = assignPitch(staffEnhancedImg,noteGroupList, beamMapImg, bar_height) + # {'pitch':pitchImg, 'pitchAndLine':pitchAndLineImg, 'pitchline': pitchLineImg} + for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg',debugImages[si]) + outputImWrite(f'{img_name}_pitchline.jpg', debugImages['pitchline']) + + + + imgMasked = getMaskedImageTimeSignature(image, beamMapImg, staffObjList, bar_height, img_name) + # outputImWrite(f'{img_name}_imgMasked.jpg', imgMasked) + # outputImWrite(f'{img_name}_tsContour.jpg', img2) + + CBounding = getCTimeSignature(image, imgMasked, staffObjList) + outputImWrite(f'{img_name}_CBounding.jpg', CBounding) + + Bounding4 = getTimeSignature4(image, imgMasked, staffObjList) + outputImWrite(f'{img_name}_4Bounding.jpg', Bounding4) + noteChunkList, horizontalGroupImg = getNoteChunks(image, noteGroupMap, beamMapImg, noteGroupVerticallyMerged) + # outputImWrite(f'{img_name}_beamContour.jpg',retimg) + outputImWrite(f'{img_name}_horizontalGroupImg.jpg',horizontalGroupImg) + + beamMapImg, barlineboxes, barlineQuart = findBarlines(image, beamMapImg, staffObjList, noteGroupStemMap, thres=0.8) # VARIABLE thres + outputImWrite(f'{img_name}_barlineQuart.jpg',barlineQuart) + + # barlineImages = filterBarlineBoxes(image, barlineboxes) + # outputImWrite(f'{img_name}_barlineFiltered.jpg', barlineImages) + + zz = image.copy() + bb,gg,_ = cv2.split(beamMapImg) + colors = [(190,120,0),(255,50,0),(50,240,0),(0,120,230),(0,0,255)] + for i in range(1,6): + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + + imwrite(f'SfnClefNoteBarlineRest.jpg', zz) + + colors = [(230,200,130),(230,130,100),(120,170,140),(235,176,113),(0,0,255)] + zz = image.copy() + for i in [1,2,3,5]: + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + ys,xs = np.where(image[:,:,1]<128) + zz[ys,xs] = (0,0,0) + i = 4 + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + outputImWrite(f'{img_name}_DotPrevious.jpg', zz) + imwrite(f'DotPrevious.jpg', zz) + + noteGroupVerticallyMerged, debugImages = assignDots(noteGroupVerticallyMerged,beamMapImg, image,bar_height,staffObjList) + # {'dotBox':imgbgr} + # for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + + restList, debugImages = assignRestDots(restList, beamMapImg, noteGroupStemMap, image, bar_height, staffObjList) + # {'dotRestBox':imgbgr} + # for si in debugImages.keys(): + # outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + + stemIdxMap, noteGroupVerticallyMerged, debugImages = assignSfnToNote(image, noteGroupMap, noteGroupVerticallyMerged,sfnClefMap,sfnClefList) + # {'assignedAccidentals':accidentalsImg} + for si in debugImages.keys(): + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + # current issue: + # far away ones can't be assigned -> do it in the 2nd round + # tuneRhythm(noteGroupMap, stemIdxMap, noteGroupVerticallyMerged, restMap,restList,sfnClefMap,sfnClefList,beamMapImg,staffObjList) + beamMapImg,noteGroupMap = extendNotegroupsToStaff(noteGroupMap, noteGroupVerticallyMerged,staffObjList,beamMapImg) + barList, barRanges, numBarsPerLine = constructBar(noteGroupMap, stemIdxMap, noteGroupVerticallyMerged, restMap,restList,sfnClefMap,sfnClefList,beamMapImg,staffObjList) + # maskImg, tsBoxes, tsBoxesFiltered, debugImages = createMask(barList, barRanges, staffObjList, image, beamMapImg) + for si in debugImages.keys(): + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + # saveBarToCsv(img_name, barList, desiredLengtdh=1) + # trackNo = 1 + # if img_wholename in is2: + # trackNo = 2 + # elif img_wholename in is5: + # trackNo = 5 + # elif img_wholename.startswith("quart"): + # trackNo = 4 + editBarTS(barList, config['tsChange'], imgIdx+1, numBarsPerLine) + barBreakPoints = tuneBarList(barList, numBarsPerLine) # modifies barList + trackNo = NUM_TRACK + for tr in range(NUM_TRACK): + wholeBarList[tr] += barList[tr] + # getAccidentalsChanges(barList) + score, scoreShifted, debugImages = exportXML(barList, trackNo, image, beamMapImg=beamMapImg, barsBreakPoints = barBreakPoints) + if len(allBarBreakPoints) == 0: + allBarBreakPoints+=barBreakPoints + else: + sumPrevBar = allBarBreakPoints[-1] + allBarBreakPoints+=[bp+sumPrevBar for bp in barBreakPoints] + with open(barList_path, "wb") as f: + pickle.dump(barList, f) + for si in debugImages.keys(): + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg', debugImages[si]) + score.write('musicxml', fp=f'{OUTPUT_BASE_FOLDER}/{img_name}.xml') + print(f"MusicXML written to '{OUTPUT_BASE_FOLDER}/{img_name}.xml'") + if len(np.unique(TRACK_SHIFT))>1: + scoreShifted.write('musicxml', fp=f'{OUTPUT_BASE_FOLDER}/s_{img_name}.xml') + print(f"MusicXML written to '{OUTPUT_BASE_FOLDER}/s_{img_name}.xml'") + outputImWrite(f'DEBUG_{img_name}.jpg', DEBUGIMG) + print(f'finishing parsing {img_name}') + + print('finishing all') + scoreWhole, scoreWholeShifted, _= exportXML(wholeBarList, NUM_TRACK,barsBreakPoints=allBarBreakPoints) + # scoreWhole, scoreWholeShifted, _= exportXML(wholeBarList, NUM_TRACK, beamMapList=allBeamMaps, beamMapRefList=beamRefList,lineNoList=lineNoList) + scoreWhole.write('musicxml', fp=f'{OUTPUT_BASE_FOLDER}/all_{img_name}.xml') + if len(np.unique(TRACK_SHIFT))>1: + scoreWholeShifted.write('musicxml', fp=f'{OUTPUT_BASE_FOLDER}/whole_s_{img_name}.xml') + print(f"MusicXML written to '{OUTPUT_BASE_FOLDER}/whole_s_{img_name}.xml'") + + print(f"MusicXML written to '{OUTPUT_BASE_FOLDER}/all_{img_name}.xml'") + with open(f"{base_folder}{piece_name}/{piece_name}_barList.pkl","wb") as f: + pickle.dump(wholeBarList, f) +# ''' + # TODO + # go through each staffline and get all elements on it: + # assign length (for triplets etc.) based on horizontal grouping + # if length adds to 1 or 2 -> keep it as it is + # if approx 1 or 2: go through each's + + + # current data structure documentation: + # noteChunkList: list of None|NoteChunks + # by noteChunkList[n].noteGroupIdxs you can get the Ids of them + # noteGroupMap, stemIdxMap <-> noteGroupVerticallyMerged + # noteGroupMap value == 0: no note, + # >0: is the noteGroupVerticallyMerged[idx] + # stemIdxMap value == -1: no noteBox + # >=0: is the index of noteGroupVerticallyMerged[idx].noteStemList[index] + # restMap <-> restList + # RestMap value == 0: no rest + # >0: is the restList[idx] + # sfnClefMap <-> sfnClefList + # sfnClefMap value == 0: no clef/sfn + # >0: is the sfnClefList[idx] + # beamMapImg: bb,gg,rr + # bb: the gradient beam image, 255 where there's beam, + # 254-2*stepSize*n: go how far down to beam + # 253-2*stepSize*n: go how far up to beam + # gg: 0 if there's nothing there + # 1 if it's place of a noteGroup object + # 2 if it's place of an accidentals + # 3 if it's place of a clef + # 4 if it's place of a barline + # 5 if it's place of a rest + # 6 if it's place of a noteGroup ornament? TODO not implemented yet + # rr: staff position map + staff number + how far to the bottom of staff + # x = 0~3 (total of 4): the position of the note (1~24, A is 12, C is 13) + # x = 4: the staffnum of the closest one (starting with 1 instead of 0) + # x = -1: how far pixel to the top of the staff (if it's in the staff range and 1 barheight above, else 0) + # x = -2: how far pixel to the bottom of the staff (if it's in the staff range and 1 barheight below, else 0) + # within the x of staff: the staff number + # if it contains anything in the staff it will be that, else it will + + +''' +NOTES +1. I've commented out the filters in part2.py +''' \ No newline at end of file diff --git a/pdf2musicXMLsq.py b/pdf2musicXMLsq.py new file mode 100644 index 0000000..01da427 --- /dev/null +++ b/pdf2musicXMLsq.py @@ -0,0 +1,1505 @@ +from typing import List +import numpy as np +import pandas as pd +import csv +import os +import json +import pickle +import itertools +import statistics + +from collections import defaultdict, Counter +from music21 import stream, note, metadata, chord, meter, clef, key, instrument +from scipy import stats + +from png2decode import png2decode +from utils import * +from tune_bar import tuneBar + + +BAR_MAX_GAP = 5 # if two "lines" are within this pixel then they are considered the same barline +DEBUGIMG = None +class ScoreMetaData: + # static + instruments: List[str] = [] + + def __init__(self, numInstrument: int, numLines: int, instrumentList: List[str]): + self.numInstrument = numInstrument + self.numLines = numLines + assert self.numLines%self.numInstrument == 0 + self.numTrack = self.numLines // self.numInstrument + self.trackRange = [(i*self.numInstrument, (i+1)*self.numInstrument-1) for i in range(self.numTrack)] + self.set_instruments(instrumentList) + + + def getTrackRange(self) -> List[Tuple[int,int]]: + return self.trackRange + + def getTrackXYRange(self, staffList:List[Staff]): + ranges = self.getTrackRange() + retRangeList = [] + for r in ranges: + start = r[0] + end = r[1] # included + retRangeList.append((staffList[start].left, staffList[start].right, staffList[start].ys[0], staffList[end].ys[-1])) + return retRangeList + + def getInstrumentEachTrack(self) -> List[List[str]]: + return [[i] for i in self.instruments] * self.numTrack + + # get the number of track that line belongs to + def getTrackForLineIdx(self, lineIdx: int) -> int: + for i, (start, end) in enumerate(self.trackRange): + if start <= lineIdx <= end: + return i + return -1 + + # get the line number of that line inside that track. + # let's say [3,6] are the 2nd group (inclusive), then + # fn(3) -> (1,0), 2nd group(count starts at 0), index 0 + # fn(6) -> (1,3), 2nd group, index 3 + def getTrackIdxForLineIdx(self, lineIdx: int) -> Tuple[int,int]: + for i, (start, end) in enumerate(self.trackRange): + if start <= lineIdx <= end: + return (i, lineIdx - start) + return (-1,-1) + + + # static + @classmethod + def set_instruments(cls, instrumentList: List[str]): + cls.instruments = instrumentList + + + @classmethod + def add_instrument(cls, instrument: str): + cls.instruments.append(instrument) + + @classmethod + def get_instruments(cls) -> List[str]: + return cls.instruments.copy() + +def parseCsvData(csv_path: str): + with open(csv_path) as f: + csvData = list(csv.reader(f)) + return csvData + +def findBarPosition(staffImgBinary: np.ndarray, tolerance, row_ratio:float = 0.7): + kernel = np.ones((1, 2*tolerance+1), dtype=np.uint8) + expanded = cv2.dilate(staffImgBinary.astype(np.uint8), kernel) + acc = np.sum(expanded, axis=0) + threshold = staffImgBinary.shape[0] * row_ratio + barPos = np.where(acc > threshold)[0] + return barPos + +def getBarsEachTrack(image:np.ndarray, beamMapImg:np.ndarray, staffList:List[Staff], tolerance:int = 20): + img = image.copy() + staffCenters = [sf.ys[2] for sf in staffList] + _,itemMap,_ = cv2.split(beamMapImg) + staffImgBinary = (itemMap == 4)[staffCenters,:] + barEachTrack = [] + for trkRange in pageMetadata.getTrackRange(): + staffStart = staffList[trkRange[0]].ys[0] + staffEnd = staffList[trkRange[1]].ys[-1] + barPos = findBarPosition(staffImgBinary[trkRange[0]:trkRange[1],:], tolerance) + img[staffStart:staffEnd, barPos] = (0,0,255) + barEachTrack += [barPos.tolist()] + imwrite(f"barForTracks{tolerance}.jpg", img) + return barEachTrack + + +def getAllObjectInEachLine( + noteGroupMap: np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup | None], + restMap: np.ndarray, + restList: List[Rest | None], + sfnClefMap: np.ndarray, + sfnClefList: List[Union[Accidentals, Clef, None]], + beamMapImg: np.ndarray, + staffList: List[Staff] + ): + _, objMap, _ = cv2.split(beamMapImg) + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + allItems = [] + for sf in staffList: + allItemInLine = [] + currX = sf.left + while currX < sf.right: + lineLst = np.unique(objMap[sf.ys[0]-sf.get_yOne():sf.ys[-1]+sf.get_yOne(), currX]).tolist() + if 0 in lineLst: + lineLst.remove(0) + if len(lineLst)>1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst) == 0 or 4 in lineLst: + currX += 1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf.ys[0]-sf.get_yOne():sf.ys[-1]+sf.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if (len(inMapId) == 1): + currentElementId = inMapId[0] + allItemInLine.append(currLst[currentElementId]) + currX = max(currX, currLst[currentElementId].boundingBox[2])+1 + else: + currX += 1 + allItems.append(allItemInLine) + return allItems + +def constructBar(noteGroupMap:np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup|None], + restMap: np.ndarray, + restList:List[Rest|None], + sfnClefMap:np.ndarray, + sfnClefList:List[Union[Accidentals,Clef, None]], + beamMapImg:np.ndarray, + staffList:List[Staff], + pageMetadata:ScoreMetaData, + barEachTrack:List[List[int]], + barChangeList:dict[str, tuple[int, int]] #(track, num),(TStop, TSbottom) + ): + numLines = len(staffList) + bb,gg,rr = cv2.split(beamMapImg) + barList:List[List[Bar]] = [[] for _ in range(numLines)] + numBarsEachLine:List[int] = [0 for _ in range(numLines)] + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + notFinishedBar = None + allRanges = [] + for barThisTrack in barEachTrack: + prevIdx = 0 + rangeThisTrack = [] + if len(barThisTrack) > 1: + while prevIdx < len(barThisTrack)-1: + if barThisTrack[prevIdx+1] - barThisTrack[prevIdx] > BAR_MAX_GAP: + rangeThisTrack.append((barThisTrack[prevIdx], barThisTrack[prevIdx+1])) + prevIdx += 1 + allRanges.append(rangeThisTrack) + + currTS = barChangeList.get('0,0') + for t in range(numLines): # trackNo + printedLineNo = t # the current line number + currBarList:List[Bar] = [] + sf0 = staffList[printedLineNo] + trackForThatLine = pageMetadata.getTrackForLineIdx(t) + ranges = allRanges[trackForThatLine] + isBar = barEachTrack[trackForThatLine] + + for ridx, rng in enumerate(ranges): + if barChangeList.get(f'{trackForThatLine},{ridx}'): + currTS = barChangeList.get(f'{trackForThatLine},{ridx}') + if currTS != [9,8]: + print(f'ridx: {ridx}, rng: {rng}') + if notFinishedBar is not None: + bar = notFinishedBar + notFinishedBar = None + else: + bar = Bar(currTS) + currX = rng[0] + while currX1: + for i in [1,5,3,2]: # noteGroup(1), rest(5), clef(3), accidentals(2) + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId) > 1 and typeId == 1: # if it's multiple notegroups in that line + # get the noteGroup that's closer to the center of the staff + yCenter = sf0.ys[2] + newInMapIdIdx = -1 + currSmallestDist = np.inf + for idid in range(0,len(inMapId)): + x0,y0,x1,y1 = currLst[inMapId[idid]].boundingBox + if abs((y1+y0)/2-yCenter) < currSmallestDist: + currSmallestDist = abs((y1+y0)/2-yCenter) + newInMapIdIdx = idid + inMapId = [inMapId[newInMapIdIdx]] + if len(inMapId)==1: + sanityCheck = True + if typeId == 3: # clef + currClef:Clef = sfnClefList[inMapId[0]] + _,yy0,_,yy1 = currClef.boundingBox + if yy1-yy0 < sf0.get_yOne_float()*3: + sanityCheck = False + if currClef.type ==0: + if yy00)[1] + # nextIdx = 0 + # if len(notfinishedBarStuff) > 0: + # nextIdx = np.max(np.unique(np.where(gg[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), rng[1]:]>0)[1])) + # if nextIdx>5: + # rng = (isBar[-1]+sf0.left+1, rng[1]+nextIdx) + # bar = Bar(currTS) + # currX = rng[0] + # while currX1: + # for i in [1,5,3,2]: + # if i in lineLst: + # lineLst = [i] + # break + # if len(lineLst)==0 or 4 in lineLst: + # currX+=1 + # else: + # typeId = lineLst[0] + # currMap = mapForMatching[typeId] + # currLst = listForMatching[typeId] + # inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + # if 0 in inMapId: + # inMapId.remove(0) + # if len(inMapId)==1: + # bar.addElement(currLst[inMapId[0]]) + # currX = currLst[inMapId[0]].boundingBox[2]+1 + # else: + # currX+=1 + # print("has more than 1 id") + # notFinishedBar = bar + barList[t] = currBarList + numBarsEachLine[t] = len(currBarList) + # in order of vln1's 1st line, 2nd line ... | vln2's 1st line, 2nd line ... + return barList,allRanges, numBarsEachLine + +# TODO: rotate the image at here? as long as all maps are rotated it should be fine +def stackItemVertically(image:np.ndarray, + barList: List[List[Bar]], + pageMetadata: ScoreMetaData, + staffList:List[Staff], + noteGroupVerticallyMerged: List[NoteGroup], + restList: List[Rest]): + noteRestMap = np.zeros((image.shape[0], image.shape[1]), dtype=np.int16) + for oneLine in barList: + for oneBar in oneLine: + for elem in oneBar.elementList: + if type(elem) == NoteGroup: + x0,y0,x1,y1 = elem.boundingBox + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0),(x1,y1),elem.indexNumber, -1) + elif type(elem) == Rest: + x0,y0,x1,y1 = elem.boundingBox + if elem.rhythm != -1: + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0),(x1,y1),-elem.indexNumber, -1) + img2 = image.copy() + img2[noteRestMap>0] = (0,0,255) + img2[noteRestMap<0] = (255,255,0) + imwrite("finalNoteRest.jpg", img2) + retImg = image.copy() + oneLineDist = staffList[0].get_yOne() + acrossLineNGID = 1 + for (xStart, xEnd, yStart, yEnd) in pageMetadata.getTrackXYRange(staffList): + currX = xStart + while currX < xEnd: + inLineIds = np.unique(noteRestMap[yStart:yEnd, currX]).tolist() + if inLineIds == [0]: + currX += 1 + continue + allElementLists:List[NoteGroup|Rest] = [] + allXCenters = [currX] + allXEnds = [currX] + for inLineId in inLineIds: + if inLineId == 0: + continue + if inLineId > 0: # note + currElem = noteGroupVerticallyMerged[inLineId] + elif inLineId < 0: # rest + currElem = restList[-inLineId] + allElementLists.append(currElem) + if currElem.boundingBox[2]-currElem.boundingBox[1] <= oneLineDist*2: + allXCenters.append((currElem.boundingBox[0]+currElem.boundingBox[2])//2) + allXEnds.append(currElem.boundingBox[2]) + xCenterAvg = sum(allXCenters)//len(allXCenters) + newInLineIdx = np.unique(noteRestMap[yStart:yEnd, xCenterAvg]).tolist() + if set(inLineIds) == set(newInLineIdx): + # current Center is the center of this whole noteGroup thingy + # !!! I'm gonna draw on the image for now but other things have to be done here + # cv2.rectangle(sfnClefImg, (x0,y0),(x1,y1), class_colors2[predict_idx],2,cv2.LINE_AA) + retImg = cv2.rectangle(retImg, (xCenterAvg, yStart), (xCenterAvg, yEnd), (255,100,0), 3, cv2.LINE_AA) + for elem in allElementLists: + x0,y0,x1,y1 = elem.boundingBox + retImg = cv2.rectangle(retImg, (x0,y0), (x1,y1), (255,255,0), -1, cv2.LINE_AA) + noteRestMap = cv2.rectangle(noteRestMap, (x0,y0), (x1,y1), 0, -1, cv2.LINE_AA) + elem.setAcrossLineNGID(acrossLineNGID) + acrossLineNGID += 1 + currX = max(max(allXEnds), currX)+1 + else: + currX = max(xCenterAvg+1, currX+1) + imwrite("stackingNotes.jpg", retImg) + return noteRestMap, retImg + +# originally we pass in a list of each track [vln1's bars: [bar1, bar2 ...], vln2's bars: [bar1, bar2 ...]] +# now we have each line differently +# return the breakPoint (aka which bar is the starting of next line) +def tuneBarList(barList:List[List[Bar]], numBarsPerTrackLine:List[int], ): + trackRange = pageMetadata.getTrackRange() + + for lineRangeForTrack in trackRange: + startIdx = lineRangeForTrack[0] + endIdx = lineRangeForTrack[1]+1 + emptyBarsIndexs = np.where(np.sum(np.array([[len(b.elementList) for b in oneTrack] for oneTrack in barList[startIdx:endIdx]]),axis=0)==0)[0].tolist() + emptyBarsIndexs.reverse() + for emptyBarsIndex in emptyBarsIndexs: + for i in range(startIdx, endIdx): + del barList[i][emptyBarsIndex] + qq = 0 + while emptyBarsIndex+1>sum(numBarsPerTrackLine[0:qq]): + qq+=1 + numBarsPerTrackLine[qq-1]-=1 + + # delete all elements that's ornament + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + bar.elementList = [ + elem for elem in bar.elementList + if not (isinstance(elem, NoteGroup) and all(s.isOrnament for s in elem.noteStemList)) + ] + # now all bars are suppose to be valid + for trackId, oneTrack in enumerate(barList): + for barId, bar in enumerate(oneTrack): + origLengths = bar.getRhythmList() + newLengths = [None]*len(origLengths) + if bar.getTotalBeat() == Fraction(bar.ts[0],bar.ts[1]): + newLengths = [None]*len(origLengths) + elif bar.getTotalBeat() == 0: + continue # will be later added a rest + else: + newLengths = tuneBar(bar.getRestNg(), bar.ts) + reassignedLengths = [origLengths[i] if newLengths[i] is None else newLengths[i] for i in range(len(newLengths))] + bar.reassignLength(origLengths, newLengths) + if bar.getTunedTotalBeat() != Fraction(bar.ts[0], bar.ts[1]): + print("bar doesn't have right length") + + for lineii, oneTrack in enumerate(barList): + for barii, bb in enumerate(oneTrack): + if bb.getTunedTotalBeat() != Fraction(bb.ts[0],bb.ts[1]): + print(f"bar at {lineii},{barii} has total beat {bb.getTotalBeat()}") + barBreakPoints = [0] + list(itertools.accumulate(numBarsPerTrackLine)) + return barBreakPoints + +def assignBarlistInstrument(barList:List[List[Bar]], pageMetadata:ScoreMetaData): + def getEmptyBarDefaultList(barTrack: List[Bar]): + return [Bar(b.ts) for b in barTrack] + def build_grouped_lookup(instrument_list): + grouped = defaultdict(list) + for item in instrument_list: + if ":" in item: + base, suffix = item.split(":", 1) + key_suffix = ":" + suffix + else: + base = item + key_suffix = "" + base_name = base.split("__")[0] + key = base_name + key_suffix + grouped[key].append(item) + return dict(grouped) + + def build_instrument_lookup_no_section(instrument_list): + grouped = defaultdict(list) + for item in instrument_list: + base = item.split(":", 1)[0] + base_name = base.split("__")[0] + grouped[base_name].append(item) + return dict(grouped) + def getInstruments(instrumentLookup: dict, instrumentLookupNoSec: dict, ins: str): + if instrumentLookup.get(ins): + return instrumentLookup.get(ins) + if instrumentLookupNoSec.get(ins): + return instrumentLookupNoSec.get(ins) + return [ins] + instrumentTrack = pageMetadata.getInstrumentEachTrack() + trackRange = pageMetadata.getTrackRange() + retBarList = dict() + numBarsTotal = 0 + for trackLineIdx, currTrackRange in enumerate(trackRange): + startIdx = currTrackRange[0] + endIdx = currTrackRange[1]+1 + instrumentList = ScoreMetaData.get_instruments() + if trackLineIdx == 0: + for ins in instrumentList: + retBarList[ins] = [] + instrumentLookup = build_grouped_lookup(instrumentList) + instrumentLookupNoSec = build_instrument_lookup_no_section(instrumentList) + numBarsTotal += len(barList[startIdx]) + for i in range(startIdx, endIdx): + instrumentInThisLineList = [getInstruments(instrumentLookup,instrumentLookupNoSec,ins) for ins in instrumentTrack[i]] + instrumentInThisLine = [item for sublist in instrumentInThisLineList for item in sublist] + print(f"instrument in this line: {instrumentInThisLine}") + for ins in instrumentInThisLine: + if not ins in instrumentList: + print(f'WARNING: instrument {ins} not in list') + continue + if trackLineIdx == 0: + retBarList[ins] = list(barList[i]) + else: + if len(retBarList[ins]) == numBarsTotal: + print(f"double instrument: {ins}") + N = len(barList[i]) + retBarList[ins][-N:] = barList[i] + else: + retBarList[ins] += barList[i] + if ins in instrumentList: + instrumentList.remove(ins) + else: + print(f"instrument {ins} not in list") + for resIns in instrumentList: + if trackLineIdx == 0: + retBarList[resIns] = getEmptyBarDefaultList(barList[startIdx]) + else: + retBarList[resIns] += getEmptyBarDefaultList(barList[startIdx]) + assert len(np.unique([len(retBarList[b]) for b in retBarList])) == 1 + barListPerInstrument = [retBarList[k] for k in list(retBarList.keys())] + instrumentEachLine = list(retBarList.keys()) + return retBarList, barListPerInstrument, instrumentEachLine + +# return (1) ksMat for each track (exactly as how it's presented visually), metric of [number of lines, bars] +# (2) the keySignature of each track (concert pitch) as an array +def getKSMatAndKSList(pageMetadata: ScoreMetaData, barList: List[List[Bar]], toneHelper: ToneHelper): + def checkAndAssignKS( + prevIsAcc: bool, + new_elements: List[Accidentals|Clef|Rest|NoteGroup|KeySignature], + accumulatedAccidentals: List[KeySignature], + trackGroupNo: int, + lineOfThatTrackNo: int, + barNo: int, + ksBarMatForEachTrack: List[np.ndarray]): + if prevIsAcc: + newKS = KeySignature(accumulatedAccidentals) + new_elements.append(newKS) + ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] = newKS.getSharpFlatInt() + accumulatedAccidentals = [] + return new_elements, accumulatedAccidentals, ksBarMatForEachTrack + # return the list of concert pitch keySignature for each bar (inf: no signature) + def modeKSForAllTrack(ksMat:np.ndarray): + result = [] + prev = 0 + for col in ksMat.T: + finite_vals = col[~np.isinf(col)] # remove infs + if finite_vals.size > 0: + values, counts = np.unique(finite_vals, return_counts=True) + prev = values[np.argmax(counts)] + result.append(prev) + return np.array(result) + oneInstrumentEachLine: List[str] = [i[0] for i in pageMetadata.getInstrumentEachTrack()] + tone: List[str] = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in oneInstrumentEachLine] + trackShiftEachLine = [] + for idx in range(len(oneInstrumentEachLine)): + currTone: str = tone[idx] + currIns: str = oneInstrumentEachLine[idx] + if isInstrumentIncluded(currIns): + trackShiftEachLine.append(-toneHelper.getKsShift(currTone)) + else: + trackShiftEachLine.append(-np.inf) + ksBarMatForEachTrack = [] + ksBarShiftForEachTrack = [] + trackRanges = pageMetadata.getTrackRange() + for trackRange in trackRanges: + numTrack = trackRange[1]-trackRange[0] + 1 # inclusive of the start and end + numBars = len(barList[trackRange[0]]) + ksBarMat = np.ones((numTrack, numBars))*np.inf + ksBarMatForEachTrack.append(ksBarMat) + ksBarShift = np.array(trackShiftEachLine[trackRange[0]:trackRange[1]+1])[:, None] * np.ones(numBars) + ksBarShiftForEachTrack.append(ksBarShift) + + for (lineNo, oneLine) in enumerate(barList): + # the line #lineOfThatTrackNo of the track #trackGroupNo + trackGroupNo, lineOfThatTrackNo = pageMetadata.getTrackIdxForLineIdx(lineNo) + for (barNo, oneBar) in enumerate(oneLine): + accumulatedAccidentals = [] + new_elements = [] + prevIsAcc = False + for elem in oneBar.elementList: + if isinstance(elem, Accidentals) and elem.isKeySignature: + accumulatedAccidentals.append(elem) + prevIsAcc = True + else: + new_elements, accumulatedAccidentals, ksBarMatForEachTrack = checkAndAssignKS(prevIsAcc, new_elements, accumulatedAccidentals, trackGroupNo, lineOfThatTrackNo, barNo, ksBarMatForEachTrack) + new_elements.append(elem) + prevIsAcc = False + new_elements, accumulatedAccidentals, ksBarMatForEachTrack = checkAndAssignKS(prevIsAcc, new_elements, accumulatedAccidentals, trackGroupNo, lineOfThatTrackNo, barNo, ksBarMatForEachTrack) + # assign the basic to 0 if there's no changes + if barNo == 0 and ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] == np.inf: + ksBarMatForEachTrack[trackGroupNo][lineOfThatTrackNo][barNo] = 0 + oneBar.elementList = new_elements + # now ksBarMatForEachTrack is exactly what we see on the score + ksEachTrack = [] + ksMatEachTrackSameAsVisual = [] + for idx in range(len(ksBarMatForEachTrack)): + ksBarMatShifted = ksBarMatForEachTrack[idx]-ksBarShiftForEachTrack[idx] + modeKSArray = modeKSForAllTrack(ksBarMatShifted) + ksEachTrack.append(modeKSArray) + ksMatEachTrackSameAsVisual.append(np.tile(modeKSArray, (ksBarMatForEachTrack[idx].shape[0],1)) + ksBarShiftForEachTrack[idx]) + return ksMatEachTrackSameAsVisual, ksEachTrack, barList +def readCsvAndEditViolin(csvPath: str): + df = pd.read_csv(csvPath) + # Ensure part1 is nullable int + if 'part1' in df.columns: + df['part1'] = df['part1'].astype('Int64') + else: + df['part1'] = pd.Series([pd.NA]*len(df), dtype="Int64") + n = len(df) + for i in range(n): + if df.at[i, 'ins1'] == 'viola': + if i - 2 >= 0: + cond = ( + pd.notna(df.at[i-2, 'ins1']) and df.at[i-2, 'ins1'] == 'violin' and pd.notna(df.at[i-2, 'part1']) and df.at[i-2, 'part1'] == 1 and + pd.notna(df.at[i-1, 'ins1']) and df.at[i-1, 'ins1'] == 'violin' and pd.notna(df.at[i-1, 'part1']) and df.at[i-1, 'part1'] == 2 + + ) + if not cond: + df.at[i-2, 'ins1'] = 'violin' + df.at[i-2, 'part1'] = 1 + df.at[i-1, 'ins1'] = 'violin' + df.at[i-1, 'part1'] = 2 + df = df.copy() + # Ensure nullable int + df['part1'] = df['part1'].astype('Int64') + n = len(df) + for i in range(n): + if pd.notna(df.at[i, 'part1']) and df.at[i, 'part1'] == 1: + # Check if next row exists and is matching part 2 + if not ( + i + 1 < n and + df.at[i+1, 'ins1'] == df.at[i, 'ins1'] and + df.at[i+1, 'part1'] == 2 + ): + df.at[i, 'part1'] = pd.NA + return df + +def exportXML(barList:List[List[Bar]], + instrumentEachLine: List[str], + toneHelper: ToneHelper, + instrument_dict: dict, + ksListAllTrack: np.ndarray, # array([-4., inf, inf, inf, inf, inf, 2, inf, inf]) + image:np.ndarray|None = None, + imgName: str = "Title"): + + def getTrackKsAndNoteShift(toneHelper: ToneHelper, instrumentList: List[str]) -> Tuple[List[int|None], List[int]]: + tone = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in instrumentList] + trackKsShift = [] + trackNoteShift = [] + for idx, tn in enumerate(tone): + ksShift, noteShift = toneHelper.getKsAndNoteShift(tn) + if isInstrumentIncluded(instrumentList[idx]): + trackKsShift.append(-ksShift) + else: + trackKsShift.append(None) + trackNoteShift.append(noteShift) + return trackKsShift, trackNoteShift + numTrack = len(instrumentEachLine) + # Stem's label -> rhythm meaning + # class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + if image is None: + debugXMLImg = None + else: + debugXMLImg = image.copy() + def initializeScore(instrumentList: List[str], title): + score = stream.Score() + score.metadata = metadata.Metadata() + score.metadata.title = title + part = [] + for instr_name in instrumentList: + p = stream.Part() + # Assign instrument + instr_obj = get_instrument_from_string(instr_name) + p.insert(0, instr_obj) + p.partName = instr_name + p.partAbbreviation = instr_name + part.append(p) + return score, part + score, part = initializeScore(instrumentEachLine, imgName) + score2, part2 = initializeScore(instrumentEachLine, f"{imgName} Shifted") + keyName = ['C','D','E','F','G','A','B'] + keyCharFlat = ['C','D-','D','E-','E','F','G-','G','A-','A','B-','B'] + keyCharSharp = ['C','C#','D','D#','E','F','F#','G','G#','A','A#','B'] + currentClef = [None]*numTrack + sharps = [3,0,4,1,5,2,6] # F C G D A E B + flats = [6,2,5,1,4,0,3] # B E A D G C F + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + trksOriginal = [[] for _ in range (numTrack)] # for tracking all original notes we see + trksShifted = [[] for _ in range (numTrack)] # for tracking all shifted notes + + # trackKsShift will be None for Timpani, Horn and Trumpet + # # trackNoteShift works for everything except for Timpani + trackKsShift, trackNoteShift = getTrackKsAndNoteShift(toneHelper, instrumentEachLine) + + cleanedInstrumentList = [s.split('__')[0].split(':')[0] for s in instrumentEachLine] + clefOptionEachLine = [instrument_dict.get(instr, [1,0,-1,-2]) for instr in cleanedInstrumentList] + + def setKS(ks:float, trkNo): + ks = int(ks) + nonlocal ksSharp + nonlocal ksFlat + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def setKSNeutral(Oriks:float, trkNo, trackShift): + Oriks = int(Oriks) + nonlocal ksSharp + nonlocal ksFlat + ks = Oriks+trackShift + if ks>0: + ksSharp[trkNo] = [keyName[i] for i in [sharps[q] for q in range(ks)]] + ksFlat[trkNo] = set() + else: + ksFlat[trkNo] = [keyName[i] for i in [flats[q] for q in range(-ks)]] + ksSharp[trkNo] = set() + def parseClefOne(elem:Clef, lineNo:int): + nonlocal currentClef + currentClef[lineNo%numTrack] = elem.type + return elem.type + def getClefFromType(clefType:int): + clf = clef.TrebleClef() + if clefType == 1: + clf = clef.TrebleClef() + elif clefType == 0: + clf = clef.AltoClef() + elif clefType == -1: #-1 + clf = clef.BassClef() + elif clefType == -2: + clf = clef.TenorClef() + return clf + def calculatePitch(inputPitch:str): + outputNum = keyCharFlat.index(inputPitch[0])+12*(int(inputPitch[-1])+1) + if len(inputPitch)==3: + if inputPitch[1] == '#': + outputNum+=1 + elif inputPitch[1] == '-' : + outputNum-=1 + return outputNum + def pitchListShift(inputPitchList:List[str], shift: int, sharp = True): # shift: how many half notes + returnList = [] + for pitch in inputPitchList: + pitchNum = calculatePitch(pitch) + pitchNum = pitchNum + shift + returnList.append(pitchNum) + referenceList = keyCharFlat + if sharp: + referenceList = keyCharSharp + for idx,pitchNo in enumerate(returnList): + clefNum = pitchNo//12-1 + pitchName = referenceList[pitchNo%12] + returnList[idx] = pitchName + str(clefNum) + return returnList + def parseNoteGroupShift(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, flatSharp, linNo, noteValShift): + # trkShift: + # 0 if original: -2, new: -2 (two flats), + # 1 if original: -2, new: -1 + # flatSharp: how many flats/sharp, -2: two flats + # flatSharp = 2, trkShift = 0: (-2), + # flatSharp = 2, trkShift = 1: (-1) + # ksShift: + # if original key signature is -2, ksShift is 1: -> actually it's -1 (the key signature we actually hear) + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1 or currKey in flatSet: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen0) + trksShifted[linNo].append(keyShiftedList) + if len(keyShiftedList) > 1: + return flatSet, sharpSet, chord.Chord(keyShiftedList, quarterLength = currLength*4) + elif len(keyShiftedList) == 1: + return flatSet, sharpSet, note.Note(keyShiftedList[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None + # actualPitch, 0: B4, 1: C5, 2: D5 + + def parseNoteGroup(elem:NoteGroup, flatSet, sharpSet, naturalSet, currClef, linNo, trkShift = 0): + keyLst = [] + currLength = 1 + regNoteCount = 0 + def setRemove(currSet, currElm): + if currElm in currSet: + currSet.remove(currElm) + return currSet + for stem in elem.noteStemList: + if not stem.isOrnament: + regNoteCount+=1 + else: + continue + actualPitch = stem.pitchSoprano + if currClef == 0: #viola + actualPitch -= 6 + elif currClef == -1: #cello + actualPitch -= 12 + elif currClef == -2: #tenor + actualPitch -= 8 + currKeyName = keyName[(actualPitch-1)%7] + currKey = currKeyName+str((actualPitch-1)//7+5) + if stem.accidentals is not None: # it has keySignature + sharpSet = setRemove(sharpSet, currKey) + naturalSet = setRemove(naturalSet, currKey) + flatSet = setRemove(flatSet, currKey) + if stem.accidentals == -1: + flatSet.add(currKey) + currKey = currKey[0]+'-'+currKey[1] + elif stem.accidentals == 1 or currKey in sharpSet: + sharpSet.add(currKey) + currKey = currKey[0]+'#'+currKey[1] + else: # stem.accidentals == 0: + naturalSet.add(currKey) + else: + if currKey in naturalList: + currKey = currKey + elif currKey in flatSet or currKeyName in ksFlat[linNo]: + currKey = currKey[0]+'-'+currKey[1] + elif currKey in sharpSet or currKeyName in ksSharp[linNo]: + currKey = currKey[0]+'#'+currKey[1] + # llen = float(Fraction(class_names[stem.rhythm])) + # if stem.hasdot: + # llen = llen*1.5 + # if llen 1: + keyLst = list(set(keyLst)) + for k in keyLst: + if k[-1] == '-': + keyLst.remove(k) + keyLst.append(k[:-1]+'4') + return flatSet, sharpSet, chord.Chord(keyLst, quarterLength = currLength*4) + elif len(keyLst) == 1: + for k in keyLst: + if k[-1] == '-': + keyLst.remove(k) + keyLst.append(k[:-1]+'4') + return flatSet, sharpSet, note.Note(keyLst[0], quarterLength=currLength*4) + else: + return flatSet, sharpSet, None # ornament + # actualPitch, 0: B4, 1: C5, 2: D5 + def parseRest(elem:Rest): + restLength = float(elem.tunedLength) + if restLength>0: + # restLength = float(Fraction(restClassNames[elem.rhythm])) + # if elem.hasdot: + # restLength = restLength*1.5 + return note.Rest(quarterLength=restLength*4) + else: + pass + # print("setting rest to full") + # return note.Rest(quarterLength=4) + numBars = len(barList[0]) + clefMat = np.ones((numTrack, numBars))*np.inf + currentClef = [None]*numTrack + for currBarNumber in range(numBars): + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + if len(clefOptionEachLine[lineNo]) == 1: + clefMat[lineNo, currBarNumber] = clefOptionEachLine[lineNo][0] + else: + currBar = barList[lineNo][currBarNumber] + for elem in currBar.elementList: + if type(elem) == Clef: + newClef = parseClefOne(elem, lineNo) + if newClef in clefOptionEachLine[lineNo]: + clefMat[lineNo, currBarNumber] = newClef + if clefMat[lineNo, currBarNumber] == np.inf: + if currBarNumber == 0: + clefMat[lineNo, currBarNumber] = clefOptionEachLine[lineNo][0] + else: + clefMat[lineNo, currBarNumber] = clefMat[lineNo, currBarNumber-1] + global DEBUGIMG + ksListAllTrackNoInf = ksListAllTrack.copy() + for i in range(1, numBars): + if np.isinf(ksListAllTrackNoInf[i]): + ksListAllTrackNoInf[i] = ksListAllTrackNoInf[i - 1] + ksBarMatNeutral = np.tile(ksListAllTrackNoInf, (numTrack,1)) + ksBarMatNeutral = ksBarMatNeutral.astype(int) + trackShiftInf = [t if t is not None else np.inf for t in trackKsShift] + ksBarMatNew = ksBarMatNeutral + np.tile(np.array(trackShiftInf),(numBars,1)).T + # if we want to replace it then + ksBarMatNeutral[np.isinf(ksBarMatNew)] = 0 + ksBarMatNew[np.isinf(ksBarMatNew)] = 0 + ksBarMatNew = ksBarMatNew.astype(int) + clefMat = clefMat.astype(int) + tssList = [b.ts for b in barList[0]] + for currBarNumber in range(numBars): # how many bars each line + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): # each track + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNew[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + elif tssList[currBarNumber]!=tssList[currBarNumber-1]: + measure.append(meter.TimeSignature(f'{currBar.ts[0]}/{currBar.ts[1]}')) + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNew[lineNo, currBarNumber-1]: + setKS(ks, lineNo) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + else: + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroup(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + lineNo, + trkShift=0) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part[lineNo%numTrack].append(measure) + for p in part: + score.append(p) + ''' + # Part 2: with shift + ksBarMatNeutral + ksSharp = [set() for _ in range(numTrack)] + ksFlat = [set() for _ in range(numTrack)] + for currBarNumber in range(numBars): # for the new one shifted + barNumber = currBarNumber+1 + for lineNo in range(len(barList)): + currBar = barList[lineNo][currBarNumber] + measure = stream.Measure(number=barNumber) + # barNumber = barNumber+1 + flatList = set() #put here because reset in measures + sharpList = set() + naturalList = set() + clefType = clefMat[lineNo, currBarNumber] + ks = ksBarMatNeutral[lineNo, currBarNumber] + if currBarNumber == 0: + measure.append(getClefFromType(clefType)) + setKSNeutral(ks, lineNo, ks) + measure.append(key.KeySignature(ks)) + elif clefType != clefMat[lineNo, currBarNumber-1]: + measure.append(getClefFromType(clefType)) + elif ks != ksBarMatNeutral[lineNo, currBarNumber-1]: + setKSNeutral(ks, lineNo, ks) + measure.append(key.KeySignature(ks)) + if currBar.getTunedTotalBeat() == 0: + measure.append(note.Rest(quarterLength = currBar.ts[0]/currBar.ts[1]*4)) + for elem in currBar.elementList: + if type(elem) == NoteGroup: + flatList, sharpList, currNote = parseNoteGroupShift(elem, + flatList, + sharpList, + naturalList, + clefMat[lineNo, currBarNumber], + ks, + lineNo, + trackNoteShift[lineNo]) + if currNote is not None: + measure.append(currNote) + else: + print() + elif type(elem) == Rest: + currRest = parseRest(elem) + if currRest is not None: + measure.append(currRest) + part2[lineNo%numTrack].append(measure) + for p in part2: + score2.append(p) + ''' + return score, {'ksAssigned':debugXMLImg} + +def numberToString(num: int, strLen: int = 3): + stringNum = str(num) + strAppend = strLen-len(stringNum) + return '0'*strAppend + stringNum + +def getTrackKsAndNoteShift(toneHelper: ToneHelper, instrumentList: List[str]) -> Tuple[List[int|None], List[int]]: + tone = [ins.split(':')[1] if len(ins.split(':')) > 1 else '' for ins in instrumentList] + trackKsShift = [] + trackNoteShift = [] + for idx, tn in enumerate(tone): + ksShift, noteShift = toneHelper.getKsAndNoteShift(tn) + if isInstrumentIncluded(instrumentList[idx]): + trackKsShift.append(-ksShift) + else: + trackKsShift.append(None) + trackNoteShift.append(noteShift) + return trackKsShift, trackNoteShift + +# time signatures +def getMeasuresEachStaff(image: np.ndarray, beamMapImg: np.ndarray, staffList: List[Staff], barEachTrack:List[List[int]], trackRange: List[Tuple[int,int]]): + allRanges = [] + for barThisTrack in barEachTrack: + prevIdx = 0 + rangeThisTrack = [] + if len(barThisTrack) > 1: + while prevIdx < len(barThisTrack)-1: + if barThisTrack[prevIdx+1] - barThisTrack[prevIdx] > BAR_MAX_GAP: + rangeThisTrack.append((barThisTrack[prevIdx], barThisTrack[prevIdx+1])) + prevIdx += 1 + allRanges.append(rangeThisTrack) + retList = [] + for trackIdx, track in enumerate(trackRange): + start = track[0] + end = track[1]+1 + for i in range(start, end): + sf = staffList[i] + retList.append([[rng[0], rng[1], sf.ys[0], sf.ys[1]] for rng in allRanges[trackIdx]]) + return retList + + img = image.copy() + # 第一維:哪一行 staff (長度等於 len(staffList)) + allStavesMeasures = [[] for _ in range(len(staffList))] + + # 取得類別 Map 並只關注小節線類別 (4) + _, itemMap, _ = cv2.split(beamMapImg) + staffCenters = [sf.ys[2] for sf in staffList] + staffImgBinary = (itemMap == 4)[staffCenters, :] + + # 利用 TrackRange 偵測,因為同一個 Track 的小節線通常是垂直對齊的 + for trkRange in pageMetadata.getTrackRange(): + staves_in_track = range(trkRange[0], trkRange[1] + 1) + + # 投影判定小節線位置 + barSum = np.sum(staffImgBinary[trkRange[0]:trkRange[1]+1, :], axis=0) + numStaves = len(staves_in_track) + barPos = np.where(barSum > numStaves * 0.7)[0] + + if len(barPos) > 0: + # --- 1. 篩選小節線:連續像素內 (<=5) 僅保留最右邊的一個值 --- + barLinesX = [] + if len(barPos) > 0: + temp_group_max = barPos[0] + for i in range(1, len(barPos)): + if barPos[i] - barPos[i-1] <= BAR_MAX_GAP: + temp_group_max = barPos[i] # 持續更新,保留最右邊 + else: + barLinesX.append(temp_group_max) + temp_group_max = barPos[i] + barLinesX.append(temp_group_max) + + # --- 2. 根據小節線生成「小節 (Measures)」 --- + # 如果有 N 條線 (barLinesX),產生 N-1 個小節 + if len(barLinesX) >= 2: + for m_idx in range(len(barLinesX) - 1): + m_left = barLinesX[m_idx] + m_right = barLinesX[m_idx+1] + + # 分配給該 Track 裡的每一行 Staff + for s_idx in staves_in_track: + target_staff = staffList[s_idx] + top = target_staff.ys[0] + bottom = target_staff.ys[-1] + + # 建立小節 Bounding Box [left, right, top, bottom] + measure_bbox = [int(m_left), int(m_right), int(top), int(bottom)] + allStavesMeasures[s_idx].append(measure_bbox) + + # 視覺化:畫出小節範圍 (用藍色框表示小節) + cv2.rectangle(img, (m_left, top), (m_right, bottom), (255, 0, 0), 1) + + cv2.imwrite("measures_detected.jpg", img) + return allStavesMeasures + +def detect_time_signatures(model_path: str, img_path: str, imgsz: int = 1792, conf: float = 0.5) -> List[TimeSignature]: + from ultralytics import YOLO + time_signatures = [] + + model = YOLO(str(model_path)) + results = model.predict( + source=str(img_path), + imgsz=imgsz, + conf=conf, + save=False, + verbose=False + ) + + r = results[0] + if r.boxes is not None and len(r.boxes) > 0: + clss = r.boxes.cls.cpu().tolist() + confs = r.boxes.conf.cpu().tolist() + xyxys = r.boxes.xyxy.cpu().tolist() + + for i in range(len(clss)): + cls_id = int(clss[i]) + conf_val = float(confs[i]) + x1, y1, x2, y2 = xyxys[i] + bbox = (int(x1), int(y1), int(x2), int(y2)) + ts_obj = TimeSignature(yolo_class=cls_id, bbox=bbox, confidence=conf_val) + time_signatures.append(ts_obj) + + return time_signatures + +def map_time_signatures_to_score(time_signature_list, staffList, allStavesMeasures, allItemInScore, imgResizeRatio = 1): + """ + 將 TimeSignature 物件映射到對應的 Staff 和 Measure。 + """ + for ts in time_signature_list: + # if not ts.isValid(): + # continue + + tx1, ty1, tx2, ty2 = [int(s*imgResizeRatio) for s in ts.getBbox()] + + ts_cx = (tx1 + tx2) / 2 # 中心 X + ts_cy = (ty1 + ty2) / 2 # 中心 Y + ts_h = ty2 - ty1 # bbox 高度 + + # --- 規則 1: 縱向尋找最靠近的 staff --- + best_staff_idx = -1 + min_dist = float('inf') + + for s_idx, staff in enumerate(staffList): + # 計算該 staff 的中心 Y (五條線的平均值) + staff_cy = sum(staff.ys) / len(staff.ys) + dist = abs(ts_cy - staff_cy) + + if dist < min_dist: + min_dist = dist + best_staff_idx = s_idx + + # 檢查垂直相差距離是否大過本身 bbox 高度 + if best_staff_idx == -1 or min_dist > ts_h: + ts.setValid(False) + continue + + ts.setstaffline(best_staff_idx) + + # --- 規則 2: 水平尋找小節 (Measure) --- + measures = allStavesMeasures[best_staff_idx] + found_bar_idx = -2 # 預設未找到 + + # 檢查是否落在某個小節內 + for m_idx, m_bbox in enumerate(measures): + mx1, mx2, my1, my2 = m_bbox + if mx1 <= ts_cx <= mx2: + found_bar_idx = m_idx + break + + # 如果沒在小節內,檢查是否在最後一個小節的右邊 + if found_bar_idx == -2: + last_mx2 = measures[-1][1] # 最後一個小節的 x2 + if ts_cx > last_mx2: + found_bar_idx = -1 + else: + # 既不在小節內,也不在右邊(可能在第一小節左邊邊緣外) + ts.setValid(False) + continue + + ts.setBarLoc(found_bar_idx) + + # --- 規則 3: 檢查小節內的 Rest 和 NoteGroup --- + # 如果 barLoc 為 -1 (在最右邊之外),通常不具備音樂意義上的音符檢查需求,可視情況跳過或判定無效 + if found_bar_idx == -1: + # 依據一般邏輯,拍號不應出現在所有音符之後的最右側,建議設為無效 + ts.setValid(False) + continue + + # 獲取該 staff 的所有物件 + staff_items = allItemInScore[best_staff_idx] + mx1, mx2, _, _ = measures[found_bar_idx] + + is_invalid_by_context = False + for item in staff_items: + # 只考慮 Rest 和 NoteGroup (透過類別名稱判斷) + class_name = item.__class__.__name__ + if class_name in ["Rest", "NoteGroup"]: + ix1, iy1, ix2, iy2 = item.boundingBox + item_cx = (ix1 + ix2) / 2 + + # 判斷該物件是否屬於當前小節 (中心在小節範圍內) + if mx1 <= item_cx <= mx2: + # 如果物件的中心在拍號中心的左邊 -> 拍號位置錯誤 + if item_cx < ts_cx: + is_invalid_by_context = True + break + + if is_invalid_by_context: + ts.setValid(False) + continue + +def map_to_track(a, trackList): + for i, (start, end) in enumerate(trackList): + if start <= a <= end: + return i + return None # in case a doesn't fall into any range +def prepareTSBarChangeList(data, trackList): + grouped = defaultdict(list) + + # Group values + for (a, b), value in data: + track_index = map_to_track(a, trackList) + key = (track_index, b) + grouped[key].append(value) + + result = {} + + # Compute most common per group + for key, values in grouped.items(): + most_common, common_count = Counter(values).most_common(1)[0] + if 'c' in most_common: + most_common = '4,4' + currentTrack = key[0] + if common_count > (trackList[currentTrack][1] - trackList[currentTrack][0]+1)* 0.5: + result[key] = list(map(int, most_common.split(','))) + + # Find the "last" group based on sorted (track_index, b) + if result: + last_key = sorted(result.keys())[-1] + last_value = result[last_key] + else: + last_value = None + + # Convert keys to "x,y" + formatted_result = { + f"{k[0]},{k[1]}": v for k, v in result.items() + } + + return formatted_result, last_value +def clearExtraMapping(noteGroupMap: np.ndarray, + stemIdxMap: np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup | None], + restMap: np.ndarray, + restList: List[Rest | None], + sfnClefMap: np.ndarray, + sfnClefList: List[Union[Accidentals, Clef, None]], + beamMapImg: np.ndarray, + staffList: List[Staff], + dataDict, + pageMetadata: ScoreMetaData + ): + rangeInPair = [0] + trackRange = pageMetadata.getTrackRange() + for trk in trackRange: + start, end = trk + sf0 = staffList[start] + rangeInPair.append(sf0.ys[0]-int(sf0.get_yOne_float()*5)) + sf0 = staffList[end] + rangeInPair.append(sf0.ys[-1]+int(sf0.get_yOne_float()*5)) + pageheight = stemIdxMap.shape[0] + rangeInPair.append(pageheight) + pairs = list(zip(rangeInPair[::2], rangeInPair[1::2])) + for currMap in [noteGroupMap, stemIdxMap, restMap, sfnClefMap, beamMapImg]: + for (st,ed) in pairs: + if st<0 or ed<0 or st>=pageheight or ed>=pageheight: + continue + currMap[st:ed,:] = currMap[0,0] + for ddKey in dataDict: + for (st,ed) in pairs: + dataDict[ddKey][st:ed,:] = dataDict[ddKey][0,0] + return noteGroupMap, stemIdxMap,noteGroupVerticallyMerged, restMap, restList, sfnClefMap, sfnClefList, beamMapImg, staffList,dataDict + +if __name__ == '__main__': + noteGroupMap: np.ndarray + stemIdxMap: np.ndarray + noteGroupVerticallyMerged: List[NoteGroup | None] + restMap: np.ndarray + restList: List[Rest | None] + sfnClefMap: np.ndarray + sfnClefList: List[Union[Accidentals, Clef, None]] + beamMapImg: np.ndarray + staffList: List[Staff] + rootFolder = "sq_dataset" + sheetName = 'issue' + scoreInstruments = ['violin__1','violin__2','viola','cello'] + prevBarTS = [4,4] + lenString = 3 + runWholeModel = False + fullBarList = [[] for _ in range(len(scoreInstruments))] + fullksListAllTrack = np.array([]) + clearExtra = True # for piano quartet etc. if there's different size of lines + packedImg = True + for number in range(1,2): #(51,53): + imgName = rf"{sheetName}_{number}" + imgPath = rf"{rootFolder}\{sheetName}\imgs\{sheetName}_{number}\{sheetName}_{number}.png" + pklPath = rf"{rootFolder}\{sheetName}\imgs\{sheetName}_{number}\{sheetName}_{number}.pkl" + scorePath = rf"{rootFolder}\{sheetName}\xmls\{sheetName}_{number}.musicxml" + scoreShiftedPath = rf"{rootFolder}\{sheetName}\xmls\{sheetName}_{number}_shifted.musicxml" + if not os.path.isdir(rf"{rootFolder}\{sheetName}\xmls"): + os.mkdir(rf"{rootFolder}\{sheetName}\xmls") + if not os.path.exists(pklPath) or runWholeModel: + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = png2decode(imgName, imgPath, len(scoreInstruments), packedImg) + with open(pklPath, "wb") as f: + pickle.dump( + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ), + f + ) + print(f"finishing processing sheet {sheetName}_{number}") + # to save time running previous step (Debug only) + else: + with open(pklPath, "rb") as f: + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = pickle.load(f) + pageMetadata = ScoreMetaData(len(scoreInstruments), len(staffList), scoreInstruments) + instrumentList = ScoreMetaData.get_instruments() + + # if clearExtra: + # noteGroupMap, stemIdxMap,noteGroupVerticallyMerged, restMap, restList, sfnClefMap, sfnClefList, beamMapImg, staffList,dataDict = clearExtraMapping(noteGroupMap, stemIdxMap,noteGroupVerticallyMerged, restMap, restList, sfnClefMap, sfnClefList, beamMapImg, staffList, dataDict, pageMetadata) + # # !!! decoded stuff from score (by bar) + # # !!! note object by staff line (object not just decoded) + allItemInScore = getAllObjectInEachLine(noteGroupMap, noteGroupVerticallyMerged, restMap, restList, sfnClefMap, sfnClefList, beamMapImg, staffList) + + # patch the object to make it up to date + for obj in noteGroupVerticallyMerged: + if obj and not hasattr(obj, "acrossLineNGID"): + obj.acrossLineNGID = None + for obj in restList: + if obj and not hasattr(obj, "acrossLineNGID"): + obj.acrossLineNGID = None + image = dataDict['image'] + # get Barline locations -> bar center for each track: List[List[int]] + + barEachTrack = getBarsEachTrack(image, beamMapImg, staffList, tolerance = 20) + + allStavesMeasures = getMeasuresEachStaff(image, beamMapImg, staffList, barEachTrack, pageMetadata.getTrackRange()) + + # load in image + img = cv2.imread(imgPath) + img_height, img_width, channels = img.shape + + # yolo detect time signature + yolo_model_path = "best_time_signature.pt" + time_signature_list = detect_time_signatures(yolo_model_path, imgPath) + + # filter for valid time signatures only + map_time_signatures_to_score(time_signature_list, staffList, allStavesMeasures, allItemInScore, imgResizeRatio=image.shape[0]/img.shape[0]) + valid_ts_only = time_signature_list #[ts for ts in time_signature_list if ts.isValid()] + time_sig_thres = 0.5 + final_time_sig_list = [ + [(ts.staffline, ts.barLoc if not ts.barLoc == None else 0), ts.getString()] + for ts in valid_ts_only + if ts.getConfidence() >= time_sig_thres + ] + final_time_sig_list = [x for x in final_time_sig_list if x[0][0] is not None] + final_time_sig_list.sort(key=lambda x: (x[0][0], x[0][1])) + print("Detected Time Signatures (after filtering):", final_time_sig_list) + barChangeList, lastTS = prepareTSBarChangeList(final_time_sig_list, pageMetadata.getTrackRange()) + # TODO: add in the bar time signature, [[(9.8),(9,8)...], [(9.8),(9,8),(4,4)...]] etc. + if not barChangeList.get('0,0'): + barChangeList['0,0'] = prevBarTS + if lastTS: + prevBarTS = lastTS + # get the list of barList (untuned) + barList,allRanges, numBarsEachLine = constructBar(noteGroupMap, noteGroupVerticallyMerged, restMap ,restList, sfnClefMap, sfnClefList, beamMapImg, staffList, pageMetadata, barEachTrack, barChangeList) + + numBarsEachTrack = [numBarsEachLine[p[0]] for p in pageMetadata.getTrackRange()] + + # noteRestMap, retImg = stackItemVertically(image, barList, pageMetadata, staffList, noteGroupVerticallyMerged, restList) + # outputImWrite(f"{imgName}_stack.jpg", retImg) + # cv2.imwrite(f"test{number}.jpg",retImg) + + + + # tune bar list based on timeSignature + barBreakPoints = tuneBarList(barList, numBarsEachTrack) + + # get all the elements on that line and continue changing currX + toneHelper = ToneHelper("keySignatureMapping.json") + + # returned BarList is exactly what we see in the score (two instrument in one line etc.) + ksMatEachTrackDirectMap, ksEachTrack, barList = getKSMatAndKSList(pageMetadata, barList, toneHelper) + + # add instruments tracks for those not appearing + # all instrument seperated (and added if not present) + barDictPerInstrument, barListPerInstrument, instrumentEachLine = assignBarlistInstrument(barList, pageMetadata) + + ksListAllTrack = np.concatenate(ksEachTrack) + assert len(ksListAllTrack) == len(barListPerInstrument[0]) + + instrument_dict = constructInstrumentMappingDict("instrumentMapping.json") + score, debugImages = exportXML(barListPerInstrument, instrumentEachLine, toneHelper, instrument_dict, ksListAllTrack, image, imgName) + score.write('musicxml', scorePath) + print(f"score write to {scorePath}") + # scoreShifted.write('musicxml',scoreShiftedPath) + # print(f"shifted score write to {scoreShiftedPath}") + # if isInit: + # fullBarList = barListPerInstrument + # else: + for i in range(len(barListPerInstrument)): + fullBarList[i]+=barListPerInstrument[i] + fullksListAllTrack = np.append(fullksListAllTrack, ksListAllTrack) + print() + fullscore, fulldebugImages = exportXML(fullBarList, instrumentEachLine, toneHelper, instrument_dict, fullksListAllTrack) + fullscore.write('musicxml',f'{imgName}.musicxml') + + print() + + + + + + + + + +# todo: +# Timpani only use one row + + + # current data structure documentation: + # noteChunkList: list of None|NoteChunks + # by noteChunkList[n].noteGroupIdxs you can get the Ids of them + # noteGroupMap, stemIdxMap <-> noteGroupVerticallyMerged + # noteGroupMap value == 0: no note, + # >0: is the noteGroupVerticallyMerged[idx] + # stemIdxMap value == -1: no noteBox + # >=0: is the index of noteGroupVerticallyMerged[idx].noteStemList[index] + # restMap <-> restList + # RestMap value == 0: no rest + # >0: is the restList[idx] + # sfnClefMap <-> sfnClefList + # sfnClefMap value == 0: no clef/sfn + # >0: is the sfnClefList[idx] + # beamMapImg: bb,gg,rr + # bb: the gradient beam image, 255 where there's beam, + # 254-2*stepSize*n: go how far down to beam + # 253-2*stepSize*n: go how far up to beam + # gg: 0 if there's nothing there + # 1 if it's place of a noteGroup object + # 2 if it's place of an accidentals + # 3 if it's place of a clef + # 4 if it's place of a barline + # 5 if it's place of a rest + # 6 if it's place of a noteGroup ornament? TODO not implemented yet + # rr: staff position map + staff number + how far to the bottom of staff + # x = 0~3 (total of 4): the position of the note (1~24, A is 12, C is 13) + # x = 4: the staffnum of the closest one (starting with 1 instead of 0) + # x = -1: how far pixel to the top of the staff (if it's in the staff range and 1 barheight above, else 0) + # x = -2: how far pixel to the bottom of the staff (if it's in the staff range and 1 barheight below, else 0) + # within the x of staff: the staff number + # if it contains anything in the staff it will be that, else it will diff --git a/pdf2png.py b/pdf2png.py index 1ed2ec6..e46c399 100644 --- a/pdf2png.py +++ b/pdf2png.py @@ -1,41 +1,115 @@ -from pdf2image import convert_from_path import os +from pdf2image import convert_from_path, pdfinfo_from_path from PIL import Image -# yyy/xxx/ -> yyy/xxx/imgs/xxx_i/xxx_i.png -def savePdf2Png(root_folder:str, numPngPerPage:int, rotate:bool): +def savePdf2Png(root_folder: str, numPngPerPage: int, rotate: bool, dpi: int = 200): file_name = os.path.basename(root_folder) pdf_path = os.path.join(root_folder, f'{file_name}.pdf') - images = convert_from_path(pdf_path, dpi=300) - imgNum = 1 + + # Get number of pages safely + info = pdfinfo_from_path(pdf_path) + num_pages = info["Pages"] + img_root = os.path.join(root_folder, 'imgs') if not os.path.isdir(img_root): os.mkdir(img_root) - for fullImg in images: + + imgNum = 1 + + # Process ONE page at a time + for i in range(1, num_pages + 1): + print(f"Processing page {i}/{num_pages}...") + + images = convert_from_path( + pdf_path, + dpi=dpi, + first_page=i, + last_page=i, + use_cropbox=True + ) + + fullImg = images[0] + if rotate: fullImg = fullImg.transpose(Image.Transpose.ROTATE_270) + + width, height = fullImg.size + if numPngPerPage == 1: image = fullImg + folderPath = os.path.join(img_root, f'{file_name}_{imgNum}') - if not os.path.isdir(folderPath): - os.mkdir(folderPath) - newroute = os.path.join(folderPath,f'{file_name}_{imgNum}.png') + os.makedirs(folderPath, exist_ok=True) + + newroute = os.path.join(folderPath, f'{file_name}_{imgNum}.png') image.save(newroute, 'PNG') - print(f"image {imgNum} saved to {newroute}") - imgNum = imgNum+1 + + print(f"Image {imgNum} saved to {newroute}") + imgNum += 1 + else: + # Split page horizontally into equal parts + split_width = width // numPngPerPage + for j in range(numPngPerPage): - width, height = fullImg.size - image = fullImg.crop((width//2*j, 0, (width//2)*(j+1), height)) + image = fullImg.crop(( + split_width * j, + 0, + split_width * (j + 1), + height + )) + folderPath = os.path.join(img_root, f'{file_name}_{imgNum}') - if not os.path.isdir(folderPath): - os.mkdir(folderPath) - newroute = os.path.join(folderPath,f'{file_name}_{imgNum}.png') + os.makedirs(folderPath, exist_ok=True) + + newroute = os.path.join(folderPath, f'{file_name}_{imgNum}.png') image.save(newroute, 'PNG') - print(f"image {imgNum} saved to {newroute}") - imgNum = imgNum+1 + + print(f"Image {imgNum} saved to {newroute}") + imgNum += 1 + + +if __name__ == '__main__': + savePdf2Png('sq_dataset\sq1', 1, False, dpi=200) + +# from pdf2image import convert_from_path +# import oszcxf +# from PIL import Image + +# # yyy/xxx/ -> yyy/xxx/imgs/xxx_i/xxx_i.png +# def savePdf2Png(root_folder:str, numPngPerPage:int, rotate:bool): +# file_name = os.path.basename(root_folder) +# pdf_path = os.path.join(root_folder, f'{file_name}.pdf') +# images = convert_from_path(pdf_path, dpi=300) +# imgNum = 1 +# img_root = os.path.join(root_folder, 'imgs') +# if not os.path.isdir(img_root): +# os.mkdir(img_root) +# for fullImg in images: +# if rotate: +# fullImg = fullImg.transpose(Image.Transpose.ROTATE_270) +# if numPngPerPage == 1: +# image = fullImg +# folderPath = os.path.join(img_root, f'{file_name}_{imgNum}') +# if not os.path.isdir(folderPath): +# os.mkdir(folderPath) +# newroute = os.path.join(folderPath,f'{file_name}_{imgNum}.png') +# image.save(newroute, 'PNG') +# print(f"image {imgNum} saved to {newroute}") +# imgNum = imgNum+1 +# else: +# for j in range(numPngPerPage): +# width, height = fullImg.size +# image = fullImg.crop((width//2*j, 0, (width//2)*(j+1), height)) +# folderPath = os.path.join(img_root, f'{file_name}_{imgNum}') +# if not os.path.isdir(folderPath): +# os.mkdir(folderPath) +# newroute = os.path.join(folderPath,f'{file_name}_{imgNum}.png') +# image.save(newroute, 'PNG') +# print(f"image {imgNum} saved to {newroute}") +# imgNum = imgNum+1 # if __name__ == '__main__': -# savePdf2Png('string_dataset/pdf_data/beethoven1',1,False) +# savePdf2Png('orch_dataset/Bee_8_challenge',1,False) # # Path to the PDF file diff --git a/png2decode.py b/png2decode.py new file mode 100644 index 0000000..cbe2ebc --- /dev/null +++ b/png2decode.py @@ -0,0 +1,2081 @@ + + +import os +os.environ["OMP_NUM_THREADS"] = "1" +os.environ["MKL_NUM_THREADS"] = "1" +import statistics + +from sklearn.cluster import KMeans +from collections import Counter +from scipy.ndimage import rotate + +from exportXml import exportXML +from get_prediction_singleStem import Single_Stem_Classifier +from get_prediction_rest import Rest_Classifier +from get_prediction import Sfn_Clef_classifier + +from utils import * +from omr.part1 import runModel1 +from omr.staffline_extraction import staff_extract_staffobj +from omr.part2 import runModel2 +from omr.bbox import merge_nearby_bbox + +STEM_UP_MODEL = Single_Stem_Classifier("training/stemupImg32x32_best.pth", 3) +STEM_DOWN_MODEL = Single_Stem_Classifier("training/stemdownImg32x32_best.pth", 3) +MIN_BAR_HEIGHT = 8 +ORIGINAL_IMAGE_RESIZE_RATIO = 2 +REST_CLASSIFIER = Rest_Classifier(r'training\rest_remain2x1_best.pth', 5) +SFN_CLEF_CLASSIFIER = Sfn_Clef_classifier('training/best_model32x32_seg_dil4x4.pth', 7) + + +# -------------------------------------------------------------------------------------------------- +# debug images +# -------------------------------------------------------------------------------------------------- +def outputDebugStemRestImg(dataDict): + img = np.ones_like(dataDict['image'])*255 + ys,xs = np.where(dataDict['stems_rests']>0) + img[ys,xs] = (0,0,255) + # outputImWrite(f'{img_name}_stemrests.jpg', img) + imwrite(f'stemrests_.jpg', img) + +def outputDebugSymbolsImg(dataDict): + img = np.ones_like(dataDict['image'])*255 + ys,xs = np.where(dataDict['symbols']>0) + img[ys,xs] = (255,0,0) + # outputImWrite(f'{img_name}_symbols.jpg', img) + imwrite(f'symbols_.jpg', img) + +def outputNotegroupStemMapImg(noteGroupStemMap, image): + ys,xs = np.where(noteGroupStemMap>0) + zz = image.copy() + zz[ys,xs,1:2] = 100 + # outputImWrite(f'{img_name}_noteGroupStemMap.jpg', zz) + imwrite(f'noteGroupStemMap.jpg', zz) + +def outputNoteGroupMapImg(noteGroupMap, image): + ys,xs = np.where(noteGroupMap>0) + zz = image.copy() + zz[ys,xs,1:2] = 100 + # outputImWrite(f'{img_name}_noteGroupStemMap.jpg', zz) + imwrite(f'noteGroupMap.jpg', zz) + +def outputNoteMapImg(beamMapImg, image, staffObjList): + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + _,_,rr = cv2.split(beamMapImg) + zz = image.copy() + for i in range(len(staffObjList)): + ys,xs = np.where(rr==(i+1)) + zz[ys,xs] = colors[i%4] + imwrite('GroupMap.jpg',zz) + +def outputSfnClefNoteWhiteImg(beamMapImg, image, bar_height, noteGroupMap, staffObjList): + bb,gg,_ = cv2.split(beamMapImg) + _,zz = cv2.threshold(image, 200, 255, cv2.THRESH_BINARY) + zzmask = zz.copy() + zzmask[:max(staffObjList[0].ys[0]-bar_height*2,0),:] = (255,255,255) + zzmask[min(staffObjList[-1].ys[-1]+bar_height*2,zzmask.shape[0]):,:] = (255,255,255) + for sf in staffObjList: + xMaskOut = np.where(np.max(noteGroupMap[max(sf.ys[0]-2*bar_height, 0):min(sf.ys[-1]+2*bar_height, zzmask.shape[0]), :],0)>0)[0] + zzmask[max(sf.ys[0]-2*bar_height, 0):min(sf.ys[-1]+2*bar_height,zzmask.shape[0]),xMaskOut] = (255,255,255) + ys,xs = np.where(gg>0) + zzmask[ys,xs] = (255,255,255) + bb = cv2.dilate(bb, np.ones((bar_height//2, bar_height//2), dtype= np.uint8), iterations=1) + ys,xs = np.where(bb>=255) + zzmask[ys,xs] = (255,255,255) + # zzmask = cv2.dilate(zzmask, np.ones((bar_height//3,1),dtype=np.uint8),iterations=1) + # zzmask = cv2.erode(zzmask, np.ones((bar_height//3,bar_height//3),dtype=np.uint8),iterations=1) + # cv2.imwrite('test.jpg',zzmask) + imwrite('SfnClefNoteWhite.jpg', zzmask) + +def outputSfnClefNoteImg(image, beamMapImg): + _,gg,_ = cv2.split(beamMapImg) + _,zz = cv2.threshold(image, 200, 255, cv2.THRESH_BINARY) + for i in range(1,4): + ys,xs = np.where(gg==i) + zz[ys,xs,(i-2)%3] = 100 + zz[ys,xs,(i-3)%3] = 0 + ys,xs = np.where(image[:,:,0]<128) + zz[ys,xs,:] = (0,0,0) + # outputImWrite(f'{img_name}_SfnClefNote.jpg', zz) + imwrite(f'SfnClefNote.jpg', zz) + +def outputSfnClefNoteBarlineRestImg(image, beamMapImg): + zz = image.copy() + _,gg,_ = cv2.split(beamMapImg) + colors = [(190,120,0),(255,50,0),(50,240,0),(0,120,230),(0,0,255)] + for i in range(1,6): + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + + imwrite(f'SfnClefNoteBarlineRest.jpg', zz) + +def outputThingsBeforeDots(image, beamMapImg): + _,gg,_ = cv2.split(beamMapImg) + colors = [(230,200,130),(230,130,100),(120,170,140),(235,176,113),(0,0,255)] + zz = image.copy() + for i in [1,2,3,5]: + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + ys,xs = np.where(image[:,:,1]<128) + zz[ys,xs] = (0,0,0) + i = 4 + ys,xs = np.where(gg==i) + zz[ys,xs] = colors[i%5] + imwrite(f'DotPrevious.jpg', zz) + return zz + + + +# -------------------------------------------------------------------------------------------------- +# functions +# -------------------------------------------------------------------------------------------------- +def init_bar_height(dataDict, min_barheight): + def staffs_to_omrStaffList(staffs): + left = min([sf.x_left for sf in staffs[0,:]]) + right = max([sf.x_right for sf in staffs[-1,:]]) + omrstaff_list: List[Staff] = [] + staffRange = [] + mindiffs = [] + maxdiffs = [] + for i in range(staffs.shape[1]): + yuppers = [sf.y_upper for sf in staffs[:,i]] + ybottoms = [sf.y_lower for sf in staffs[:,i]] + top = statistics.median(yuppers) + bottom = statistics.median(ybottoms) + unit_size = statistics.median([sf.unit_size for sf in staffs[:,i]]) + minMaxDiff = min(max(yuppers)-min(yuppers), max(ybottoms)-min(ybottoms)) + maxMaxDiff = max(max(yuppers)-min(yuppers), max(ybottoms)-min(ybottoms)) + ys = [int(top), int(top+unit_size), int((top+bottom)/2),int(bottom-unit_size),int(bottom)] + sf = Staff(int(left), int(right), ys, minMaxDiff, yuppers, ybottoms) + mindiffs.append(minMaxDiff) + maxdiffs.append(maxMaxDiff) + omrstaff_list.append(sf) + staffRange.append(range(int(top),int(bottom))) + return omrstaff_list, staffRange + staff = dataDict['staff'] + staffs, zones = staff_extract_staffobj(staff, min_barheight) + staffList, staffRange = staffs_to_omrStaffList(staffs) + barheight = [sf.get_yOne_float() for sf in staffList] + avg_barheight = int(sum(barheight)/len(barheight)) + return avg_barheight, staffList + +def getBeamImage(dataDict, bar_height, staffObjList:List[Staff]): + stems_rests = dataDict['stems_rests'] + clefs_keys = dataDict['clefs_keys'] + notehead = dataDict['notehead'] + symbols = dataDict['symbols'] + image:np.ndarray = dataDict['image'] + + _, img128 = cv2.threshold(image, 128, 255, cv2.THRESH_BINARY_INV) + kernel = np.ones((bar_height//3, bar_height//3),dtype=np.uint8) + beam = cv2.erode(img128, kernel, iterations = 1) + imwrite('note_beam1.jpg',beam) + + for ll in range(3): + haslinecount = 0 + totalCount = 0 + for staff in staffObjList: + for b in range(len(staff.ys)): + curr = sum(np.max(beam[max(staff.ys[b]-bar_height//3,0):min(staff.ys[b]+bar_height//3, beam.shape[0]), staff.left:staff.right,1],0)==255) + if curr>(staff.right-staff.left)//3: + haslinecount+=1 + totalCount+=1 + if haslinecount/totalCount>0.6: + kernel = np.ones((bar_height//4, bar_height//4),dtype=np.uint8) + beam = cv2.erode(beam, kernel, iterations = 1) + else: + break + imwrite('note_beam1.5.jpg',beam) + xs,ys = np.where(clefs_keys>0) + beam[xs,ys] = (0,0,0) + beamWithoutStemRest = beam.copy() + imwrite('note_beam2.jpg',beamWithoutStemRest) + # beamret is beamNoClefKey + xs,ys = np.where(stems_rests>0) + beam[xs,ys] = (255,255,255) + imwrite('note_beam3.jpg', beam) + # beam is beam with stem_rests + + kernel_tall = np.ones((1,bar_height*2), np.uint8) + beam_nostem = cv2.erode(beam, kernel_tall) + beam_nostem = cv2.dilate(beam_nostem, kernel_tall) + imwrite('note_beam4.jpg', beam_nostem) + beam_nostem_nostaff = beam_nostem.copy() + savebeambw = cv2.cvtColor(beam_nostem, cv2.COLOR_BGR2GRAY) + toDel = np.where(np.sum(savebeambw>127,axis=1)>savebeambw.shape[1]*0.4)[0] # VARIABLE threshold to delete + for d in toDel: + beam_nostem_nostaff[d,:] = 0 + imwrite('note_beam5.jpg', beam_nostem_nostaff) + # beam nostem is beam with stemRest + erode (also has notes) + return beam, beamWithoutStemRest, beam_nostem_nostaff + +def generateBeamStaffImg(savebeam:np.ndarray, staffObjList:List[Staff], barheight:int,stepSize=1): + # beamThick = cv2.dilate(savebeam, np.ones((3,1), dtype=np.uint8), iterations=1) + mappingImgRgb = np.zeros((savebeam.shape[0], savebeam.shape[1], 3)) + savebeambw = cv2.cvtColor(savebeam, cv2.COLOR_BGR2GRAY) + contours, _ = cv2.findContours(savebeambw.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + selectedContours = [] + bb,gg,rr = cv2.split(mappingImgRgb) + staffYCenters = [] + for idx,staff in enumerate(staffObjList): + if staff.left <= 4: + staff.left = 5 + if staff.right >= savebeam.shape[1]-3: + staff.right = savebeam.shape[1]-4 + staffYs = staff.ys + oneY:float = staff.get_yOne_float() + staffYCenter = staffYs[2] + rr = cv2.rectangle(rr, (staff.left, staffYs[0]), (staff.right, staffYs[-1]), idx+1,-1) + # -1: how far to the top [0] + rr[staffYs[0]:min(staffYs[-1]+barheight, savebeam.shape[0]),-1] = np.array(range(0, min(staffYs[-1]+barheight, savebeam.shape[0])-staffYs[0])) + rr[max(staffYs[0]-barheight, 0):staffYs[-1],-2] = np.array(range(staffYs[-1]-max(staffYs[0]-barheight, 0),0,-1)) + # line one's index will be 1~10:1, 2s will be 20~200:20 + indexRatio = (idx%2)*20+(1-idx%2)*1 + staffYCenter = staffYs[2] + staffYCenters.append(staffYCenter) + + for i in range(1,13): + if staffYCenter-i*oneY>0: + rr[round(staffYCenter-i*oneY):round(staffYCenter-(i-1)*oneY),(idx+1)%4] = i+12 + else: + break + for i in range(1,13): + if staffYCenter+i*oneYbarheight*1.5 and ww and not (w<2*barheight and h/w>0.5)and w>h: + selectedContours.append(cnt) + bb = cv2.drawContours(bb, selectedContours,-1, 255,thickness=-1) + imwrite('beamOri.jpg',savebeambw) + mappingImgRgb = cv2.merge([bb,gg,rr]) + imwrite('beamOricontours.jpg',mappingImgRgb) + bbUint8 = bb.astype(np.uint8) + kernel = np.ones((1,barheight//3), dtype=np.uint8) + bbUint8 = cv2.dilate(bbUint8, kernel, iterations=1) + mappingImgUint8= cv2.merge([bbUint8,gg.astype(np.uint8),rr.astype(np.uint8)]) + print('preparing for beam image') + for xIdx in range(0,savebeam.shape[1], stepSize*2): + # no white in this place + if sum(mappingImgUint8[:,xIdx,0]) == 0: + continue + startingY = np.where(mappingImgUint8[:,xIdx,0]==255)[0].tolist() + # the ending of the bottommost one + startingY.append(min(mappingImgUint8.shape[0],startingY[-1]+barheight*5)) + for i in range(0,len(startingY)-1): + yStartVal = 253 + for yIdx in range((startingY[i]+stepSize)//(2*stepSize)*(2*stepSize)+stepSize, startingY[i+1],stepSize*2): + if yStartVal<=0: + break + mappingImgUint8[yIdx,xIdx,0]=yStartVal + yStartVal-=stepSize*2 + # the ending of the topmost one + startingY.pop() + startingY.insert(0, max(startingY[0]-barheight*5, 0)) + for i in range(len(startingY)-1, 0,-1): + yStartVal = 254 + for yIdx in range((startingY[i]-1)//(2*stepSize)*(2*stepSize), startingY[i-1],-stepSize*2): + if yStartVal<=0: + break + mappingImgUint8[yIdx,xIdx,0]=yStartVal + yStartVal-=stepSize*2 + onlyBImg = mappingImgUint8.copy() + onlyBImg[:,:,1] = onlyBImg[:,:,0] + onlyBImg[:,:,2] = onlyBImg[:,:,0] + imwrite('onlyBImg.jpg',onlyBImg) + saveImages = {} + saveImages['gradImg']=onlyBImg + saveImages['beamContour']=mappingImgRgb + return mappingImgUint8, saveImages + +def getInitialNoteheadBoxList(dataDict, beam_nostem, beamMapImg:np.ndarray, bar_height): + + def get_bbox(data: np.ndarray) -> List[Tuple[int,int,int,int]]: + contours, _ = cv2.findContours(data.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + bboxes = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + box = (x, y, x+w, y+h) + bboxes.append(box) + return bboxes + + def filter_small_bbox_area(data: np.ndarray, noteimg:np.ndarray, xmin, ymin, areamin): + filtered_Box = [] + for box in data: + x0,y0,x1,y1 = box + w = x1-x0 + h = y1-y0 + if w>=xmin and h>=ymin and w*h>areamin: + filtered_Box.append(box) + else: + noteimg[y0:y1,x0:x1] = 0 + return filtered_Box,noteimg + + def split_connected_notes(bboxList, bar_height,image): + minh = int(bar_height*0.9) + minw = int(bar_height) + retlst = [] + for bbox in bboxList: + x0,y0,x1,y1 = bbox + wrat = (x1-x0)/minw + hrat = (y1-y0)/minh + wnum = int(wrat) + hnum = int(hrat) + note_w = int(minw*1.3) + note_h = int(minh*1.3) + if wnum*hnum <= 1: + retlst.append(bbox) + elif wnum>=2: + if y1-y0<=bar_height or wnum>=3: + xwid = (x1-x0)//wnum + for i in range(wnum): + retlst.append((x0+i*xwid,y0,x0+(i+1)*xwid,y1)) + # it's a scatter of three vertically stacked notes with two adjacent notes + elif hnum>2.5 and hnum>wnum: + # first get the top and bottom ones + # if the top part has more black on the left (x0) + option2s = [] + if np.sum(image[y0:y0+note_h,x0:x0+note_w])>np.sum(image[y0:y0+note_h,x1-note_w:x1]): + retlst.append((x0,y0,x0+note_w, y0+note_h)) + # the other side go down once + option2s.append((x1-note_w,y0+note_h//2,x1, y0+int(note_h*1.5))) + else: + retlst.append((x1-note_w,y0,x1, y0+note_h)) + option2s.append((x0,y0+note_h//2,x0+note_w, y0+int(note_h*1.5))) + # if the bottom part has more black on the left (x0) + if np.sum(image[y1-note_h:y1,x0:x0+note_w])>np.sum(image[y1-note_h:y1,x1-note_w:x1]): + retlst.append((x0,y1-note_h,x0+note_w, y1)) + option2s.append((x1-note_w,y1-int(note_h*1.5),x1, y1-note_h//2)) + else: + retlst.append((x1-note_w,y1-note_h,x1, y1)) + option2s.append((x0,y1-int(note_h*1.5),x0+note_w, y1-note_h//2)) + # deal with the middle one + if np.sum(image[option2s[0][1]:option2s[0][3], option2s[0][0]:option2s[0][2]]) > np.sum(image[option2s[1][1]:option2s[1][3], option2s[1][0]:option2s[1][2]]): + retlst.append(option2s[0]) + else: + retlst.append(option2s[1]) + else: + # if the left part has more black on top(y0) + if np.sum(image[y0:y0+note_h,x0:x0+note_w])>np.sum(image[y1-note_h:y1,x0:x0+note_w]): + retlst.append((x0,y0,x0+note_w, y0+note_h)) + else: + retlst.append((x0,y1-note_h,x0+note_w, y1)) + # if the right part has more black on top(y1) + if np.sum(image[y0:y0+note_h,x1-note_w:x1])>np.sum(image[y1-note_h:y1,x1-note_w:x1]): + retlst.append((x1-note_w,y0,x1, y0+note_h)) + else: + retlst.append((x1-note_w,y1-note_h,x1, y1)) + + elif hnum>=2: + ywid = (y1-y0)//hnum + for i in range(hnum): + retlst.append((x0,y0+i*ywid,x1,y0+(i+1)*ywid)) + return retlst + + def filter_boxes_on_beam(notehead_boxes, beamMapImg, areamin): + filtered_Boxes = [] + for box in notehead_boxes: + x0,y0,x1,y1 = box + if np.max(beamMapImg[y0:y1, x0:x1, 0])==255: + w = x1-x0 + h = y1-y0 + if w*h0) + notehead_mod = notehead.copy()*255 + notehead_mod[xs,ys] = 0 + + imwrite('notehead_ori.jpg', notehead_mod) + dilation_ratio1 = 0.33 + dilation_ratio2 = 0.4 + # dilate->erode twice to clear image + get clear noteheads + size1 = int(round(bar_height*dilation_ratio1)) + note_kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size1, size1)) + notehead_mod = cv2.erode(cv2.dilate(notehead_mod.astype(np.uint8), note_kernel), note_kernel) + size2 = int(round(bar_height*dilation_ratio2)) + + note_kernel2 = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size2,size2)) + notehead_mod2 = cv2.erode(notehead_mod, note_kernel2) + note_kernel3 = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (size2+1, size2+1)) + notehead_mod2 = cv2.dilate(notehead_mod2, note_kernel3) + + # both b&w image, white is where there's stuff + imwrite('notehead_mod.jpg',notehead_mod) + imwrite('notehead_mod2.jpg',notehead_mod2) + # notehead mod is basically the cleaned beams + + # get the boxes, if the boxes is in + notehead_boxes_all = get_bbox(notehead_mod2) + notehead_boxes_big, notehead_mod3= filter_small_bbox_area(notehead_boxes_all, notehead_mod2,xmin = bar_height*0.5,ymin = bar_height*0.2, areamin = bar_height*bar_height*0.4) + imwrite('notehead_mod3.jpg',notehead_mod3) + notehead_boxes = split_connected_notes(notehead_boxes_big, bar_height,notehead_mod2) + notehead_boxes_filtered = filter_boxes_on_beam(notehead_boxes, beamMapImg,areamin = bar_height*bar_height*0.8) + return notehead_boxes_filtered, notehead_mod2 + +def maskImage(noteheadBoxesInitList:List[Tuple[int,int,int,int]], noteBwImageOrigin: np.ndarray): + maskedNoteBw = np.zeros_like(noteBwImageOrigin) + for box in noteheadBoxesInitList: + x0,y0,x1,y1 = box + maskedNoteBw[y0:y1, x0:x1] = noteBwImageOrigin[y0:y1, x0:x1] + imwrite('maskedNoteBw.jpg',maskedNoteBw) + return maskedNoteBw + +# noteheadInitial : b&w 2d image, 255: notehead, +# beamMapImg: gradient image, the 1st dimension is what we care about +def getStemList(dataDict, bar_height, notehead_boxes:List[Tuple[int,int,int,int]], beamWithStemRest): + image:np.ndarray = dataDict['image'] + + drawimg = image.copy() + # 255 is where there's stuff, 0 is empty + _, img200 = cv2.threshold(cv2.cvtColor(image, cv2.COLOR_BGR2GRAY), 200, 255, cv2.THRESH_BINARY_INV) + imgh = image.shape[0] + notehead_rectangle = np.zeros((image.shape[0],image.shape[1])) + stem_init_lst:List[Stem]=[] + # beambw is suppose to be white where there's beam + beambw = cv2.cvtColor(beamWithStemRest, cv2.COLOR_BGR2GRAY) + imwrite('beambw.jpg',beambw) + # get the stem's directions + for idx,boxOriginal in enumerate(notehead_boxes): + x0,y0,x1,y1 = boxOriginal + xleft = (x0+x1*2)//3 + xright = (x0*2+x1)//3 + + leftRange = np.where(img200[y0:y1,xleft]==255)[0].tolist() + rightRange = np.where(img200[y0:y1, xright] ==255)[0].tolist() + if len(leftRange)*len(rightRange) != 0: + y1 = y0+max(max(leftRange),max(rightRange)) + y0 += min(min(leftRange), min(rightRange)) + if y1<=y0: + x0,y0,x1,y1 = boxOriginal + box = (x0,y0,x1,y1) + notehead_rectangle[y0:y1,x0:x1] = 1 + length = bar_height*3 + width = (x1-x0)//3 + leftXrange = range(x0-width//2,x0+width+1) + rightXrange = range(x1-width, x1+width//2+1) + topYrange = range(max(y0-length, 0),y0) + bottomYrange = range(y1,min(y1+length, imgh)) + left_area = beambw[bottomYrange.start:bottomYrange.stop, + leftXrange.start: leftXrange.stop] + left_centerX = np.argmax(np.sum(left_area,0)) + right_area = beambw[topYrange.start:topYrange.stop, + rightXrange.start:rightXrange.stop] + right_centerX = np.argmax(np.sum(right_area,0)) + # has to be more strict not too far to the left + leftup_area = beambw[topYrange.start:topYrange.stop, + leftXrange.start: leftXrange.stop] + leftup_centerX = np.argmax(np.sum(leftup_area,0)) + rightdn_area = beambw[bottomYrange.start:bottomYrange.stop, + rightXrange.start:rightXrange.stop] + rightdn_centerX = np.argmax(np.sum(rightdn_area,0)) + isup = True + hasStem = True + alterBox = [] + leftRightRatio = np.sum(left_area[:,left_centerX])/np.sum(right_area[:, right_centerX]) + if leftRightRatio>1: + # stem is in left bottom + maxRange = [leftXrange, bottomYrange] + isup = False + if leftRightRatio<1.25: + alterBox.append([rightXrange.start+right_centerX,topYrange.start,rightXrange.start+right_centerX,topYrange.stop]) + else: + # it's either close enough or in right bottom + maxRange = [rightXrange, topYrange] + # they are close enough -> alterbox will always record the left bottom one + if leftRightRatio>0.8: + alterBox.append([leftXrange.start+left_centerX,bottomYrange.start,leftXrange.start+left_centerX,bottomYrange.stop]) + maxArea = max(np.sum(left_area[:,left_centerX]),np.sum(right_area[:, right_centerX])) + maxAlterArea = max(np.sum(leftup_area[:,leftup_centerX]),np.sum(rightdn_area[:,rightdn_centerX])) + if maxAlterArea>255*length//2 and maxAlterArea/maxArea>1.5: + if np.sum(leftup_area[:,leftup_centerX])>np.sum(rightdn_area[:,rightdn_centerX]): + alterBox.append([leftXrange.start+leftup_centerX, topYrange.start, leftXrange.start+leftup_centerX, topYrange.stop]) + else: + alterBox.append([rightXrange.start+rightdn_centerX, bottomYrange.start, rightXrange.start+rightdn_centerX, bottomYrange.stop]) + if len(alterBox)==0 and maxArea < 255*length//3: + hasStem = False + # hasStem is a flag for later grouping notes + xrange, yrange = maxRange + crop = img200[yrange.start:yrange.stop, xrange.start:xrange.stop] + a = (np.where(np.sum(crop,0)==np.max(np.sum(crop,0)))[0]).tolist() + chosenx = a[len(a)//2] + x_y = (xrange.start+chosenx, y0 if isup else y1) + stem_init_lst.append(Stem(x_y, isup,boxOriginal,box, hasStem=hasStem, alterbox=alterBox)) + if len(alterBox)==0 and hasStem: + drawimg = cv2.rectangle(drawimg, (xrange.start+chosenx-1, yrange.start),(xrange.start+chosenx+1,yrange.stop),(255,0,120), 1, cv2.LINE_AA) + elif hasStem: + drawimg = cv2.putText(drawimg, str(idx), (x0,y0),cv2.FONT_HERSHEY_SIMPLEX, 1, (120,0,120), 2, cv2.LINE_AA) + drawimg = cv2.rectangle(drawimg, (xrange.start+chosenx-1, yrange.start),(xrange.start+chosenx+1,yrange.stop),(255,255,0), 2, cv2.LINE_AA) + for ab in alterBox: + drawimg = cv2.rectangle(drawimg, (ab[0], ab[1]),(ab[2],ab[3]),(0,255,0), 3, cv2.LINE_AA) + drawimg = cv2.rectangle(drawimg, (x0,y0),(x1,y1),(0,0,255), 2, cv2.LINE_AA) + imwrite('notehead_drawimg.jpg',drawimg) + return stem_init_lst, image, {'notehead_drawimg':drawimg} + +def assignStemLength(stem_init_lst:List[Stem], image, beamMapImg:np.ndarray, stepSize: int, bar_height): + # get the stem's length + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _,img200bw = cv2.threshold(img200, 200, 255, cv2.THRESH_BINARY_INV) + # img200 is black and white, white is where there's stem + imwrite('img200inv.jpg', img200bw) + # wid = 1 + topthres = bar_height//2 + ending_black_height = 3 + # make it whiter for better visualization + drawimg2 = np.ones_like(img200bw)*255 - img200bw.copy()//4 + drawimg2 = cv2.cvtColor(drawimg2, cv2.COLOR_GRAY2BGR) + bigStep = stepSize*2 + for idx,coordStart in enumerate(stem_init_lst): + x,yOri = coordStart.start + wid = (coordStart.noteBox[2]-coordStart.noteBox[0])//3 + yend = yOri + sign = 1 if coordStart.isup else -1 + # is in staff +- 3.5 barheight, no alternative box, has stem + # +beamMapImg[max(yOri-int(2.5*bar_height)*sign,0),x,2] + isTypical:bool = (len(coordStart.alternativeBox) == 0) and coordStart.hasStem and min([abs(posIdx-11.5) for posIdx in beamMapImg[yOri,0:4,2]])<5 + + # if the beamMap is less than 4*barheight away and the beam itself is somewhere in a staffArea, assign it + # elif it's not too far away (2*4*barheight), see if the area has at least 1/2 blacks + # else it's gonna go through the clssification model to see if it's a single quarter/eighth/sixteenth + xLeft = x//bigStep*bigStep + xRight = min(beamMapImg.shape[1]-1,x//bigStep*bigStep+bigStep) + staffLineNumber:int = beamMapImg[yOri, 4, 2] + barPositionI: int = beamMapImg[yOri, staffLineNumber%4, 2] + stemUpLongest:int = 0 if (barPositionI<8 or barPositionI>17) else 17-barPositionI + stemDownLongest:int = 0 if (barPositionI<8 or barPositionI>17) else barPositionI-8 + if coordStart.isup: + longestNormal = stemUpLongest + # go how far is considered normal and ok + y = yOri//bigStep*bigStep-stepSize + leftUpValue = beamMapImg[y,xLeft, 0] + rightUpValue = beamMapImg[y,xRight, 0] + if leftUpValue>rightUpValue: + maxMapValue = leftUpValue + else: + maxMapValue = rightUpValue + assert maxMapValue%2==1 or maxMapValue == 0 + if maxMapValue != 0: + if isTypical and (253-maxMapValue)+bigStep<=(longestNormal)*bar_height: + if maxMapValue < 255: + yend = y-(253-maxMapValue) + assert max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 253 + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 253-bar_height//2: + yend -= bigStep + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) == 255: + yend -= 1 + # the end of the stem doesn't have enough "stem (white)" (the image is inversed) + if (253-maxMapValue)+bigStep>(longestNormal-3)*bar_height and (sum(np.max(img200bw[yend:y, x-wid:x+wid+1],1))<(y-yend)*255*0.8 or sum(np.max(img200bw[yend:(y+yend)//2, x-wid:x+wid+1],1))<(y-yend)*255*0.4): + yend = yOri + if yend==yOri: + if isTypical and coordStart.hasStem and len(coordStart.alternativeBox)==0: + yend -= min(3,longestNormal)*bar_height + # while there is still things in the inversed bw original image + while sum(np.max(img200bw[yend-ending_black_height:yend, x-wid:x+wid+1],1))!=0: + yend -= 1 + else: + while sum(np.max(img200bw[yend-ending_black_height:yend, x-1:x+2],1))!=0: # and max([(10-beamMapImg[yend,x,1]%11)%10,(10-beamMapImg[yend,x,1]//20)%10]): + yend -= 1 + else: + longestNormal = stemDownLongest + y = min(yOri//bigStep*bigStep+bigStep,beamMapImg.shape[0]-1) + leftUpValue = beamMapImg[y,xLeft, 0] + rightUpValue = beamMapImg[y,xRight, 0] + if leftUpValue>rightUpValue: + maxMapValue = leftUpValue + else: + maxMapValue = rightUpValue + xRight = x//bigStep*bigStep+bigStep + assert maxMapValue%2==0 or maxMapValue == 255 + if isTypical and (254-maxMapValue)+bigStep<=longestNormal*bar_height: + if maxMapValue < 255: + yend = y+(254-maxMapValue) + if max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >=254: + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) >= 254-bar_height//2 and (yend-yOri)<=(longestNormal)*bar_height: + yend += bigStep + while max(beamMapImg[yend, xLeft,0],beamMapImg[yend, xRight,0]) == 255 and (yend-yOri)<=(longestNormal)*bar_height: + yend += 1 + # the end of the stem doesn't have enough "stem (white)" (the image is inversed) + if (254-maxMapValue)+bigStep>(longestNormal-3)*bar_height and (sum(np.max(img200bw[y:yend, x-wid:x+wid+1],1))<(yend-y)*128 or sum(np.max(img200bw[(y+yend)//2:yend, x-wid:x+wid+1],1))<(yend-y)*64): + yend = yOri + if yend==yOri: + if isTypical and coordStart.hasStem and len(coordStart.alternativeBox)==0: + yend += min(3,longestNormal)*bar_height + # while there is still things in the inversed bw original image + while sum(np.max(img200bw[yend:yend+ending_black_height, x-wid:x+wid+1],1))!=0 and (yend-yOri)<=(longestNormal)*bar_height: + yend += 1 + else: + while sum(np.max(img200bw[yend:yend+ending_black_height, x-1:x+2],1))!=0: # and min([beamMapImg[yend,x,1]%11,beamMapImg[yend,x,1]//20])<2: + yend += 1 + if abs(yend-y)0) # where there's note but no beam + beamNoNotes = beamNoClefKeyWithStemRest.copy() + beamNoNotes[xs,ys] = (0,0,0) + imwrite('beamNoNotes1.jpg',beamNoNotes) + xs,ys = np.where(beambw==255) + beamNoNotes[xs,ys] = (255,255,255) + imwrite('beamNoNotes2.jpg',beamNoNotes) + + return beamNoNotes + + +def assignBeamLengthBeamImg(stem_list:List[Stem], image:np.ndarray, beam:np.ndarray, barheight:int): + x_diff = barheight//2 + beam = cv2.cvtColor(beam, cv2.COLOR_BGR2GRAY) + # if it's completely white in the white_buffer_max area then stop + white_buffer_max = barheight + beam_start_buffer_max = barheight//3 + for stem in stem_list: + xCenter,yCenter = stem.start + xLeft = xCenter-x_diff + xRight = min(image.shape[1]-1,xCenter+x_diff) + yMax = stem.getYLen() + if stem.getYLen() == 0: + continue + if stem.isup: + for xtype in ['left', 'right']: + if xtype=='left': + currX = xLeft + else: + currX = xRight + currY = stem.getTopCoord()[1] + # if the starting point of beam is not white, meaning that it might be a symbol, staff line etc + # keep going down until it's at the right place + if sum(np.max(beam[currY:currY+beam_start_buffer_max, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max: + while(sum(np.max(beam[currY:currY+beam_start_buffer_max, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max and currYstem.getBottomCoord()[1]+barheight//2): + currY = currY+1 + else: + while beam[currY-1, currX] == 255: + currY = currY-1 + # now the topStartY is the "real start" + stem.setBeam(typ=xtype, top=currY) + # go down until it's wholely black + while sum(beam[currY:currY+white_buffer_max, currX])>255: + currY+=1 + stem.setBeam(typ=xtype, bottom=currY) + else: + for xtype in ['left', 'right']: + if xtype=='left': + currX = xLeft + else: + currX = xRight + currY = stem.getBottomCoord()[1] + + # if the starting point of beam is not white, meaning that it might be a symbol, staff line etc + # keep going up until it's at the right place + if sum(np.max(beam[currY-beam_start_buffer_max:currY, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max: + while(sum(np.max(beam[currY-beam_start_buffer_max:currY, xCenter-barheight//2:xCenter+barheight//2],1)) < 255*beam_start_buffer_max and currY>stem.getTopCoord()[1]+barheight//2): + currY = currY-1 + stem.end = (stem.end[0], currY) + + # if it's black (need to go up) + if beam[currY, currX] == 0: + while(beam[currY, currX] == 0 and currY255: + currY-=1 + stem.setBeam(typ=xtype, top=currY) + imgBgr = image.copy() + beam_heights = [] + for stem in stem_list: + beam_heights.append(stem.leftBeam[1]-stem.leftBeam[0]) + beam_heights.append(stem.rightBeam[1]-stem.rightBeam[0]) + imgBgr = cv2.rectangle(imgBgr, (stem.start[0]-x_diff, stem.leftBeam[0]), (stem.start[0]-x_diff, stem.leftBeam[1]),(0,0,255),3,cv2.LINE_AA) + imgBgr = cv2.rectangle(imgBgr, (stem.start[0]+x_diff, stem.rightBeam[0]), (stem.start[0]+x_diff, stem.rightBeam[1]),(255,255,0),3, cv2.LINE_AA) + imwrite('leftrightRectBeam.jpg', imgBgr) + return imgBgr, stem_list, beam_heights + + +def knnRhythmAndDraw(stem_list_assigned:List[Stem], beam_heights, image, bar_height, beamMapImg, stemUpClassifier, stemDownClassifier,img_name): + def get_beam_height(beam_heights:List[int], barheight): + whole_thres = [1, int(barheight*0.6), int(barheight*1.8), int(barheight*2.7), int(barheight*3.2)] + if max(beam_heights) == 0: + return beam_heights + count, _ = np.histogram(beam_heights, max(beam_heights)) + # expand the list to be able to access list[init_thres[-1]] + init_thres = whole_thres[:sum([0 if thres>len(count) else 1 for thres in whole_thres])+1] + expanded_count = list(count) + [0]*(init_thres[-1]+1-len(count)) + while len(init_thres)>0 and sum(expanded_count[init_thres[-1]:])tooBig else bh for bh in beam_heights] + expanded_count[tooBig:] = [0]*len(expanded_count[tooBig:]) + init_thres.append(len(expanded_count)) + centers = [0]*len(init_thres) + for i in range(1,len(init_thres)): + centers[i] = np.argmax(expanded_count[init_thres[i-1]:init_thres[i]])+init_thres[i-1] + kmeans = KMeans(n_clusters = len(centers), init = np.array(centers, dtype=np.uint8).reshape(-1, 1), n_init = 1) + kmeans.fit(np.array(beam_heights,dtype=np.uint8).reshape(-1,1)) + return kmeans.labels_.tolist() + def getSingleStemPred(img, model:Single_Stem_Classifier): + # ['n2', 'n4', 'n816'] (0,1,2)if it's flat then it should be n1 3 + if img.shape[1]/img.shape[0]>1.5: + return 3 + else: + return model.predict(img) + + beam_type = get_beam_height(beam_heights, bar_height) + class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + imgrgb = image.copy() + x_diff = bar_height//2 + mapBeamVal, middle, mapStaffNum = cv2.split(beamMapImg) + # the first one is a empty one just for easier indexing + noteGroupStemMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + noteGroupList:List[NoteGroup|None] = [None] + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _,img200bw = cv2.threshold(img200, 200, 255, cv2.THRESH_BINARY_INV) + for j in range(0,len(class_names)): + imgrgb = cv2.putText(imgrgb,class_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + # stillLabel = True + # init_label_folder() + predLabelConvert = [-2,0,1,-1] + for idx,stem in enumerate(stem_list_assigned): + stem.rhythm = max(beam_type[idx*2: idx*2+2]) + leftHeight, rightHeight = stem.getBeamHeights() + # solve the issue of misclassify something to no stem when there's one (since knn also train on 0s) + if stem.rhythm==0 and max(leftHeight, rightHeight)>0: + stem.rhythm = 1 + elif stem.rhythm == 0: + sy0, sy1 = stem.getY0Y1() + nx0, ny0, nx1, ny1 = stem.noteBox + if stem.isup: + x0 = nx0 + x1 = min(nx1+(nx1-nx0), img200bw.shape[1]-1) + y0 = sy0 + y1 = ny1 + else: + x0 = max(nx0-(nx1-nx0)//2,0) + x1 = nx1 + y0 = ny0 + y1 = sy1 + img200Crop = img200bw[y0:y1, x0:x1] + # ['n2', 'n4', 'n816'] (0,1,2), 3 if the box doesn't have stem + predLabel = getSingleStemPred(img200Crop, model=stemUpClassifier if stem.isup else stemDownClassifier) + stem.rhythm = predLabelConvert[predLabel] + stem.isSingle = True + xcenter = stem.start[0] + if len(stem.alternativeBox)==0: + stemX0 = xcenter - bar_height//3 #(bar_height*2//3 if stem.isup else bar_height//3) + stemX1 = xcenter + bar_height//3 #(bar_height//3 if stem.isup else bar_height*2//3) + stemY0,stemY1 = stem.getY0Y1() + else: + # x0,y0,x1,y1, x0 == x1 + x00, stemY0, xcenter2, stemY1 =stem.alternativeBox[0] + assert x00 == xcenter2 + stemX0 = xcenter2 - bar_height//3 + stemX1 = xcenter2 + bar_height//3 + + if stemY0 == stemY1: + stemY1 = stemY0+1 + elif len(stem.alternativeBox)==0: + # y0 is the top, smaller one + stemY0 = stemY0 - beamMapImg[stemY0, -1, 2] + stemY1 = stemY1 + beamMapImg[stemY1, -2, 2] + cropPart = noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] + staffNumPart = mapStaffNum[stemY0:stemY1, stemX0:stemX1] + staffNum = np.max(staffNumPart) + # there's no overlapping group + if np.max(cropPart) == 0: + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = len(noteGroupList) + mapStaffNum[stemY0:stemY1, stemX0:stemX1] = staffNum + noteGroupList.append(NoteGroup(stem)) + else: + overlappingIndex = np.unique(cropPart).tolist() + if 0 in overlappingIndex: + overlappingIndex.remove(0) + if len(overlappingIndex)==1: + currGroupIdx = overlappingIndex[0] + # xcenter-bar_height//2:xcenter+bar_height//2 + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = currGroupIdx + yy,xx = np.where(noteGroupStemMap == currGroupIdx) + mapStaffNum[yy,xx] = np.max(mapStaffNum[yy,xx]) + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx], NoteGroup(stem), beamMapImg) + # noteGroupList[currGroupIdx].addNoteStem(stem) + else: + currGroupIdx = overlappingIndex[0] + noteGroupStemMap[stemY0:stemY1, stemX0:stemX1] = currGroupIdx + for gIdx in overlappingIndex[1:]: + ys,xs = np.where(cropPart == gIdx) + noteGroupStemMap[ys,xs] = currGroupIdx + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx],noteGroupList[gIdx], beamMapImg) + noteGroupList[gIdx] = None + yy,xx = np.where(noteGroupStemMap == currGroupIdx) + mapStaffNum[yy,xx] = np.max(mapStaffNum[yy,xx]) + noteGroupList[currGroupIdx] = mergeNoteGroup(noteGroupList[currGroupIdx], NoteGroup(stem), beamMapImg) + + noteSizes = [] + for ng in noteGroupList: + if ng is None: + continue + for stem in ng.noteStemList: + imgrgb = cv2.rectangle(imgrgb, (stem.getX()-bar_height//3, stem.getTopCoord()[1]), (stem.getX()+bar_height//3, stem.getBottomCoord()[1]), + class_colors[stem.rhythm], 1, cv2.LINE_AA) + x0,y0,x1,y1 = stem.noteBox + noteSizes.append((x1-x0)*(y1-y0)) + imgrgb = cv2.rectangle(imgrgb, (x0,y0),(x1,y1), class_colors[stem.rhythm], 1, cv2.LINE_AA) + if len(stem.alternativeBox) >0: + alterBoxes = stem.alternativeBox + for alterBox in alterBoxes: + imgrgb = cv2.rectangle(imgrgb, (alterBox[0], alterBox[1]),(alterBox[2],alterBox[3]),(120,150,255), 3, cv2.LINE_AA) + kmeans = KMeans(n_clusters = 2, init = np.array([min(noteSizes), max(noteSizes)], dtype=np.uint16).reshape(-1, 1), n_init = 1) + kmeans.fit(np.array(noteSizes,dtype=np.uint16).reshape(-1,1)) + + if kmeans.cluster_centers_[1]/kmeans.cluster_centers_[0]>2: + imgrgb2 = image.copy() + currentCount = -1 + minSize = int(kmeans.cluster_centers_[1]//2) + for ngId, ng in enumerate(noteGroupList): + if ng is None: + continue + stmToRemove = [] + for stemId, stem in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stem.noteBox + currentCount = currentCount+1 + # if kmeans.labels_[currentCount] == 0: + # break + if (x1-x0)*(y1-y0)0: + alterBoxes = stem.alternativeBox + for alterBox in alterBoxes: + imgrgb2 = cv2.rectangle(imgrgb2, (alterBox[0], alterBox[1]),(alterBox[2],alterBox[3]),(120,150,255), 3, cv2.LINE_AA) + stmToRemove.reverse() + for rmId in stmToRemove: + del ng.noteStemList[rmId] + if len(ng.noteStemList) == 0: + noteGroupList[ngId] = None + else: + imgrgb2 = imgrgb + noteGroupMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + ngImg = image.copy() + + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + for idx,ng in enumerate(noteGroupList): + if ng is not None: + x0,y0,x1,y1 = ng.boundingBox + noteGroupMap = cv2.rectangle(noteGroupMap, (x0,y0),(x1,y1), idx, -1) + staffnum = np.max(mapStaffNum[y0:y1, x0:x1]) + mapStaffNum[y0:y1+1, x0:x1+1] = staffnum + coloridx = -1 if staffnum ==0 else staffnum%3 + ngImg = cv2.rectangle(ngImg, (x0,y0),(x1,y1), colors[coloridx], 1, cv2.LINE_AA) + for nb in ng.noteBoxes: + xx0,yy0,xx1,yy1 = nb + ngImg = cv2.rectangle(ngImg, (xx0,yy0),(xx1,yy1), colors[coloridx], 1, cv2.LINE_AA) + beamMapImg = cv2.merge([mapBeamVal, middle, mapStaffNum]) + imwrite('ngImg.jpg',ngImg) + imwrite('knnbeams.jpg',imgrgb) + imwrite('knnbeams2.jpg',imgrgb2) + return noteGroupList, beamMapImg, noteGroupStemMap, noteGroupMap, {'knnbeams':imgrgb,'ngImg': ngImg, 'knnbeams2': imgrgb2} + + +def findRests(dataDict:dict, + beamMapImg: np.ndarray,barheight:float, + model: Rest_Classifier,): + restList:List[Rest|None] = [None] + restMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + symbol = dataDict['symbols'].astype(np.uint8) # 1 where there's symbols + stem_rests = dataDict['stems_rests'].astype(np.uint8) + bb,gg,rr = cv2.split(beamMapImg) + mask = np.ones_like(symbol, dtype= np.uint8) + stemRestClean = cv2.cvtColor(stem_rests*255, cv2.COLOR_GRAY2BGR) + ys,xs = np.where(bb==255) + mask[ys,xs] = 0 + stem_rests[ys,xs] = 0 + # mask = cv2.erode(mask.astype(np.uint8), np.ones((barheight//2, barheight//4),dtype=np.uint8)).squeeze() + ys,xs = np.where(gg>0) + mask[ys,xs] = 0 + stem_rests[ys,xs] = 0 + stem_rests = cv2.dilate(stem_rests.astype(np.uint8), np.ones((barheight//3, barheight//3), dtype= np.uint8)) + + # remaining = cv2.bitwise_or(cv2.bitwise_and(mask,symbol), stem_rests)*255 + remaining = cv2.bitwise_and(mask,symbol)*255 + remaining = cv2.cvtColor(remaining,cv2.COLOR_GRAY2BGR) + symbol = cv2.cvtColor(symbol*255,cv2.COLOR_GRAY2BGR) + + contours, _ = cv2.findContours(stem_rests.astype(np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + stem_rests = cv2.cvtColor((stem_rests*255).astype(np.uint8), cv2.COLOR_GRAY2BGR) + + # save the image version (later can give img128 version), stem_rests itself, remaining + bboxes = [] + longBoxes = [] + # imageClean = image.copy() + remainingClean = remaining.copy() + class_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (245, 220, 255),(230,130,175),(165,170, 70)] + restClassNames = ['X', 'r16', 'r32', 'r4', 'r8'] + restToRhythm = [0,2,3,0,1] + imgrgb = dataDict['image'].copy() + for j in range(0,len(restClassNames)): + imgrgb = cv2.putText(imgrgb,restClassNames[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + # filter out too big of boxed (likely some error) + if (w>barheight*2 and h>barheight): + continue + if (w>barheight*0.6 and h>barheight): + box = (max(x-barheight//2, 0), max(y-barheight*2, 0), min(x+w+barheight//2, symbol.shape[1]-1), min(y+h+barheight*2, symbol.shape[0]-1)) + # shrink the box so it centers around the rest + yTopBlank = max(np.max(np.where(np.sum(remainingClean[box[1]:(box[1]+box[3])//2, box[0]:box[2],1],1)<255)[0].tolist()+[0])-barheight//4, 0) + # the index of the ending (the new height) + yBottomBlank = min(np.min(np.where(np.sum(remainingClean[(box[1]+box[3])//2:box[3], box[0]:box[2],1],1)<255)[0].tolist()+[box[3]-box[1]])+(box[3]-box[1])//2+barheight//4, box[3]-box[1]) + # xLeftBlank = max(np.max(np.where(np.sum(remainingClean[box[1]:box[3], box[0]:(box[0]+box[2])//2,1],0)<255)[0].tolist()+[0]), 0) + # yRightBlank = min(np.min(np.where(np.sum(remainingClean[box[1]:box[3], (box[0]+box[2])//2:box[2],1],0)<255)[0].tolist()+[box[2]-box[0]])+(box[2]-box[0])//2, box[2]-box[0]) + # redo the training? No + predict_idx = model.predict(remainingClean[box[1]:box[3], box[0]:box[2],:]) + # predict_idx = model.predict(remainingClean[box[1]+yTopBlank:box[1]+yBottomBlank, box[0]+xLeftBlank:box[0]+yRightBlank,:]) + box = (x, box[1]+yTopBlank, x+w, box[1]+yBottomBlank) + if predict_idx>0: + bboxes.append(box) + restMap[box[1]:box[3],box[0]:box[2]] = len(restList) + restList.append(Rest(box,restToRhythm[predict_idx])) + gg = cv2.rectangle(gg, (box[0], box[1]), (box[2],box[3]),5, -1) + imgrgb = cv2.rectangle(imgrgb,(box[0], box[1]), (box[2],box[3]), class_colors[predict_idx], 2, cv2.LINE_AA) + # remaining = cv2.rectangle(remaining, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + # stem_rests = cv2.rectangle(stem_rests, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + # symbol = cv2.rectangle(symbol, (box[0], box[1]), (box[2],box[3]), (0,255,0), 2, cv2.LINE_AA) + elif (w>barheight*0.8 and hbarheight*0.3): + box = (x,y,x+w,y+h) + longBoxes.append(box) + gg = cv2.rectangle(gg, (box[0], box[1]), (box[2],box[3]),5, -1) + imgrgb = cv2.rectangle(imgrgb,(box[0], box[1]), (box[2],box[3]), (255,0,255), 2, cv2.LINE_AA) + restMap[box[1]:box[3],box[0]:box[2]] = len(restList) + restList.append(Rest(box,-1)) + # remaining = cv2.rectangle(remaining, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # stem_rests = cv2.rectangle(stem_rests, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # symbol = cv2.rectangle(symbol, (box[0], box[1]), (box[2],box[3]), (0,0,255), 2, cv2.LINE_AA) + # init_rest_folder() + # labelRestData([imageClean, stemRestClean, remainingClean], bboxes, imgname) + imwrite('remaining.jpg',remaining) + imwrite('remainingStemRests.jpg',stem_rests) + imwrite('RestClassification.jpg',imgrgb) + beamMapImg = cv2.merge([bb,gg,rr]) + # return {'RestBarline1': remaining, 'RestBarline2': symbol} + return restMap, restList, beamMapImg, {'RestClassification': imgrgb} + +def mergeVerticalNoteGroups(staffObjList:List[Staff],noteGroupList:List[NoteGroup], noteGroupMap:np.ndarray,beamMapImg:np.ndarray, image:np.ndarray, + restMap, restList:List[Rest]): + for staff in staffObjList: + barh = staff.get_yOne() + oneStep = barh//3 + y0 = max(staff.ys[0]-int(barh*2.5),0) + y1 = min(staff.ys[-1]+int(barh*2.5), noteGroupMap.shape[0]) + tempRestMap = restMap.copy() + for x in range(staff.left, staff.right-oneStep, oneStep): + indexes = set(np.unique(noteGroupMap[y0:y1, x])) + indexesNext = set(np.unique(noteGroupMap[y0:y1, x+oneStep])) + rIndex = set(np.unique(tempRestMap[y0:y1, x])) + rIndexNext = set(np.unique(tempRestMap[y0:y1, x+oneStep])) + line = set(np.unique(beamMapImg[y0:y1, x:x+oneStep,2])) + indexes -= {0} + indexesNext-={0} + line-={0} + rIndex-={0} + rIndexNext-={0} + if len(line)>1: + continue + if len(indexes) == 0: + continue + # the overlapping x width is at least oneStep width + noteGroupId = list(indexes)[0] + lineList = list(line) + idxList = list(indexes) + + if len(indexes)>1 and indexes==indexesNext: # two noteGroup overlap + noteGroupId = idxList.pop() + for gid in idxList: + ys,xs = np.where(noteGroupMap == gid) + noteGroupMap[ys,xs] = noteGroupId + beamMapImg[ys, xs, 2] = lineList[0] + noteGroupList[noteGroupId]=mergeNoteGroup(noteGroupList[noteGroupId], noteGroupList[gid], beamMapImg) + noteGroupList[gid] = None + if len(rIndex)>0 and rIndex == rIndexNext: + ridLst = list(rIndex) + for rid in ridLst: + ys,xs = np.where(tempRestMap == rid) + if restList[rid].rhythm == -1: + continue + else: + tempRestMap[ys,xs] = 0 + beamMapImg[ys,xs,2] = lineList[0] + noteGroupList[noteGroupId].addRest(restList[rid]) + restList[rid].setNgId(noteGroupId) + ngImg = image.copy() + colors = [(0,0,255),(0,255,0),(255,255,0), (0,120,230)] + for ng in noteGroupList: + if ng is not None: + x0,y0,x1,y1 = ng.boundingBox + ngImg = cv2.rectangle(ngImg, (x0,y0),(x1,y1), colors[(np.max(beamMapImg[y0:y1, x0:x1, 2])%3 if np.max(beamMapImg[y0:y1, x0:x1, 2])>0 else 3)], 2, cv2.LINE_AA) + imwrite('vertically_merged.jpg', ngImg) + return noteGroupList, noteGroupMap, beamMapImg, {'vertically_merged':ngImg} + +def symbol_classification(dataDict: dict, model:Sfn_Clef_classifier, bar_height:int): + def getbbox(clefs_keys: np.ndarray, bar_height:int)-> List[Tuple[int,int,int,int]]: + contours, _ = cv2.findContours(clefs_keys.astype(np.uint8), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) + bboxes = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + if w>3 and h>bar_height*1.6 and h>w: + box = (x, y, x+w, y+h) + bboxes.append(box) + return bboxes + def getBestRange(avg_color_lst: list, desire_length:int): + if desire_length>=len(avg_color_lst)-1: + return 0, len(avg_color_lst)-1 + most_white_value = 0 + most_white_ending_idx = 0 + for i in range(desire_length,len(avg_color_lst)-1): + currSum = sum(avg_color_lst[i-desire_length:i]) + if currSum>most_white_value: + most_white_value=currSum + most_white_ending_idx = i + return most_white_ending_idx-desire_length, most_white_ending_idx + def sfnClefToDataType(bbox:Tuple[int,int,int,int], predictionId: int) -> Union[Accidentals, Clef]: + # 'BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG' + isClef = [True, True, False, False, False, False, True] + mapId = [-1, 0, -1, 0, -3, 1, 1] + # we should never try to assign a noClass + assert predictionId != 4 + if isClef[predictionId]: + return Clef(bbox, mapId[predictionId]) + else: + return Accidentals(bbox, mapId[predictionId]) + + # output_dir will be images/tch/tch SYMBOL + clefs_keys_ori:np.ndarray = dataDict['clefs_keys'] + clefs_keys = (clefs_keys_ori*255).astype(np.uint8) + clefs_keys_expand = cv2.dilate(clefs_keys, cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(4,4))) + image:np.ndarray = dataDict['image'] + round1_sfn_img = image.copy() + ori_bboxes = getbbox(clefs_keys_expand, bar_height) + bboxes = merge_nearby_bbox(ori_bboxes, bar_height*3) + class_names = ['BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG','wide'] # Replace with actual class names + class_symbols = ['Bass','Viola','b','n','x','#','Treble','Wide'] + class_colors = [(255,0,0),(0,255,0),(255,255,0),(255,0,125),(0,120,255),(255,0,255),(0,0,255),(101,134,168)] + for j in range(0,len(class_colors)): + round1_sfn_img = cv2.putText(round1_sfn_img,class_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors[j], 2, cv2.LINE_AA) + noClass_bbox = [] + sfn_height_lst = [] + sfn_width_lst = [] + # the 0th is a stub for better alignment + returnSfnList:List[Union[Accidentals,Clef, None]] = [None] + for b in bboxes: + if (b[3]-b[1])<(b[2]-b[0]): # height likely it's flat instead + predict_idx = 2 + if predict_idx == 2 or predict_idx==5 or predict_idx==3: + # this is flat | sharp | natural + sfn_height_lst.append(b[3]-b[1]) + sfn_width_lst.append(b[2]-b[0]) + round1_sfn_img = cv2.rectangle(round1_sfn_img, (b[0],b[1]),(b[2],b[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round1_sfn_img = cv2.putText(round1_sfn_img, class_symbols[predict_idx], (b[0],b[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + if predict_idx == 4 or predict_idx==7: + noClass_bbox.append(b) + else: + returnSfnList.append(sfnClefToDataType(b, predict_idx)) + noClass_bbox2 = [] + round2_sfn_img = round1_sfn_img.copy() + sfn_median_height = bar_height*2 + sfn_median_width = bar_height + if len(sfn_height_lst)>0: + sfn_median_height = int(np.median(sfn_height_lst)) + sfn_median_width = int(np.median(sfn_width_lst)) + + for box1 in noClass_bbox: + x0 = box1[0] + y0 = box1[1] + clef_key_crop = clefs_keys[box1[1]:box1[3], box1[0]:box1[2]] + smallbbox = getbbox(clef_key_crop, bar_height) + if len(smallbbox)<=1: + if len(smallbbox)==1 and ((box1[2]-box1[0])>sfn_median_width*1.5 or (box1[3]-box1[1])>sfn_median_height*1.5): + noClass_bbox2.append(box1) + predict_idx = 4 + round2_sfn_img = cv2.rectangle(round2_sfn_img, (box1[0],box1[1]),(box1[2],box1[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round2_sfn_img = cv2.putText(round2_sfn_img, class_symbols[predict_idx], (box1[0],box1[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + continue + for bb in smallbbox: + b = [x0+bb[0],y0+bb[1],x0+bb[2],y0+bb[3]] + small_crop = clefs_keys[b[1]:b[3], b[0]:b[2]] + predict_idx = model.predict(small_crop) + round2_sfn_img = cv2.rectangle(round2_sfn_img, (b[0],b[1]),(b[2],b[3]), class_colors[predict_idx],2,cv2.LINE_AA) + round2_sfn_img = cv2.putText(round2_sfn_img, class_symbols[predict_idx], (b[0],b[3]+10),cv2.FONT_HERSHEY_SIMPLEX, 1, class_colors[predict_idx], 1, cv2.LINE_AA) + + if predict_idx == 4: + if (small_crop.shape[0]>sfn_median_height*1.5 and small_crop.shape[1]>sfn_median_width*0.8) or (small_crop.shape[0]>sfn_median_height*0.8 and small_crop.shape[1]>sfn_median_width*1.5): + noClass_bbox2.append(b) + else: + continue + else: + returnSfnList.append(sfnClefToDataType(b, predict_idx)) + for box1 in noClass_bbox2: + x0 = box1[0] + y0 = box1[1] + w = box1[2]-x0 + h = box1[3]-y0 + seg_img = clefs_keys[y0:y0+h, x0:x0+w] + width_ratio =w/sfn_median_width + height_ratio = h/sfn_median_height + num_symbol = round(max(width_ratio, height_ratio)) + if num_symbol<2: + continue + if width_ratio>height_ratio: + left_center = sfn_median_width//2 + right_center = w-sfn_median_width//2 + avg_width:float = (right_center-left_center)/(num_symbol-1) + for i in range(num_symbol): + img_left = int(i*avg_width) + crop_img = seg_img[:,img_left:min(img_left+sfn_median_width,seg_img.shape[1])] + vertical_avg = np.mean(crop_img,1) + front,back = getBestRange(vertical_avg, sfn_median_height) + # b: x0, y0, x1, y1 relative to the croped image + b = [max(img_left,0),max(front,0), + min(img_left+sfn_median_width,seg_img.shape[1]), min(back,seg_img.shape[0])] + crop_crop_img = seg_img[b[1]:b[3], b[0]:b[2]] + # predict_idx = model.predict(crop_crop_img) + if sum(np.max(crop_crop_img,1))<=0: + continue + if sum(np.max(crop_crop_img,1))/255/crop_crop_img.shape[0]<=0.6: + continue + predict_lst = model.get_prediction_vector(crop_crop_img) + pred_filter = [x for x in predict_lst if x not in [0,1,4,6,7]] + predict_idx = pred_filter[0] + returnSfnList.append(sfnClefToDataType((x0+b[0], y0+b[1], x0+b[2],y0+b[3]), predict_idx)) + else: + seg_img_to_delete = seg_img.copy() + vertical_boxes = [] + pred_idx = [] + + b = [0,0,w,sfn_median_height] #x0, y0, x1, y1 + hor_avg_top = np.mean(seg_img[b[1]:b[3],:],0) + b[0],b[2] = getBestRange(hor_avg_top, sfn_median_width) + seg_img_to_delete[b[1]:b[3],b[0]:b[2]] = 0 + vertical_boxes.append(b) + + b = [0,h-sfn_median_height-1,w,h-1] + hor_avg_bot = np.mean(seg_img[b[1]:b[3],:],0) + b[0],b[2] = getBestRange(hor_avg_bot, sfn_median_width) + seg_img_to_delete[b[1]:b[3],b[0]:b[2]] = 0 + vertical_boxes.append(b) + + if h>sfn_median_height*2: + b = [0,0,0,0] + if np.max(seg_img_to_delete) == 0: # if there's some issue with the bounding box basically + break + # middle_del = seg_img_to_delete[sfn_median_height//2:h-sfn_median_height//2,:] + ver_avg_mid = np.mean(seg_img_to_delete,1) + b[1],b[3] = getBestRange(ver_avg_mid, sfn_median_height) + expanded_left_right = [min(vertical_boxes[0][0],vertical_boxes[1][0]), + max(vertical_boxes[0][2],vertical_boxes[1][2])] + if expanded_left_right[0]>=w-expanded_left_right[1]-sfn_median_width//5: + b[2] = sfn_median_width + else: + b[0] = w-sfn_median_width-1 + b[2] = w-1 + vertical_boxes.append(b) + seg_img_bgr = cv2.cvtColor(seg_img,cv2.COLOR_GRAY2BGR) + seg_img_bgr = cv2.rectangle(seg_img_bgr, (b[0],b[1]),(b[2],b[3]),(0,255,0),2,cv2.LINE_AA) + + for idx, b in enumerate(vertical_boxes): + predict_lst = model.get_prediction_vector(seg_img[b[1]:b[3],b[0]:b[2]]) + pred_filter = [x for x in predict_lst if x not in [0,1,4,6,7]] + predict_idx = pred_filter[0] + if idx == 2 and predict_lst[0] == 4: + continue + returnSfnList.append(sfnClefToDataType((x0+b[0], y0+b[1], x0+b[2],y0+b[3]), predict_idx)) + sfnClefImg = image.copy() + class_colors2 = [(255,255,0),(255,0,125),(255,0,255),(255,0,0),(0,255,0),(0,0,255)] + class_names2 = ['flat', 'natural', 'sharp','BassF', 'ViolaC', 'trebleG'] + for j in range(0,len(class_colors2)): + sfnClefImg = cv2.putText(sfnClefImg,class_names2[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, class_colors2[j], 2, cv2.LINE_AA) + # class_names = ['BassF', 'ViolaC', 'flat', 'natural', 'noClass', 'sharp', 'trebleG','wide'] + + sfnClefMap = np.zeros((sfnClefImg.shape[0], sfnClefImg.shape[1]), dtype=np.uint16) + for idx,clefAccidentals in enumerate(returnSfnList): + if clefAccidentals is not None: + x0,y0,x1,y1 = clefAccidentals.getBbox() + # 0 if it's accidentals + predict_idx = clefAccidentals.getType()*3+clefAccidentals.getValue()+1 + sfnClefImg = cv2.rectangle(sfnClefImg, (x0,y0),(x1,y1), class_colors2[predict_idx],2,cv2.LINE_AA) + sfnClefMap = cv2.rectangle(sfnClefMap, (x0,y0),(x1,y1), idx, -1) + + imwrite('round1Sfn.jpg',round1_sfn_img) + imwrite('round2Sfn.jpg',round2_sfn_img) + imwrite('round3Sfn.jpg', sfnClefImg) + + return returnSfnList, sfnClefMap, {'sfnClef':sfnClefImg} + +def exportYolo(sfnClefList:List[Accidentals|Clef], image:np.ndarray,img_name:str, barheight: int): + if not os.path.isdir("yolo"): + os.mkdir("yolo") + if not os.path.isdir("yolo/debug"): + os.mkdir("yolo/debug") + height, width, _ = image.shape + outputString = "" + imgg = image.copy() + for sfnClef in sfnClefList: + if type(sfnClef) == Clef: + if sfnClef.getValue() == 0 or sfnClef.getValue() == -2: + x0,y0,x1,y1 = sfnClef.boundingBox + if y1-x1 < 3*barheight: + continue + cv2.rectangle(imgg, (x0,y0),(x1,y1),(0,0,255), 2, cv2.LINE_AA) + xPerc = (x1+x0)/2/width + yPerc = (y1+y0)/2/height + xWidth = (x1-x0)/width + yHeight = (y1-y0)/height + print(f"{1} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}") + outputString += f"{1} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}\n" + elif type(sfnClef) == Accidentals: + if sfnClef.getValue() == -1: + # is flat + x0,y0,x1,y1 = sfnClef.boundingBox + cv2.rectangle(imgg, (x0,y0),(x1,y1),(0,255,0), 2, cv2.LINE_AA) + xPerc = (x1+x0)/2/width + yPerc = (y1+y0)/2/height + xWidth = (x1-x0)/width + yHeight = (y1-y0)/height + print(f"{0} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}") + outputString += f"{0} {xPerc:.6f} {yPerc:.6f} {xWidth:.6f} {yHeight:.6f}\n" + with open(f"yolo/{img_name}.txt","w") as f: + f.write(outputString) + cv2.imwrite(f"yolo/{img_name}.jpg", image) + cv2.imwrite(f"yolo/debug/{img_name}.jpg",imgg) + +# filter out the sfn that is overlapping with noteGroupList +def filterSfnClefModifyBeamMap(sfnClefList:List[Union[Accidentals, Clef, None]], + noteGroupMap: np.ndarray, + beamMapImg:np.ndarray): + sfnClefMap = np.zeros((beamMapImg.shape[0], beamMapImg.shape[1]), dtype=np.uint16) + bb,gg,rr = cv2.split(beamMapImg) + assert len(np.unique(gg)) <=2 + for idx, sfnClef in enumerate(sfnClefList): + if sfnClef is not None: + x0,y0,x1,y1 = sfnClef.getBbox() + if np.sum(noteGroupMap[y0:y1,x0:x1]>0)/((x1-x0)*(y1-y0))>0.5: + sfnClefList[idx] = None + else: + sfnClefMap[y0:y1,x0:x1] = idx + # 2 for accidentals, 3 for clef + gg[y0:y1,x0:x1] = sfnClef.getType()+2 + # will want the noteGroup to be "more dominent" than the sfnClef, so it overwrites if it's place of a sfn + ys,xs = np.where(noteGroupMap>0) + gg[ys,xs] = 1 + beamMapImg = cv2.merge([bb,gg,rr]) + return sfnClefList,sfnClefMap, beamMapImg + +def enhanceStaff(image:np.ndarray, staffObjList:List[Staff],barheight:int): + _, img200 = cv2.threshold(image, 200, 255, cv2.THRESH_BINARY) + for staff in staffObjList: + if staff.IsStaffAligned(barheight): + for y in staff.ys: + img200 = cv2.line(img200, (staff.left, y), (staff.right, y), (0,0,0), 1, cv2.LINE_AA) + imwrite('enhanceStaff.jpg',img200) + return img200 + +def assignPitch(image:np.ndarray, noteGroupList:List[NoteGroup|None], beamMapImg:np.ndarray, barheight:int): + # assign the "pitch" relative to the center of the staff (12.5), + # ex: in violin, B will be 0, C:1,D:2, A: -1 etc + # if it doesn't have a staff line id yet, group it using the beamMapImg[:,:,4] + # image is for outputting debug images + pitchImg = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + _, imgBin = cv2.threshold(pitchImg, 200, 1, cv2.THRESH_BINARY_INV) + _,pitchImg = cv2.threshold(pitchImg, 200, 255, cv2.THRESH_BINARY) + pitchLineImg = pitchImg.copy() + pitchLineImg = cv2.cvtColor(pitchLineImg, cv2.COLOR_GRAY2BGR) + pitchImg = pitchImg//4+191 + pitchImg = cv2.cvtColor(pitchImg, cv2.COLOR_GRAY2BGR) + pitch_colors = [(255,0,0),(0,0,255),(255,255,0),(0,120,255),(40,255,40), (255,0,255),(230,130,175),(165,170, 70)] + pitch_names = ['B','C','D','E','F','G','A'] + for j in range(0,len(pitch_names)): + pitchImg = cv2.putText(pitchImg,pitch_names[j], (30, 30+j*30), cv2.FONT_HERSHEY_SIMPLEX, 0.7, pitch_colors[j], 2, cv2.LINE_AA) + for ng in noteGroupList: + if ng is None: + continue + for stemObj in ng.noteStemList: + x0,y0,x1,y1 = stemObj.smallNoteBox + staffNum = np.max(beamMapImg[y0:y1,x0:x1,2]) + if staffNum == 0: + staffNum = round(np.sum(beamMapImg[y0:y1,4,2]/(y1-y0))) + height = np.sum((beamMapImg[y0:y1,staffNum%4,2]-12.5)*2)/(y1-y0) + stemObj.pitchFloat = height + + x0,y0,x1,y1 = stemObj.noteBox + height2 = np.sum((beamMapImg[y0:y1,staffNum%4,2]-12.5)*2)/(y1-y0) + if height2-int(height2) == 0: + stemObj.pitchWideFloat = height + else: + stemObj.pitchWideFloat = height2 + + pitchAndLineImg = pitchImg.copy() + modifiedPitchImg = pitchImg.copy() + + for ngIdx, ng in enumerate(noteGroupList): + if ng is None: + continue + for idx,stemObj in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stemObj.smallNoteBox + _,y0B, _, y1B = stemObj.noteBox + pitch = stemObj.pitchFloat + xx0 = max(x0-barheight//2, 0) + xx1 = min(x1+barheight//2, beamMapImg.shape[1]-1) + cc = np.sum(imgBin[max(y0B,y0-2):min(y1B,y1+3), xx0:xx1],1).tolist() + ccNozero = [c for c in cc if c>0] + maxIdx = [i for i in range(len(ccNozero)) if ccNozero[i]==max(ccNozero)] + # center that was tilted and thick + if (maxIdx[0]>len(ccNozero)/2 and maxIdx[0]len(ccNozero)*0.8) and maxIdx[-1]-maxIdx[0]>=3: # TODO + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + # center + if len(set.intersection(set([len(ccNozero)//2,len(ccNozero)//2-1, len(ccNozero)//2+1]), maxIdx))>0: + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + # top or bottom + elif y1-y0>barheight//2 and (maxIdx[0]<=3 or maxIdx[-1]>=len(ccNozero)-4): + stemObj.hasLineMiddle = False + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0),(xx1, y1),(0,255,0), 1, cv2.LINE_AA) + # if it has line in the middle + elif ccNozero[maxIdx[0]]>(x1-x0): + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,0,255), 2, cv2.LINE_AA) + else: + stemObj.hasLineMiddle = True + pitchLineImg=cv2.rectangle(pitchLineImg,(xx0, y0+maxIdx[0]),(xx1, y0+maxIdx[-1]),(255,255,0), 2, cv2.LINE_AA) + + p1 = math.ceil(pitch) + p2 = math.floor(pitch) + pitchLineImg = cv2.putText(pitchLineImg, str(ngIdx), (x0,y0-barheight*2), cv2.FONT_HERSHEY_SIMPLEX, 0.2, (0,0,0), 1, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(ngIdx), (x0,y0-barheight*2), cv2.FONT_HERSHEY_SIMPLEX, 0.2, (0,0,0), 1, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(pitch_names[p1%7]), (x0,y0), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[p1%7], 2, cv2.LINE_AA) + pitchAndLineImg = cv2.putText(pitchAndLineImg, str(pitch_names[p2%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[p2%7], 2, cv2.LINE_AA) + pitchAndLineImg = cv2.rectangle(pitchAndLineImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + pitchImg = cv2.putText(pitchImg, str(pitch_names[round(pitch)%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[round(pitch)%7], 2, cv2.LINE_AA) + pitchImg = cv2.rectangle(pitchImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + + xend = pitchLineImg.shape[1]-1 + for i in range(pitchLineImg.shape[0]-1): + currStaffNum = beamMapImg[i,4,2] + if beamMapImg[i,currStaffNum%4, 2] != beamMapImg[i+1,currStaffNum%4, 2]: + pitchLineImg = cv2.line(pitchLineImg,(0,i),(xend,i),pitch_colors[currStaffNum%4],thickness=1, lineType=cv2.LINE_AA) + pitchAndLineImg = cv2.line(pitchAndLineImg,(0,i),(xend,i),pitch_colors[currStaffNum%4],thickness=1, lineType=cv2.LINE_AA) + + for idx, ng in enumerate(noteGroupList): + if ng is None: + continue + for stem in ng.noteStemList: + pitchInt = stem.getBestPitchInt() + x0,y0,x1,y1 = stem.noteBox + # modifiedPitchImg = cv2.putText(modifiedPitchImg, str(idx), (x0,y0), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[pitchInt%7], 2, cv2.LINE_AA) + modifiedPitchImg = cv2.putText(modifiedPitchImg, str(pitch_names[pitchInt%7]), (x0,y1), cv2.FONT_HERSHEY_SIMPLEX, 0.5, pitch_colors[pitchInt%7], 2, cv2.LINE_AA) + modifiedPitchImg = cv2.rectangle(modifiedPitchImg, (x0,y0),(x1,y1), (30,30,30), 1,cv2.LINE_AA) + stem.pitchSoprano = pitchInt + + + imwrite('pitchline.jpg', pitchLineImg) + imwrite('pitchAndLine.jpg', pitchAndLineImg) + imwrite('pitch.jpg', pitchImg) + imwrite('pitchModified.jpg', modifiedPitchImg) + return noteGroupList, {'pitch':pitchImg, + 'pitchAndLine':pitchAndLineImg, + 'pitchline': pitchLineImg, + 'pitchModified':modifiedPitchImg} + +def getNoteChunks(image: np.ndarray, noteGroupMap:np.ndarray, beamMapImg:np.ndarray, noteGroupVerticallyMerged:List[NoteGroup]): + imgrgb = image.copy() + beamBinary = np.zeros((beamMapImg.shape[0],beamMapImg.shape[1])) + xs,ys = np.where(beamMapImg[:,:,0]==255) + beamBinary[xs,ys] = 1 + contours, _ = cv2.findContours(beamBinary.astype(np.uint8),cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + beamBoxes:List[Tuple[int,int,int,int]] = [] + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + beamBoxes.append((x,y,x+w,y+h)) + imgrgb = cv2.rectangle(imgrgb,(x,y), (x+w, y+h), (0,0,255), 2, cv2.LINE_AA) + imwrite('beamContour.jpg',imgrgb) + + noteChunkList:List[NoteChunk] = [None] + noteChunkMap = np.zeros_like(noteGroupMap) + for box in beamBoxes: + currentNoteChunkIdxs = set(np.unique(noteChunkMap[box[1]:box[3], box[0]:box[2]])) + allNoteGroupIdxs = set(np.unique(noteGroupMap[box[1]:box[3], box[0]:box[2]])) + allNoteGroupIdxs.add(0) + allNoteGroupIdxs.remove(0) + currentNoteChunkIdxs.add(0) + currentNoteChunkIdxs.remove(0) + if len(allNoteGroupIdxs) == 0: + continue + if len(currentNoteChunkIdxs)==0: + n = NoteChunk(allNoteGroupIdxs) + for a in allNoteGroupIdxs: + ys,xs = np.where(noteGroupMap==a) + noteChunkMap[ys,xs] = len(noteChunkList) + noteChunkList.append(n) + elif len(currentNoteChunkIdxs) == 1: + noteChunkList[min(currentNoteChunkIdxs)].mergeNoteChunk(allNoteGroupIdxs) + for a in allNoteGroupIdxs: + ys,xs = np.where(noteGroupMap==a) + noteChunkMap[ys,xs] = min(currentNoteChunkIdxs) + else: + minChunkIdx = min(currentNoteChunkIdxs) + currentNoteChunkIdxs.remove(minChunkIdx) + for chunkIdx in list(currentNoteChunkIdxs): + ys,xs = np.where(noteChunkMap==chunkIdx) + noteChunkMap[ys,xs] = minChunkIdx + noteChunkList[minChunkIdx].mergeNoteChunk(noteChunkList[chunkIdx].noteGroupIdxs) + noteChunkList[chunkIdx] = None + imggg = image.copy() + for ii, nc in enumerate(noteChunkList): + if nc is None: + continue + for id in nc.noteGroupIdxs: + noteGroupVerticallyMerged[id].noteChunkId = ii + bx = nc.getBoundingBox(noteGroupVerticallyMerged) # changed here + imggg = cv2.rectangle(imggg, (bx[0],bx[1]),(bx[2], bx[3]),(0,0,255), 2, cv2.LINE_AA) + imwrite("horizontalGrouping.jpg", imggg) + return noteChunkList, imggg + +def findBarlines(image:np.ndarray, beamMapImg:np.ndarray, staffObjList:List[Staff], noteGroupStemMap:np.ndarray, thres:float)->np.ndarray: + img200 =cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) + barlineImg = np.zeros((image.shape[0], image.shape[1]),dtype=np.uint8) + # (1) where there's stuff, (0) where there's no + _,img200bin = cv2.threshold(img200, 200, 1, cv2.THRESH_BINARY_INV) + ys,xs = np.where(beamMapImg[:,:,1]>0) + img200bin[ys,xs] = 0 + ys,xs = np.where(noteGroupStemMap>0) + img200bin[ys,xs] = 0 + for idx,staff in enumerate(staffObjList): + ys = staff.ys + y0 = ys[0] + y1 = ys[-1] + xs = np.where(np.sum(img200bin[y0:y1, :],0)>(y1-y0)*thres)[0] + beamMapImg[y0:y1,xs,1] = 4 + beamMapImg[y0:y1,xs-1,1] = 4 + beamMapImg[y0:y1,xs+1,1] = 4 + barlineImg[y0:y1, xs] = 1 + contours, _ = cv2.findContours(barlineImg, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) + barlineboxes:List[Tuple[int,int,int,int]] = [] + imgbgr = image.copy() + for cnt in contours: + x, y, w, h = cv2.boundingRect(cnt) + barlineboxes.append((x,y,x+w,y+h)) + imgbgr = cv2.rectangle(imgbgr, (x,y), (x+w, y+h), (0,0,255),1,cv2.LINE_AA) + imwrite("barLineImg.jpg",imgbgr) + return beamMapImg, barlineboxes, imgbgr + +def assignDots(noteGroupVerticallyMerged:List[NoteGroup],beamMapImg:np.ndarray, image:np.ndarray,bar_height:int,staffObjList:List[Staff]): + imgbgr = image.copy() #bgr + _,gg,_ = cv2.split(beamMapImg) + params = cv2.SimpleBlobDetector_Params() + + params.filterByArea = True + params.minArea = bar_height*bar_height//16 + params.maxArea = bar_height*bar_height//2 + + params.filterByCircularity = False + params.filterByConvexity = False + params.filterByInertia = True + params.minInertiaRatio = 0.5 + + detector = cv2.SimpleBlobDetector_create(params) + _, thresh_image = cv2.threshold(image[:,:,1], 150, 255, cv2.THRESH_BINARY) + thresh_origin = thresh_image.copy() + for sf in staffObjList: + for yOne in sf.ys: + thresh_image[yOne-math.ceil(bar_height/8):yOne+bar_height//8+1,:] = 255 + + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for sm in ng.noteStemList: + oldbox = sm.noteBox + newbox = (oldbox[2],max(0,oldbox[1]-2*bar_height), + min(oldbox[2]+bar_height, image.shape[1]-1), min(oldbox[1]+2*bar_height, image.shape[0]-1)) + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==0)[0],0)) + # since the barline usually isn't thick enough + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==4)[0],realWidth))) + if realWidth>=bar_height-1: + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==0)[0],0)) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==4)[0],realWidth))) + if realWidth>bar_height*0.5: + dotBox = (oldbox[2], max(0,oldbox[1]-bar_height), + min(oldbox[2]+realWidth,image.shape[1]-1),min(oldbox[1]+int(bar_height*1.5), image.shape[0]-1)) + keypoints = detector.detect(thresh_image[dotBox[1]:dotBox[3], dotBox[0]:dotBox[2]]) + if len(keypoints)==0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(0,255,255),1,cv2.LINE_AA) + elif (np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255)[0]).shape[0]>0 and np.min(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255))>bar_height: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(160,100,240),2,cv2.LINE_AA) + else: + sm.hasdot = True + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + imwrite('dotBox.jpg',imgbgr) + return noteGroupVerticallyMerged,{'dotBox':imgbgr} + +def assignRestDots(restList:List[Rest], beamMapImg:np.ndarray, noteGroupStemMap:np.ndarray, image:np.ndarray, bar_height:int, staffObjList:List[Staff]): + imgbgr = image.copy() #bgr + _,gg,_ = cv2.split(beamMapImg) + params = cv2.SimpleBlobDetector_Params() + + params.filterByArea = True + params.minArea = bar_height*bar_height//16 + params.maxArea = bar_height*bar_height//2 + + params.filterByCircularity = False + params.filterByConvexity = False + params.filterByInertia = True + params.minInertiaRatio = 0.5 + + detector = cv2.SimpleBlobDetector_create(params) + _, thresh_image = cv2.threshold(image[:,:,1], 150, 255, cv2.THRESH_BINARY) + thresh_origin = thresh_image.copy() + for sf in staffObjList: + for yOne in sf.ys: + thresh_image[yOne-math.ceil(bar_height/8):yOne+bar_height//8+1,:] = 255 + for rs in restList: + if rs is None: + continue + elif rs.rhythm<0: + continue + newbox = (rs.boundingBox[2],rs.boundingBox[1], + min(rs.boundingBox[2]+bar_height,image.shape[1]),min(rs.boundingBox[1]+2*bar_height,image.shape[0])) + # 先用一個barheight寬度,高度從最高點往下兩個barheight,往上一個,用stem跟rest來縮減 + realWidth = np.max(np.append(np.where(np.max(noteGroupStemMap[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==0)[0],0)) + realWidth = min(realWidth, np.max(np.append(np.where(np.max(beamMapImg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)!=5)[0],0))) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:newbox[2]],0)==4)[0],realWidth))) + # 如果寬度還是滿格的話再往右延長到2*barheight用beamMapImg 來縮減 + if realWidth>=bar_height-1: + realWidth = np.max(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==0)[0],0)) + realWidth = min(realWidth, np.min(np.append(np.where(np.max(gg[newbox[1]:newbox[3],newbox[0]:min(newbox[2]+bar_height,image.shape[1]-1)],0)==4)[0],realWidth))) + elif realWidth>bar_height*0.5: + realWidth = realWidth+bar_height//3 + if realWidth>bar_height*0.5: + dotBox = newbox + keypoints = detector.detect(thresh_image[dotBox[1]:dotBox[3], dotBox[0]:dotBox[2]]) + if len(keypoints)==0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(0,255,200),1,cv2.LINE_AA) + elif len(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255)[0]) == 0: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + elif np.min(np.where(np.min(thresh_origin[dotBox[1]:dotBox[3], dotBox[0]+bar_height//2:dotBox[2]],1)==255))>bar_height: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(160,100,240),2,cv2.LINE_AA) + else: + imgbgr = cv2.rectangle(imgbgr,(dotBox[0],dotBox[1]),(dotBox[2],dotBox[3]),(255,255,0),2,cv2.LINE_AA) + rs.hasdot = True + imwrite('dotRestBox.jpg',imgbgr) + return restList,{'dotRestBox':imgbgr} + +def assignSfnToNote(image:np.ndarray, noteGroupMap:np.ndarray, noteGroupVerticallyMerged:List[NoteGroup],sfnClefMap:np.ndarray,sfnClefList:List[Union[Accidentals, Clef, None]]): + stemIdxMap = np.ones((noteGroupMap.shape[0], noteGroupMap.shape[1]), dtype=np.uint8)*(-1) + accidentalsImg = image.copy() + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for idx, stem in enumerate(ng.noteStemList): + x0,y0,x1,y1 = stem.noteBox + stemIdxMap[y0:y1, x0:x1] = idx + sfnGroupList = [] + for currSfnIdx, sfnc in enumerate(sfnClefList): + if sfnc is None: + continue + if sfnc.getType() == 1: # is Clef + continue + sfnc:Accidentals + x0,y_0,x1,y_1 = sfnc.getBbox() # y0: smaller (top), y1: bigger (bottom) + if sfnc.shift >=0: # sharp or natural + y0 = (y_0+y_1)//2-(y_1-y_0)//6 + y1 = (y_0+y_1)//2+(y_1-y_0)//6 + else: + y0 = (y_0+y_1)//2 + y1 = y_1 + sfnc.shrinkYs = (y0,y1) + stemIdxLst = np.unique(stemIdxMap[y0:y1,x1:x1+(x1-x0)]).tolist() + if -1 in stemIdxLst: + stemIdxLst.remove(-1) + ngIdxLst = np.unique(noteGroupMap[y0:y1,x1:x1+(x1-x0)]).tolist() + if 0 in ngIdxLst: + ngIdxLst.remove(0) + if len(stemIdxLst)==0 or len(ngIdxLst)==0: + # is Key signature or has overlapping sfns + sfnList = np.unique(sfnClefMap[y_0:y_1,x1:x1+(x1-x0)//2]).tolist() + if sfnList == [0]: + sfnc.isKeySignature = True + else: + if 0 in sfnList: + sfnList.remove(0) + sfnNext = sfnList[0] # sfnNext is the index of the next sfn + if type(sfnClefList[sfnNext]) is not Accidentals: + continue + hasAssigned = False + for sIdx in range(len(sfnGroupList)): + if sfnNext in sfnGroupList[sIdx]: + sfnGroupList[sIdx] = [currSfnIdx]+sfnGroupList[sIdx] + hasAssigned = True + continue + elif currSfnIdx in sfnGroupList[sIdx]: + sfnGroupList[sIdx] = sfnGroupList[sIdx]+[sfnNext] + hasAssigned = True + continue + if not hasAssigned: + sfnGroupList.append([currSfnIdx, sfnNext]) + continue + stemIdx = stemIdxLst[0] + ngIdx = ngIdxLst[0] + if len(ngIdxLst)>1: + cntLst = [np.sum(noteGroupMap[y0:y1,x1:x1+(x1-x0)]==i) for i in ngIdxLst] + ngIdx = ngIdxLst[cntLst.index(max(cntLst))] + if len(stemIdxLst)>1: + ngx0, _, ngx1, _ = noteGroupVerticallyMerged[ngIdx].boundingBox + cntLst = [np.sum(np.sum(stemIdxMap[y0:y1,ngx0:ngx1]==i,0)>0) for i in stemIdxLst] + stemIdx = stemIdxLst[cntLst.index(max(cntLst))] + if stemIdx < len(noteGroupVerticallyMerged[ngIdx].noteStemList): + noteGroupVerticallyMerged[ngIdx].noteStemList[stemIdx].accidentals = sfnc.getValue() + sfnc.ngIndex = ngIdx + for grps in sfnGroupList: + currNgIdx = sfnClefList[grps[-1]].ngIndex + if currNgIdx is None: + sfnClefList[grps[-1]].endKeySignature = True + for grr in grps: + sfnClefList[grr].isKeySignature = True + continue + currNg:NoteGroup = noteGroupVerticallyMerged[currNgIdx] + if len(currNg.noteStemList)==1: + continue + ngx0, _, ngx1, _ = currNg.boundingBox + for grr in grps[:-1]: + currSfn = sfnClefList[grr] + y0,y1 = currSfn.shrinkYs + stemIdxLst = np.unique(stemIdxMap[y0:y1,ngx0:ngx1]).tolist() + if -1 in stemIdxLst: + stemIdxLst.remove(-1) + if len(stemIdxLst)>=1: + cntLst = [np.sum(np.sum(stemIdxMap[y0:y1,ngx0:ngx1]==i,0)>0) for i in stemIdxLst] + stemIdx = stemIdxLst[cntLst.index(max(cntLst))] + if currNg.noteStemList[stemIdx].accidentals is None: + noteGroupVerticallyMerged[currNgIdx].noteStemList[stemIdx].accidentals = currSfn.getValue() + noteGroupVerticallyMerged[currNgIdx].noteStemList[stemIdx].accidentalBox = currSfn.boundingBox + else: + print('Error assigning sfn to notes') + + + accidentalsColors = [(255,255,0),(255,0,125),(255,0,255)] # flat, natural, sharp + for ng in noteGroupVerticallyMerged: + if ng is None: + continue + for idx, stem in enumerate(ng.noteStemList): + if stem.accidentals is not None: + x0,y0,x1,y1 = stem.noteBox + currColor = accidentalsColors[stem.accidentals+1] + accidentalsImg = cv2.rectangle(accidentalsImg, (x0,y0),(x1,y1),currColor,3, cv2.LINE_AA) + imwrite("assignedAccidentals.jpg",accidentalsImg,strictlyYes=True) + return stemIdxMap, noteGroupVerticallyMerged, {'assignedAccidentals':accidentalsImg} + +def extendNotegroupsToStaff(noteGroupMap:np.ndarray, + noteGroupVerticallyMerged:List[NoteGroup], + staffObjList:List[Staff], + beamMapImg:np.ndarray): + bb,gg,rr = cv2.split(beamMapImg) + ngZero = np.zeros_like(noteGroupMap) + for sf in staffObjList: + ngZero[sf.ys[0]:sf.ys[-1], sf.left:sf.right] = 1 + for idx, ng in enumerate(noteGroupVerticallyMerged): + if ng is None: + continue + x0,y0,x1,y1 = ng.boundingBox + if np.sum(ngZero[y0:y1,x0:x1])==0: + clefNo = round(np.mean(rr[y0:y1,4])) + if len(np.unique(noteGroupMap[y0:y1,x0:x1])) == 1: + noteNo =np.unique(noteGroupMap[y0:y1,x0:x1])[0] + if y0>staffObjList[clefNo-1].ys[2]: # is at the bottom + y00 = staffObjList[clefNo-1].ys[-2] + y11 = y1 + else: + y00 = y0 + y11 = staffObjList[clefNo-1].ys[1] + gg[y00:y11,x0:x1] = 1 + noteGroupMap[y00:y11,x0:x1]=noteNo + rr[y00:y11,x0:x1] = clefNo + ng.boundingBox = (x0,y00,x1,y11) + + return cv2.merge([bb,gg,rr]), noteGroupMap + +def constructBar(noteGroupMap:np.ndarray, + stemIdxMap: np.ndarray, + noteGroupVerticallyMerged: List[NoteGroup|None], + restMap: np.ndarray, + restList:List[Rest|None], + sfnClefMap:np.ndarray, + sfnClefList:List[Union[Accidentals,Clef, None]], + beamMapImg:np.ndarray, + staffList:List[Staff]): + numLines = len(staffList) + bb,gg,rr = cv2.split(beamMapImg) + barList:List[List[Bar]] = [[] for _ in range(numLines)] + numBarsEachLine:List[int] = [0 for _ in range(numLines)] + mapForMatching:List[np.ndarray|None] = [None,noteGroupMap,sfnClefMap, sfnClefMap, None, restMap] + listForMatching:List[List] = [None, noteGroupVerticallyMerged,sfnClefList, sfnClefList, None, restList] + notFinishedBar = None + allRanges = [] + for kk in range(numLines): + allBars = [] + sf0 = staffList[kk] + barPlace = np.unique(np.where(gg[sf0.ys[0]:sf0.ys[-1], sf0.left:]==4)[1]) + isBar = np.sort(barPlace) + ranges = [] + points = [0,isBar[0]] + i = 1 + while i < len(isBar): + while isBar[i] == isBar[i-1]+1 and ipoints[i]+sf0.get_yOne(): + ranges.append((points[i]+sf0.left, points[i+1]+sf0.left)) + allRanges.append(ranges) + for t in range(numLines): # trackNo + printedLineNo = t # the + currBarList:List[Bar] = [] + sf0 = staffList[printedLineNo] + ranges = allRanges[t] + for ridx, rng in enumerate(ranges): + if notFinishedBar is not None: + bar = notFinishedBar + notFinishedBar = None + else: + bar = Bar() + currX = rng[0] + while currX1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId)==1: + sanityCheck = True + if typeId == 3: # clef + currClef:Clef = sfnClefList[inMapId[0]] + _,yy0,_,yy1 = currClef.boundingBox + if yy1-yy0 < sf0.get_yOne_float()*3: + sanityCheck = False + if currClef.type ==0: + if yy00)[1])) + if nextIdx>5: + rng = (isBar[-1]+sf0.left+1, rng[1]+nextIdx) + bar = Bar() + currX = rng[0] + while currX1: + for i in [1,5,3,2]: + if i in lineLst: + lineLst = [i] + break + if len(lineLst)==0 or 4 in lineLst: + currX+=1 + else: + typeId = lineLst[0] + currMap = mapForMatching[typeId] + currLst = listForMatching[typeId] + inMapId = np.unique(currMap[sf0.ys[0]-sf0.get_yOne():sf0.ys[-1]+sf0.get_yOne(), currX]).tolist() + if 0 in inMapId: + inMapId.remove(0) + if len(inMapId)==1: + bar.addElement(currLst[inMapId[0]]) + currX = currLst[inMapId[0]].boundingBox[2]+1 + else: + currX+=1 + print("has more than 1 id") + notFinishedBar = bar + barList[t] = currBarList + numBarsEachLine[t] = len(currBarList) + # in order of vln1's 1st line, 2nd line ... | vln2's 1st line, 2nd line ... + return barList,allRanges, numBarsEachLine + + + +def find_best_rotation(staffObjList): + def compute_line_angle(y_values, x_start, x_end): + n = len(y_values) + x = np.linspace(x_start, x_end, n) + + # Fit line y = mx + b + m, _ = np.polyfit(x, y_values, 1) + + angle = np.arctan(m) # radians + return angle + angles = [] + + for oneStaff in staffObjList: + angle = compute_line_angle( + oneStaff.yUpperList, + oneStaff.left, + oneStaff.right + ) + angles.append(angle) + angle = compute_line_angle( + oneStaff.yLowerList, + oneStaff.left, + oneStaff.right + ) + angles.append(angle) + best_angle = np.median(angles) + return np.degrees(best_angle) + +def clearExtraMapping(staffList: List[Staff], dataDict, numInstrument: int): + insToDelete = len(staffList)%numInstrument + medStaff = statistics.median([sf.get_yOne_float() for sf in staffList]) + toMedDiff = [abs(sf.get_yOne_float()-medStaff) for sf in staffList] + indices = sorted(range(len(toMedDiff)), key=lambda i: toMedDiff[i], reverse=True)[:insToDelete] + for i in sorted(indices, reverse=True): + del staffList[i] + rangeInPair = [0] + for sf0 in staffList: + rangeInPair.append(sf0.ys[0]-int(sf0.get_yOne_float()*5)) + rangeInPair.append(sf0.ys[-1]+int(sf0.get_yOne_float()*5)) + pageheight = dataDict['image'].shape[0] + rangeInPair.append(pageheight) + pairs = list(zip(rangeInPair[::2], rangeInPair[1::2])) + for ddKey in dataDict: + for (st,ed) in pairs: + dataDict[ddKey][st:ed,:] = dataDict[ddKey][0,0] + return dataDict + +# ================================================================================================== +# main function +# ================================================================================================== +def png2decode(img_name: str, img_path: str, instrumentNumTrack: int = 0, packedImg:bool = False): + base_path = img_path.replace('.png','') + npy_path = f"{base_path}.npy" + pkl_path = f"{base_path}_staffList.pkl" + barList_path = f"{base_path}_barlist.pkl" + + # using oemer's output + if not os.path.exists(npy_path): + printt(f"missing npy for {img_name}") + dataDictOrigin = runModel1(img_path,outputPath = base_path,dodewarp=False,save_npy=True) + if not os.path.exists(pkl_path): + printt(f"missing pkl for {img_name}") + staffListOrigin = runModel2(npy_path, img_path, base_path, packedImg) + if os.path.exists(npy_path) and os.path.exists(pkl_path): + printt(f"working on {img_path}") + dataDict = np.load(npy_path,allow_pickle=True) + dataDict = dataDict.tolist() + + # make the image bigger to ensure distance between two stafflines are > 8px + for k in dataDict.keys(): + img = dataDict[k] + resized_image = cv2.resize(img, None, fx=ORIGINAL_IMAGE_RESIZE_RATIO, fy=ORIGINAL_IMAGE_RESIZE_RATIO, interpolation=cv2.INTER_NEAREST) + dataDict[k] = resized_image + + outputDebugStemRestImg(dataDict) # generate stemrests_ in debug + outputDebugSymbolsImg(dataDict) # generate symbols_ in debug + + bar_height, staffObjList = init_bar_height(dataDict, min_barheight=MIN_BAR_HEIGHT) + + # !!! 五線譜 + # staff.left & staff.right: 五線譜開始/結束的位置 + # staff.ys: [y0, y1, y2, y3, y4] 五線譜每行的中心位置 + # !!! add csv decoding for instruments here + print(f'barheight: {bar_height}') + print(bar_height) + bestRotation = find_best_rotation(staffObjList) + if abs(bestRotation) > 0.05: + for k in dataDict.keys(): + img = dataDict[k] + fillVal = 0 + if k == 'image': + fillVal = 255 + resized_image = rotate(img, angle=bestRotation, reshape=True, mode='constant', cval=fillVal) + dataDict[k] = resized_image + + bar_height, staffObjList = init_bar_height(dataDict, min_barheight=MIN_BAR_HEIGHT) + stepSize = int(bar_height/4) + if instrumentNumTrack != 0: + dataDict=clearExtraMapping(staffObjList, dataDict, instrumentNumTrack) + + beamNoClefKeyWithStemRest, beamWithoutStemRest, beam_nostem = getBeamImage(dataDict, bar_height, staffObjList) + + # get the gradient beamMap and (dont filter noteheadInitial with longer beams cause might remove noteheads) + beamMapImg, debugImages = generateBeamStaffImg(beam_nostem, staffObjList, bar_height,stepSize=stepSize) + + noteheadBoxesInitList, noteBwImageOrigin = getInitialNoteheadBoxList(dataDict, beam_nostem, beamMapImg, bar_height) + + # mask the note image with the notehead boxes + maskedNoteBwImage = maskImage(noteheadBoxesInitList, noteBwImageOrigin) + + stem_init_list, image, debugImages= getStemList(dataDict, bar_height, noteheadBoxesInitList, beamNoClefKeyWithStemRest) + writeDebugImagesFromDict(debugImages) + + stem_list_assigned_height, debugImages = assignStemLength(stem_init_list, image, beamMapImg, stepSize, bar_height) + writeDebugImagesFromDict(debugImages) + + beamRemoveNotes = removeNotes(maskedNoteBwImage, beamNoClefKeyWithStemRest, beamMapImg) + imwrite(f'knn_beam.jpg', beamRemoveNotes) + + beam_img2, stem_list_assigned, beam_heights = assignBeamLengthBeamImg(stem_list_assigned_height, image, beamRemoveNotes, bar_height) + imwrite(f'knn_beamImg.jpg', beam_img2) + + noteGroupList, beamMapImg, noteGroupStemMap, noteGroupMap, debugImages = knnRhythmAndDraw(stem_list_assigned, beam_heights, image, bar_height, beamMapImg, stemUpClassifier=STEM_UP_MODEL, stemDownClassifier=STEM_DOWN_MODEL,img_name=img_name) + outputImWrite(f"{img_name}_knnbeams2.jpg", debugImages['knnbeams2']) + writeDebugImagesFromDict(debugImages) + outputNotegroupStemMapImg(noteGroupStemMap, image) + outputNoteGroupMapImg(noteGroupMap, image) + outputNoteMapImg(beamMapImg, image, staffObjList) + + restMap, restList, beamMapImg, debugImages = findRests(dataDict, beamMapImg, bar_height, REST_CLASSIFIER) + + noteGroupVerticallyMerged, noteGroupMapWithIssues, beamMapImg, debugImages = mergeVerticalNoteGroups(staffObjList,noteGroupList, noteGroupMap, beamMapImg, image,restMap, restList) + writeDebugImagesFromDict(debugImages) + + sfnClefList, sfnClefMap, debugImages = symbol_classification(dataDict, SFN_CLEF_CLASSIFIER, bar_height) + writeDebugImagesFromDict(debugImages) + + exportYolo(sfnClefList, image,img_name, bar_height) + + sfnClefList, sfnClefMap, beamMapImg = filterSfnClefModifyBeamMap(sfnClefList, noteGroupMap, beamMapImg) + outputSfnClefNoteWhiteImg(beamMapImg, image, bar_height, noteGroupMap, staffObjList) + outputSfnClefNoteImg(image, beamMapImg) + + staffEnhancedImg = enhanceStaff(image, staffObjList,bar_height) + + noteGroupPitchList, debugImages = assignPitch(staffEnhancedImg,noteGroupList, beamMapImg, bar_height) + writeDebugImagesFromDict(debugImages) + outputImWrite(f'{img_name}_pitchline.jpg', debugImages['pitchline']) + + noteChunkList, horizontalGroupImg = getNoteChunks(image, noteGroupMap, beamMapImg, noteGroupVerticallyMerged) + outputImWrite(f'{img_name}_horizontalGroupImg.jpg',horizontalGroupImg) + + beamMapImg, barlineboxes, barlineSingle = findBarlines(image, beamMapImg, staffObjList, noteGroupStemMap, thres=0.8) # VARIABLE thres + outputImWrite(f'{img_name}_barline.jpg',barlineSingle) + outputSfnClefNoteBarlineRestImg(image, beamMapImg) + dotPrevious = outputThingsBeforeDots(image, beamMapImg) + outputImWrite(f'{img_name}_DotPrevious.jpg', dotPrevious) + + noteGroupVerticallyMerged, debugImages = assignDots(noteGroupVerticallyMerged,beamMapImg, image,bar_height,staffObjList) + writeDebugImagesFromDict(debugImages) + + restList, debugImages = assignRestDots(restList, beamMapImg, noteGroupStemMap, image, bar_height, staffObjList) + writeDebugImagesFromDict(debugImages) + + stemIdxMap, noteGroupVerticallyMerged, debugImages = assignSfnToNote(image, noteGroupMap, noteGroupVerticallyMerged,sfnClefMap,sfnClefList) + writeDebugImagesFromDict(debugImages) + + beamMapImg,noteGroupMap = extendNotegroupsToStaff(noteGroupMap, noteGroupVerticallyMerged,staffObjList,beamMapImg) + + return noteGroupMap, stemIdxMap, noteGroupVerticallyMerged, restMap,restList,sfnClefMap,sfnClefList,beamMapImg,staffObjList, dataDict + + +if __name__ == '__main__': + noteGroupMap: np.ndarray + stemIdxMap: np.ndarray + noteGroupVerticallyMerged: List[NoteGroup | None] + restMap: np.ndarray + restList: List[Rest | None] + sfnClefMap: np.ndarray + sfnClefList: List[Union[Accidentals, Clef, None]] + beamMapImg: np.ndarray + staffList: List[Staff] + + ( + noteGroupMap, + stemIdxMap, + noteGroupVerticallyMerged, + restMap, + restList, + sfnClefMap, + sfnClefList, + beamMapImg, + staffList, + dataDict + ) = png2decode("tchai_4_001", r"orch_dataset\tchai_4\images\001\tchai_4_001.png") + +# 五線譜位置 () \ No newline at end of file diff --git a/seperateByMeasure.py b/seperateByMeasure.py new file mode 100644 index 0000000..fae2bc9 --- /dev/null +++ b/seperateByMeasure.py @@ -0,0 +1,119 @@ +from music21 import converter, stream +import os +import copy + +def slice_score_clean(score, start, end): + new_score = stream.Score() + + for part in score.parts: + new_part = stream.Part() + new_part.insert(0, part.getInstrument()) + + for m in part.measures(start, end): + new_part.append(copy.deepcopy(m)) + + new_score.append(new_part) + + return new_score + +def seperateMeasure(filePaths, numberOfMvts, beginningIndexes, outputFolder): + assert len(filePaths) == numberOfMvts + assert len(beginningIndexes) == numberOfMvts + for idx in range(numberOfMvts): + filePath = filePaths[idx] + beginningIndex = beginningIndexes[idx] + score = converter.parse(filePath) + for i in range(len(beginningIndex) - 1): + start = beginningIndex[i] + end = beginningIndex[i + 1] - 1 # stop before next boundary + segment = slice_score_clean(score, start, end) + outputFileName = '' + if '.musicxml' in filePath: + outputFileName = f"{os.path.basename(filePath).replace('.musicxml',f'_{i+1}.musicxml')}" + elif '.xml' in filePath: + outputFileName = f"{os.path.basename(filePath).replace('.xml',f'_{i+1}.xml')}" + outputPath = os.path.join(outputFolder, outputFileName) + segment.write('musicxml', outputPath) + print(f"saved score to {outputPath}") + start = beginningIndex[-1] + end = score.measures(start, None) + segment = slice_score_clean(score, start, None) + outputFileName = '' + if '.musicxml' in filePath: + outputFileName = f"{os.path.basename(filePath).replace('.musicxml',f'_{i+2}.musicxml')}" + elif '.xml' in filePath: + outputFileName = f"{os.path.basename(filePath).replace('.xml',f'_{i+2}.xml')}" + outputPath = os.path.join(outputFolder, outputFileName) + segment.write('musicxml', outputPath) + print(f"saved score to {outputPath}") +def seperateList(measureLst): + measureNumberLists = [] + current = [] + for x in measureLst: + if x == 1: + if current: + measureNumberLists.append(current) + current = [1] + elif current: + current.append(x) + if current: + measureNumberLists.append(current) + return measureNumberLists + +def addValToList(oriList, startActual, endActual, addValue): + start = startActual-1 + end = endActual + oriList[start:end] = [x + addValue for x in dataSeperate[start:end]] + return oriList +if __name__ == '__main__': + # # BEE7 + # dataSeperate = [1,8,16,19,22,30,36,39,46,53,63,75,87,91,95,99,103,108,118,127,138,148,157,162,167,171,184,196,205,209,213,225,235,245,255,260,270,279,283,287,291,295,300,311,323,331,335,346,358,366,370,376,380,384,397,409,416,422,428,433,439,444, #1~62 + # 1,32,63,77,84,91,106,120,134,146,158,170,182,192,212,217,230,244,261, #63~81 + # 1,16,34,56,76,97,118,135,143,160,181,198,214,233,250,259,277,293,317,337,357,377,396,404,424,441,459,477,496,513,531,554,574,593,613,629,637,645, #82~119 # 84 + 1, 91 + 4+1, 96~+1 111+1 + # 1,7,12,17,21,28,34,39,52,60,73,81,90,104,113,119,122,129,146,151,154,159,163,177,191,203,218,226,231,238,245,251,257,263,271,278,290,302,314,320,328,335,340,347,358,370,382,394,400,406,414,421,429,437,445,453,459 #148+1 #120~ 122+1 124+1 136+5 140+2 142+1 + # ] + # dataSeperate = addValToList(dataSeperate, 91,119,4) + # dataSeperate = addValToList(dataSeperate, 122, 176,1) + # dataSeperate = addValToList(dataSeperate, 124, 176,1) + # dataSeperate = addValToList(dataSeperate, 136, 176,5) + # dataSeperate = addValToList(dataSeperate, 140, 176,2) + # dataSeperate = addValToList(dataSeperate, 142, 176,1) + # dataSeperate = addValToList(dataSeperate, 148, 176,1) + + # #BEE5 + # dataSeperate = [1, 12, 33, 53, 77, 98, 119, 141, 160, 170, 181, 194, 223, 248, 267, 287, 309, 333, 356, 376,386, 397, 408, 418, 429, 441, 455, 469, 480, 491, 1, 8, 25, 38, 57, 73, 82, 92, 102, 110, + # 118, 133, 148, 164, 172, 183, 187, 191, 204, 215, 230, 1, 12, 38, 61, 82, 83, 104, 123, 131,150, 166, 182, 190, 205, 231, 263, 293, 323, 349, 1, 6, 12, 17, 21, 26, 33, 39, 44, 49, + # 54, 59, 62, 69, 74, 81, 85, 90, 94, 104, 112, 117, 122, 127, 132, 136, 140, 145, 150, 161, + # 186, 207, 214, 219, 224, 228, 234, 240, 247, 252, 257, 262, 268, 272, 279, 285, 294, 300, + # 305, 309, 316, 324, 330, 336, 343, 349, 354, 364, 374, 383, 391, 397, 405, 415, 422, 432] + # dataSeperate = addValToList(dataSeperate, 87, 136, 2) + + # # BEE8 + # dataSeperate = [1,8,13,20,26,34,48,64,80,92,98,112, 124,138,151,163,169,175,182,187,193,200,213,219,226,241,255,263,277,289,295,307,317,328,334,345,349,353,357,364, # 1~40 12+1 + # 1, 8,16,24,32,41,48,55,63,71,78,# 41~51 + # 1,6,11,16 , 21,31,38,52, 66, #52~60 53+1 54+1 59+3 + # 1, 8,22,31,42,54,65,75,85,99,112,123,135,148,161,173,183,191,201,211,225,238,244,250,260,274,291,302,312,324,336,348,361,373,383,391,394,401,407,412,417,428,439,449,454,461,474,487 #61~108 62+1 + # ] + # dataSeperate = addValToList(dataSeperate, 12, 40, 1) + # dataSeperate = addValToList(dataSeperate, 53, 60, 1) + # dataSeperate = addValToList(dataSeperate, 54, 60, 1) + # dataSeperate = addValToList(dataSeperate, 59, 60, 3) + # dataSeperate = addValToList(dataSeperate, 62, 108, 1) + + # BEE6 + dataSeperate = [1,17,31,43,57,83,95,111,124,139,154,166,177,196,209,221,241,260,276,298,317,329,354,368,381,395,407,426,440,452,464,479,493, + 1,4,8,10,12,16,21,25,29,31,35,39,42,44,46,49,51,53,57,61,65,70,74,79,83,87,89,91,93,95,97,99,101,103,107,111,116,118,121,123,125,127,133, + 1,19,39,59,80,111,141,161,176,191,205,224,244,125, + 1,14,22,25,28,31,34,40,17,51,56,65,72,78,82,87,93,103,107,110,114,125,137,145, + 1,14,23,26,32,36,40,44,48,52,57,28,77,85,93,101,105,109,117,131,134,137,141,149,153,157,161,170,179,191,196,204,212,219,225,231,245,260] + dataSeperate = addValToList(dataSeperate, 78, 89, 1) + dataSeperate = addValToList(dataSeperate, 87, 89, 1) + + symphonyNum = 7 + numberOfMvts = dataSeperate.count(1) # assume all movements starts at a new page + filePaths = [rf'md_gt\{symphonyNum}_{i}.musicxml' for i in range(1,numberOfMvts+1)] + outputFolderName = rf'xml_gt\val{symphonyNum}' + seperatedList = seperateList(dataSeperate) # separate list by measures + if not os.path.exists(outputFolderName): + os.mkdir(outputFolderName) + seperateMeasure(filePaths, numberOfMvts, seperatedList, outputFolderName) \ No newline at end of file diff --git a/tune_bar.py b/tune_bar.py index f62f3b1..904ca46 100644 --- a/tune_bar.py +++ b/tune_bar.py @@ -32,6 +32,8 @@ def calibOneGroup(elmList:List[RestNg], desiredLength:Fraction): endBeamTrust = [True]*len(elmList) if -1 in stemYs or -1 in stemXs: endBeamTrust = [False]*len(elmList) + elif 0 in [stemXs[i] == stemXs[i-1] for i in range(1,len(stemXs))]: + endBeamTrust = [False] * len(endBeamTrust) else: stemAtan = [math.atan((stemYs[i]-stemYs[i-1])/(stemXs[i]-stemXs[i-1])) for i in range(1,len(stemXs))] irregThresh = math.pi/18 diff --git a/utils.py b/utils.py new file mode 100644 index 0000000..1698fa0 --- /dev/null +++ b/utils.py @@ -0,0 +1,621 @@ +from abc import ABC, abstractmethod +from fractions import Fraction +import os +from typing import List,Tuple, Union, Set +from music21 import instrument +import math + +import cv2 +import numpy as np +import json + +from dd_classes import RestNg + +# -------------------------------------------------------------------------------------------------- +# Setting for debug helper functions +# -------------------------------------------------------------------------------------------------- +DEBUG_IMAGE = True +LOG_MESSAGE = True + +# -------------------------------------------------------------------------------------------------- +# Helper function for loggings +# -------------------------------------------------------------------------------------------------- +def printt(str): + if LOG_MESSAGE: + print(str) + +def imwrite(str,img,strictlyYes=False, startingFolder = ''): + debugFolderPath = f'{startingFolder}debug' + if not os.path.exists(debugFolderPath): + os.mkdir(debugFolderPath) + if DEBUG_IMAGE or strictlyYes: + print(f'saving {str}') + cv2.imwrite(f'{debugFolderPath}/{str}',img) + + +def outputImWrite(str,img, startingFolder = ''): + outputImgPath = f'{startingFolder}output' + if not os.path.exists(outputImgPath): + os.mkdir(outputImgPath) + cv2.imwrite(f'{outputImgPath}/{str}',img) + +def writeDebugImagesFromDict(debugImages, writeToOutput = False, img_name = ''): + for si in debugImages.keys(): + if writeToOutput and img_name != '': + outputImWrite(f'{img_name}_{si}.jpg', debugImages[si]) + imwrite(f'{si}.jpg', debugImages[si]) + +# -------------------------------------------------------------------------------------------------- +# helper function for Key Signatures +# -------------------------------------------------------------------------------------------------- +class ToneHelper: + def __init__(self, toneMapPath: str): + with open(toneMapPath, 'r') as f: + self.toneMap = json.load(f) + # get the actual key signature based on what signature it looks like + # for instance, in B flat clarinet, if it looks like 1 flat it's actually 3 flat, so -2 + def getKsShift(self, toneName: str, includeForKs = True) -> int: + if toneName == "": + return 0 + toneData = self.toneMap.get(toneName) + if not includeForKs: + return np.inf + if toneData is None: + print(f"can't find tone for {toneName}, set ksShift to 0") + return 0 + else: + return int(toneData[0]) + def getNoteShift(self, toneName: str) -> int: + if toneName == "": + return 0 + toneData = self.toneMap.get(toneName) + if toneData is None: + print(f"can't find tone for {toneName}, set noteShift to 0") + return 0 + else: + return int(toneData[1]) + def getKsAndNoteShift(self, toneName: str, includeForKs = True) -> Tuple[int, int]: + if toneName == "": + return (0,0) + toneData = self.toneMap.get(toneName) + noteShift = 0 + ksShift = np.inf + if toneData is None: + print(f"can't find tone for {toneName}, set all shifts to 0") + else: + noteShift = toneData[1] + if includeForKs: + ksShift = toneData[0] + return ksShift, noteShift + +# -------------------------------------------------------------------------------------------------- +# Helper function for instrument +# -------------------------------------------------------------------------------------------------- + +def constructInstrumentMappingDict(json_file) -> dict: + clef_map = {"treble": 1, "alto": 0, "bass": -1, "tenor": -2} + with open(json_file, "r") as f: + data = json.load(f) + mapped = {} + for instrument, clefs in data.items(): + mapped[instrument] = [clef_map[c] for c in clefs] + return mapped + +def isInstrumentIncluded(currIns: str): + notIncluded = ["trumpet", "horn", "timpani"] # instruments that is noted in its own way + return all(word not in currIns.lower() for word in notIncluded) + +instrument_classes = { + "violin": instrument.Violin, + "viola": instrument.Viola, + "cello": instrument.Violoncello, + "double_bass": instrument.Contrabass, + "bass": instrument.Contrabass, + "piccolo": instrument.Piccolo, + "flute": instrument.Flute, + "oboe": instrument.Oboe, + "english_horn": instrument.EnglishHorn, + "clarinet": instrument.Clarinet, + "bass_clarinet": instrument.BassClarinet, + "bassoon": instrument.Bassoon, + "contrabassoon": instrument.Contrabassoon, + "french_horn": instrument.Horn, + "trumpet": instrument.Trumpet, + "trombone": instrument.Trombone, + "bass_trombone": instrument.BassTrombone, + "tuba": instrument.Tuba, + "harp": instrument.Harp, + "piano": instrument.Piano, + "celesta": instrument.Celesta, + "timpani": instrument.Timpani, + "xylophone": instrument.Xylophone, + "marimba": instrument.Marimba, + "glockenspiel": instrument.Glockenspiel, + "vibraphone": instrument.Vibraphone, + "horn": instrument.Horn +} +def get_instrument_from_string(name: str): + name_lower = name.lower() + for key, instr_class in instrument_classes.items(): + if key in name_lower: + return instr_class() + + return instrument.Piano() +# -------------------------------------------------------------------------------------------------- +# Class definitions +# -------------------------------------------------------------------------------------------------- +class Staff: + def __init__(self, left:int, right:int, ys:Tuple[int,int,int,int,int], minMaxDiff:int=0, yUpperList:List[int] = [], yLowerList: List[int]=[]): + self.left = left + self.right = right + self.ys = ys + self.minDiff = minMaxDiff + self.yUpperList = yUpperList + self.yLowerList = yLowerList + def get_yOne(self)->int: + x = [self.ys[i+1] - self.ys[i] for i in range(len(self.ys) - 1)] + return sum(x)//len(x) + def get_yOne_float(self)->float: + x = [self.ys[i+1] - self.ys[i] for i in range(len(self.ys) - 1)] + return sum(x)/len(x) + def IsStaffAligned(self, barheight:int)->bool: + return self.minDiffint: + # if hasLineMiddle the number has to be even + if self.hasLineMiddle is None: + return round(self.pitchWideFloat) + upperInt:int = math.ceil(self.pitchWideFloat) + lowerInt:int = math.floor(self.pitchWideFloat) + if upperInt == lowerInt: + return upperInt + if self.hasLineMiddle: + return upperInt if upperInt%2==0 else lowerInt + else: + return upperInt if upperInt%2==1 else lowerInt + + def getX(self): + return self.start[0] + def setYlen(self, ylen:int): + x = self.start[0] + if self.isup: + self.end = (x,self.start[1]-abs(ylen)) + else: + self.end = (x,self.start[1]+abs(ylen)) + def getTopCoord(self): + if self.isup: + return self.end + else: + return self.start + def getBottomCoord(self): + if self.isup: + return self.start + else: + return self.end + def getY0Y1(self): + return (min(self.start[1],self.end[1]), max(self.start[1],self.end[1])) + def getLineX0Y0X1Y1(self, width:int=3): + return (self.start[0]-width//2, self.getTopCoord()[1], self.start[0]+(width-width//2), self.getBottomCoord()[1]) + def getYLen(self)->int: + return int(abs(self.start[1]-self.end[1])) + def setBeam(self, typ:str,top:int|None = None, bottom:int|None = None): + if typ.lower().startswith('l'): + self.setLeftBeam(top=top, bottom=bottom) + else: + self.setRightBeam(top=top, bottom=bottom) + def setLeftBeam(self, top:int|None = None, bottom:int|None = None): + if top is not None: + self.leftBeam[0] = top + if bottom is not None: + self.leftBeam[1] = bottom + def setRightBeam(self, top:int|None = None, bottom:int|None = None): + if top is not None: + self.rightBeam[0] = top + if bottom is not None: + self.rightBeam[1] = bottom + def getBeamHeights(self): + return (self.leftBeam[1]-self.leftBeam[0], self.rightBeam[1]-self.rightBeam[0]) + def getBoundingBox(self): + x0,y0,x1,y1 = self.noteBox + yy0 = self.start[1] + yy2 = self.end[1] + return (x0,min(y0,yy0,yy2), x1, max(y0,yy0,yy2)) + def getString(self): + keyName = ['C','D','E','F','G','A','B'] + currKeyName = keyName[(self.pitchSoprano-1)%7] + currKey = currKeyName+str((self.pitchSoprano-1)//7+5) + if self.accidentals is not None: # it has keySignature + if self.accidentals == -1: + currKey = currKey[0]+'-'+currKey[1] + elif self.accidentals == 1: + currKey = currKey[0]+'#'+currKey[1] + return currKey + +class Rest: + def __init__(self, bbox:Tuple[int,int,int,int], rhythm: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + # rest -1: whole rest or 1/2 depending, 0: 1/4, 1:1/8, 2:1/16 ... (the number of lines) + self.rhythm: int = rhythm + self.hasdot: bool = False + self.noteGroupId: int|None = None + self.tunedLength: Fraction|None = None + self.indexNumber: int|None = None + self.acrossLineNGID: int|None = None + def setAcrossLineNGID(self, id: int): + self.acrossLineNGID = id + def setIndexNumber(self, index:int): + self.indexNumber = index + def setNgId(self, ngId:int): + self.noteGroupId = ngId + def getLengthFraction(self): + restClassNames = ['1/4','1/8','1/16','1/32','1/2'] # only for >=0 + ratio = Fraction(3,2) if self.hasdot else 1 + return Fraction(restClassNames[self.rhythm])*ratio + def getString(self): + return f"Rest_{self.tunedLength}" + +class NoteGroup: + def __init__(self, noteStemObj:Stem): + # the width of the stem box we want + self.stemWidth:int = 3 + # x0,y0,x1,y1 + self.noteBoxes:List[Tuple[int,int,int,int]] = [noteStemObj.noteBox] + # x0, y0, x1, y1 + self.stemLineBoxes:List[Tuple[int,int,int,int]] = [noteStemObj.getLineX0Y0X1Y1(width=self.stemWidth)] + # x0,y0,x1,y1 + self.boundingBox: Tuple[int,int,int,int]|None = None + self.noteStemList: List[Stem] = [noteStemObj] + self.updateBoundingBox() + self.noteChunkId: int|None = None + # self.pitchLists: List[float] = [] + # for instance C has line, D doesn't + # self.noteLineMiddle: List[bool] = [] + self.restList:List[Rest] = [] + self.tunedLength: Fraction|None = None + self.indexNumber: int|None = None + self.acrossLineNGID: int|None = None + def setAcrossLineNGID(self, id: int): + self.acrossLineNGID = id + def setIndexNumber(self, index:int): + self.indexNumber = index + def addRest(self, rest:Rest): + self.restList.append(rest) + self.updateBoxRest(rest.boundingBox) + def addNoteStem(self, noteStemObj: Stem): + self.noteStemList.append(noteStemObj) + self.noteBoxes.append(noteStemObj.noteBox) + self.stemLineBoxes.append(noteStemObj.getLineX0Y0X1Y1(width=self.stemWidth)) + self.updateBoundingBox() + def updateBoundingBox(self): + noteMinX = min([n[0] for n in self.noteBoxes]) + noteMaxX = max([n[2] for n in self.noteBoxes]) + noteMinY = min([n[1] for n in self.noteBoxes]) + noteMaxY = max([n[3] for n in self.noteBoxes]) + stemMinX = min([n[0] for n in self.stemLineBoxes]) + stemMaxX = max([n[2] for n in self.stemLineBoxes]) + stemMinY = min([n[1] for n in self.stemLineBoxes]) + stemMaxY = max([n[3] for n in self.stemLineBoxes]) + self.boundingBox = (min(noteMinX, stemMinX), min(noteMinY, stemMinY), max(noteMaxX, stemMaxX), max(noteMaxY, stemMaxY)) + def updateBoxRest(self, restBox:Tuple[int,int,int,int]): + minx,miny,maxx,maxy = self.boundingBox + x0,y0,x1,y1 = restBox + self.boundingBox = (min(minx, x0), min(miny, y0), max(maxx, x1), max(maxy, y1)) + def getMinLength(self): + class_names = ['1/4','1/8','1/16','1/32', '1/64', '1/128', '1/2', '1/1'] + minLength = 1 + for ns in self.noteStemList: + if Fraction(class_names[ns.rhythm])*(1.5 if ns.hasdot else 1) filter out the one with greater beams value and >0.5 + if len(nsl1) == 1 and len(nsl2) ==1: + if nslSum1[0] > nslSum2[0]*2 and nslSum1[0]>thres: + return ng2 + elif nslSum2[0] > nslSum1[0]*2 and nslSum2[0]>thres: + return ng1 + else: + ng1.addNoteStem(ng2.noteStemList[0]) + return ng1 + # if one has more than one notes -> check the other one + else: + if len(nsl1)>len(nsl2): + if nslSum2[0]>thres: + return ng1 + elif nslSum1[0]>nslSum2[0]*2 and nslSum1[0]>thres: + return ng2 + else: + if nslSum1[0]>thres: + return ng2 + elif nslSum2[0]>nslSum1[0]*2 and nslSum2[0]>thres: + return ng1 + for ns in nsl2: + ng1.addNoteStem(ns) + return ng1 + +class NoteChunk: + def __init__(self, noteGroups:Set[int]): + self.noteGroupIdxs:Set[int] = noteGroups + def mergeNoteChunk(self, noteGroup2: Set[int]): + self.noteGroupIdxs:Set[int] = self.noteGroupIdxs.union(noteGroup2) + def getBoundingBox(self,noteGroupList:List[NoteGroup]): + x0s = min([noteGroupList[i].boundingBox[0] for i in self.noteGroupIdxs]) + x1s = max([noteGroupList[i].boundingBox[2] for i in self.noteGroupIdxs]) + y0s = min([noteGroupList[i].boundingBox[1] for i in self.noteGroupIdxs]) + y1s = max([noteGroupList[i].boundingBox[3] for i in self.noteGroupIdxs]) + return [x0s, y0s, x1s, y1s] +class sfnClefInterface(ABC): + @abstractmethod + def getString(self): + pass + @abstractmethod + def getBbox(self) -> Tuple[int,int,int,int]: + pass + @abstractmethod + def getValue(self) -> int: + pass + @abstractmethod + def getType(self) -> int: + # 0 is accidental, 1 is clef + pass + +class Accidentals(sfnClefInterface): + def __init__(self, bbox:Tuple[int,int,int,int], shift: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + # shift is 1 for sharp, 0 for natural, -1 for flat + self.shift: int = shift + self.isKeySignature:bool = False + self.endKeySignature:bool = False + self.ksKeySop: float|None = None + self.shrinkYs: Tuple[int,int]|None = None + self.ngIndex: int|None = None + def setIndexNumber(self, index:int): + return + def getString(self): + if self.shift == 0: + return 'natural' + elif self.shift == 1: + return 'sharp' + elif self.shift == -1: + return 'flat' + else: + return 'invalid accidentals' + def getColor(self): + clrs = [(255,255,0),(255,0,125),(255,0,255)] + return clrs[self.shift] + def getBbox(self) -> Tuple[int]: + return self.boundingBox + def getValue(self) -> int: + return self.shift + # 0 if is accidentals + def getType(self)->int: + return 0 + def getSign(self)->int: + if self.shift == 0: + return '%' + elif self.shift == 1: + return '#' + elif self.shift == -1: + return 'b' + else: + return 'invalid accidentals' +class KeySignature(): + def __init__(self, accs: List[Accidentals]): + self.accs = accs + def getSharpFlat(self)->float: + return sum([acc.shift for acc in self.accs])/len(self.accs) + # supposingly if there's 4 flats will be -4, 4 sharp will be +4 + def getSharpFlatInt(self) -> int: + if sum([acc.shift for acc in self.accs]) > 0: + return len(self.accs) + else: + return -len(self.accs) + def setIndexNumber(self, index:int): + return + + +class Clef(sfnClefInterface): + def __init__(self, bbox:Tuple[int,int,int,int], type: int): + self.boundingBox:Tuple[int,int,int,int] = bbox + self.type:int = type + # how far it should shift if the staff position is 0 in the sidebar + def getString(self): + if self.type == 1: + return 'violin' + elif self.type == 0: + return 'viola' + elif self.type == -1: + return 'bass' + elif self.type == -2: + return 'violaCello' + else: + return 'invalid clef' + def getBbox(self) -> Tuple[int]: + return self.boundingBox + def getValue(self) -> int: + return self.type + # 1 if it's clef + def getType(self)->int: + return 1 + + +class Bar: + def __init__(self, TS:Tuple[int,int]=[4,4]): + self.ts = TS + self.elementList:List[Accidentals|Clef|Rest|NoteGroup] = [] + self.restNgList:List[RestNg] = [] + def assignEmptyBar(self): + rng = RestNg(length=Fraction(self.ts[0], self.ts[1]), + groupId = -1, + isRest = True, + numNotes = 0, + beamLength = (-1,-1), + beamEnd=[-1,-1]) + emptyRest = Rest([-1,-1,-1,-1], -1) + self.elementList.append(emptyRest) + self.restNgList.append(rng) + def getString(self): + retStr = [] + for elem in self.elementList: + retStr.append(elem.getString()) + return retStr + def addElement(self, elem:Union[Accidentals, Clef, Rest, NoteGroup]): + if type(elem) == NoteGroup: + if elem.noteChunkId is not None and not False in [j.rhythm<=0 for j in elem.noteStemList]: + print(f'removing element in noteChunk {elem.noteChunkId} > quarter') + return + self.elementList.append(elem) + def getTunedTotalBeat(self) -> Fraction: + bt = 0 + for elm in self.elementList: + if type(elm) == NoteGroup: + bt += elm.tunedLength + elif type(elm) == Rest: + bt += elm.tunedLength + return bt + + def getTotalBeat(self)->Fraction: + bt = 0 + for elm in self.elementList: + if type(elm) == NoteGroup: + bt += elm.getMinLength() + elif type(elm) == Rest: + bt += elm.getLengthFraction() + return bt + def getRhythmList(self) -> List[Fraction]: + retLst = [] + for elm in self.elementList: + if type(elm) == NoteGroup: + retLst.append(elm.getMinLength()) + elif type(elm) == Rest: + retLst.append(elm.getLengthFraction()) + return retLst + def getRestNg(self) -> List[RestNg]: + if len(self.restNgList)!= 0: + print("returning restNg list from last time") + return self.restNgList + retLst = [] + for elm in self.elementList: + if type(elm) == NoteGroup: + groupId = 0 + if elm.noteChunkId is not None: + groupId = elm.noteChunkId + beamLength = (-1,-1) + beamEnd = [-1,-1] # for grouped notes + length = elm.getMinLength() + if len(elm.noteStemList) == 1: + currStm = elm.noteStemList[0] + beamLength = [int(a) for a in currStm.getBeamHeights()] + if currStm.isup: + beamEnd = [currStm.getX(), int(min(currStm.getY0Y1()))] + else: + beamEnd = [currStm.getX(), int(max(currStm.getY0Y1()))] + newElm = RestNg(length=Fraction(length), + groupId = groupId, + isRest = False, + numNotes = len(elm.noteStemList), + beamLength = beamLength, + beamEnd=beamEnd, + acrossLineNGID = elm.acrossLineNGID) + retLst.append(newElm) + elif type(elm) == Rest: + newElm = RestNg(length=elm.getLengthFraction()*Fraction(3,2) if elm.hasdot else elm.getLengthFraction(), + groupId = -1, + isRest = True, + numNotes = 0, + beamLength = (-1,-1), + beamEnd=[-1,-1], + acrossLineNGID = elm.acrossLineNGID) + retLst.append(newElm) + self.restNgList = retLst + return retLst + def reassignLength(self, origLens: List[Fraction], newLens: List[Fraction]): + currNewLenIdx = 0 + for elm in self.elementList: + if type(elm)!=NoteGroup and type(elm)!=Rest: + continue + if newLens[currNewLenIdx] is not None: + elm.tunedLength = newLens[currNewLenIdx] + else: + elm.tunedLength = origLens[currNewLenIdx] + currNewLenIdx+=1 + +class TimeSignature: + def __init__(self, yolo_class:int,bbox:Tuple[int,int,int,int],confidence:float): + self.yolo_class = yolo_class + self.boundingBox = bbox + self.str = None + self.staffline = None + self.barLoc = None + self.confidence = confidence + self.valid = True + # mapping + map_data = [ + "4,4", "3,4", "6,4", "2,4", "c", "6,8", "8,4", "9,4", "13,8", + "10,4", "3,8", "7,8", "9,8", "6,2", "4,2", "ch", "12,8", "5,4" + ] + if yolo_class < len(map_data): + self.str = map_data[yolo_class] + else: + self.str = "invalid" + def getString(self): + return self.str + def getBbox(self) -> Tuple[int,int,int,int]: + return self.boundingBox + def getClass(self) -> int: + return self.yolo_class + def setstaffline(self, staffline:int): + self.staffline = staffline + def setBarLoc(self, barLoc:int): + self.barLoc = barLoc + def getConfidence(self) -> float: + return self.confidence + def setValid(self, valid:bool): + self.valid = valid + def isValid(self) -> bool: + return self.valid