diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..27509284427e64fb6fb9d40865213b980e7de01d Binary files /dev/null and b/.DS_Store differ diff --git a/.cursor/rules/reviewgate.mdc b/.cursor/rules/reviewgate.mdc new file mode 100644 index 0000000000000000000000000000000000000000..48d6e2291f8dd1af34c73459ef539750eb6d6323 --- /dev/null +++ b/.cursor/rules/reviewgate.mdc @@ -0,0 +1,131 @@ +--- +description: +globs: +alwaysApply: true +--- +--- +description: +globs: +alwaysApply: true +--- +# AI Agent Protocol: Self-Contained Mandatory Interactive Final Review Loop with Auto-Script Creation (Version 3) + +## 0. User Advisory & Safety: +This is an advanced, experimental rule. It instructs the AI Agent to check for, potentially create, and then execute a Python script (`final_review_gate.py`) in your project's root directory to facilitate an interactive review loop. By using this rule, you acknowledge that the AI will attempt file system operations (read, write, execute) as directed. Ensure the AI's execution environment has appropriate permissions if you expect script auto-creation to work, and be aware of the security implications. + +## 1. Core Principle & Context: +Your primary task processing includes a **mandatory final interactive review stage** driven by user input through a specific Python script (`final_review_gate.py`). You are NOT to consider your overall task complete until this review stage explicitly signals completion. This protocol leverages your known capability to run commands in a sub-terminal (displayed within the chat interface) and read their output. + +## Phase 0: Ensure `final_review_gate.py` Script Exists +(This phase is executed ONCE per user request that triggers this overall protocol, or if the script is missing or its content is incorrect.) + +1. **Define Script Details:** + * **Script Name:** `final_review_gate.py` + * **Target Location:** Directly in the root of the current project/workspace. + * **Python Script Content (ensure this exact content is used):** + ```python + # final_review_gate.py + import sys + import os + + if __name__ == "__main__": + # Try to make stdout unbuffered for more responsive interaction. + # This might not work on all platforms or if stdout is not a TTY, + # but it's a good practice for this kind of interactive script. + try: + sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', buffering=1) + except Exception: + pass # Ignore if unbuffering fails, e.g., in certain environments + + try: + sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', buffering=1) + except Exception: + pass # Ignore + + print("--- FINAL REVIEW GATE ACTIVE ---", flush=True) + print("AI has completed its primary actions. Awaiting your review or further sub-prompts.", flush=True) + print("Type your sub-prompt, or one of: 'TASK_COMPLETE', 'Done', 'Quit', 'q' to signal completion.", flush=True) # MODIFIED + + active_session = True + while active_session: + try: + # Signal that the script is ready for input. + # The AI doesn't need to parse this, but it's good for user visibility. + print("REVIEW_GATE_AWAITING_INPUT:", end="", flush=True) + + line = sys.stdin.readline() + + if not line: # EOF + print("--- REVIEW GATE: STDIN CLOSED (EOF), EXITING SCRIPT ---", flush=True) + active_session = False + break + + user_input = line.strip() + + # Check for exit conditions + if user_input.upper() in ['TASK_COMPLETE', 'DONE', 'QUIT', 'Q']: # MODIFIED: Empty string no longer exits + print(f"--- REVIEW GATE: USER SIGNALED COMPLETION WITH '{user_input.upper()}' ---", flush=True) + active_session = False + break + elif user_input: # If there's any other non-empty input (and not a completion command) + # This is the critical line the AI will "listen" for. + print(f"USER_REVIEW_SUB_PROMPT: {user_input}", flush=True) + # If user_input was empty (and not a completion command), + # the loop simply continues, and "REVIEW_GATE_AWAITING_INPUT:" will be printed again. + + except KeyboardInterrupt: + print("--- REVIEW GATE: SESSION INTERRUPTED BY USER (KeyboardInterrupt) ---", flush=True) + active_session = False + break + except Exception as e: + print(f"--- REVIEW GATE SCRIPT ERROR: {e} ---", flush=True) + active_session = False + break + + print("--- FINAL REVIEW GATE SCRIPT EXITED ---", flush=True) + ``` + +2. **Ensure Script Existence and Correctness:** + a. Use your file system tools to check if the file `final_review_gate.py` exists in the project root. + b. **If the file `final_review_gate.py` does NOT exist OR if its content does not EXACTLY match the Python script provided in section "Phase 0.1.Python Script Content" (you may need to read the existing file and compare):** + i. You MUST create or overwrite the `final_review_gate.py` file in the project root. + ii. The content of this file MUST be *exactly* the Python script content provided above. Ensure all indentation, comments, and lines are preserved perfectly. Use your "create file" or "edit file" tool. + iii. After creating/overwriting it, announce: "The `final_review_gate.py` script has been created/updated in the project root with the latest interaction enhancements." + c. **If the file `final_review_gate.py` already exists and its content is correct:** You may skip announcing its creation. + d. If you encounter any errors checking for, reading, or creating/writing the file (e.g., permission issues), you MUST report this to the user. State clearly: "Error managing `final_review_gate.py`: [specific error]. Cannot proceed with interactive review." and then conclude the interaction for the main task as best as you can without this interactive step. + +## Phase 1: Primary Task Execution +1. Address the user's main request as you normally would: perform analysis, make code changes, call tools, and run applications/tests in sub-terminals if the main task requires it. + * **Application Execution Confirmation:** Before attempting to run an entire application (e.g., a web server, a full front-end build, a long-running background process), you MUST ask the user for explicit confirmation. For example: "I am about to run the [application name/command]. Is it okay to proceed, or is it possibly already running?" + * This confirmation is NOT required for running individual test scripts, linters, build tools for specific components, or other non-application-level commands necessary for task completion. + * If the user indicates an application is already running or denies permission, adapt your strategy accordingly (e.g., focus on tests or specific file executions). +2. Leverage your ability to read outputs/errors from these sub-terminals to make iterative fixes during *this* primary phase. + +## Phase 2: Mandatory Final Interactive Review Script Execution +1. **Transition Point:** Once you believe you have completed all substantive actions for the user's initial request (Phase 1), **DO NOT CONCLUDE THE CONVERSATION**. You MUST now transition to this Final Interactive Review phase. +2. **Action:** Execute the `final_review_gate.py` script (which you ensured exists and is correct in Phase 0) from the project root. + * Determine the correct Python interpreter command (e.g., `python`, `python3`) available in the execution environment. A robust command attempt would be `python3 ./final_review_gate.py` and if that fails, try `python ./final_review_gate.py`. + * **Crucially, the terminal for this script MUST run directly within the chat window, and its output MUST be continuously visible to the user as it is generated.** It must NOT pop open as a separate window or run hidden in the background. You MUST wait for the script (and its terminal interaction) to fully complete and exit before you proceed with any further actions or attempt to conclude the overall task. Your processing will be blocked by this script's execution. +3. **Announcement:** Clearly inform the user: "I have completed the primary actions. Now initiating the mandatory Final Interactive Review by running `./final_review_gate.py`. The review terminal is now active **in this chat window, and its output will be displayed live**. Please provide any sub-prompts directly into that script's input area, or type 'TASK_COMPLETE', 'Done', 'Quit', or 'q' when satisfied." (MODIFIED: Removed "or simply press Enter") + +## Phase 3: Interactive Review Loop (Monitoring Script Output) +1. **Active Monitoring & Display:** Continuously monitor the standard output (stdout) of the launched `final_review_gate.py` script **as it appears live in the chat window**. Ensure the user sees all script output, including the `REVIEW_GATE_AWAITING_INPUT:` prompt. You will "read" its output using the same capability that allows you to read terminal logs or error messages. The script will loop and re-prompt if an empty input is given. +2. **User Sub-Prompt Detection:** When the script's stdout prints a line formatted EXACTLY as: + `USER_REVIEW_SUB_PROMPT: ` + You MUST interpret `` as a new, direct, actionable instruction from the user. +3. **Processing Sub-Prompts:** + a. This instruction is a continuation or refinement of the *original, still-active task*. + b. Analyze the sub-prompt. Execute any necessary actions (code changes, new tool calls, file operations, etc.). **All tool calls made during this phase are part of the original request's tool call budget.** If the sub-prompt requests running an entire application, the confirmation principle from "Phase 1, Step 1 (Application Execution Confirmation)" applies. + c. Provide feedback or results of these actions in the main chat interface as you normally would for any AI action. + d. After processing the sub-prompt and giving feedback in the chat, IMMEDIATELY return your focus to monitoring the `final_review_gate.py` script's terminal output (which remains live and visible in the chat) for the next user instruction or completion signal. This loop is critical. +4. **Completion Signal Detection:** The interactive review loop continues until the script's stdout (visible in the chat window) prints a line containing: + * `--- REVIEW GATE: USER SIGNALED COMPLETION WITH 'TASK_COMPLETE' ---` (or 'DONE', 'QUIT', 'Q' as per script logic) + * OR `--- FINAL REVIEW GATE SCRIPT EXITED ---` (or any other script exit/error message like `REVIEW GATE: STDIN CLOSED` or `REVIEW GATE SCRIPT ERROR:`) + (MODIFIED: Removed specific "EMPTY INPUT RECEIVED" as a completion signal, as the script no longer behaves this way for completion.) + +## Phase 4: True Task Conclusion +1. Only after the `final_review_gate.py` script has terminated (as observed by its terminal session in the chat window closing and its final exit messages being printed and visible) are you permitted to consider the user's original request fully satisfied. +2. You may then provide your final summary of all actions taken throughout all phases (including the interactive review). + +## Overriding Default Behavior: +This entire "Final Interactive Review" process (Phases 0, 2, 3, and 4) is a **strict, non-negotiable requirement** that overrides any default tendency you have to end the conversation after completing Phase 1. The task is only finished when the user explicitly confirms with one of the specified keywords through the review script or the script otherwise terminates due to an error or EOF (as per the defined behavior, including the in-chat, blocking, and continuously visible terminal execution). Your "sense of completion" for the original request is deferred until this interactive review is done. \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..2804b22fa175ba932d41883ffdbdb2abcf24b8f1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.pth filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..b2a01e72d0a68957fa0053f3a117126320427b0f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +# 使用官方 Python 映像檔作為基礎 +FROM python:3.9-slim + +# 設定工作目錄 +WORKDIR /app + +# 將 requirements.txt 複製到工作目錄中 +COPY requirements.txt . + +# 更新 pip 並安裝所需的套件 +# 我們需要 git 來安裝特定版本的套件 (如果有的話) +# 以及 build-essential 來編譯某些相依套件 +RUN apt-get update && apt-get install -y git build-essential && \ + pip install --no-cache-dir --upgrade pip && \ + pip install --no-cache-dir -r requirements.txt + +# 將專案中的所有檔案複製到工作目錄中 +COPY . . + +# 設定環境變數 (這些應該在 Hugging Face Space 的 secrets 中設定) +# ENV VERIFY_TOKEN="your_verify_token" +# ENV PAGE_ACCESS_TOKEN="your_page_access_token" +# ENV OPENAI_API_KEY="your_openai_api_key" + +# 開放應用程式運行的埠口 +EXPOSE 8000 + +# 使用 Gunicorn 啟動應用程式 +# --bind 0.0.0.0:8000 讓它可以從外部被存取 +# --workers 1 對於免費方案,一個 worker 通常是比較穩定的選擇 +# --timeout 120 增加超時時間,以應對可能的模型載入或長時間的請求 +CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "1", "--timeout", "120", "app:app"] \ No newline at end of file diff --git a/Procfile b/Procfile new file mode 100644 index 0000000000000000000000000000000000000000..c9db78a258eeb1363646ad39bfb95790d15d0d57 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn app:app \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..47a445e005fc5f94d654a548bb9cf64a07e11873 --- /dev/null +++ b/app.py @@ -0,0 +1,279 @@ +import os +import json +import requests +from flask import Flask, request, jsonify +from datetime import datetime +import threading +import time + +# 匯入我們的手語處理器 +from sign_language_processor import VideoSignLanguageRecognizer + +app = Flask(__name__) + +# 從環境變數取得設定 +VERIFY_TOKEN = os.environ.get('VERIFY_TOKEN', 'your_verify_token') +PAGE_ACCESS_TOKEN = os.environ.get('PAGE_ACCESS_TOKEN', 'your_page_access_token') +FACEBOOK_API_URL = 'https://graph.facebook.com/v18.0/me/messages' + +# --- Initializations --- +# 初始化手語辨識器 +# 注意:你需要確保 'models/sign_language_model.pth' 和 'labels.csv' 存在 +try: + recognizer = VideoSignLanguageRecognizer( + model_path='models/sign_language_model.pth' + ) + print("✅ 手語辨識模型載入成功") +except Exception as e: + recognizer = None + print(f"❌ 載入模型失敗: {e}") + print("👉 請確保 'models/sign_language_model.pth' 和 'labels.csv' 檔案存在於專案根目錄") + +@app.route('/', methods=['GET']) +def home(): + return "統一手語辨識服務正在運行中!🚀" + +@app.route('/webhook', methods=['GET']) +def verify_webhook(): + """驗證 Webhook - Facebook 會呼叫這個來驗證你的服務""" + mode = request.args.get('hub.mode') + token = request.args.get('hub.verify_token') + challenge = request.args.get('hub.challenge') + + if mode and token: + if mode == 'subscribe' and token == VERIFY_TOKEN: + print("Webhook 驗證成功!") + return challenge + else: + print("驗證失敗 - token 不正確") + return "驗證失敗", 403 + + return "需要驗證參數", 400 + +@app.route('/webhook', methods=['POST']) +def handle_webhook(): + """處理從 Messenger 來的訊息""" + try: + data = request.get_json() + + if data.get('object') == 'page': + for entry in data.get('entry', []): + for messaging_event in entry.get('messaging', []): + if messaging_event.get('message'): + handle_message(messaging_event) + elif messaging_event.get('postback'): + handle_postback(messaging_event) + + return "EVENT_RECEIVED", 200 + + except Exception as e: + print(f"處理 webhook 時發生錯誤: {e}") + return "錯誤", 500 + +@app.route('/receive_recognition_result', methods=['POST']) +def receive_recognition_result(): + """接收來自本地手語辨識服務的結果""" + try: + data = request.get_json() + + if not data: + return jsonify({"status": "error", "message": "沒有收到資料"}), 400 + + sender_id = data.get('sender_id') + recognition_result = data.get('recognition_result', '無法辨識') + confidence = data.get('confidence', 0) + timestamp = data.get('timestamp', '') + + if not sender_id: + return jsonify({"status": "error", "message": "缺少 sender_id"}), 400 + + print(f"📝 收到手語辨識結果 - 用戶:{sender_id}") + print(f"🎯 辨識結果:{recognition_result}") + print(f"📊 信心度:{confidence}") + + # 只發送純粹的辨識結果句子 + send_message(sender_id, recognition_result) + + return jsonify({ + "status": "success", + "message": "辨識結果已發送給用戶" + }) + + except Exception as e: + print(f"處理辨識結果時發生錯誤:{e}") + return jsonify({"status": "error", "message": str(e)}), 500 + +def handle_message(messaging_event): + """處理一般訊息""" + sender_id = messaging_event['sender']['id'] + message = messaging_event.get('message', {}) + message_text = message.get('text', '') + attachments = message.get('attachments', []) + + print(f"收到訊息 from {sender_id}: {message_text}") + + # 檢查是否有影片附件 + if attachments: + for attachment in attachments: + if attachment.get('type') == 'video': + video_url = attachment.get('payload', {}).get('url') + if video_url: + # 提示用戶我們已收到影片並開始處理 + send_message(sender_id, "收到您的影片了,正在為您處理手語辨識,請稍候...") + + # 在背景處理影片,避免阻塞 + thread = threading.Thread( + target=process_video_and_reply, + args=(video_url, sender_id) + ) + thread.start() + return + else: + send_message(sender_id, f"抱歉,目前只支援影片格式的手語辨識喔!") + return + + # 處理文字訊息 + if message_text: + send_message(sender_id, f"你好!請傳送一段手語影片,我會試著為您翻譯。") + +def handle_postback(messaging_event): + """處理 postback 事件(按鈕點擊等)""" + sender_id = messaging_event['sender']['id'] + postback_payload = messaging_event['postback']['payload'] + + print(f"收到 postback from {sender_id}: {postback_payload}") + + send_message(sender_id, f"收到 postback:{postback_payload}") + +def send_message(recipient_id, message_text): + """發送訊息給使用者""" + headers = { + 'Content-Type': 'application/json' + } + + data = { + 'recipient': {'id': recipient_id}, + 'message': {'text': message_text} + } + + params = { + 'access_token': PAGE_ACCESS_TOKEN + } + + try: + response = requests.post( + FACEBOOK_API_URL, + headers=headers, + params=params, + json=data, + timeout=30 + ) + response.raise_for_status() + print(f"訊息發送成功給 {recipient_id}") + except requests.exceptions.RequestException as e: + print(f"發送訊息失敗 to {recipient_id}: {e}") + +def send_quick_reply(recipient_id, message_text, quick_replies): + """發送快速回覆選項""" + headers = { + 'Content-Type': 'application/json' + } + + data = { + 'recipient': {'id': recipient_id}, + 'message': { + 'text': message_text, + 'quick_replies': quick_replies + } + } + + params = { + 'access_token': PAGE_ACCESS_TOKEN + } + + requests.post( + FACEBOOK_API_URL, + headers=headers, + params=params, + json=data + ) + +def download_video_local(video_url, sender_id): + """下載影片到本地""" + try: + # 生成檔案名稱 + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + filename = f"video_{sender_id}_{timestamp}.mp4" + file_path = os.path.join('received_videos', filename) + + print(f"開始下載影片到本地:{video_url}") + + # 下載影片 + response = requests.get(video_url, stream=True, timeout=30) + response.raise_for_status() + + # 寫入檔案 + with open(file_path, 'wb') as f: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + f.write(chunk) + + file_size = os.path.getsize(file_path) + print(f"🎬 影片下載完成:{file_path} ({file_size} bytes)") + return file_path + + except Exception as e: + print(f"下載影片失敗:{e}") + return None + +def process_video_and_reply(video_url, sender_id): + """下載、處理影片,並回傳結果""" + if not recognizer: + print("❌ 辨識器未初始化,無法處理影片。") + send_message(sender_id, "抱歉,後端辨識服務目前無法使用,請稍後再試。") + return + + # 1. 下載影片 + print(f"🎬 開始下載影片 for user {sender_id} from {video_url}") + video_path = download_video_local(video_url, sender_id) + + if not video_path: + print(f"❌ 影片下載失敗 for user {sender_id}") + send_message(sender_id, "抱歉,無法順利下載您的影片,請再試一次。") + return + + # 2. 處理影片並進行手語辨識 + try: + print(f"🤖 開始進行手語辨識 for {video_path}") + result = recognizer.process_video(video_path) + + recognition_result = result.get('recognition_result', '無法辨識') + confidence = result.get('confidence', 0) + + print(f"✅ 辨識完成 for user {sender_id} - 結果: {recognition_result} (信心度: {confidence:.2f})") + + # 3. 將結果發送給用戶 + reply_text = f"辨識結果:\n{recognition_result}" + send_message(sender_id, reply_text) + + except Exception as e: + print(f"❌ 辨識過程中發生錯誤 for {video_path}: {e}") + send_message(sender_id, "抱歉,在辨識過程中發生了未預期的錯誤。") + + finally: + # 4. 刪除本地影片檔案 + if os.path.exists(video_path): + try: + os.remove(video_path) + print(f"🗑️ 已刪除暫存影片:{video_path}") + except Exception as e: + print(f"❌ 刪除影片失敗 {video_path}: {e}") + +if __name__ == '__main__': + # 建立影片接收資料夾 + if not os.path.exists('received_videos'): + os.makedirs('received_videos') + + port = int(os.environ.get('PORT', 8000)) + print(f"🚀 伺服器將在 http://localhost:{port} 上啟動") + app.run(host='0.0.0.0', port=port, debug=True) \ No newline at end of file diff --git a/env_example.txt b/env_example.txt new file mode 100644 index 0000000000000000000000000000000000000000..297ba93e7df85080acc2f554f4e994c476c4fed7 --- /dev/null +++ b/env_example.txt @@ -0,0 +1,11 @@ +# Facebook Messenger Bot 設定 +VERIFY_TOKEN=your_custom_verify_token_here +PAGE_ACCESS_TOKEN=your_facebook_page_access_token_here + +# 本地手語辨識服務地址 (使用 ngrok 建立的公開URL) +LOCAL_RECEIVER_URL=https://your-ngrok-url.ngrok-free.app + +# Render 會自動設定這些環境變數,不需要手動設定 +# PORT=5000 (自動設定) +# RENDER_EXTERNAL_URL=https://your-app.onrender.com (自動設定) +# RENDER_SERVICE_NAME=your-app (自動設定) \ No newline at end of file diff --git a/features/keypoints/eat_001_aug_rotate_keypoints.npy b/features/keypoints/eat_001_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4740914025ea759f4ee5c32c09f27c66c6eb6497 --- /dev/null +++ b/features/keypoints/eat_001_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5494afe40dcec1dee46f85e8b4283b3218628466dcbb6e9e1a91174d75eda216 +size 61328 diff --git a/features/keypoints/eat_001_aug_shift_keypoints.npy b/features/keypoints/eat_001_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3265a93b38b99313329db4f17e0725f8e9c6bcb2 --- /dev/null +++ b/features/keypoints/eat_001_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6147caedc17038157f3ce4a6a4fc558faaedc04bf78c2afd69d0b3c4a2e7ed39 +size 61328 diff --git a/features/keypoints/eat_001_keypoints.npy b/features/keypoints/eat_001_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..80eb716851bb15487ba34b07607338350b034b2b --- /dev/null +++ b/features/keypoints/eat_001_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489f58d5eaeedebab524a95bbdfa94833fd4b1ac8109964c07e1ba4b98a3d8fe +size 61328 diff --git a/features/keypoints/eat_002_aug_rotate_keypoints.npy b/features/keypoints/eat_002_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2d3718417979fbf06308a7e15b141eaa736b37cf --- /dev/null +++ b/features/keypoints/eat_002_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907f9427411108739789e004eb78b0f328d621cb7dcd3d0f2d1a0ea50ab2b550 +size 57728 diff --git a/features/keypoints/eat_002_aug_shift_keypoints.npy b/features/keypoints/eat_002_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5eaa56f89d474768409b382332097e680b30ba08 --- /dev/null +++ b/features/keypoints/eat_002_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964c159d4371b9fde4dcad040260bffa75762c711e43b60767568941e0d3d777 +size 57728 diff --git a/features/keypoints/eat_002_keypoints.npy b/features/keypoints/eat_002_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2cf23b9a60594638fac3c748129c27feaf00239a --- /dev/null +++ b/features/keypoints/eat_002_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae39b66215c8a0e8ff5a02a7c0be1e6929ffd94d5efc1ab532df04cb0b057a0b +size 57728 diff --git a/features/keypoints/eat_003_aug_rotate_keypoints.npy b/features/keypoints/eat_003_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dcfcb927eca68aa8738f68a6307fb4869b5e82c0 --- /dev/null +++ b/features/keypoints/eat_003_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc562c327cd56f0a97e5d33e9f9896ff5f8b6509dba4428d344397c626c94be +size 46928 diff --git a/features/keypoints/eat_003_keypoints.npy b/features/keypoints/eat_003_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fbd2642bed692d21085e5a531d9579f66a592c6 --- /dev/null +++ b/features/keypoints/eat_003_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1185ea872a962cf5def940a1b30cedffbab81bbc623c734e4d3a5ccda1c868 +size 46928 diff --git a/features/keypoints/eat_004_aug_flip_keypoints.npy b/features/keypoints/eat_004_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f457219a67ccbb8d679985f13b843f83e6410b2c --- /dev/null +++ b/features/keypoints/eat_004_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad4fd90ad42251c47ed109837d467a733325b1073af584ea27c84e72d160498f +size 34328 diff --git a/features/keypoints/eat_004_aug_shift_keypoints.npy b/features/keypoints/eat_004_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b05c19afd30ac8961b5f0fa677484397e798990f --- /dev/null +++ b/features/keypoints/eat_004_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52768a3ec7d1893146f3f64ee1b14884a276a2f9d552eb174de7259f47c9d65 +size 34328 diff --git a/features/keypoints/eat_004_keypoints.npy b/features/keypoints/eat_004_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..032b5af4deb94363f9ba0b2681a7a1bb59162a3e --- /dev/null +++ b/features/keypoints/eat_004_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4078b2bafa818d2523aebb310d4d9f9f3e468f5c9b1983cadefa59130a922d07 +size 34328 diff --git a/features/keypoints/eat_005_aug_flip_keypoints.npy b/features/keypoints/eat_005_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d55fb2d24f4c93ffe902343133f4c0dfb04fe03c --- /dev/null +++ b/features/keypoints/eat_005_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781e25e1d57b0cddef6d02e8aa66f1bc1ae6463cca31e29568f2469f74a32857 +size 93728 diff --git a/features/keypoints/eat_005_keypoints.npy b/features/keypoints/eat_005_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a9efc10a15017674d613e3e712ee8d1b0d1c8c0 --- /dev/null +++ b/features/keypoints/eat_005_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab968d2c2faab6fa4110220cf0b27f10e941b6cd5aea089ad6920863305c178 +size 93728 diff --git a/features/keypoints/eat_006_keypoints.npy b/features/keypoints/eat_006_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6175fc60c4fddb86727d6c66e2b82121f680999c --- /dev/null +++ b/features/keypoints/eat_006_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abecfd8f819ab514b5816e89b3f1ab668a71fee8e19e119af24aaa5ac2d074e0 +size 118928 diff --git a/features/keypoints/eat_007_aug_flip_keypoints.npy b/features/keypoints/eat_007_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f27c916bcb021c8c8da974470c0d04a8adb8022 --- /dev/null +++ b/features/keypoints/eat_007_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80295094306e7fbb9d0d211de45f977f4a076caf3e4fd48092842569c1d77166 +size 111728 diff --git a/features/keypoints/eat_007_keypoints.npy b/features/keypoints/eat_007_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b38f1b1b4a61ab4e0ca772289c80b2ca7cbf3a75 --- /dev/null +++ b/features/keypoints/eat_007_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7847fe2decc5c2d66f48b9559002dc47935f4f15d04fce6a1b3a6d4432dbe6 +size 111728 diff --git a/features/keypoints/eat_008_aug_flip_keypoints.npy b/features/keypoints/eat_008_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d49bad52f4e935108718f55120559afe7ef86403 --- /dev/null +++ b/features/keypoints/eat_008_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9afd2e1c35af074e916f773b154b91c9fd28e9f0444580b50dc6a7fcb9ed0bf +size 104528 diff --git a/features/keypoints/eat_008_keypoints.npy b/features/keypoints/eat_008_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9688e29316c6a7061dd59b9c6a8120c5f7fcefab --- /dev/null +++ b/features/keypoints/eat_008_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2806038c2e3d2d69adf419e612e2a537d38c7905fd35527f7f625807754f4f29 +size 104528 diff --git a/features/keypoints/eat_009_aug_flip_keypoints.npy b/features/keypoints/eat_009_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d3cf2af8bbb935178509b92bd65af6ab90598d38 --- /dev/null +++ b/features/keypoints/eat_009_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368059a10ff26bfd92bfc48e5062e2097c3f01129264dd40cc68e8bad5dd30de +size 68528 diff --git a/features/keypoints/eat_009_aug_rotate_keypoints.npy b/features/keypoints/eat_009_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7fc13b411b6cb4cf707a28be1494c4a1b81055d5 --- /dev/null +++ b/features/keypoints/eat_009_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089539eaf10bcfbe3985bc8a1db59a57fe924ace200a9487b56663525da41b92 +size 68528 diff --git a/features/keypoints/eat_009_aug_shift_keypoints.npy b/features/keypoints/eat_009_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..971155167ea348f239b5eaccb8b7b59770d5748c --- /dev/null +++ b/features/keypoints/eat_009_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6664e58930dd0865832fc8b0dc9dfc33c56e409549815e02778b64bb7cd7e36 +size 68528 diff --git a/features/keypoints/eat_009_keypoints.npy b/features/keypoints/eat_009_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..55534e66c9f2ded45253a34653c172314e00347d --- /dev/null +++ b/features/keypoints/eat_009_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7897d96cf671ea70c90818bb9148067be859bab2f7c0c0cae075726e7b185460 +size 68528 diff --git a/features/keypoints/eat_010_aug_flip_keypoints.npy b/features/keypoints/eat_010_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d3fc4afed1740c2f3e0eb1d4378fb281c16d23c3 --- /dev/null +++ b/features/keypoints/eat_010_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e85795b6010a3f45319fc2dcec6d4ec69dd494e742173bc0688264fdbccb58d +size 142328 diff --git a/features/keypoints/eat_010_aug_rotate_keypoints.npy b/features/keypoints/eat_010_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6f2d65e83c304959339ced64410d16f523071025 --- /dev/null +++ b/features/keypoints/eat_010_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f1bebee96b506c5ccd67edeb5d41c6adaf20007a8c2f0cbeb0f9ef8d8c39f0 +size 142328 diff --git a/features/keypoints/eat_010_aug_shift_keypoints.npy b/features/keypoints/eat_010_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cb570ced09105eaecdaf81fc893334ad1d5f055 --- /dev/null +++ b/features/keypoints/eat_010_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36c680af76043ff03f18149bf577dc7c19a5ac95cc5d792939c587180edb427 +size 142328 diff --git a/features/keypoints/eat_010_keypoints.npy b/features/keypoints/eat_010_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f25f763b232cc31e26f45354ac86c87fd6c33ee1 --- /dev/null +++ b/features/keypoints/eat_010_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bb09d23324bab3842704c545746ccfb31c2f600051c9e6df162f753006a908 +size 142328 diff --git a/features/keypoints/eat_011_aug_shift_keypoints.npy b/features/keypoints/eat_011_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1921a01f6ecb63e989831a1031729d368900588d --- /dev/null +++ b/features/keypoints/eat_011_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ccc18cd1ce4a245782aacf4a8537c5184da8d71325ee66f8e36870072eebe5a +size 108128 diff --git a/features/keypoints/eat_011_keypoints.npy b/features/keypoints/eat_011_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..86e38aee61dedf0302f84e16f89905f0b0d3bb9f --- /dev/null +++ b/features/keypoints/eat_011_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7639d1bf8e8078ac29e9b902e6f9e40608f76c6c4d5093aef8a8fde681fa26 +size 108128 diff --git a/features/keypoints/eat_012_aug_shift_keypoints.npy b/features/keypoints/eat_012_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f45a59cb3ca82099eebc4e65ff800eb2d9b569f0 --- /dev/null +++ b/features/keypoints/eat_012_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d19dd3b2f32489c26647d159b8a0f0cc7ae70316d388112a754194a052b7b02 +size 117128 diff --git a/features/keypoints/eat_012_keypoints.npy b/features/keypoints/eat_012_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f7b807a19ab97d58db0c0dc943ddc7791672a945 --- /dev/null +++ b/features/keypoints/eat_012_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe0b5ba4eeb44c1bfac57150d90ba1a48209f57fb4594cab85a0dd1e7a9bb73 +size 117128 diff --git a/features/keypoints/eat_013_keypoints.npy b/features/keypoints/eat_013_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e9457c9f596f39d54c129380dcac6671af24fb2 --- /dev/null +++ b/features/keypoints/eat_013_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55abe1d417e117214ffc21d904e0cb5c16744532c2be5d372b01a2ca4f09f105 +size 135128 diff --git a/features/keypoints/eat_014_aug_shift_keypoints.npy b/features/keypoints/eat_014_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ba4a47ab5029ddd28a286db72e6102eaed4f4c4d --- /dev/null +++ b/features/keypoints/eat_014_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d11a52f16f85c2b1410a48b94fb125e8cacc2670f9e2bba433505076c07c82 +size 19928 diff --git a/features/keypoints/eat_014_keypoints.npy b/features/keypoints/eat_014_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3c7e558fc26f84f25129a16ad35277c397692098 --- /dev/null +++ b/features/keypoints/eat_014_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1a52d5ca452c9457a9bdeef7548e3ae4ea0e961d53ea9fb3ee76ed8720150f +size 19928 diff --git a/features/keypoints/eat_015_aug_flip_keypoints.npy b/features/keypoints/eat_015_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa774841ffbfaa1b92a9b24df4c5745f16cc350e --- /dev/null +++ b/features/keypoints/eat_015_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe6de310dfa313a97d4dc02b8251ef884ec2309cb0666b3de79d581f95ac227 +size 104528 diff --git a/features/keypoints/eat_015_aug_shift_keypoints.npy b/features/keypoints/eat_015_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4595ec5cf684d9ec877e9b6f79d58c9c80cf1f0e --- /dev/null +++ b/features/keypoints/eat_015_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51640f93d4f85ddf9dcef70f9923874171cccc3f7b02fc974e9da0e325fc8369 +size 104528 diff --git a/features/keypoints/eat_015_keypoints.npy b/features/keypoints/eat_015_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..62b3847b2f1d5d682fa94dc59c99d026073eff58 --- /dev/null +++ b/features/keypoints/eat_015_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54181425bfa7e9fa456e784045b8c395421190cd4abd4b3fed0b7aca215dbfc +size 104528 diff --git a/features/keypoints/eat_016_aug_flip_keypoints.npy b/features/keypoints/eat_016_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c27b6fcfaaf1fb459f3902b67f036760e8c72516 --- /dev/null +++ b/features/keypoints/eat_016_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdae046313081cc3f535fd6a3c6786261035598ed7a5be9dfbfbbcce2bc79e8e +size 73928 diff --git a/features/keypoints/eat_016_aug_shift_keypoints.npy b/features/keypoints/eat_016_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..97f8a7fb88ba3fdd87aa167e82a1c51bfcf78609 --- /dev/null +++ b/features/keypoints/eat_016_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea797ff8dc868c1dcc08b795f4a63960aa8498bbd11853ea5c6dff466b2c9260 +size 73928 diff --git a/features/keypoints/eat_016_keypoints.npy b/features/keypoints/eat_016_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..50b7821b3eb3d64631ffd53645bc9a25bd315ce6 --- /dev/null +++ b/features/keypoints/eat_016_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9e5fde63665c21e7322becfca0cfa87252101b3c4685472a5e18ff37b30c43 +size 73928 diff --git a/features/keypoints/eat_017_aug_rotate_keypoints.npy b/features/keypoints/eat_017_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..235cf7b3354570447d294b43aab7526013843e08 --- /dev/null +++ b/features/keypoints/eat_017_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68a8efce216a1f8939e8fd7e35e2d197518401e9b8c7c2cb644ff48780ebe709 +size 55928 diff --git a/features/keypoints/eat_017_aug_shift_keypoints.npy b/features/keypoints/eat_017_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fe241b72f9bb6abbcdfdce1c32e60f440e837ec2 --- /dev/null +++ b/features/keypoints/eat_017_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5fe26446d611efba6c7ffa86106edfe40c75642b7b4e990413e24868301a29b +size 55928 diff --git a/features/keypoints/eat_017_keypoints.npy b/features/keypoints/eat_017_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2bcf8b8d0947ec0cbefb67463b4502e44123d025 --- /dev/null +++ b/features/keypoints/eat_017_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56720e82bb30bc073cd258ccfcfa1bdad9d5c9e0cf9c1f95594d61978e26c51c +size 55928 diff --git a/features/keypoints/eat_018_keypoints.npy b/features/keypoints/eat_018_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..cc8c93b3690f72348ea4bdacba52cd535012e1ed --- /dev/null +++ b/features/keypoints/eat_018_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8f2343955cf7741e6fcae8a45fc9c448b76963c4cca43394753d78bcf54832 +size 149528 diff --git a/features/keypoints/eat_019_aug_flip_keypoints.npy b/features/keypoints/eat_019_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..931ad7d693bb5caa88757ebb3aa2593f973822a3 --- /dev/null +++ b/features/keypoints/eat_019_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f46ecc86086492f1f593d725e2b3b38588f77a4bf78c1c40cef0f830e237598 +size 50528 diff --git a/features/keypoints/eat_019_keypoints.npy b/features/keypoints/eat_019_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4a6c81b8a9cfa86ad2ab997635abb5faef1eb75 --- /dev/null +++ b/features/keypoints/eat_019_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37270d7e351e1034655dda01c71281b86562a59dfa70ae7fa0eb2052760ca038 +size 50528 diff --git a/features/keypoints/eat_020_aug_rotate_keypoints.npy b/features/keypoints/eat_020_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4a600dce89f9af2476cd7a599c880d11f565878f --- /dev/null +++ b/features/keypoints/eat_020_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a264e017de50e2498d418d629e6ad5172dc0e663f13e506eca7fcb5e7f5d110 +size 55928 diff --git a/features/keypoints/eat_020_keypoints.npy b/features/keypoints/eat_020_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c70ac5aa3793292d73d46600588c78122061f9dc --- /dev/null +++ b/features/keypoints/eat_020_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230be1ca99b4c482c04b4c749be4d352f68691bbb64bcaa5a94858a3f6c7344f +size 55928 diff --git a/features/keypoints/eat_021_aug_rotate_keypoints.npy b/features/keypoints/eat_021_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c4ed2b6b1ae392c3ac7c19cb5d8bd96cc54bd302 --- /dev/null +++ b/features/keypoints/eat_021_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef028c19dc918e3634e5608562e047011b31e9481f883e1ea37043485c6389a +size 133328 diff --git a/features/keypoints/eat_021_aug_shift_keypoints.npy b/features/keypoints/eat_021_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..93aca0ffbceecfc8d1c5dc234795119e682f877d --- /dev/null +++ b/features/keypoints/eat_021_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029d2c66b1a7dcd525955492c503a56e063a14578b86ced880bdf02968bd95a5 +size 133328 diff --git a/features/keypoints/eat_021_keypoints.npy b/features/keypoints/eat_021_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..befa0f422683ebcd62ffc27c8f7402f6ed77ca1e --- /dev/null +++ b/features/keypoints/eat_021_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9034c1784b645fc2f3fd1d4a8974620673c71a48d38ec2a78fda1bb38a6f41bb +size 133328 diff --git a/features/keypoints/eat_022_aug_flip_keypoints.npy b/features/keypoints/eat_022_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa7f583465dcb8272fc7ee5705a1d8719780da59 --- /dev/null +++ b/features/keypoints/eat_022_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d4b73472ad23c90565e131b0e38064af91fe97b6604e88cf767b1b4cc54bcb +size 37928 diff --git a/features/keypoints/eat_022_keypoints.npy b/features/keypoints/eat_022_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d4359c1f381014b168d0fd9714e7abc0b833d11 --- /dev/null +++ b/features/keypoints/eat_022_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9523fe7bf5095c081de01fe72ed31ecfae33319bd82dd4bcc89d40126b3db41 +size 37928 diff --git a/features/keypoints/eat_023_aug_flip_keypoints.npy b/features/keypoints/eat_023_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..82c325fcfc760ce8f245c398af02768fab18114f --- /dev/null +++ b/features/keypoints/eat_023_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0447910dc315a63a17f8b36d8ccaaa78c9ccada0e6341df8e922f4a731667445 +size 90128 diff --git a/features/keypoints/eat_023_aug_shift_keypoints.npy b/features/keypoints/eat_023_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c5687ad3cd324045a876c900c15763cee60bbd91 --- /dev/null +++ b/features/keypoints/eat_023_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a60714131c279e414ab835e5aa815fc7158b7136ac330102b1c9452bf4ae61f +size 90128 diff --git a/features/keypoints/eat_023_keypoints.npy b/features/keypoints/eat_023_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c21cd9f090255daa6110959fa67c598448aeafb5 --- /dev/null +++ b/features/keypoints/eat_023_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24263d4e54f306d4877f163590a85e684ca69296913b16e734ef1dfea9298c32 +size 90128 diff --git a/features/keypoints/eat_024_aug_rotate_keypoints.npy b/features/keypoints/eat_024_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6fd33848b366ced10efd3fc578cf166cb20db0c --- /dev/null +++ b/features/keypoints/eat_024_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60561f83e58ace2fd9c8ad387cd8904ed3e0b4d6cd33696e67894ac5ea26d791 +size 162128 diff --git a/features/keypoints/eat_024_aug_shift_keypoints.npy b/features/keypoints/eat_024_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1a057c16de5cc49f1f5cb9757fcd6224b520c1ed --- /dev/null +++ b/features/keypoints/eat_024_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889c5ab4e7c6dea89ccdff22ae89896aa4bd50ceb858f7799e9c426a3b682531 +size 162128 diff --git a/features/keypoints/eat_024_keypoints.npy b/features/keypoints/eat_024_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e018dd7cb26e72d8aa16f25ac5827fb992d476f2 --- /dev/null +++ b/features/keypoints/eat_024_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d2f57f444e300f19b4e4fbc933cbbe9638e74ba523a5df5a5b626c28f72cd9 +size 162128 diff --git a/features/keypoints/eat_025_aug_shift_keypoints.npy b/features/keypoints/eat_025_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dc45532a3db2ea37a3e8ed9a84ded205131ce327 --- /dev/null +++ b/features/keypoints/eat_025_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9129fe481274dd5bce1a0a1059b7c0717119d0d64e5824e7388eedfbaad3e8e +size 84728 diff --git a/features/keypoints/eat_025_keypoints.npy b/features/keypoints/eat_025_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..51d2aebb927d4fca668c8fd1993e53dc9577726c --- /dev/null +++ b/features/keypoints/eat_025_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667907296c3528fcf3b00126987d76781dcdf42b4485073b6d0f2ff3c7dbff15 +size 84728 diff --git a/features/keypoints/eat_026_aug_shift_keypoints.npy b/features/keypoints/eat_026_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..cd1eb894ed75e1b71a3c217c6ed9216ba937463b --- /dev/null +++ b/features/keypoints/eat_026_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbe233c712b5563ce08d1448041074bed9f6c41dd1dd63737329db9547f9cca +size 48728 diff --git a/features/keypoints/eat_026_keypoints.npy b/features/keypoints/eat_026_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5bac7fcfb47a085551a6180117506532dc996d5e --- /dev/null +++ b/features/keypoints/eat_026_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0d17ae188964be5de552360dc8ff9ee20112d4c1130845ef6bcf80fbe4018c +size 48728 diff --git a/features/keypoints/eat_027_aug_shift_keypoints.npy b/features/keypoints/eat_027_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a5e5bc4a9faa498eea6d8041444b185e57dbf0de --- /dev/null +++ b/features/keypoints/eat_027_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb7b7b7dcc810df7b98607e92b2a49f234ae5b3393f213960ae3d166c3f3c72 +size 79328 diff --git a/features/keypoints/eat_027_keypoints.npy b/features/keypoints/eat_027_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..cb198119c726ad3372ee85b6637ea7b74f053745 --- /dev/null +++ b/features/keypoints/eat_027_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bf02d309ed7f2c23b2e983062233a0af413184eaa699a60c4e2e5f56ae8504 +size 79328 diff --git a/features/keypoints/eat_028_aug_rotate_keypoints.npy b/features/keypoints/eat_028_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..798ba9bd7de11ede6a6211f2d356fc8638598706 --- /dev/null +++ b/features/keypoints/eat_028_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85afb6f004218f8da7a632f127776130a4ce364f23c575c9b2d67d779c85b770 +size 63128 diff --git a/features/keypoints/eat_028_keypoints.npy b/features/keypoints/eat_028_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..738b4f5d98b0f9883f1ad9d47375159f3e9d4650 --- /dev/null +++ b/features/keypoints/eat_028_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3339edaaf5e3a78a5203103fe624e47a03261dab953271b931fd0250ad4a7dea +size 63128 diff --git a/features/keypoints/eat_029_aug_flip_keypoints.npy b/features/keypoints/eat_029_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6b96ec834b1fcbe60260a87afd9d6c738f124fb4 --- /dev/null +++ b/features/keypoints/eat_029_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77f25cabd7ed9d7e16eeb989cae9349bc19fbb6af0b54efabcce3017524c481 +size 52328 diff --git a/features/keypoints/eat_029_aug_rotate_keypoints.npy b/features/keypoints/eat_029_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..abfd160c926dc0680252cce3fbc153ef2627c3c2 --- /dev/null +++ b/features/keypoints/eat_029_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9fb617e6d59b2359943575626660cf832ffec5f65929b2f56867367f1bbfa5 +size 52328 diff --git a/features/keypoints/eat_029_keypoints.npy b/features/keypoints/eat_029_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c023ddc66ad1a8ac114c8fcd13457819bdf7a6cc --- /dev/null +++ b/features/keypoints/eat_029_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e928e5ee3ee94f9c104f712ebcb9ef300aa692e66f4a646de0ef2a6c35e082 +size 52328 diff --git a/features/keypoints/eat_030_aug_rotate_keypoints.npy b/features/keypoints/eat_030_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b5060ef5a0ea487193434e1246346d678fa77dcb --- /dev/null +++ b/features/keypoints/eat_030_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ffc861c9805e454b988857f755ccdac6ca8267a69ede368e2bf2a5648578df +size 34328 diff --git a/features/keypoints/eat_030_aug_shift_keypoints.npy b/features/keypoints/eat_030_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7a387de00603181d0d8f9b6f4e0d82a03d512ba9 --- /dev/null +++ b/features/keypoints/eat_030_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71e87d33f940ef38ecad73e99b947c7057cae455969b6dd23c4041fc740c7ef +size 34328 diff --git a/features/keypoints/eat_030_keypoints.npy b/features/keypoints/eat_030_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8940ad7df883e4b35157c79132179c349b1646fa --- /dev/null +++ b/features/keypoints/eat_030_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322af25645885ece29660181bee8517bc455ffcc813a23905e18c705ad5d5a23 +size 34328 diff --git a/features/keypoints/eat_031_aug_rotate_keypoints.npy b/features/keypoints/eat_031_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7a98bda3ac2e1d559f4fbdd4bd01499563e02b4 --- /dev/null +++ b/features/keypoints/eat_031_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c6008934239e06e77fe03025d5e3ffb44510fa11304765416ea1b71b6fd8c4 +size 72128 diff --git a/features/keypoints/eat_031_keypoints.npy b/features/keypoints/eat_031_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..29c5e3a09f5ce4e2d16272aead3a136b04c18ca1 --- /dev/null +++ b/features/keypoints/eat_031_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2c98d18a566820117f9df1b659d1b38a2f87791b1a9ae8b7e10ea919ce9ffc +size 72128 diff --git a/features/keypoints/eat_032_aug_flip_keypoints.npy b/features/keypoints/eat_032_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ea012a177342e1f3d2bb9c17312f8db2db4db501 --- /dev/null +++ b/features/keypoints/eat_032_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d130566f3748f7c1b84eba0c74692eb1191a275fe63ace9769d7192946fa5a +size 113528 diff --git a/features/keypoints/eat_032_aug_rotate_keypoints.npy b/features/keypoints/eat_032_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ed2ad4998f170143fb2938b5c3d9d3a6538f28c4 --- /dev/null +++ b/features/keypoints/eat_032_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7651e5a1a4044322a9200acd2c31c87ad52c7339cad394ad5d6aec9094861f35 +size 113528 diff --git a/features/keypoints/eat_032_keypoints.npy b/features/keypoints/eat_032_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..41917c58bdcc7cf3181ab6b41eefa507f8bd7a98 --- /dev/null +++ b/features/keypoints/eat_032_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f423c4a3f169353fdb6d1ae07388b35053f23baea68e2c9dc7050d9d454a49a2 +size 113528 diff --git a/features/keypoints/eat_033_aug_rotate_keypoints.npy b/features/keypoints/eat_033_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..cbffc38792594f0a7d9a0511f4efdd8158cb1438 --- /dev/null +++ b/features/keypoints/eat_033_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a84b1b7a23ce8f1fe63c33f5d1eb5d97e6c60bd6df3279cdc88752b4d608fe +size 73928 diff --git a/features/keypoints/eat_033_aug_shift_keypoints.npy b/features/keypoints/eat_033_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..14a60d6bd35a438dee9da93e10c0416d23cba9c4 --- /dev/null +++ b/features/keypoints/eat_033_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54516417c55c642b27a14675f94fa1dcb0212237070ecfcb26f1d920267d745a +size 73928 diff --git a/features/keypoints/eat_033_keypoints.npy b/features/keypoints/eat_033_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f6bc2d340a40119b7cf621483cd0e679ea63593c --- /dev/null +++ b/features/keypoints/eat_033_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c4b1ff1a2e3802d9c1f980dcd1a9dae307c9a59f5afb3fddfef96951c6f449 +size 73928 diff --git a/features/keypoints/eat_034_aug_flip_keypoints.npy b/features/keypoints/eat_034_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ad6e7cbddd359ba933c0205ea1399c7d491966dd --- /dev/null +++ b/features/keypoints/eat_034_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4427384fc52f2cd476716629ce1abd78c6cb023a4676c107a2672a23fe426220 +size 82928 diff --git a/features/keypoints/eat_034_aug_shift_keypoints.npy b/features/keypoints/eat_034_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c465450ff4e5d5a5c80300824349b09cfc785ee8 --- /dev/null +++ b/features/keypoints/eat_034_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d69946ca77c5958a9f923c1e601092e59473cd96eca9c938c9dacc2dc1f0496 +size 82928 diff --git a/features/keypoints/eat_034_keypoints.npy b/features/keypoints/eat_034_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c175632ac1e15fd686cfb5614fae1a60ab216c3c --- /dev/null +++ b/features/keypoints/eat_034_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c8d46210390a5d415c8804c886eb3cf282663458a7be1f0087aec5a8f2b5bd5 +size 82928 diff --git a/features/keypoints/eat_035_aug_flip_keypoints.npy b/features/keypoints/eat_035_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d2ffe38076e0edf3e6476faa77133fff8865040 --- /dev/null +++ b/features/keypoints/eat_035_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916a57164dcfebe8097d9a1b532ac7d126e953e4cbf422c49ca1ac64e0775208 +size 75728 diff --git a/features/keypoints/eat_035_aug_rotate_keypoints.npy b/features/keypoints/eat_035_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ac9adea9f20b90f03bf35b072fe34b69743feca2 --- /dev/null +++ b/features/keypoints/eat_035_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ceb2e08b35ddee5808abd727164f61a059d20a8bfb21d28848b28892f86cb6 +size 75728 diff --git a/features/keypoints/eat_035_aug_shift_keypoints.npy b/features/keypoints/eat_035_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b03ab24535dfbd40eeeedef35ea1cd24266ea4c5 --- /dev/null +++ b/features/keypoints/eat_035_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de803028bc91134c88bd56fdc98383ca5bd3ca068c6e0f7f30b4fb01ae4f3f1b +size 75728 diff --git a/features/keypoints/eat_035_keypoints.npy b/features/keypoints/eat_035_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e45333dbf43566d119f2ac2fc2449831de7f3c03 --- /dev/null +++ b/features/keypoints/eat_035_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e3dac48f40f6d5428c756d034e6df8b3759f91f88ede4ce5a52eca3e270935 +size 75728 diff --git a/features/keypoints/eat_036_aug_flip_keypoints.npy b/features/keypoints/eat_036_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..36c070a493c9753057d0b4011f16a02907414bb5 --- /dev/null +++ b/features/keypoints/eat_036_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8a5c21cd8f2ce9c850a28f2eff992b6209e26294871a6960b3971eac9ccaa9 +size 100928 diff --git a/features/keypoints/eat_036_keypoints.npy b/features/keypoints/eat_036_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8bbc70a480d3e6a010c68776851d5efb8bb9f650 --- /dev/null +++ b/features/keypoints/eat_036_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43f0b62e03a1b38c596243aaba241e1c177553beab85ab9b5a4e1167f3e4b63 +size 100928 diff --git a/features/keypoints/eat_037_aug_flip_keypoints.npy b/features/keypoints/eat_037_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9ff36c9e40c57d1c1b85108d230a0eccc1909c03 --- /dev/null +++ b/features/keypoints/eat_037_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289ccaa0e09c8263f121817b71191c8eec7957a73ade1223f55ce4b5cece4bcf +size 73928 diff --git a/features/keypoints/eat_037_aug_rotate_keypoints.npy b/features/keypoints/eat_037_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ca63e4a05682f3dfe29e65ec316a496f448b14b5 --- /dev/null +++ b/features/keypoints/eat_037_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e60f978a078011d458dd87d2f3e0695cbedb4a60f8446f03411a201dc54f41d +size 73928 diff --git a/features/keypoints/eat_037_keypoints.npy b/features/keypoints/eat_037_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..879f2434751e70e61c3abf69e2843e8cb4ca31be --- /dev/null +++ b/features/keypoints/eat_037_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2493f9fd6a722684e5ad96f6f72c996474a686713a5aebd7a3695928b5a85ba3 +size 73928 diff --git a/features/keypoints/fish_001_aug_flip_keypoints.npy b/features/keypoints/fish_001_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..81e976c7e4a50a6ccf533568d379a9a258a8771a --- /dev/null +++ b/features/keypoints/fish_001_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d43d32f0b8cb8d3173053aaf266e5124a4ccaff74eeb13b5dbb11d17787ec7 +size 55928 diff --git a/features/keypoints/fish_001_aug_rotate_keypoints.npy b/features/keypoints/fish_001_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..be9cb3be5b91185b999b863545a0fb1c32a465be --- /dev/null +++ b/features/keypoints/fish_001_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7a627a03cc68c0e09f43b6fbf4686dcb7b1f570bb30b3522804d39f33f36d8 +size 55928 diff --git a/features/keypoints/fish_001_aug_shift_keypoints.npy b/features/keypoints/fish_001_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5df6abf37ff8c0c2bb5fa4e73d69cd49dee80f37 --- /dev/null +++ b/features/keypoints/fish_001_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bbb51ff06e05d72ef851b7203ceb7fd9d95bc171c700ad55878b55f2cfa7e6 +size 55928 diff --git a/features/keypoints/fish_001_keypoints.npy b/features/keypoints/fish_001_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..348383225179e5df63932b1a62bef4202c6dff70 --- /dev/null +++ b/features/keypoints/fish_001_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2bcb46177ab1731354952b93c76d1f1b4e3eb259d69feef54383f26b60769a +size 55928 diff --git a/features/keypoints/fish_002_aug_flip_keypoints.npy b/features/keypoints/fish_002_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..36fdcb2f2cce739f6800758df14eeb5245e45cea --- /dev/null +++ b/features/keypoints/fish_002_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5f9e273c759a835737577447ed754aaeb50fcd3bfa90b9c03108bad52f9dc9 +size 81128 diff --git a/features/keypoints/fish_002_aug_rotate_keypoints.npy b/features/keypoints/fish_002_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..88847ba7fc3780ee9dac6806797f74e9efdb29c3 --- /dev/null +++ b/features/keypoints/fish_002_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133eaaf4a812b4304ef40d9a699588ce416b9067505ebd8aa1f2bed92b1a6a5d +size 81128 diff --git a/features/keypoints/fish_002_keypoints.npy b/features/keypoints/fish_002_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..78683e4f0ba7e79978f698c555899ced928c6d30 --- /dev/null +++ b/features/keypoints/fish_002_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1923b921d46f21200529ec492a96eb21872f0eec2b572e668dd40273a440c91e +size 81128 diff --git a/features/keypoints/fish_003_aug_flip_keypoints.npy b/features/keypoints/fish_003_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..069e26ff15e7e453ce3f4f7041f98cd554735178 --- /dev/null +++ b/features/keypoints/fish_003_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c047e5e6015684350731c756a1c84717e05528fde93bb623d70f4193cdb514da +size 72128 diff --git a/features/keypoints/fish_003_aug_rotate_keypoints.npy b/features/keypoints/fish_003_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7b36b1d1c011769ed72698086b3127b27d344298 --- /dev/null +++ b/features/keypoints/fish_003_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7352b6d68a9eef56e3e86ff2eea31e67721f1213ba69f20d26260b43173385ce +size 72128 diff --git a/features/keypoints/fish_003_keypoints.npy b/features/keypoints/fish_003_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b4a4c848ddd54ac1d296999b86b72ee10cba05bd --- /dev/null +++ b/features/keypoints/fish_003_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95a20e75743bcc33dc11bb94a5cf14e11bd6ba48343494a4fa772fb909cb290c +size 72128 diff --git a/features/keypoints/fish_004_aug_flip_keypoints.npy b/features/keypoints/fish_004_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8d793e47d3289ac85f294ff2f2b68970df7e90e8 --- /dev/null +++ b/features/keypoints/fish_004_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad2910b860dc5a2cc7c23f611e117e72388bd4faac7fd1ed3505edf89d26100 +size 61328 diff --git a/features/keypoints/fish_004_keypoints.npy b/features/keypoints/fish_004_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6be87a98cbeca2c95c2409cbdc75e47367db71b9 --- /dev/null +++ b/features/keypoints/fish_004_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6848ea76382abc23ab734f353a0db1f1ae5a67298e12793f8d4728787ca20500 +size 61328 diff --git a/features/keypoints/fish_005_aug_flip_keypoints.npy b/features/keypoints/fish_005_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7088a0cf4b6e81ec9e5dc58117e5f462757868e3 --- /dev/null +++ b/features/keypoints/fish_005_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fbade4d3043dd23d06953df5cc675e935f238832467cf21880a6dd8c44fd5e7 +size 30728 diff --git a/features/keypoints/fish_005_aug_rotate_keypoints.npy b/features/keypoints/fish_005_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..aea9e1aa4f0aa2e5a49d268a10112b94e230034d --- /dev/null +++ b/features/keypoints/fish_005_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7595950a685576cee00a6946bd00a38a19862734990e79b60b4e69bfb67e4d65 +size 30728 diff --git a/features/keypoints/fish_005_keypoints.npy b/features/keypoints/fish_005_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..89ad75b007dfb6d3d722f99ce526791a14c6c408 --- /dev/null +++ b/features/keypoints/fish_005_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7039d6814b0b1233669dee17cd007138382db8be5ecb87503d367230107daebc +size 30728 diff --git a/features/keypoints/fish_006_aug_shift_keypoints.npy b/features/keypoints/fish_006_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1a9d1bd8589069c9c9b2c225291805581b8e972f --- /dev/null +++ b/features/keypoints/fish_006_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4166f16fdb44d20679bed25d9f6daf9ce63fcf2bf0261100ecef07a5d51a9962 +size 43328 diff --git a/features/keypoints/fish_006_keypoints.npy b/features/keypoints/fish_006_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..709dfb1c651c3a961f41eb6628f15d7e7606fe69 --- /dev/null +++ b/features/keypoints/fish_006_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d301d2f5eb998a1c2cfc798bfa235179866cd9d344c18924825e911e5aae570 +size 43328 diff --git a/features/keypoints/fish_007_aug_flip_keypoints.npy b/features/keypoints/fish_007_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..078cb49d43b15e8b2fc8cee547eed7a591f5775d --- /dev/null +++ b/features/keypoints/fish_007_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b935d0e637eeb219e700f396359c8db5d576d423b664d9440ec33d2cbd72509a +size 54128 diff --git a/features/keypoints/fish_007_aug_rotate_keypoints.npy b/features/keypoints/fish_007_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f7e779ba324f4089ba594c2f13ab76ef14253eac --- /dev/null +++ b/features/keypoints/fish_007_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2ca4765490de644f8fc87b6fc4d67457fbe4cef5bf523b0046eba7fc650fe8 +size 54128 diff --git a/features/keypoints/fish_007_aug_shift_keypoints.npy b/features/keypoints/fish_007_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4d9ead5685defe60a1dc45192a27c928b7706942 --- /dev/null +++ b/features/keypoints/fish_007_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b4bc5d4ca3297537dd77c52184f38c66570b63f8180f1fd781d4e162cec31f +size 54128 diff --git a/features/keypoints/fish_007_keypoints.npy b/features/keypoints/fish_007_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0763e417eb91f044dfaa8cf4b0da7253fae0f97b --- /dev/null +++ b/features/keypoints/fish_007_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ce330b15728a49d1c360203cb74ce041e03d33e3a947385ec2995e6821152b +size 54128 diff --git a/features/keypoints/fish_008_aug_flip_keypoints.npy b/features/keypoints/fish_008_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5770d7ed094716555cbfac4989d1455a6505d445 --- /dev/null +++ b/features/keypoints/fish_008_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3144989e5957fbd7525dc51fb9a6f0c808ffabea1339bafd368b0d7b0c301de3 +size 135128 diff --git a/features/keypoints/fish_008_aug_shift_keypoints.npy b/features/keypoints/fish_008_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d80f1a45c4cf202fbbdc0310a98a5a4870be4d94 --- /dev/null +++ b/features/keypoints/fish_008_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1344af02ebc835df3897c919eaa1a6f5fc21a3c534e0e1b207f2b182792b116 +size 135128 diff --git a/features/keypoints/fish_008_keypoints.npy b/features/keypoints/fish_008_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..526ce17fb35e450e5a5ead232179da9b0996aeca --- /dev/null +++ b/features/keypoints/fish_008_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe66ceaa742b19946a3792dffa3433de8dbc7fbe07462f384f19f622f449b94b +size 135128 diff --git a/features/keypoints/fish_009_aug_rotate_keypoints.npy b/features/keypoints/fish_009_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8cbd104e3ca80fda28293d1f65949e6b230bcfee --- /dev/null +++ b/features/keypoints/fish_009_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e763ac1eeafa6e9f0d1677c7659c22225ebca70fddeb87db4adfdcb9022d5599 +size 145928 diff --git a/features/keypoints/fish_009_aug_shift_keypoints.npy b/features/keypoints/fish_009_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dbbe0564cbd70035cdd72eae77a2147e6da2eaad --- /dev/null +++ b/features/keypoints/fish_009_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f00e96f85c4e4d92f26baeabab5dbc07d39985c63212d125060d7a667a9052 +size 145928 diff --git a/features/keypoints/fish_009_keypoints.npy b/features/keypoints/fish_009_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2a96835a3592f9ebc28d3111640dab7735c03ee --- /dev/null +++ b/features/keypoints/fish_009_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66a9e6c74473a7dc3292ded421c9a70960cffdb80387dfef2c453409b5e4fee +size 145928 diff --git a/features/keypoints/fish_010_aug_rotate_keypoints.npy b/features/keypoints/fish_010_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c1ebc9b4a87d3802691ff1b7d0e7c485ce50299a --- /dev/null +++ b/features/keypoints/fish_010_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6adaef344bf361be6d5e9cb922ca47b2896f029e40d1f0cd71da5f8f9eeb5c2d +size 113528 diff --git a/features/keypoints/fish_010_aug_shift_keypoints.npy b/features/keypoints/fish_010_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..382037659fca533cac9b33fd7c1326462a635e81 --- /dev/null +++ b/features/keypoints/fish_010_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19545ce640dccc1ed24843a4048fd030ad10efd45fcdc9bebc6c46b4c4063e9d +size 113528 diff --git a/features/keypoints/fish_010_keypoints.npy b/features/keypoints/fish_010_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e013f9e7acff1baecd4acd2b56bf5815e76e9466 --- /dev/null +++ b/features/keypoints/fish_010_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ffe681e5bfdf199be7a9952a51f8e03ea606a2d8534397dc9492295b53dc31c +size 113528 diff --git a/features/keypoints/fish_011_aug_flip_keypoints.npy b/features/keypoints/fish_011_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a0c1c8e3f49d70abbb661d4da746e0dacc7c8bd --- /dev/null +++ b/features/keypoints/fish_011_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c6b3ab8b8e02dda5466fae8f163e20d9fe972946436eaa6f115189acc5a63a4 +size 113528 diff --git a/features/keypoints/fish_011_aug_shift_keypoints.npy b/features/keypoints/fish_011_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e9065f011d650479c47277a7f81da12e86026c7d --- /dev/null +++ b/features/keypoints/fish_011_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fad4bfaa5bf2aafbbb20d452cfc3613c0b77a02a54b9063ca41dd10046ad2ef +size 113528 diff --git a/features/keypoints/fish_011_keypoints.npy b/features/keypoints/fish_011_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..82cf452604859768b700c6627fc0588616c2a916 --- /dev/null +++ b/features/keypoints/fish_011_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2459b0d254028a64b33d1af53b633ca0ae016200a01f3f0633118c5693ada4 +size 113528 diff --git a/features/keypoints/fish_012_aug_flip_keypoints.npy b/features/keypoints/fish_012_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e9a90f46b3c6ea7a8da453581ed9a272ed3e0c45 --- /dev/null +++ b/features/keypoints/fish_012_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cae9d357cf4f05e29f02053155657d1e4bbfb276021159889dd240a1fad0840 +size 61328 diff --git a/features/keypoints/fish_012_keypoints.npy b/features/keypoints/fish_012_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c647c8eb54caeb0e871f2f678fa1ee8ccdf9f111 --- /dev/null +++ b/features/keypoints/fish_012_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bfd1c8c9bd9c2ce0149c80bb1d85bc7cd10e2c2daaa3e7c7e7828c12efa813 +size 61328 diff --git a/features/keypoints/fish_013_aug_rotate_keypoints.npy b/features/keypoints/fish_013_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..aeeba99b11a5ea9c93f6d495c5cc425773f5b84a --- /dev/null +++ b/features/keypoints/fish_013_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed73abf1f18d626d72eb5736f890fc3713727f575ddc2d3c402b625517cc7457 +size 66728 diff --git a/features/keypoints/fish_013_keypoints.npy b/features/keypoints/fish_013_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9ef5004ae629ade935015ddf4a0bfcbd67119dcd --- /dev/null +++ b/features/keypoints/fish_013_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51931e42e059fae5c3cc4eaf0c13ca78d09a0a7edf7c8286f208a58d05aea99e +size 66728 diff --git a/features/keypoints/fish_014_aug_flip_keypoints.npy b/features/keypoints/fish_014_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a4529fe63fa554a604e5207e76b59786d154dc61 --- /dev/null +++ b/features/keypoints/fish_014_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deac9c36fb772084880241aee76eb7b9dc9782ba9153ac87ae0961bc07aabae9 +size 162128 diff --git a/features/keypoints/fish_014_aug_rotate_keypoints.npy b/features/keypoints/fish_014_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..237c0bc43a7ee771bc66c4066abb843a20b35d86 --- /dev/null +++ b/features/keypoints/fish_014_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a0ebbf83cd1d0243dea3f455c992d8dda48644abf9092f87a890b0eacecc5c +size 162128 diff --git a/features/keypoints/fish_014_keypoints.npy b/features/keypoints/fish_014_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6975d63bad4a1832c39fb5d2eb298e5e8957d61 --- /dev/null +++ b/features/keypoints/fish_014_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76b5660eb98371daaad55d1a84284e3ee1fd66feb633b7fdec48457631bde61 +size 162128 diff --git a/features/keypoints/fish_015_aug_rotate_keypoints.npy b/features/keypoints/fish_015_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..04d0ec769077012aa07c12cc97592a42d43f4256 --- /dev/null +++ b/features/keypoints/fish_015_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e832ba28c90c9fc77d40c1710f283161e3cea457004458468c35ae3abcd101 +size 156728 diff --git a/features/keypoints/fish_015_aug_shift_keypoints.npy b/features/keypoints/fish_015_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..050e65fdfcad1a1bff25af0bf9e12c5494c665d9 --- /dev/null +++ b/features/keypoints/fish_015_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e18ac55d5c496b4f1d6acb1aabd872590553a511307e3f0622b3beab4d6a32 +size 156728 diff --git a/features/keypoints/fish_015_keypoints.npy b/features/keypoints/fish_015_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c88e7638d553650172161e7b9fa8624adbcd7216 --- /dev/null +++ b/features/keypoints/fish_015_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17b76e71a0ca9336f8d2fe346f3aa894c9a5ab369327855a7673331f049c638 +size 156728 diff --git a/features/keypoints/fish_016_keypoints.npy b/features/keypoints/fish_016_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dd76ac7dcf50673453f0d1ffbffa1af7bef01a52 --- /dev/null +++ b/features/keypoints/fish_016_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad10ffd5a007177afd0e932fd5410b31ef3d53c1039224399de9de2dca9f967 +size 82928 diff --git a/features/keypoints/fish_017_aug_shift_keypoints.npy b/features/keypoints/fish_017_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..91b2164a6478e9a3daf735d4f7af157be423c5cc --- /dev/null +++ b/features/keypoints/fish_017_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7378701f79420f1b34687ce2453e80e735e6010492f81732a868c10c1d39713 +size 55928 diff --git a/features/keypoints/fish_017_keypoints.npy b/features/keypoints/fish_017_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3cc3e1f45d7cf9499613b493e6d34a70a88d89a3 --- /dev/null +++ b/features/keypoints/fish_017_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27845f51b2aceab982e2792018b596cd3a06f3fb1db8a8b598f393acf5e4db5 +size 55928 diff --git a/features/keypoints/fish_018_aug_flip_keypoints.npy b/features/keypoints/fish_018_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..17d5a42716c632fe7f1955d7a81ef484106a2698 --- /dev/null +++ b/features/keypoints/fish_018_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65056bd8bffbdb7cf485928f66f6e26d08d97cf50cbaf79af50b3815ca213276 +size 73928 diff --git a/features/keypoints/fish_018_aug_rotate_keypoints.npy b/features/keypoints/fish_018_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0477074bc6de4bf398b31423b4ec76666a29345d --- /dev/null +++ b/features/keypoints/fish_018_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deba13bd46982a20a02a7190061c7d9651e4bee5813078a4fc60387cd6a4d8d5 +size 73928 diff --git a/features/keypoints/fish_018_aug_shift_keypoints.npy b/features/keypoints/fish_018_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d7d5f1d3ed0d8a55b26f33800a4843268882b5f2 --- /dev/null +++ b/features/keypoints/fish_018_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de77310f5ea97386132e3713b03ebfb92ef2f7e57543c17c7e629f802a1d9078 +size 73928 diff --git a/features/keypoints/fish_018_keypoints.npy b/features/keypoints/fish_018_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..118ea4440270be4bad90b75ddfdb6dbe37464537 --- /dev/null +++ b/features/keypoints/fish_018_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0312f214544817e3cfa796ee380b379f3630aa1a1bdb20c2b4de0baed93d047d +size 73928 diff --git a/features/keypoints/fish_019_aug_flip_keypoints.npy b/features/keypoints/fish_019_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e861363d1830eabdf24b70f7f0e55acfdcd90979 --- /dev/null +++ b/features/keypoints/fish_019_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c603bf4e8b3f9bde185ec4410af144769e23eee2e99f1283c383885cece1528e +size 82928 diff --git a/features/keypoints/fish_019_aug_rotate_keypoints.npy b/features/keypoints/fish_019_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1bcb06de493c985ff79b48bdf5c29f9f30daa6ee --- /dev/null +++ b/features/keypoints/fish_019_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40e14c31cff87a68a0761c68b149f7fde02aa11e9b8371e9540f57c5769a412 +size 82928 diff --git a/features/keypoints/fish_019_aug_shift_keypoints.npy b/features/keypoints/fish_019_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3f775118717198a80b3da6923ab12c742c5ef3b4 --- /dev/null +++ b/features/keypoints/fish_019_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04805c85ab846d51167fb6e47d3edb6a593d6ceca9198ecd2d395032bf688349 +size 82928 diff --git a/features/keypoints/fish_019_keypoints.npy b/features/keypoints/fish_019_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..85c2a779cd7b295f49bbc51e97f48e8df42da294 --- /dev/null +++ b/features/keypoints/fish_019_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92bd77cdc32a78ef978f656bc53a40c4ee22350aae575551df48bd086860d12 +size 82928 diff --git a/features/keypoints/fish_020_aug_flip_keypoints.npy b/features/keypoints/fish_020_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f08fba7bbf27ca926e000508929dbcfe8e3fee74 --- /dev/null +++ b/features/keypoints/fish_020_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31da17fa1539186553771b9b6dbb3070ac9251dea9ce6a9db3e822a81cac6084 +size 48728 diff --git a/features/keypoints/fish_020_aug_rotate_keypoints.npy b/features/keypoints/fish_020_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e27ac209ac7d1eb028a7b13b61bbd387599405e --- /dev/null +++ b/features/keypoints/fish_020_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c9d2028425f6cc7bda5f80d160b73f5a70a66a64afa33331cd8435d08f8f56 +size 48728 diff --git a/features/keypoints/fish_020_keypoints.npy b/features/keypoints/fish_020_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..515401bec8b9af4d266b9220d27f098b62d63e64 --- /dev/null +++ b/features/keypoints/fish_020_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ade4bebbbf440ab9c7a8876604119bdd1ae7d562ea85c0986b55f5feb96e9a +size 48728 diff --git a/features/keypoints/fish_021_aug_flip_keypoints.npy b/features/keypoints/fish_021_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..636d154b6f7025bb3a580d964ec9e0158b3e1796 --- /dev/null +++ b/features/keypoints/fish_021_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b798ae14f34ef01e0c4bd3ea83066537b2e4fb1b0e4a241741b5d2783e04ce16 +size 27128 diff --git a/features/keypoints/fish_021_aug_shift_keypoints.npy b/features/keypoints/fish_021_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..40765575791f9239a64bc7c7c5968a7b85de87ed --- /dev/null +++ b/features/keypoints/fish_021_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847c072723d6c53b3ff50d3dfc81d4b47a4fe3479d211b1f99dd30802d5c485d +size 27128 diff --git a/features/keypoints/fish_021_keypoints.npy b/features/keypoints/fish_021_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b53154446fc3711f91af0cbdb14ace11e22086ed --- /dev/null +++ b/features/keypoints/fish_021_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a561352e8359f5cbd0fd1d761329a669233c19553b92b48790ef2e94d740a30 +size 27128 diff --git a/features/keypoints/fish_022_aug_flip_keypoints.npy b/features/keypoints/fish_022_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..626201a85e39b833adaaffb87e64676f57d51854 --- /dev/null +++ b/features/keypoints/fish_022_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048aa871e478f1e6a62d741ff80eae215983e5b566d1a8682b2e0f9667076ed9 +size 19928 diff --git a/features/keypoints/fish_022_aug_rotate_keypoints.npy b/features/keypoints/fish_022_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..94fc7f7b7ac017e035ef3baa90dbd0255f258546 --- /dev/null +++ b/features/keypoints/fish_022_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122da175991c78e3f44cd941cd0d0539908ac8cf7487558ea6f6a6ba10e0c077 +size 19928 diff --git a/features/keypoints/fish_022_keypoints.npy b/features/keypoints/fish_022_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f0d39e9b8bb607a41f8e864f332871de3bd4d47 --- /dev/null +++ b/features/keypoints/fish_022_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f7ba6997847b197c6d570e30cb6f3a2a683527c487d409273caf8e8879eb7c +size 19928 diff --git a/features/keypoints/fish_023_aug_flip_keypoints.npy b/features/keypoints/fish_023_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..616f2c65ac438b742dc15295f5483fef5adfd026 --- /dev/null +++ b/features/keypoints/fish_023_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cdf99f0e3de5b984b09e910be72c695a30027b52eca38cc973eb3fe739fe56 +size 54128 diff --git a/features/keypoints/fish_023_aug_shift_keypoints.npy b/features/keypoints/fish_023_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d6bd0cc1d2e71b2fe8f8cb30c3227916480ef3b --- /dev/null +++ b/features/keypoints/fish_023_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c347a64c1af992074f9f4b2c83ac8580ff276c77cbceffc83068610b35b83b9 +size 54128 diff --git a/features/keypoints/fish_023_keypoints.npy b/features/keypoints/fish_023_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c4fd829486cbd890e50e611aaffb56d1a8a7810f --- /dev/null +++ b/features/keypoints/fish_023_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5babd40f1705a237e699effbba8747b7c7283196827862bac7bafee341d80276 +size 54128 diff --git a/features/keypoints/fish_024_aug_rotate_keypoints.npy b/features/keypoints/fish_024_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..405af0fb4f70dfb928689780a0e1318f07c87c3d --- /dev/null +++ b/features/keypoints/fish_024_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd05683ea8804db8872cb52581acdd56af4b1d45439c1fb6083e73dd322040d4 +size 55928 diff --git a/features/keypoints/fish_024_aug_shift_keypoints.npy b/features/keypoints/fish_024_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..24860846382f18d28a99573fc71041c318f26bff --- /dev/null +++ b/features/keypoints/fish_024_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dade58a6673d5722286f498f03fdf4d6a9fc15afa09d6f453d295e30e2cb3924 +size 55928 diff --git a/features/keypoints/fish_024_keypoints.npy b/features/keypoints/fish_024_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d1f62f75cd5e380ac2d19ddf503f697bbe95a756 --- /dev/null +++ b/features/keypoints/fish_024_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d008deb4455869a2c4e267c41010fdb4dc7f7e979170fb6d8c44be9dc2c6bc +size 55928 diff --git a/features/keypoints/fish_025_aug_flip_keypoints.npy b/features/keypoints/fish_025_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d64df536700600f28d1a1cbe59938ab7b953fdd3 --- /dev/null +++ b/features/keypoints/fish_025_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad13e79fa455fb637af47966efa0b082d0502e71351edb02e11cc650b331ed16 +size 48728 diff --git a/features/keypoints/fish_025_aug_shift_keypoints.npy b/features/keypoints/fish_025_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ef2dc06e7f1543aed666c75498d6471c646e751 --- /dev/null +++ b/features/keypoints/fish_025_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de15027c01229127677b59393574e2b7adeeca927795dafd9352cf57d47adb0 +size 48728 diff --git a/features/keypoints/fish_025_keypoints.npy b/features/keypoints/fish_025_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e6e8223ca50edc994b70340af6a11f2795306d18 --- /dev/null +++ b/features/keypoints/fish_025_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9529f584584deb9e2b1f90ba10a404cc583d0c74dae947e539f611c5594fd07 +size 48728 diff --git a/features/keypoints/fish_026_aug_shift_keypoints.npy b/features/keypoints/fish_026_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..faeb51e8dcd85dfc96f09d2169701a63892ddd9c --- /dev/null +++ b/features/keypoints/fish_026_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396a2e796df01d932c516257f9a023e3fb13bebc1265ba76a6aeb4b96828447b +size 99128 diff --git a/features/keypoints/fish_026_keypoints.npy b/features/keypoints/fish_026_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..719aa539a449076baff29b7ff417269b2b565697 --- /dev/null +++ b/features/keypoints/fish_026_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b343881b8d3ca0ac1d07cc2fdbb6e3cbe0ad32e1742a722a134a504ba511b8d4 +size 99128 diff --git a/features/keypoints/fish_027_aug_flip_keypoints.npy b/features/keypoints/fish_027_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6c6e4119ea54e803bcc908ae4e8df4e1a0728fdd --- /dev/null +++ b/features/keypoints/fish_027_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fc4a9934965460cac259140b66b2d91d3cf79a04a074c089cd4173c1c9df37 +size 109928 diff --git a/features/keypoints/fish_027_aug_shift_keypoints.npy b/features/keypoints/fish_027_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..60f42483d0c5885f35bc9f3df742d641905cdcda --- /dev/null +++ b/features/keypoints/fish_027_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c499e44b72fb34583e56c80a7e7f59dff29ecb1f3855bceec280a8f66d855589 +size 109928 diff --git a/features/keypoints/fish_027_keypoints.npy b/features/keypoints/fish_027_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6f765525c255e31d44e8c67c3a8aae52055f18a --- /dev/null +++ b/features/keypoints/fish_027_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aed0692e3172f53df5fe7a6f7a2050dfaf17fe22619a3e7c2f2ebfaa0436101 +size 109928 diff --git a/features/keypoints/fish_028_aug_flip_keypoints.npy b/features/keypoints/fish_028_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0877334afbcedc9f1584d6308187454a8d6ae0cb --- /dev/null +++ b/features/keypoints/fish_028_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316805721142a5f9f46720c0b5326804b07ec6390d112ae3c0e8782755cbccaa +size 75728 diff --git a/features/keypoints/fish_028_aug_shift_keypoints.npy b/features/keypoints/fish_028_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..512e61c5713127565905d0e7be3fd4755dea8e4c --- /dev/null +++ b/features/keypoints/fish_028_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71310cc0cd9c7553ef18c62e7defb7243aae4159a25bc0eb33cda7ae913de61d +size 75728 diff --git a/features/keypoints/fish_028_keypoints.npy b/features/keypoints/fish_028_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4761c875ccdb8ebe653630e2dba940f03956dedd --- /dev/null +++ b/features/keypoints/fish_028_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73dea3372b9a559c59b1edb4516e94c06b963da37bd95605355b237f85b5659b +size 75728 diff --git a/features/keypoints/fish_029_keypoints.npy b/features/keypoints/fish_029_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e068816377acf3d418ad512b93de58ed0f17a046 --- /dev/null +++ b/features/keypoints/fish_029_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1a146fd36b79ba33e032d569c965ac3e85e99000b5dc459626d24b7d4acecc +size 172928 diff --git a/features/keypoints/fish_030_aug_rotate_keypoints.npy b/features/keypoints/fish_030_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9b5553929ba50156a04edd2bbb99fb88fa09a7e --- /dev/null +++ b/features/keypoints/fish_030_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6470a3da09ac3fc70d1a3a1e3d4a9b79f99df408df495049b29765dc96536e +size 81128 diff --git a/features/keypoints/fish_030_aug_shift_keypoints.npy b/features/keypoints/fish_030_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7910d59680239c85c79978782b6adde74ab626e8 --- /dev/null +++ b/features/keypoints/fish_030_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb43f513ee70f6dd8e5c6470b907a3639746c76a7bfb9e8a870cabd5a01936d +size 81128 diff --git a/features/keypoints/fish_030_keypoints.npy b/features/keypoints/fish_030_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0cebc0bd4748b755bd5d32dcb01faac8c7bd75d3 --- /dev/null +++ b/features/keypoints/fish_030_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783161942e34bda27364987dbce1996ecee1e5b615fac261c36d15d76770a9a3 +size 81128 diff --git a/features/keypoints/fish_031_aug_flip_keypoints.npy b/features/keypoints/fish_031_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e832e9ed36421d219143320312ffc55997d7701e --- /dev/null +++ b/features/keypoints/fish_031_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20bfcac59c819907c97d9b294bd39f7831aebbffe2f653181fb47535b06c7ba +size 100928 diff --git a/features/keypoints/fish_031_aug_rotate_keypoints.npy b/features/keypoints/fish_031_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..701698fbbaea17b04acd571423c833611d199066 --- /dev/null +++ b/features/keypoints/fish_031_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d8dd0f36ee92596a547301e601fbf61679fa30d3c0ad51bfd1edbd8501744e +size 100928 diff --git a/features/keypoints/fish_031_keypoints.npy b/features/keypoints/fish_031_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4322335f9ba942c9c812f8c4b36553792f2cecb9 --- /dev/null +++ b/features/keypoints/fish_031_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea571e1f660f25d1b1217cf9d319249e4ce56bb7fc7884c5bf232ae01c39833 +size 100928 diff --git a/features/keypoints/fish_032_aug_flip_keypoints.npy b/features/keypoints/fish_032_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0cece2e043dcf67c8aa5fc52a3761919f3f4e5f1 --- /dev/null +++ b/features/keypoints/fish_032_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aed63c220383cb6945e88c096f60a167d459173ce56f81dad5a362780f5a813 +size 59528 diff --git a/features/keypoints/fish_032_keypoints.npy b/features/keypoints/fish_032_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..10cf35df2d3769150e6148dd35b280b51848e398 --- /dev/null +++ b/features/keypoints/fish_032_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c60c3ea32b5adad8d870015c4f20e65e91fe012a371e6bf0532e6464e3c984 +size 59528 diff --git a/features/keypoints/fish_033_aug_rotate_keypoints.npy b/features/keypoints/fish_033_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c210de0b70989a5825508c623b211030067628b3 --- /dev/null +++ b/features/keypoints/fish_033_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acf93d85ba091827c19abcbfd4d9e5148bbd401c18c12a45cbd3e64c14bcbff +size 46928 diff --git a/features/keypoints/fish_033_aug_shift_keypoints.npy b/features/keypoints/fish_033_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a0680088af572184bd88f7fa80beebe803857d36 --- /dev/null +++ b/features/keypoints/fish_033_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe590186e355ba692db5a11e7848d11f7efa1b1abf369ca3fba888bf3c940277 +size 46928 diff --git a/features/keypoints/fish_033_keypoints.npy b/features/keypoints/fish_033_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..44f0cda6687e0a41651adae797159a0670e36fc2 --- /dev/null +++ b/features/keypoints/fish_033_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39c0834e7e82e7e8e3d6af158035cf4cee6a38be4fc913f363c998f8e8ed532 +size 46928 diff --git a/features/keypoints/fish_034_aug_rotate_keypoints.npy b/features/keypoints/fish_034_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..bf00f022c53f3dec6f91a3d13266236a307fca5f --- /dev/null +++ b/features/keypoints/fish_034_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:803727e08ad26c1292c7f68d9081317f228c8e941f1f8913b1e850192dbdc4d1 +size 41528 diff --git a/features/keypoints/fish_034_aug_shift_keypoints.npy b/features/keypoints/fish_034_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8127505e83cba6a41883b92146483553ef70c629 --- /dev/null +++ b/features/keypoints/fish_034_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3510110fb55a0e10c246cd9a29815c9259d118b74f59c9921cef84325dc81ef9 +size 41528 diff --git a/features/keypoints/fish_034_keypoints.npy b/features/keypoints/fish_034_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c50735d9e70f7c754cfa17696f97ef9915b7b1b0 --- /dev/null +++ b/features/keypoints/fish_034_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57dd62a216aeae9c88ae9dd6d97691eea9d8c7b6018ddf6f8a03270c138d400 +size 41528 diff --git a/features/keypoints/fish_035_aug_rotate_keypoints.npy b/features/keypoints/fish_035_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..57158c435533d73fd3a922c69b280c82666ad18d --- /dev/null +++ b/features/keypoints/fish_035_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49bca530de195dde1a1d501023561ecf384b6cf9e6c7ee902cb2c12c5630039d +size 147728 diff --git a/features/keypoints/fish_035_aug_shift_keypoints.npy b/features/keypoints/fish_035_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cad26e473bd7a3d8ced8dbee27347172f00d5c5 --- /dev/null +++ b/features/keypoints/fish_035_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ea3545d1e016d6ffb41c6f01e26ac116c534d5fb1716ff39874a3d4378440e +size 147728 diff --git a/features/keypoints/fish_035_keypoints.npy b/features/keypoints/fish_035_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..94687e3e85d9728acf00b0d752dfcd9ba231df79 --- /dev/null +++ b/features/keypoints/fish_035_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b44e1520f540a33da8e0953e1730c645b1bbc4868ad2bbde56376df11f68b6b +size 147728 diff --git a/features/keypoints/fish_036_aug_rotate_keypoints.npy b/features/keypoints/fish_036_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f37674bdc97a7be27815c15e0c281633175e6a90 --- /dev/null +++ b/features/keypoints/fish_036_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8b7a5ffd0b853b3d8c0cd97063278691f0930e2005ad7b158c400515408705 +size 46928 diff --git a/features/keypoints/fish_036_aug_shift_keypoints.npy b/features/keypoints/fish_036_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c23db64d6504c9072185b13135fcfd632619f500 --- /dev/null +++ b/features/keypoints/fish_036_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8110e9e3c750be0258292fea1b25b8bd7a197576e976a8e0d144971135bd24 +size 46928 diff --git a/features/keypoints/fish_036_keypoints.npy b/features/keypoints/fish_036_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c8db7d9d604163fcc76e7fa76d864f06ffcf6e63 --- /dev/null +++ b/features/keypoints/fish_036_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913258a896f1d1d1543601d0849c24602eb56fec6bad2dcc465ce80329e861b0 +size 46928 diff --git a/features/keypoints/fish_037_aug_flip_keypoints.npy b/features/keypoints/fish_037_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..13e295fb807cfa32945fa435ce7422d52692d9df --- /dev/null +++ b/features/keypoints/fish_037_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9811bdb6c7517670e55a127366baa53762f5242aaa29bcf79a6767709cfabd42 +size 37928 diff --git a/features/keypoints/fish_037_aug_rotate_keypoints.npy b/features/keypoints/fish_037_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..50e5cb1334ddd87e6f04579968258f60e9095077 --- /dev/null +++ b/features/keypoints/fish_037_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec467c42e52f9ab4f893a59596a017afb9f47d108cec10ad9bc03ca8aad022da +size 37928 diff --git a/features/keypoints/fish_037_aug_shift_keypoints.npy b/features/keypoints/fish_037_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..bc3f7e86c80707a6ca1981f2d0a386301de60f69 --- /dev/null +++ b/features/keypoints/fish_037_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aeeca702bdb7a5029c150b8d6d92c1a69d01b38020119a9fb8dbcda18d87e7d +size 37928 diff --git a/features/keypoints/fish_037_keypoints.npy b/features/keypoints/fish_037_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..77b66c834805b98dfd83ec1dd9f7bfffb5f1a4bf --- /dev/null +++ b/features/keypoints/fish_037_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41ea3b40933eb6b1d9256b4998960c926443082975eecec8e28086f7802b6de +size 37928 diff --git a/features/keypoints/like_001_aug_flip_keypoints.npy b/features/keypoints/like_001_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..08f9a57cc8b4f846cb67926c3f3d1e4ee0132793 --- /dev/null +++ b/features/keypoints/like_001_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260ef9678fd87b19a0bc677c807d1fcd6fdcaf13bafd512e0e3acb2b2f6cc868 +size 70328 diff --git a/features/keypoints/like_001_aug_rotate_keypoints.npy b/features/keypoints/like_001_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..da5e62dd4bc06f2e04b1109ee9a248a4d900dfd5 --- /dev/null +++ b/features/keypoints/like_001_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cca00864747cf835256e625e27ec1af1dd1a088f01a30f415c4807c80ae6179 +size 70328 diff --git a/features/keypoints/like_001_keypoints.npy b/features/keypoints/like_001_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dac58e5f10acbb3be88736223b364cfdfa1e33d2 --- /dev/null +++ b/features/keypoints/like_001_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1757b8bc0af2339b1d9dc208c3b50bc31d1ac536b50e2b11ec6f1c012bd49127 +size 70328 diff --git a/features/keypoints/like_002_aug_shift_keypoints.npy b/features/keypoints/like_002_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e0960caf48bd52acdc3af2ee6f4669947979f834 --- /dev/null +++ b/features/keypoints/like_002_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77cc4a939533024a333bf96e41ac7ad3b57910f2cb1bd51f2aa412a0e8f81a8 +size 122528 diff --git a/features/keypoints/like_002_keypoints.npy b/features/keypoints/like_002_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d2d5e13020d924e01db7de1dec283e7a3068b41e --- /dev/null +++ b/features/keypoints/like_002_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d828b10def16986f885cae3329051be322ddcdcc834ab256c4a9e23f1be333 +size 122528 diff --git a/features/keypoints/like_003_aug_flip_keypoints.npy b/features/keypoints/like_003_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d344c8c942bbd9119a94d08aedd01b0a661d4bf6 --- /dev/null +++ b/features/keypoints/like_003_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e371fe7a0d600c5183f82d7c79c30a84b2e5dfac73391e10de606e25e0f5f862 +size 115328 diff --git a/features/keypoints/like_003_aug_rotate_keypoints.npy b/features/keypoints/like_003_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3a153f2b49b59b293973000169b413d5d27845fd --- /dev/null +++ b/features/keypoints/like_003_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edbf385b7feff1bf42ac955d33b8d15209af5adb505e672f52f5941fc8954ee +size 115328 diff --git a/features/keypoints/like_003_keypoints.npy b/features/keypoints/like_003_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..903f9a88c0126ed8ef5cfc61222d27e4b57d13a8 --- /dev/null +++ b/features/keypoints/like_003_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd98338bf20df0af09e16e97a89fc5e4adc7ea87252dc1655b2b40af73266e18 +size 115328 diff --git a/features/keypoints/like_004_aug_shift_keypoints.npy b/features/keypoints/like_004_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6350f2a434181ab312bfa38ced6c48db4b19c986 --- /dev/null +++ b/features/keypoints/like_004_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f63d446d630d57a3cad1bea69a04254f7e43275ec61bd8fb4f2f88eed09bd19 +size 54128 diff --git a/features/keypoints/like_004_keypoints.npy b/features/keypoints/like_004_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1b9de05936222be0ddafc655411d4a2d876995d5 --- /dev/null +++ b/features/keypoints/like_004_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb72ef15d239488a676074642673a61d3d5dff9ddfa600bb6395e57d690ca37c +size 54128 diff --git a/features/keypoints/like_005_aug_flip_keypoints.npy b/features/keypoints/like_005_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d6098a0b656c6440417fb531bebbdc097f18d41d --- /dev/null +++ b/features/keypoints/like_005_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3508aaaa2ee68c28e8faf31334aba6df9437ccedead3f075b1608339027c51 +size 46928 diff --git a/features/keypoints/like_005_aug_rotate_keypoints.npy b/features/keypoints/like_005_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e114a3518802d599182c267b68fc74224f2aad42 --- /dev/null +++ b/features/keypoints/like_005_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34ab50bb1ce9a13c638fe062b9df60d74934017332dd2058695de4a0da0ad43d +size 46928 diff --git a/features/keypoints/like_005_aug_shift_keypoints.npy b/features/keypoints/like_005_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c570d30d9a40aef2f2ecfd5365ee6dbdac7ada5e --- /dev/null +++ b/features/keypoints/like_005_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e98fffe3e6c775c1241243aafd62828d26df5c8db4a76f6e9ed13a42c1ee27b +size 46928 diff --git a/features/keypoints/like_005_keypoints.npy b/features/keypoints/like_005_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9d022de17611cbea51bcc2d99d98a34b13df07a3 --- /dev/null +++ b/features/keypoints/like_005_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b43e4c0afde2749f8b1f87d8ead43cc1c61dae55427bf4e73225f9fe2d726f0 +size 46928 diff --git a/features/keypoints/like_006_aug_rotate_keypoints.npy b/features/keypoints/like_006_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8472237f91f558329eda02e17da024a58f82de07 --- /dev/null +++ b/features/keypoints/like_006_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c32899954b19f11300f49832750c33f0796e1720fb8d9629f54363555eb870 +size 64928 diff --git a/features/keypoints/like_006_keypoints.npy b/features/keypoints/like_006_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f0d3c6895018cde3c886f740288610c72dd6c42b --- /dev/null +++ b/features/keypoints/like_006_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b39a9ea3eaec2f7c4acc3b758dd0c2e26d8be18f9a4dd7753e707fd9de5d04e +size 64928 diff --git a/features/keypoints/like_007_aug_flip_keypoints.npy b/features/keypoints/like_007_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dae8756b90a7264a3580000b04e323fd7e3dd718 --- /dev/null +++ b/features/keypoints/like_007_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7940b8aad3d8fb8af339fa7de177a4a61b28861d99d98a4c3fa1e8abdc7c2bc5 +size 70328 diff --git a/features/keypoints/like_007_aug_shift_keypoints.npy b/features/keypoints/like_007_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0acb87c2896420e2706d1cf902445f93aa863d08 --- /dev/null +++ b/features/keypoints/like_007_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d577c159e28ae153ca2251b0f5b77b33b152665042df7ecb38c367c84a2e8a +size 70328 diff --git a/features/keypoints/like_007_keypoints.npy b/features/keypoints/like_007_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c3d81434a13a1226dbdd7ff814ba6f64550b1fbb --- /dev/null +++ b/features/keypoints/like_007_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ecb0eb2bd02afe0e6ac198911c60b9602dce392c63aa6fac57d8d2a3b517a8 +size 70328 diff --git a/features/keypoints/like_008_aug_flip_keypoints.npy b/features/keypoints/like_008_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ccd7ce9b182958eb2d70e75dc701d51b71138942 --- /dev/null +++ b/features/keypoints/like_008_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b97d599a2cc1baa92bc464a2e1109947d1a29b2f4c87be1cf2be610bbc18ccd +size 135128 diff --git a/features/keypoints/like_008_aug_rotate_keypoints.npy b/features/keypoints/like_008_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..476ab441588121117817942eb52e69199503f0ff --- /dev/null +++ b/features/keypoints/like_008_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa503262d55d2699b4667963930978f338aa005f06322e3ff85a08ec9c358c4 +size 135128 diff --git a/features/keypoints/like_008_aug_shift_keypoints.npy b/features/keypoints/like_008_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..26b1456e2f932f488576a68dbab9ab1031e3b3f7 --- /dev/null +++ b/features/keypoints/like_008_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5245bc5f387406da1cf6a9f2e57facb5f39e104b683aa60beac686e1ed1c09 +size 135128 diff --git a/features/keypoints/like_008_keypoints.npy b/features/keypoints/like_008_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8f1b232d0f7ebef5106a26521a14b2be27e4684 --- /dev/null +++ b/features/keypoints/like_008_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e7ec3e6a7f08b3d6af8451977cdf29dc77ae725bfd972aa4dd1c22182cb01a +size 135128 diff --git a/features/keypoints/like_009_aug_flip_keypoints.npy b/features/keypoints/like_009_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dbd8847af9098f1ba19bc3a1374537db74544eb9 --- /dev/null +++ b/features/keypoints/like_009_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34f0df0366b5a32a7f9cf1ae4fc924f9648c190ed101628ae162469cf10da99 +size 73928 diff --git a/features/keypoints/like_009_aug_rotate_keypoints.npy b/features/keypoints/like_009_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..638a825f46bab85118ce5cffae6d16a2ef423a47 --- /dev/null +++ b/features/keypoints/like_009_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d068cb51971efc79d1c63f82ec8440d965ce8df17c6a2e8a07d37f530d2e2a +size 73928 diff --git a/features/keypoints/like_009_keypoints.npy b/features/keypoints/like_009_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2533d1fae32c95852e773775023ba1aa6c70b23e --- /dev/null +++ b/features/keypoints/like_009_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71565486b883fd88bf790ac957546afd793d944243eda4ac6842685b2a5ffac1 +size 73928 diff --git a/features/keypoints/like_010_aug_shift_keypoints.npy b/features/keypoints/like_010_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3d38ca3c2656f6c4f1e7b28e65ea306565a672ed --- /dev/null +++ b/features/keypoints/like_010_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64207b41fba03ef1d8ccf1b53aca0c644a58b01e1cafda1573e155c727424015 +size 64928 diff --git a/features/keypoints/like_010_keypoints.npy b/features/keypoints/like_010_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..be940023812f199d1c7c26f780fe4673f211eb4d --- /dev/null +++ b/features/keypoints/like_010_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a8a4968c6227f8ead57f9cfd9dd765e666372de434aa2bbf15936403196295 +size 64928 diff --git a/features/keypoints/like_011_aug_flip_keypoints.npy b/features/keypoints/like_011_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..82364dfcadc46de3d734ae8b71c77c3751337557 --- /dev/null +++ b/features/keypoints/like_011_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d3ded9dfc2935e8f9883f86476c8d1f21a88e995cc1e78719ac6f97a5ca858 +size 73928 diff --git a/features/keypoints/like_011_keypoints.npy b/features/keypoints/like_011_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..6273f8ffd4770cc1166888c08e501e66ace1c9b4 --- /dev/null +++ b/features/keypoints/like_011_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d63892ad1a93ce886c72411e7aee523bb10e97522bee1f6284204b68fbe559 +size 73928 diff --git a/features/keypoints/like_012_aug_flip_keypoints.npy b/features/keypoints/like_012_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b22af21b0352daf5403be1892f07905bcba9eb80 --- /dev/null +++ b/features/keypoints/like_012_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed5ff6e3d052073857e40dc7f4df4dd79f4a6c528a12aeedc2f24e4bc4b4874 +size 82928 diff --git a/features/keypoints/like_012_keypoints.npy b/features/keypoints/like_012_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b0997ad80805de95636d485eab03359bef0a7957 --- /dev/null +++ b/features/keypoints/like_012_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907526e1d885a6a0ca8ed47007018c29deca8d61acdc36052a7984b8eb9f5d9a +size 82928 diff --git a/features/keypoints/like_013_aug_flip_keypoints.npy b/features/keypoints/like_013_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..55f8fc2e0f2d011b1971be26970248a0620620b2 --- /dev/null +++ b/features/keypoints/like_013_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff0776ec6e5baf7d900640d0b4dff6dc1c43b245a48248e6a0c00c984728e48 +size 118928 diff --git a/features/keypoints/like_013_keypoints.npy b/features/keypoints/like_013_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..41998b0c6a4fc2d3d543261134ea99aa226a7f37 --- /dev/null +++ b/features/keypoints/like_013_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c937644fbf4e19b1db285e50857e210ac12ab511fef55e8c4399dcacfe5e60 +size 118928 diff --git a/features/keypoints/like_014_aug_flip_keypoints.npy b/features/keypoints/like_014_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a018d8daf02612adef0aa48d0d4dcc832f5898ff --- /dev/null +++ b/features/keypoints/like_014_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64bef5d047b515e37be22e092fcd2d812da3a8bda809b5c4fbe6f5b88056e3fe +size 46928 diff --git a/features/keypoints/like_014_keypoints.npy b/features/keypoints/like_014_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f1f14efe3a8939c0ed7cf716bbefbe67df190378 --- /dev/null +++ b/features/keypoints/like_014_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c37e810b4c6561098734760c44b7d38ef23f302ec6d1e124c4abd5451d0baee +size 46928 diff --git a/features/keypoints/like_015_aug_flip_keypoints.npy b/features/keypoints/like_015_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e769af34e45efda93f263e709f679a4445a5bbb2 --- /dev/null +++ b/features/keypoints/like_015_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa8577c810ea47680974dd5f41af9a4a3b74feac7ea63d2ac8cf8c0c4ccc2f0 +size 39728 diff --git a/features/keypoints/like_015_aug_rotate_keypoints.npy b/features/keypoints/like_015_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3f2054145e2eb5d1c523e893bbbb4e4319bd39d --- /dev/null +++ b/features/keypoints/like_015_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28def72cbe97edd99fd83190931f7a5e73545c0ee1e103cad9de22411ccf15ca +size 39728 diff --git a/features/keypoints/like_015_keypoints.npy b/features/keypoints/like_015_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..970c3203af4c75e8dc0701f2db2324815582c146 --- /dev/null +++ b/features/keypoints/like_015_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cf34cfc8e394702427534327c0b4f84b614d772828353ced7105b7ef2cac19 +size 39728 diff --git a/features/keypoints/like_016_aug_flip_keypoints.npy b/features/keypoints/like_016_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..480871dcf8a172d809c38c44c923c51d3c830f87 --- /dev/null +++ b/features/keypoints/like_016_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8ccb99f4bb215e39fd4d435d844f8424e3c6295ce8161106cb7214ca64de18 +size 82928 diff --git a/features/keypoints/like_016_aug_rotate_keypoints.npy b/features/keypoints/like_016_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..86e7fa88f906c5bba0e2ab303fae2c965e3b6581 --- /dev/null +++ b/features/keypoints/like_016_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12d004a604732e07872778fd3b737478dbb361c105da0e5671c488d90158289 +size 82928 diff --git a/features/keypoints/like_016_aug_shift_keypoints.npy b/features/keypoints/like_016_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9daabf883aa35c1c8a1007c31aee62e1a2e4e291 --- /dev/null +++ b/features/keypoints/like_016_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae5303b3671fb99190905a641276c33d6e4436f9dd3ed7d55fea10d7ed86db9 +size 82928 diff --git a/features/keypoints/like_016_keypoints.npy b/features/keypoints/like_016_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fa1eb0e0cd7896da8eb5aa1aad317827ba5f7050 --- /dev/null +++ b/features/keypoints/like_016_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df21e877d674b1d08385de3fda165accc2547932841bfb40de5f81e4d69a64ac +size 82928 diff --git a/features/keypoints/like_017_keypoints.npy b/features/keypoints/like_017_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7591f6efb95d80511dd971b5769209a4e1d32e08 --- /dev/null +++ b/features/keypoints/like_017_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a25c699283d257cc643ff1679759fce2ca8b249fab406e8e5282fdd81ec97eb +size 154928 diff --git a/features/keypoints/like_018_aug_rotate_keypoints.npy b/features/keypoints/like_018_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..bf9da186c52fc3539c754312bf9cfcdc5c73e4da --- /dev/null +++ b/features/keypoints/like_018_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f037292ad6f127abe1bb973a8d6ec88043f8c824fa8f701fb15fb8a38512aa4e +size 86528 diff --git a/features/keypoints/like_018_keypoints.npy b/features/keypoints/like_018_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ffea7f8651a214036aaf3e1080590fff34d3996 --- /dev/null +++ b/features/keypoints/like_018_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d211908c71c077d58263eb152fbbf672c31bd989bf9b82b65f03760ce46ea753 +size 86528 diff --git a/features/keypoints/like_019_aug_flip_keypoints.npy b/features/keypoints/like_019_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f3a3c15f55c041d5ff47367f9a65111993fd1c16 --- /dev/null +++ b/features/keypoints/like_019_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a251bce240de25a35722df133c5ea0ae4e8cc4d947d1e4f38be1e1abd18fd6d +size 136928 diff --git a/features/keypoints/like_019_aug_rotate_keypoints.npy b/features/keypoints/like_019_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d1444256e41e505031c0ef6e4ffa5b3556d8f6b --- /dev/null +++ b/features/keypoints/like_019_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8f63d8ce477655384f63053a3675c81f59deb5926b8ca7653e2a1821dfeadb +size 136928 diff --git a/features/keypoints/like_019_aug_shift_keypoints.npy b/features/keypoints/like_019_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4cffb2fdfa45879d074888d82682a62ac549ad16 --- /dev/null +++ b/features/keypoints/like_019_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3f522e9bc935213884da65d0f6a52c1c4ba707afdd6762411bc9ce6c77a6ba +size 136928 diff --git a/features/keypoints/like_019_keypoints.npy b/features/keypoints/like_019_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5dd3929f0c086eec2b86b5148fb8549d18128086 --- /dev/null +++ b/features/keypoints/like_019_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c9af017dce05999cd86c2e7f0ed53d824db2ed4731aa04d141a03b717babcd +size 136928 diff --git a/features/keypoints/like_020_aug_flip_keypoints.npy b/features/keypoints/like_020_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ac411659728415b106532d7a030375334eac68ce --- /dev/null +++ b/features/keypoints/like_020_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169cc198463160acf8683ddd0c0a6b5b4e1aad471060f9459c56a6bda02d0c2a +size 64928 diff --git a/features/keypoints/like_020_aug_rotate_keypoints.npy b/features/keypoints/like_020_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9493da7208eb99597f42b295aefe3d3f356636ec --- /dev/null +++ b/features/keypoints/like_020_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55cabc824e246f1c76664fc8d7099ff23906b0f8d829f39efecc34cb81b414ec +size 64928 diff --git a/features/keypoints/like_020_aug_shift_keypoints.npy b/features/keypoints/like_020_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0a38f10f09c005e7284deaf6292488a5d9198e99 --- /dev/null +++ b/features/keypoints/like_020_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c419fba99746031cbea4df50a32f066ba9eebde15cc2c280c25441d7b9f75fbc +size 64928 diff --git a/features/keypoints/like_020_keypoints.npy b/features/keypoints/like_020_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8fe1aa5e55f5601a01439fc975af72f4a213ee46 --- /dev/null +++ b/features/keypoints/like_020_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b422caf27df7ee0796d9cb1f87bc1a4e4944638c154468a48d0761366e3a90 +size 64928 diff --git a/features/keypoints/like_021_aug_rotate_keypoints.npy b/features/keypoints/like_021_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d9b962b03be66cdd4319bfbd55ab99979b2e688 --- /dev/null +++ b/features/keypoints/like_021_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e1c99df3ce1fc085c5922a5b8e10d58e89ae2573b94712338f7b24117bfbc7 +size 41528 diff --git a/features/keypoints/like_021_aug_shift_keypoints.npy b/features/keypoints/like_021_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..310f531582f4870d4251aa498881720d992d390f --- /dev/null +++ b/features/keypoints/like_021_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3202549b9fb4e85be29000df254506b0784f251da1857c1a0f4231cfd560ab4d +size 41528 diff --git a/features/keypoints/like_021_keypoints.npy b/features/keypoints/like_021_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8f3af4a799be4251b9eeb58de97a7a0fcd7058af --- /dev/null +++ b/features/keypoints/like_021_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25c47c3baecd622373049cd198971e7e4405608907a0ceb5053f85c7735ddd9 +size 41528 diff --git a/features/keypoints/like_022_aug_flip_keypoints.npy b/features/keypoints/like_022_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..372020e82f1ad97a27bcc0517016b409c472ff8f --- /dev/null +++ b/features/keypoints/like_022_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f74ace8e7f0d2f476457a9972c385acf89e75250ed59f82403f1ff142234d64 +size 73928 diff --git a/features/keypoints/like_022_aug_rotate_keypoints.npy b/features/keypoints/like_022_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..4ed06b8a0535c52e04f28ab83e5f8f70ca6d0ca0 --- /dev/null +++ b/features/keypoints/like_022_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04102d99fab538f9c4f162dfd71be5181e71d620a157bfae1571d17b55246ec5 +size 73928 diff --git a/features/keypoints/like_022_keypoints.npy b/features/keypoints/like_022_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e8c275948a1ea25258409c149eac4ba8db33c205 --- /dev/null +++ b/features/keypoints/like_022_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac17702993322ac2d6adf7722c281b5954613e51743a5d1385491975f5881a6 +size 73928 diff --git a/features/keypoints/like_023_aug_flip_keypoints.npy b/features/keypoints/like_023_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ec0477efc0d0b2d554ecd1278d16ccdee5d10155 --- /dev/null +++ b/features/keypoints/like_023_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62ece5ef23c154cecdf207c92fb9b7f9100dcee672605dcc78d089d44ef0e24 +size 55928 diff --git a/features/keypoints/like_023_keypoints.npy b/features/keypoints/like_023_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..72d639cd64f6ba9b69fc8da40a4ab0ccd470ee28 --- /dev/null +++ b/features/keypoints/like_023_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896d639b97696efc51602b7a0deacf7bb85df94100225980dff4e1dc7c42b756 +size 55928 diff --git a/features/keypoints/like_024_aug_flip_keypoints.npy b/features/keypoints/like_024_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e2de160474503f84ac9425c503844a8b5712025e --- /dev/null +++ b/features/keypoints/like_024_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf9543e4bd851d64fd062cb393d1ff99334ba0164151a39125d7a619b38534b +size 77528 diff --git a/features/keypoints/like_024_keypoints.npy b/features/keypoints/like_024_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..24aad7d494008e509f18074fecc8845fe832bac2 --- /dev/null +++ b/features/keypoints/like_024_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab0c31a358c6f9ce2405f5104961463a9488d907146fdb3b1156c55f041a081 +size 77528 diff --git a/features/keypoints/like_025_aug_flip_keypoints.npy b/features/keypoints/like_025_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5e31fe111f1850bf2e933a4906983950cc60af04 --- /dev/null +++ b/features/keypoints/like_025_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70944bc9ef84117cd4636925cab7d0aee7335f27c6c91033fab465349f286871 +size 46928 diff --git a/features/keypoints/like_025_aug_shift_keypoints.npy b/features/keypoints/like_025_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ccbfa2be4eae00a35f7c1d548592f37431cde74f --- /dev/null +++ b/features/keypoints/like_025_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f06e146b42ec181a2cdcb0c44e4fd94490a16ac6b1afd57c71b0c477257aae2 +size 46928 diff --git a/features/keypoints/like_025_keypoints.npy b/features/keypoints/like_025_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9853426f0059b478af51929e2e1ba02178dec5a6 --- /dev/null +++ b/features/keypoints/like_025_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1193c2aedf50f7e5355b6f1dab3ba8465a7d608f737f05006f91b06a1bb915 +size 46928 diff --git a/features/keypoints/like_026_aug_flip_keypoints.npy b/features/keypoints/like_026_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..aca70aac1da5edd51d1681f7f0a67f2236694268 --- /dev/null +++ b/features/keypoints/like_026_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8e78f37b5d0b61f2967dbf4c96235a4b139ab94e4eda09cc5f2923fd07962c +size 79328 diff --git a/features/keypoints/like_026_aug_rotate_keypoints.npy b/features/keypoints/like_026_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a61474226ea9a55ea1640abea2d420486fece37d --- /dev/null +++ b/features/keypoints/like_026_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c41b2808b27ca67a9270d99bd15659cf77f07a89d4804f0cdc506ae128e065 +size 79328 diff --git a/features/keypoints/like_026_aug_shift_keypoints.npy b/features/keypoints/like_026_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7b5fbd00f56fc9597c273bb47120ceed643fea23 --- /dev/null +++ b/features/keypoints/like_026_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d9081cb477d43ac11e50b187faf060c358895ceaf7c17e6b859ba156ac5f04 +size 79328 diff --git a/features/keypoints/like_026_keypoints.npy b/features/keypoints/like_026_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a3127db136fdc97d51599973efa4522a4f5af008 --- /dev/null +++ b/features/keypoints/like_026_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d2e227a46b298164bb184e2bac4d1dbb9397ba28688d1499b735fe4eca4956 +size 79328 diff --git a/features/keypoints/like_027_keypoints.npy b/features/keypoints/like_027_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b2fbe35e1412f943a61883b1ca80fba91f017f22 --- /dev/null +++ b/features/keypoints/like_027_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a1945ebb115f71a84d9e0b16f4d0823b0878cb0ddb7e50074796173c57dc09 +size 126128 diff --git a/features/keypoints/like_028_aug_flip_keypoints.npy b/features/keypoints/like_028_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d08793f52f18337a405fb70db0785202bfe7daed --- /dev/null +++ b/features/keypoints/like_028_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9b64af98c13b8dcd9f798ed2e7e754676ece7c1a8aa536360225733f978777 +size 100928 diff --git a/features/keypoints/like_028_aug_rotate_keypoints.npy b/features/keypoints/like_028_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1fb526233279204940d1b48caf6ac825f8a58e27 --- /dev/null +++ b/features/keypoints/like_028_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1889b84350dfb8d8b454ce94619d572ea354108d7ccbac0c53b82760563eed +size 100928 diff --git a/features/keypoints/like_028_aug_shift_keypoints.npy b/features/keypoints/like_028_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fe966577bf76bc4bc696e7a66476209d1023c126 --- /dev/null +++ b/features/keypoints/like_028_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45949a46a89f6b0b3a140fdf9e0de31d5efffc76b88137605a9ea86926b45d9 +size 100928 diff --git a/features/keypoints/like_028_keypoints.npy b/features/keypoints/like_028_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e31bb291ec1f96dd87674c897163202d89f11df --- /dev/null +++ b/features/keypoints/like_028_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6871f17fa246de4a78e12631542fc692a4972e932b8f26d33827ff5fe4003f84 +size 100928 diff --git a/features/keypoints/like_029_aug_flip_keypoints.npy b/features/keypoints/like_029_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5f060923060d6ef422d48510489ec216c5d9ce8c --- /dev/null +++ b/features/keypoints/like_029_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82ed3f58e47009751a3123b43238801abc2381f4b2e7e745d84f9739193e6ac +size 100928 diff --git a/features/keypoints/like_029_aug_shift_keypoints.npy b/features/keypoints/like_029_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1df53f59670959f65f8999be213e8bdaa4fc7f79 --- /dev/null +++ b/features/keypoints/like_029_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6688325543f877d1af81acf481c58d36f82870ddd594b926d2cdd0db172a3edf +size 100928 diff --git a/features/keypoints/like_029_keypoints.npy b/features/keypoints/like_029_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..05986f9d0e08c693c5d4d2cd836adc6b1f075588 --- /dev/null +++ b/features/keypoints/like_029_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ab2b69da4a3b74c0cfcb2ad63ebad8f73e9957b684edce41465bf70c70d16e +size 100928 diff --git a/features/keypoints/like_030_aug_rotate_keypoints.npy b/features/keypoints/like_030_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..bed14f82d720dc64372a5eba8365d8d939a5cf41 --- /dev/null +++ b/features/keypoints/like_030_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14fd07e6e060ba5ae08631a7683bc5293158f352959ded4cddda263ede3bbc3 +size 46928 diff --git a/features/keypoints/like_030_aug_shift_keypoints.npy b/features/keypoints/like_030_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0eafb44f02c907402b9492c52fbe3deb97649819 --- /dev/null +++ b/features/keypoints/like_030_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c9036ec43a3b44217cac4b79aa251c0487eff40e1748d11e61d128c9d3bf7c +size 46928 diff --git a/features/keypoints/like_030_keypoints.npy b/features/keypoints/like_030_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..78e8d824bd5f66399e910a7e5f268487e8147111 --- /dev/null +++ b/features/keypoints/like_030_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2522f7647c5ab96eaf2b246e73fdd31797afee7d3f4ec40a9ca3cf26129a91 +size 46928 diff --git a/features/keypoints/like_031_aug_shift_keypoints.npy b/features/keypoints/like_031_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3988441450086632ef3e2a02034b7d6bb53067d3 --- /dev/null +++ b/features/keypoints/like_031_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1ca584b6af6786f7a17a74268e338bfdae3463613bc938d162a6ecbca08826 +size 46928 diff --git a/features/keypoints/like_031_keypoints.npy b/features/keypoints/like_031_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b9b9d3d38ba8e26106199e04931751ec1906f77a --- /dev/null +++ b/features/keypoints/like_031_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189e9b3639c0cbbaaee15cd1eec3fb2a3a40052121134ec9e1258b2fcf615551 +size 46928 diff --git a/features/keypoints/like_032_aug_flip_keypoints.npy b/features/keypoints/like_032_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..76a86128607e5dc11c4ef4db50351b44e1251a29 --- /dev/null +++ b/features/keypoints/like_032_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477a83240aa70b64cfbce65a776cf7862b42eaaece474ce76edc034a6e391183 +size 118928 diff --git a/features/keypoints/like_032_aug_rotate_keypoints.npy b/features/keypoints/like_032_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b18b8538556670913913eb209042ca8b4b0b72f0 --- /dev/null +++ b/features/keypoints/like_032_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cc2c9a7a54117e3336f8eac96607e2c59f276a13c31a8c7d7bfcd5f57b86af +size 118928 diff --git a/features/keypoints/like_032_aug_shift_keypoints.npy b/features/keypoints/like_032_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1bdb9bc6be479af99e1d67fbc92d15e002ecfe8d --- /dev/null +++ b/features/keypoints/like_032_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59e2b87e7f43089163582b876e196bbd28648677f53878ac33d54186fd27da5 +size 118928 diff --git a/features/keypoints/like_032_keypoints.npy b/features/keypoints/like_032_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e896e19f29b25028cebadf0169acb5a814b76733 --- /dev/null +++ b/features/keypoints/like_032_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9adc98a20a3e387effc56677f61fd0aa538e0086d86ff42ab130bd7ce6e591ca +size 118928 diff --git a/features/keypoints/like_033_aug_rotate_keypoints.npy b/features/keypoints/like_033_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c9610d98173cd76008e5491824db04e13977d0a8 --- /dev/null +++ b/features/keypoints/like_033_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282839ae35d2a9c1f05a3df71f22fc9f053785a16e6738308d22e72949e62f3a +size 136928 diff --git a/features/keypoints/like_033_keypoints.npy b/features/keypoints/like_033_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0285ed29666bbaac08a50c68039f1a99e9f1f87e --- /dev/null +++ b/features/keypoints/like_033_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b295938e7ce26a84c7cf0709439e0358eeb3dc6fa176a4bbfb036c3b7be78c +size 136928 diff --git a/features/keypoints/like_034_aug_flip_keypoints.npy b/features/keypoints/like_034_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..16f0355d3299bd61c1986ddcc83d1f5090c2520d --- /dev/null +++ b/features/keypoints/like_034_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6bec1189940a710aee2c23590184aaf2663546b07f8b2780fb42a87184a5aaa +size 82928 diff --git a/features/keypoints/like_034_aug_rotate_keypoints.npy b/features/keypoints/like_034_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7ec7c64f8372c117ec9fab1b8010f563fc2e0474 --- /dev/null +++ b/features/keypoints/like_034_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85abbaea4fb36d073e769f66e539145f4ef70232b565d3241865941b1bd7828 +size 82928 diff --git a/features/keypoints/like_034_keypoints.npy b/features/keypoints/like_034_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..acd879bde5c6893e943a778e28a82a71f1c6ad18 --- /dev/null +++ b/features/keypoints/like_034_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e090a134661f888a575a096c12ac77dec5080762157cc24f2bc96415116cdb59 +size 82928 diff --git a/features/keypoints/like_035_aug_flip_keypoints.npy b/features/keypoints/like_035_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e2d446ff8ed9949345e92007b9d77dd3cc9a3d35 --- /dev/null +++ b/features/keypoints/like_035_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a4b716d884039f497d7f969730ee8f0535ac0409c4dbb88bd5e0b9bc60094e +size 115328 diff --git a/features/keypoints/like_035_aug_shift_keypoints.npy b/features/keypoints/like_035_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d0878544b2ea589e22557d41a18ce27511524fa --- /dev/null +++ b/features/keypoints/like_035_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42f6fba28b0dd17cbe65c9c57aa36b636bdde1432eae210b86f3ef40b291e9d +size 115328 diff --git a/features/keypoints/like_035_keypoints.npy b/features/keypoints/like_035_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..94f0d9309b6c05d53edc8a9e2af60c390200c352 --- /dev/null +++ b/features/keypoints/like_035_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeca0dd2fc4891afd9cbef3a7abf22fdd04bafcaee7c400e45e48a47412f0186 +size 115328 diff --git a/features/keypoints/like_036_aug_flip_keypoints.npy b/features/keypoints/like_036_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..97a8d3a3db10bc1d50f261f87aec0052182e5804 --- /dev/null +++ b/features/keypoints/like_036_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4b1922a6ce6b926c1993a6051e64a87593342920f6037d813ab23a2bfbebe2 +size 102728 diff --git a/features/keypoints/like_036_aug_rotate_keypoints.npy b/features/keypoints/like_036_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..48a8e722357ad32b8659b9f1d375fd2ede932ba3 --- /dev/null +++ b/features/keypoints/like_036_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f64f8767823b62c96b95d50b52023f5a2a7656165c76d84fe59f8a3f0fded2 +size 102728 diff --git a/features/keypoints/like_036_aug_shift_keypoints.npy b/features/keypoints/like_036_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..32583f1994939cf9a6d36a8c83a03868b703e5d0 --- /dev/null +++ b/features/keypoints/like_036_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef57e9a6dea0319ebecaaf41b628337e2923a8fbed0e3e4c1fada163787e4bb3 +size 102728 diff --git a/features/keypoints/like_036_keypoints.npy b/features/keypoints/like_036_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ab0cbd060b79e469f9214605b70c6779b4b0d4c --- /dev/null +++ b/features/keypoints/like_036_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad43c5f8d867e18ee2adee653070d421d4a04734e3a2dd5f12ecf666406b6607 +size 102728 diff --git a/features/keypoints/like_037_aug_rotate_keypoints.npy b/features/keypoints/like_037_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..74190213ce8253c56674c52ee15b8d8809968b13 --- /dev/null +++ b/features/keypoints/like_037_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74cb0e5bff5c68256acfa141e146dfd577b8a5378b78267846298ce839d29f0 +size 64928 diff --git a/features/keypoints/like_037_aug_shift_keypoints.npy b/features/keypoints/like_037_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..894fbf92b363acfc2a8050c2f98b498908d48f67 --- /dev/null +++ b/features/keypoints/like_037_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed02f0677df56747aa99f1454c71b240b288f31894fe01474ddbd724a8cb2383 +size 64928 diff --git a/features/keypoints/like_037_keypoints.npy b/features/keypoints/like_037_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7db92e25eba73831650e66202cc50e2c4d6df62b --- /dev/null +++ b/features/keypoints/like_037_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317479c0f0a7af83281823d4e75555b2cc06535703371da3608b1e007edc5c0c +size 64928 diff --git a/features/keypoints/want_001_aug_flip_keypoints.npy b/features/keypoints/want_001_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..df8bcc49e1f657d2e5d395a027ee987d1fdb0130 --- /dev/null +++ b/features/keypoints/want_001_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb6ecd33a5873d119658494e4aad2eb1c2acc7e1d42482e7984b9de592f9a7a +size 163928 diff --git a/features/keypoints/want_001_keypoints.npy b/features/keypoints/want_001_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c220916110a30cfffaa81d62022c8339eb973a2f --- /dev/null +++ b/features/keypoints/want_001_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df003556da118997432c050f103bb006531da7c57b3886b2eb1148bca48c089 +size 163928 diff --git a/features/keypoints/want_002_aug_shift_keypoints.npy b/features/keypoints/want_002_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..20642b27cc6fd39160355aa19e3d5561ad745716 --- /dev/null +++ b/features/keypoints/want_002_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe15d46b47c134bec876c2908a4c52b285c125781986a7ab89d20ac928a983b3 +size 151328 diff --git a/features/keypoints/want_002_keypoints.npy b/features/keypoints/want_002_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..23837f960f6a98847eec19a8d4701986cf68788f --- /dev/null +++ b/features/keypoints/want_002_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818daa63f003c2d74ff94e9d8fa839f903001c2c32d16c4465caa22a7e69e90f +size 151328 diff --git a/features/keypoints/want_003_aug_flip_keypoints.npy b/features/keypoints/want_003_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ae39c55d2f4de98f1815bdf3fa42abba4c7780b3 --- /dev/null +++ b/features/keypoints/want_003_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27088c5d02eb63feb1499999281b3b31b5b919b6a541a9e56fa80625a465cc79 +size 97328 diff --git a/features/keypoints/want_003_aug_shift_keypoints.npy b/features/keypoints/want_003_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e8baf964362cbe3c32683336b04255e7d72a229 --- /dev/null +++ b/features/keypoints/want_003_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8feb685dc45230b65606bd39de94a902f82a47f889e8174e091d63bd9309353f +size 97328 diff --git a/features/keypoints/want_003_keypoints.npy b/features/keypoints/want_003_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8e74fdddb02733cf25ff853b445ac9f205471660 --- /dev/null +++ b/features/keypoints/want_003_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea41951f69de983b34a423ea2f7d5bacea1a33f1b0d40c99be856ebb49866bd +size 97328 diff --git a/features/keypoints/want_004_aug_rotate_keypoints.npy b/features/keypoints/want_004_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..113e18f1198f3299a25ac43aafe8c825a6779b2b --- /dev/null +++ b/features/keypoints/want_004_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef8058668ab19610c9151eed8ec9a5b4d8414b51b6e7577dde6dbdcf7fd0672 +size 91928 diff --git a/features/keypoints/want_004_aug_shift_keypoints.npy b/features/keypoints/want_004_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a383607745e86e6abfc8142cfaa57cf2a1da017a --- /dev/null +++ b/features/keypoints/want_004_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da296895902d47a69465eccfbe3473621ad9bdfa94e1866ebed1c3b1f0bd901 +size 91928 diff --git a/features/keypoints/want_004_keypoints.npy b/features/keypoints/want_004_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1c48e3ec6daa985476d164f9c0a05e6f67625742 --- /dev/null +++ b/features/keypoints/want_004_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34cfab94e1a3de88a72f4ec2052425abf2be290d6c68ce374584bda633074d5 +size 91928 diff --git a/features/keypoints/want_005_aug_rotate_keypoints.npy b/features/keypoints/want_005_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..006971c05712ee11156278d0aa97a94be7bf2488 --- /dev/null +++ b/features/keypoints/want_005_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7651e702e1513b2721e22dfc007aec4f51ccc80bc64b777231c9b7e94b4a3362 +size 55928 diff --git a/features/keypoints/want_005_aug_shift_keypoints.npy b/features/keypoints/want_005_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..562097ad0c5607d425f90e9fb46e838bc8094821 --- /dev/null +++ b/features/keypoints/want_005_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870bb71673d20057de7f836b8124e75238719a56b611e9a4d28803f6e4e0623b +size 55928 diff --git a/features/keypoints/want_005_keypoints.npy b/features/keypoints/want_005_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3e9cdc046f36fa9eaad9cc45f2fda9399f24d768 --- /dev/null +++ b/features/keypoints/want_005_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363fffc5b5a0d19f9617a26974c2a561e0734586be27d21b8d9eca753f66aa4c +size 55928 diff --git a/features/keypoints/want_006_aug_rotate_keypoints.npy b/features/keypoints/want_006_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..131279af515e76f078892f9a5fa567d2004a88e2 --- /dev/null +++ b/features/keypoints/want_006_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab64aa3029c316e817904fa4482217200f00cf51c648533da41cd2fc8baeb2a9 +size 82928 diff --git a/features/keypoints/want_006_aug_shift_keypoints.npy b/features/keypoints/want_006_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1101007efe025f6c8010d2fcb5e079ee669502a5 --- /dev/null +++ b/features/keypoints/want_006_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9612decee89e9f1aa7e876bdd29cc30a8daaadf38b4438784565b97da1cdb49b +size 82928 diff --git a/features/keypoints/want_006_keypoints.npy b/features/keypoints/want_006_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..93b21713e9d3de285e4b31c9995f3402040c57ab --- /dev/null +++ b/features/keypoints/want_006_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11888060a3ab0135ed0f85001fedbe9d10f8d52ce55feb3fcef5dd88e761cb77 +size 82928 diff --git a/features/keypoints/want_007_aug_flip_keypoints.npy b/features/keypoints/want_007_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7061f45db22461fe9190b20b8d347dbf296b63b4 --- /dev/null +++ b/features/keypoints/want_007_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b861cc50aebf4e23e923c8e1a2a87594241e82e34c6341b953f1a3585cecf3e +size 82928 diff --git a/features/keypoints/want_007_aug_rotate_keypoints.npy b/features/keypoints/want_007_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..eadd32c8f232b57f02b7983edbb652061799365b --- /dev/null +++ b/features/keypoints/want_007_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d94dbf2e49ba85fcb103322ca993bdf31cfe902631cbad734fd94efb69e1c6d +size 82928 diff --git a/features/keypoints/want_007_aug_shift_keypoints.npy b/features/keypoints/want_007_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..adc3ff7c45e69272e6bf3650a46483c3921cfcde --- /dev/null +++ b/features/keypoints/want_007_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea420a35848f9d7e6e6f568ad784679c6eb3baab82cc9a6fa998c6552458fbf +size 82928 diff --git a/features/keypoints/want_007_keypoints.npy b/features/keypoints/want_007_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c15fb46ac1af40526c26d4cfa866494aede1e76e --- /dev/null +++ b/features/keypoints/want_007_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40101d98faba710ada5c2c15a9da31deed69e562e1376a0f80411c69819cc45 +size 82928 diff --git a/features/keypoints/want_008_aug_flip_keypoints.npy b/features/keypoints/want_008_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..01b1d2728da324f82ec788af956d3ccd4de69e64 --- /dev/null +++ b/features/keypoints/want_008_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e3fac3e233d1b50d5f90801dbad89676282c921ccae45180f08b0f4bd1679c +size 82928 diff --git a/features/keypoints/want_008_aug_rotate_keypoints.npy b/features/keypoints/want_008_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c8fec783b606aa53eb2249eb3e9880ca614c67f8 --- /dev/null +++ b/features/keypoints/want_008_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b52dff4a20e6064e09f8ea0ad4d6b12c6bdbb252a53736f718a4abd890ab7a +size 82928 diff --git a/features/keypoints/want_008_keypoints.npy b/features/keypoints/want_008_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..fd77445392046b863e3d893cccf0049ac0c0e383 --- /dev/null +++ b/features/keypoints/want_008_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bba6be9400cd7820251d1639bea55f0cbb72c6efc69475ad9a446c1a7d83fea +size 82928 diff --git a/features/keypoints/want_009_aug_flip_keypoints.npy b/features/keypoints/want_009_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa9b8ab9a484e923b0f44c8b273038ebdffeb21e --- /dev/null +++ b/features/keypoints/want_009_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe8928c4050dde80144cf7a5e6e684f20705b837e21019c98cb006d2d229725 +size 108128 diff --git a/features/keypoints/want_009_aug_rotate_keypoints.npy b/features/keypoints/want_009_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dad2f0c7755e3405519fc1f3a0e55215dc1372b6 --- /dev/null +++ b/features/keypoints/want_009_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb4e2426763d0bd60b3e006f983cf1fe5ab321c15d8245c44c0daa654997020 +size 108128 diff --git a/features/keypoints/want_009_aug_shift_keypoints.npy b/features/keypoints/want_009_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3caec855e5c7a1fe69c02c6cd56286881493279c --- /dev/null +++ b/features/keypoints/want_009_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58cfa892002e49e5f5a9622b5350e77f2338a3bfd07a4f466cbe2d166c08801a +size 108128 diff --git a/features/keypoints/want_009_keypoints.npy b/features/keypoints/want_009_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..800965862fb13630cfd716046280f91b67098caa --- /dev/null +++ b/features/keypoints/want_009_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dc2ba3f371a725c048ff0c7c92b661f45d4a893a870be3bcab28d22da6e45d +size 108128 diff --git a/features/keypoints/want_010_aug_flip_keypoints.npy b/features/keypoints/want_010_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..709212706926ab5c852c88cc5b59b2e0259d8cde --- /dev/null +++ b/features/keypoints/want_010_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f784fc9c9b6808d7b552513788c590d43aad5918ed3fe643dbc4cb406f31d7c +size 108128 diff --git a/features/keypoints/want_010_aug_rotate_keypoints.npy b/features/keypoints/want_010_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..cd7bb79f265d7013ba0f2543635cb829d1a479e1 --- /dev/null +++ b/features/keypoints/want_010_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952d28aa865767a8a51de6e07b05d398037666fedc2c07f5697a3710b5d3011d +size 108128 diff --git a/features/keypoints/want_010_aug_shift_keypoints.npy b/features/keypoints/want_010_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..aa23a0ae611742c9712729733393fdcff27cbad2 --- /dev/null +++ b/features/keypoints/want_010_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98734e73ab4bf87ba3608f7adb50bd24da22dccd6ae94ede29cbb96988ac926 +size 108128 diff --git a/features/keypoints/want_010_keypoints.npy b/features/keypoints/want_010_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9308514b889c15fb0cfb058e08c1568542c1e1c6 --- /dev/null +++ b/features/keypoints/want_010_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d682e2f349c40762c3fa294482d925c611419e4444dccc974623e585740ddc3 +size 108128 diff --git a/features/keypoints/want_011_keypoints.npy b/features/keypoints/want_011_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d2aa53cfb57f427e3d0be0af1a4e516328ec17f6 --- /dev/null +++ b/features/keypoints/want_011_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708ba4d251927b0701f9fb6f662e83512d7cb1f19195daee714190a50d159746 +size 135128 diff --git a/features/keypoints/want_012_aug_flip_keypoints.npy b/features/keypoints/want_012_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9661ad2630679d3d866ad252facf191607c8e656 --- /dev/null +++ b/features/keypoints/want_012_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71746bdc19667d7dca1d0dc904b653aec363df9533de55bd94a20baaea2038ed +size 57728 diff --git a/features/keypoints/want_012_aug_rotate_keypoints.npy b/features/keypoints/want_012_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a52ee6c735b3d57d8be56c0455ad0384c9ca860a --- /dev/null +++ b/features/keypoints/want_012_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44aee6463fedc2177f6c717d6825c68541a878ee3824356a6489a7c09b089574 +size 57728 diff --git a/features/keypoints/want_012_aug_shift_keypoints.npy b/features/keypoints/want_012_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a0a3616cac0323af433de9d7cc8f4d7fb3021d5c --- /dev/null +++ b/features/keypoints/want_012_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ac22a8cccae8c5da015f08fce7fe42e51da7f0bef4631a8443240e398767bf +size 57728 diff --git a/features/keypoints/want_012_keypoints.npy b/features/keypoints/want_012_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7eadb2d64c0d66cf2610925a9ff0abeda46cce94 --- /dev/null +++ b/features/keypoints/want_012_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4ef1f1b6dfb14754d33b9b5658cb2f42da98c20f30533530b6a50712bb4334 +size 57728 diff --git a/features/keypoints/want_013_aug_flip_keypoints.npy b/features/keypoints/want_013_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..945d58206a3f17cdadb07b40fb3a03f1d96ecbe7 --- /dev/null +++ b/features/keypoints/want_013_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a833473d902b6d778934c49a21b3173623197be3167ac240a49a1afc0839fba8 +size 63128 diff --git a/features/keypoints/want_013_aug_rotate_keypoints.npy b/features/keypoints/want_013_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..290b8fe24915b8f8655a3115498478defa6af3de --- /dev/null +++ b/features/keypoints/want_013_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e373fadca1e29f17a62b2ac992563035d68dfafba5eeffe009163d0ee6b88df7 +size 63128 diff --git a/features/keypoints/want_013_aug_shift_keypoints.npy b/features/keypoints/want_013_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ddfe1abfbfa574913dfa170ab907c0dc8b9516e1 --- /dev/null +++ b/features/keypoints/want_013_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b35cd43f425376b64d3172109e68cf592f9479e488ab5e20041c09d2009a0d +size 63128 diff --git a/features/keypoints/want_013_keypoints.npy b/features/keypoints/want_013_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7785c664a69370791338160a884a37ad66071ca2 --- /dev/null +++ b/features/keypoints/want_013_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fdca43a218f5262cf215dced521277fb875302d5bfdc9946d1eb512a177686 +size 63128 diff --git a/features/keypoints/want_014_aug_shift_keypoints.npy b/features/keypoints/want_014_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9cc1052a24ade2e60ee5033c79a3006f3d438e4b --- /dev/null +++ b/features/keypoints/want_014_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c58479666ca25792ab17385aabe8d1cd068ff674d57db1d035780f5fdcad459 +size 48728 diff --git a/features/keypoints/want_014_keypoints.npy b/features/keypoints/want_014_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c95453eabb1c2b4d18021ab1799573133121ccd3 --- /dev/null +++ b/features/keypoints/want_014_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6940e0bb73d87138110bd3b4cd7ebff753f243e812277a803fe12fa34ce7ab +size 48728 diff --git a/features/keypoints/want_015_aug_flip_keypoints.npy b/features/keypoints/want_015_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..73b0ffb1d33f51268095a928fb5922941f33fc64 --- /dev/null +++ b/features/keypoints/want_015_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a145e60ac53fbc2bfabf861113a4c79e0de17f54b2e9de2f4f1280d2899fd80f +size 97328 diff --git a/features/keypoints/want_015_aug_rotate_keypoints.npy b/features/keypoints/want_015_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d20035bef6fa5a926e91d71ee3b6d2caed3c5089 --- /dev/null +++ b/features/keypoints/want_015_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7c87e4cba7eee19d41b9cd3ea003169424a24dfa249f33f475f37c065e85fc +size 97328 diff --git a/features/keypoints/want_015_aug_shift_keypoints.npy b/features/keypoints/want_015_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f9298dedb4ca41e7d24c125c01889916f5ebed1c --- /dev/null +++ b/features/keypoints/want_015_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12f54b50f4fe6aaccf7ed852ac8a3bc3e49054396e82e20dc803516e81e507d +size 97328 diff --git a/features/keypoints/want_015_keypoints.npy b/features/keypoints/want_015_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2695cd2fef2974a4b517ed082a6369a89265ec2b --- /dev/null +++ b/features/keypoints/want_015_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b706642187995c5dc97dce39cbcc2dc32a819a967f21949fc2e588d938c6c4 +size 97328 diff --git a/features/keypoints/want_016_aug_rotate_keypoints.npy b/features/keypoints/want_016_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f473851554c56303ebedc320dea45542fff297f7 --- /dev/null +++ b/features/keypoints/want_016_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86475faf278720d534bf248747517e12d823e82701f504ac18d0a14785e5c53 +size 142328 diff --git a/features/keypoints/want_016_keypoints.npy b/features/keypoints/want_016_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c52bf6c3dda2880d92f5d8d55d125b973b0d1906 --- /dev/null +++ b/features/keypoints/want_016_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f005a6007f3d9726525f5036a59e7c2467395eb52dc57aa61961d24aeca7e047 +size 142328 diff --git a/features/keypoints/want_017_aug_flip_keypoints.npy b/features/keypoints/want_017_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5afe6cb880b75ab64ba423ac8b70dd620b4ba006 --- /dev/null +++ b/features/keypoints/want_017_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:824e12942ff5bf4a51bfd8a296e1a08efa7159cab8aeb73ceb74ea777b9a45cb +size 55928 diff --git a/features/keypoints/want_017_aug_shift_keypoints.npy b/features/keypoints/want_017_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c7fe0a70155eafddf46e8a290e6e9428e8453634 --- /dev/null +++ b/features/keypoints/want_017_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30fde4e2775af30e178686b97817fab65a3e6d3b6138ecd1d6ef3ddda4658824 +size 55928 diff --git a/features/keypoints/want_017_keypoints.npy b/features/keypoints/want_017_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..58eb5d521f068e83ffd6aa47917bfdfa7bcf4712 --- /dev/null +++ b/features/keypoints/want_017_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c7cfad090b5a0814fa400f303a1f842e77cb1bf2be86d7d6cc60cbd1f2c0f0 +size 55928 diff --git a/features/keypoints/want_018_aug_flip_keypoints.npy b/features/keypoints/want_018_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..be9d38fa0198151411e7ef768a6d773e313ae57f --- /dev/null +++ b/features/keypoints/want_018_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed82eccae0af069a43f28d9445e5fe418a635e22ccfa5ac8e229f6c47a4fbdd +size 55928 diff --git a/features/keypoints/want_018_aug_rotate_keypoints.npy b/features/keypoints/want_018_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d700626eba746a42d37a3eb1ff6abf4270560f50 --- /dev/null +++ b/features/keypoints/want_018_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d396735698506c069760b01fc605fb7fa5b6f172ed9e1114d266775f99b6f4c +size 55928 diff --git a/features/keypoints/want_018_aug_shift_keypoints.npy b/features/keypoints/want_018_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..5ec9c064f99b07c8baf03476d928dec20b57da1b --- /dev/null +++ b/features/keypoints/want_018_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b733a3f2a9bd9ff3cf1e3af745d6459a32cb7665ec73c48864ae047c950be15 +size 55928 diff --git a/features/keypoints/want_018_keypoints.npy b/features/keypoints/want_018_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9f7f3727186b825b363e9d185b4a30b6360d61e1 --- /dev/null +++ b/features/keypoints/want_018_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37872f10f8c46d43b4c46c528b0af273b27f94f948c6a5ea273f7d9a5c66445 +size 55928 diff --git a/features/keypoints/want_019_keypoints.npy b/features/keypoints/want_019_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..a316fba4899a3f8a1b94d6e15a378f313741ea4d --- /dev/null +++ b/features/keypoints/want_019_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d192da9663c51752bfaf55a49bc348e64ae61a3dc0d1a8c2b97c913b30156c4e +size 133328 diff --git a/features/keypoints/want_020_keypoints.npy b/features/keypoints/want_020_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..173c2c084deb77d3084d4879032123a96a4a7184 --- /dev/null +++ b/features/keypoints/want_020_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae02f9f46500bdb8b31678d4fe5af0bb1ac1600150b8a1b3b47c53b22e59ef44 +size 108128 diff --git a/features/keypoints/want_021_aug_flip_keypoints.npy b/features/keypoints/want_021_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1c5ff8d41614daad0fec90455ca21e0af8cb84a3 --- /dev/null +++ b/features/keypoints/want_021_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bc58c27bce24f84effab4e3a238b57103900fbaf96241da1cc6fc3ebdbba07 +size 100928 diff --git a/features/keypoints/want_021_aug_shift_keypoints.npy b/features/keypoints/want_021_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9b92058f866b9143a14a55cb82c244962b7f43a0 --- /dev/null +++ b/features/keypoints/want_021_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10d96d67475a33c2e9686c378bad338871fc530910ff40a7a18f8f64a7bdbe4 +size 100928 diff --git a/features/keypoints/want_021_keypoints.npy b/features/keypoints/want_021_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..491bc07cb131ef2ef745f864e7cc8baee4e180f0 --- /dev/null +++ b/features/keypoints/want_021_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222934edc958b12be367a5a7433eede9d037126220c37eaf6c9972c389db82a8 +size 100928 diff --git a/features/keypoints/want_022_aug_flip_keypoints.npy b/features/keypoints/want_022_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1dd025685b10694d55d53b60327f115bdb9ec497 --- /dev/null +++ b/features/keypoints/want_022_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53eec42d8bda7405ada44079bebb561991d0651b24d40344f57634d0778a8c9 +size 108128 diff --git a/features/keypoints/want_022_aug_rotate_keypoints.npy b/features/keypoints/want_022_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f42a25aa07ccf626d67bbc3a6b054cfeab3ba9bf --- /dev/null +++ b/features/keypoints/want_022_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa9975077464236365a838a6cb9856070cf9386d9cbe50803f379adba52e1a4 +size 108128 diff --git a/features/keypoints/want_022_keypoints.npy b/features/keypoints/want_022_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..86214c6e1f8500f7ac378488c7acb9a035e071d7 --- /dev/null +++ b/features/keypoints/want_022_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72bc047e5551c729b94a44a49f4744dcb4abaddc27be34d59417a90a544eb5c0 +size 108128 diff --git a/features/keypoints/want_023_aug_shift_keypoints.npy b/features/keypoints/want_023_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..1d9000fbd4a3df714ab9cca1d3906d5b41f5affa --- /dev/null +++ b/features/keypoints/want_023_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c77e4f8b98b71244659614e730a534d74f891155f10ab9b7bd7f30df03f572 +size 55928 diff --git a/features/keypoints/want_023_keypoints.npy b/features/keypoints/want_023_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..543fcce49f1ac4be49545ca420cd7c9b39fb54b7 --- /dev/null +++ b/features/keypoints/want_023_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17771bd5d39d1395dc4d2b9d197b33fec600f9ffe770dc8d7b4970bbe13fa77 +size 55928 diff --git a/features/keypoints/want_024_aug_flip_keypoints.npy b/features/keypoints/want_024_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e4aa13365c60ba1b042bda8d6a9cffbc9dee569 --- /dev/null +++ b/features/keypoints/want_024_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1216297604f515c9d7e65cc404e66c9429e8bd8f5e75cf31099eba9ddcce178 +size 55928 diff --git a/features/keypoints/want_024_aug_rotate_keypoints.npy b/features/keypoints/want_024_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..2ee8f332d673f21f0a6583feece25c50d5e45387 --- /dev/null +++ b/features/keypoints/want_024_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dbd754aaa12b50b02cab8c173556df20fcc261d6a9700422f2c1725d01844f0 +size 55928 diff --git a/features/keypoints/want_024_keypoints.npy b/features/keypoints/want_024_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..03c12aae2078dff45765be94b002e11b735ee1c9 --- /dev/null +++ b/features/keypoints/want_024_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f37fac696b371d1d27e96ce0d1743ecbf6ffe6fbfe4bb8ea93ef156dae1128 +size 55928 diff --git a/features/keypoints/want_025_aug_flip_keypoints.npy b/features/keypoints/want_025_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b49e848dfaf37559916f3fc18a02eb813174ee3 --- /dev/null +++ b/features/keypoints/want_025_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c23167b8d24bc9d1df66ae100541d0a769e96c3f87be65356fa43a107dc149c +size 118928 diff --git a/features/keypoints/want_025_aug_shift_keypoints.npy b/features/keypoints/want_025_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..3b3bc43800d0c0fb078fbbe7f3bdb737a6641c73 --- /dev/null +++ b/features/keypoints/want_025_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892dd566e9ff4b07a76d4b1d16f809193a924e795cda1a11ff30660bfd8d9cf8 +size 118928 diff --git a/features/keypoints/want_025_keypoints.npy b/features/keypoints/want_025_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e00f7fdd33e9867c4b516e0a3be94c3710618cd8 --- /dev/null +++ b/features/keypoints/want_025_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea300a4affcc0c8b14b73fe976c5d6cbcad75815e07490afc0d02a1c021c3a0e +size 118928 diff --git a/features/keypoints/want_026_keypoints.npy b/features/keypoints/want_026_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..b025092d77d2a3155d0ed1356b2b59c1aba5ed3e --- /dev/null +++ b/features/keypoints/want_026_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd7e6fdf62dad42e0fc99acc03c5fd9d54c534bfe98de87e6f093baccf27133 +size 57728 diff --git a/features/keypoints/want_027_aug_flip_keypoints.npy b/features/keypoints/want_027_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..42fcac4ae6ce014f7a3b53fb5147ed4db965ddf7 --- /dev/null +++ b/features/keypoints/want_027_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e89d46892cfb645c76cb2dfba8957e536a8d1d4e4cd585fcfa27cd85f8da6b +size 64928 diff --git a/features/keypoints/want_027_aug_shift_keypoints.npy b/features/keypoints/want_027_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..be51abfd0bc30207bcf80f91cc624a558a05f142 --- /dev/null +++ b/features/keypoints/want_027_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4661dc017e56a873e8729aadd895e0e4a97c0a9e9d282ad42b8dd84e67e46d +size 64928 diff --git a/features/keypoints/want_027_keypoints.npy b/features/keypoints/want_027_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..da5466ee6f9c9a0b09ae81cdcd41952007b2f74a --- /dev/null +++ b/features/keypoints/want_027_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0caaa37725730838fb12a353e34a42d4b1ff3a04c25223bc09f6676d814f8efa +size 64928 diff --git a/features/keypoints/want_028_aug_rotate_keypoints.npy b/features/keypoints/want_028_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..15fe4efc9101adc953441637486d2db836b1d74d --- /dev/null +++ b/features/keypoints/want_028_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642f369cd222840d9bc0ccf1aded4eac68f1d78813e6da3bbfb503440206df86 +size 66728 diff --git a/features/keypoints/want_028_keypoints.npy b/features/keypoints/want_028_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8689da897fa73a53e54eba1b20e7241660fb19df --- /dev/null +++ b/features/keypoints/want_028_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8adb4ca12db8d9be27abe7cf9b224888d972b160215c00f8bb1a08ef49bfa53c +size 66728 diff --git a/features/keypoints/want_029_aug_flip_keypoints.npy b/features/keypoints/want_029_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..039acd8d5632e863dc2fbc0c73f85694f69560cd --- /dev/null +++ b/features/keypoints/want_029_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b6d57d1ae4da80875b2791f5aeec2d6422f31e500a6eb57c4acc8227724e1b +size 63128 diff --git a/features/keypoints/want_029_keypoints.npy b/features/keypoints/want_029_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9e2389f529534a445111738c5e1676c19dd75459 --- /dev/null +++ b/features/keypoints/want_029_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ef7dec3ebf332d510ab1d3086365e4eb347f11ecd6a793f6f552529a069eb9 +size 63128 diff --git a/features/keypoints/want_030_aug_rotate_keypoints.npy b/features/keypoints/want_030_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..9a415b5bcf7e2f4df98d74e877e96b5f3206f3b4 --- /dev/null +++ b/features/keypoints/want_030_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c9d64ca0d31334c42a75a5ff75f6416ab8cb3c6d0ff0ea29439e4e1f78dab2 +size 55928 diff --git a/features/keypoints/want_030_keypoints.npy b/features/keypoints/want_030_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..47fd4f881b59c7919c97b584796e1ced9acb7aac --- /dev/null +++ b/features/keypoints/want_030_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d0c84f172aabea7bf13e253632b55780268a0b7383cc0d35b966a7edda5f61 +size 55928 diff --git a/features/keypoints/want_031_aug_rotate_keypoints.npy b/features/keypoints/want_031_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..932f838590fd3cab77044ef609be4fa316c09fa5 --- /dev/null +++ b/features/keypoints/want_031_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7efed52e831c4992d3aee614fde510022746f6a8a3e0683df9c2b3cf7bc44de4 +size 163928 diff --git a/features/keypoints/want_031_keypoints.npy b/features/keypoints/want_031_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c220916110a30cfffaa81d62022c8339eb973a2f --- /dev/null +++ b/features/keypoints/want_031_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df003556da118997432c050f103bb006531da7c57b3886b2eb1148bca48c089 +size 163928 diff --git a/features/keypoints/want_032_aug_flip_keypoints.npy b/features/keypoints/want_032_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..57af3c95b294038a583bc7759a3d45489a29a5cf --- /dev/null +++ b/features/keypoints/want_032_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31116e217935733ea488893b7cabdbeb60c82506a0ccec88daaa9244e930a9b1 +size 151328 diff --git a/features/keypoints/want_032_aug_shift_keypoints.npy b/features/keypoints/want_032_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..8723ad9984d79ac7dd206fdacddf579d5b6bf7c9 --- /dev/null +++ b/features/keypoints/want_032_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbff53a6f64e5ca61fc779dff88a7dc139eb546e62399fb3a4198107f35b3e5 +size 151328 diff --git a/features/keypoints/want_032_keypoints.npy b/features/keypoints/want_032_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..23837f960f6a98847eec19a8d4701986cf68788f --- /dev/null +++ b/features/keypoints/want_032_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818daa63f003c2d74ff94e9d8fa839f903001c2c32d16c4465caa22a7e69e90f +size 151328 diff --git a/features/keypoints/want_033_aug_flip_keypoints.npy b/features/keypoints/want_033_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..28d460eb682c7dea370973556468e73fab526034 --- /dev/null +++ b/features/keypoints/want_033_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9816dceccb2a33216e090e0220b35a014cb2e1f8248378f5f9ba76f290ef226 +size 64928 diff --git a/features/keypoints/want_033_aug_rotate_keypoints.npy b/features/keypoints/want_033_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ff891937ab2be76afe3a00b26d381fdc71656dc4 --- /dev/null +++ b/features/keypoints/want_033_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0aa74ea63191b790ed372cc51d537442e28d27ac4a8ef508db89405678935ea +size 64928 diff --git a/features/keypoints/want_033_keypoints.npy b/features/keypoints/want_033_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..284407c0e9f31de42636e9e737c6ae2cf90c21be --- /dev/null +++ b/features/keypoints/want_033_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa321f6213e93bdd401d1ca8e0b40eb5fa1e2eddca61b21756ef7659feba7447 +size 64928 diff --git a/features/keypoints/want_034_aug_flip_keypoints.npy b/features/keypoints/want_034_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..808c46a5dafe83cb53601263eac72d35daa1cddc --- /dev/null +++ b/features/keypoints/want_034_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc33a25aa15e9910105133adc6639e45bf23d9aab9aafc5de811fe3888a6319a +size 73928 diff --git a/features/keypoints/want_034_aug_rotate_keypoints.npy b/features/keypoints/want_034_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0d4e91f93fed8b94b2cfb066798dd5a51dc606eb --- /dev/null +++ b/features/keypoints/want_034_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c5bc36bed9ef3e6737b56b3d894e35d251cd2f7625d937fd188220f6da51f6 +size 73928 diff --git a/features/keypoints/want_034_keypoints.npy b/features/keypoints/want_034_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..d8cca61bbc8053c27f0d916e5c07ff50fe8e0de3 --- /dev/null +++ b/features/keypoints/want_034_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17730c7e5d26cafb2f058ad86ceb3ecd5036441b7e3ca15c99293fc86098c749 +size 73928 diff --git a/features/keypoints/want_035_aug_flip_keypoints.npy b/features/keypoints/want_035_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..16464d8a046e50a2b3522a8edc55a55ea67a33f4 --- /dev/null +++ b/features/keypoints/want_035_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e64b1393926263a10d10ebc4a65c286c0aa686d835db99d247497a9d798b42 +size 66728 diff --git a/features/keypoints/want_035_aug_rotate_keypoints.npy b/features/keypoints/want_035_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..725eb3fae8443f2944b0eb458eb9beebb90aeddd --- /dev/null +++ b/features/keypoints/want_035_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b57cd5c242164885c9b9930f364bfc603334d6adf44d17ed92b23514c5b816e +size 66728 diff --git a/features/keypoints/want_035_aug_shift_keypoints.npy b/features/keypoints/want_035_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..dedfba24223e0285a12e1a7a1fd9bd4bf415060f --- /dev/null +++ b/features/keypoints/want_035_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73540906aaaafaca779992c44f6de24d8ceda485d15546049ae5250dcbdad055 +size 66728 diff --git a/features/keypoints/want_035_keypoints.npy b/features/keypoints/want_035_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..7d762c0ed0214010ec3caac5cabbe05749570923 --- /dev/null +++ b/features/keypoints/want_035_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df029229d2da570d3060f185cd1a1e5723a494d0aeb4efaf07165c29bb3c8d9 +size 66728 diff --git a/features/keypoints/want_036_aug_flip_keypoints.npy b/features/keypoints/want_036_aug_flip_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6848268625430bfe09a58042831af859ea0f8b9 --- /dev/null +++ b/features/keypoints/want_036_aug_flip_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d070a6223a9b39aa99dd11a5197c879cc4fbfd4dcd5ca3802c9c55c5e8154c1 +size 41528 diff --git a/features/keypoints/want_036_aug_rotate_keypoints.npy b/features/keypoints/want_036_aug_rotate_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ebd6f71d8d12670942fa0fc35b9a65168219b003 --- /dev/null +++ b/features/keypoints/want_036_aug_rotate_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a727f5d8a8f7abffeab5820b1e7d697decb47be1a526b1e32fbf6a4aad1d3e74 +size 41528 diff --git a/features/keypoints/want_036_aug_shift_keypoints.npy b/features/keypoints/want_036_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..f13aaca0cea616cd450f2f142ac829eb9e21cfd9 --- /dev/null +++ b/features/keypoints/want_036_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e252055d2a1db080e12998273a693945627575ae8fb9d7a6acd829d0887c0a68 +size 41528 diff --git a/features/keypoints/want_036_keypoints.npy b/features/keypoints/want_036_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..0bba0ab1008386575192012b51ffd9d73941e3a5 --- /dev/null +++ b/features/keypoints/want_036_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccd71e0def2a3bcd46aba7d289222796299a789b0258e001d45d77300f4664e +size 41528 diff --git a/features/keypoints/want_037_aug_shift_keypoints.npy b/features/keypoints/want_037_aug_shift_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..ad7b4d6c1bac1add8c9557f26dd9fabedaf847d4 --- /dev/null +++ b/features/keypoints/want_037_aug_shift_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a11f078742b8a5f689c9375511c2744004c7dc330645cf815f8af3d5b1daba3 +size 64928 diff --git a/features/keypoints/want_037_keypoints.npy b/features/keypoints/want_037_keypoints.npy new file mode 100644 index 0000000000000000000000000000000000000000..e50372045f6d7839f4aef72579396b6de40c0392 --- /dev/null +++ b/features/keypoints/want_037_keypoints.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4680f09414da2d2d0cca3fb732f4e37a07e446ac1c8aa3192724320e731f83ae +size 64928 diff --git a/features/optical_flow/eat_001_aug_rotate_flow.npz b/features/optical_flow/eat_001_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ca7dc68989f05e1bdb6751df5991535d1bc77112 --- /dev/null +++ b/features/optical_flow/eat_001_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252a472d41a97396b127c930b5f4df3d775612a81e818aa4fcc26dcb1cd1d9c3 +size 877 diff --git a/features/optical_flow/eat_001_aug_shift_flow.npz b/features/optical_flow/eat_001_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f2b05c4764657558a4f750f5dfe8c11989670b61 --- /dev/null +++ b/features/optical_flow/eat_001_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639f81b26035d462e5efce71c1c75f06c8bbc0861d8272e42e04915c7d09731c +size 878 diff --git a/features/optical_flow/eat_001_flow.npz b/features/optical_flow/eat_001_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8167894501a3578074eff14e1987790c94295a91 --- /dev/null +++ b/features/optical_flow/eat_001_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e169f8a7532aa35a483eac3f9396b01f04b4e5c18fb5288ae74013d37c2ae53e +size 892 diff --git a/features/optical_flow/eat_002_aug_rotate_flow.npz b/features/optical_flow/eat_002_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ef57e51f78f5b1a47c27050f128cf5743881d923 --- /dev/null +++ b/features/optical_flow/eat_002_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96569371fcac1edb69a23053928c67db69fc32a611483fca35480a2f62dbf5a7 +size 838 diff --git a/features/optical_flow/eat_002_aug_shift_flow.npz b/features/optical_flow/eat_002_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..40588db7a1f11cd17bf3b2217b2af734dd59a34a --- /dev/null +++ b/features/optical_flow/eat_002_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8b5ef8e6918a5795209bac0041fe6c9a9ea424d17f62c3fc6b141edb56d851 +size 835 diff --git a/features/optical_flow/eat_002_flow.npz b/features/optical_flow/eat_002_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d5fcf92a60273929b7f0247ef5689c4bd66bebff --- /dev/null +++ b/features/optical_flow/eat_002_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f40ca2eee14a3cf8de018fccdf85dd2a429995ebce140185582d75f4dea84e +size 855 diff --git a/features/optical_flow/eat_003_aug_rotate_flow.npz b/features/optical_flow/eat_003_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c3b5bc9406e7ba2b91c730c55fe725e4964148e1 --- /dev/null +++ b/features/optical_flow/eat_003_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e2b72c24653ccfed608348b502e29e2ceba04829e5a99531c64f00c8dc4abf +size 727 diff --git a/features/optical_flow/eat_003_flow.npz b/features/optical_flow/eat_003_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1a2c93778399a0e9e3247282c5b86dee35fe4007 --- /dev/null +++ b/features/optical_flow/eat_003_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f16e35784e7475cc111b01daf4132ccc42882bdc218bb335a9fb39022b741e +size 731 diff --git a/features/optical_flow/eat_004_aug_flip_flow.npz b/features/optical_flow/eat_004_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0cc7607d698e22f41a035ba5a2b3e0587f5235de --- /dev/null +++ b/features/optical_flow/eat_004_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85122faf916440a5654bd9eac71f3c701661f5d1e0f523a0ccfb1f79724643c5 +size 582 diff --git a/features/optical_flow/eat_004_aug_shift_flow.npz b/features/optical_flow/eat_004_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..419f4edfa6aef259d1f2678535ac7c9ec9b3a3c4 --- /dev/null +++ b/features/optical_flow/eat_004_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc692da2a205afc32548aa37e26d3c5a4baf1cffbaaf9b5298f3d5f1f029da9c +size 582 diff --git a/features/optical_flow/eat_004_flow.npz b/features/optical_flow/eat_004_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a289555f8e3f89c6d8457d0b22cf4ff352ad3383 --- /dev/null +++ b/features/optical_flow/eat_004_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f884c60f1f1b3bc6f6ab62a19512216f0cf81c71430ba12929366113640acec +size 584 diff --git a/features/optical_flow/eat_005_aug_flip_flow.npz b/features/optical_flow/eat_005_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f45d2c98e34c797b6f3a82e7fc35bf6bfdc98a74 --- /dev/null +++ b/features/optical_flow/eat_005_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4fb42128135c227cea76672e5dc820ce71bf766f3c4034dfba282d8d43f9d8 +size 1247 diff --git a/features/optical_flow/eat_005_flow.npz b/features/optical_flow/eat_005_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6eecc77f21fd8eb48d1c0c1c473e2ec6ac31a9f9 --- /dev/null +++ b/features/optical_flow/eat_005_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fdcf7c85fb93f38b496ff684faccec95a8c965ae49deda35a98f0d21588ed4 +size 1249 diff --git a/features/optical_flow/eat_006_flow.npz b/features/optical_flow/eat_006_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5b7910da78d7f9e647405bd3bc0e35e2581ab63b --- /dev/null +++ b/features/optical_flow/eat_006_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1f9b80c47f6d4978b6166da75128c36de7d84de6276627b33de7b79528e98f +size 1501 diff --git a/features/optical_flow/eat_007_aug_flip_flow.npz b/features/optical_flow/eat_007_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f271a3fa2853529bbf92931a53542733dd194206 --- /dev/null +++ b/features/optical_flow/eat_007_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16cb982ca6ac8ba0974004a328a94b0a058dc59bc27c3bcf7860607c3a00228 +size 1434 diff --git a/features/optical_flow/eat_007_flow.npz b/features/optical_flow/eat_007_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..32cc6249965137c71d3c1025f3a4aefb973dcd17 --- /dev/null +++ b/features/optical_flow/eat_007_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74702d8d3c57e54eae7bb2eb70a06304b7577924bfb2beac3be544fe495a3bc1 +size 1431 diff --git a/features/optical_flow/eat_008_aug_flip_flow.npz b/features/optical_flow/eat_008_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d574f979c3cb73c894245d8560e64c38f68640b4 --- /dev/null +++ b/features/optical_flow/eat_008_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f1e58ed1511ff1a79f055f8f353f6399e318d2ec556c3e26547347b8a6a5ae +size 1347 diff --git a/features/optical_flow/eat_008_flow.npz b/features/optical_flow/eat_008_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d083914ffc22c924031c7c091d6cd1ff58cf3c0d --- /dev/null +++ b/features/optical_flow/eat_008_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa91f02bfb4559492c4677a551fce1649f60f54a98d093552f2701ab87f5c29c +size 1346 diff --git a/features/optical_flow/eat_009_aug_flip_flow.npz b/features/optical_flow/eat_009_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8ce9f3b1c7059ddd5c725771128963019778d408 --- /dev/null +++ b/features/optical_flow/eat_009_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6a343439433ae8af74df8b0972311bc21ae4385b8be0c578367c0a046133e9 +size 980 diff --git a/features/optical_flow/eat_009_aug_rotate_flow.npz b/features/optical_flow/eat_009_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8670db7c538497003439b33b359e704e3ff5608a --- /dev/null +++ b/features/optical_flow/eat_009_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1aecd3bcbc18a7ddb091a05adb5948cb8cb8855fe6b01a6fd218c1f0df9d266 +size 971 diff --git a/features/optical_flow/eat_009_aug_shift_flow.npz b/features/optical_flow/eat_009_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..87cdb57964b988c81a53b73779da107a376f5cfa --- /dev/null +++ b/features/optical_flow/eat_009_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40cbedd59a9983a0f5f6f0dd16ea922e03549c038349979c5aa13e04f9e10a1 +size 968 diff --git a/features/optical_flow/eat_009_flow.npz b/features/optical_flow/eat_009_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2a101727fc935152cbe8fbd7f742883dbd16c8ac --- /dev/null +++ b/features/optical_flow/eat_009_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b40a2611da188878eeab56ccb527c734a6cd93c9c3f911a9dfd76b6b8170fe +size 975 diff --git a/features/optical_flow/eat_010_aug_flip_flow.npz b/features/optical_flow/eat_010_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..935e7b29c2fccac7a30f1adcb9979dd19065e8fe --- /dev/null +++ b/features/optical_flow/eat_010_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307fa078fdc528c3beba85441688ecd0acd853ef3cdbc4806ba06db4c71f6cf5 +size 1773 diff --git a/features/optical_flow/eat_010_aug_rotate_flow.npz b/features/optical_flow/eat_010_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5011e804942628f97ad3c8dc3a8721ea7f9bc435 --- /dev/null +++ b/features/optical_flow/eat_010_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51fdb71cf59fabfa2a306574086fa7b5eb11246af1b458102c872c715a01f56 +size 1739 diff --git a/features/optical_flow/eat_010_aug_shift_flow.npz b/features/optical_flow/eat_010_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..17bde67be5055bace8a3c3b67a41d0b2ebd3e9b3 --- /dev/null +++ b/features/optical_flow/eat_010_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ed2d646bb79b0679db17f4c83f5c3fd653c757b917706b561b3e2b92038e10 +size 1728 diff --git a/features/optical_flow/eat_010_flow.npz b/features/optical_flow/eat_010_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9718365830107c07091285b32203ba0b722d4d1f --- /dev/null +++ b/features/optical_flow/eat_010_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7c04062fdafc22af3014cef27e002564d61fa3b97b8e1c46ae35be68f189e3 +size 1770 diff --git a/features/optical_flow/eat_011_aug_shift_flow.npz b/features/optical_flow/eat_011_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..452c44d63b9b14938e006c673f2ddbe88033dc98 --- /dev/null +++ b/features/optical_flow/eat_011_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b449131d7e3ded88803a0338ac22a85e87f276bf9916f797d241a63eb1041b8a +size 1363 diff --git a/features/optical_flow/eat_011_flow.npz b/features/optical_flow/eat_011_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..00b2f42addccf7dffd0c56e9cabb6664328bed54 --- /dev/null +++ b/features/optical_flow/eat_011_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306a7bde5efe358bea5979d0bc982cbddb26cff31d1c0b617fd3bfc5da5ca463 +size 1388 diff --git a/features/optical_flow/eat_012_aug_shift_flow.npz b/features/optical_flow/eat_012_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..243a962d740039d1b9cb1a962e636f5e28b0b6ff --- /dev/null +++ b/features/optical_flow/eat_012_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b01616ab40281c2b23413f4b6dcba124d581a11fc4f933175a49887aa95820 +size 1446 diff --git a/features/optical_flow/eat_012_flow.npz b/features/optical_flow/eat_012_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e390362425be076f731e19b20a3d615d17716ff1 --- /dev/null +++ b/features/optical_flow/eat_012_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80ea9f9001d959bdc067f47271f70f68b526265b8dd0c05c501ff72adfe1db3 +size 1476 diff --git a/features/optical_flow/eat_013_flow.npz b/features/optical_flow/eat_013_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..878952c47db888f0eb1eac802421b4b9b5ea1876 --- /dev/null +++ b/features/optical_flow/eat_013_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f629b3ea488c60c9cb0ce2334552a449455f878c4682ca871875cadddb0af4 +size 1669 diff --git a/features/optical_flow/eat_014_aug_shift_flow.npz b/features/optical_flow/eat_014_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..46bdb0b9fea5fe200ca39f7c7bd0a226d64a8f81 --- /dev/null +++ b/features/optical_flow/eat_014_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c561972476e7f9046a6b04102deec0810d367277ac98ed710f0542bdba1925e +size 411 diff --git a/features/optical_flow/eat_014_flow.npz b/features/optical_flow/eat_014_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..44063cf18db19714d023530a2e3cf187a03aa89c --- /dev/null +++ b/features/optical_flow/eat_014_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c78a790e4ff614ff9c0e7a25f804df02979ba95b117e19d540b641ace3ee20e +size 403 diff --git a/features/optical_flow/eat_015_aug_flip_flow.npz b/features/optical_flow/eat_015_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e81d14ffc69755dea560c0100c5708f20b4322e7 --- /dev/null +++ b/features/optical_flow/eat_015_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be519c7e2c7a6939dd670c4f43b07fc555fc8f7423b7e60ca8a7a9737bc39a4 +size 1354 diff --git a/features/optical_flow/eat_015_aug_shift_flow.npz b/features/optical_flow/eat_015_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..189dec3bfe5a397a8b56cffd9e143a2c508202cc --- /dev/null +++ b/features/optical_flow/eat_015_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b9e0646d8e46a16df7f071acee301bf789fbdffd2c67a7519d4073d1edba7a +size 1317 diff --git a/features/optical_flow/eat_015_flow.npz b/features/optical_flow/eat_015_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e3e095954557a3a038fce9bf689f5f2fbb81de6d --- /dev/null +++ b/features/optical_flow/eat_015_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46c721a832e540e3c1bde22eba8daadbebee54ef111bbbd8e929832b69ed06e +size 1351 diff --git a/features/optical_flow/eat_016_aug_flip_flow.npz b/features/optical_flow/eat_016_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..007422a447d36cdfd3ade646bfa061e0528273b2 --- /dev/null +++ b/features/optical_flow/eat_016_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6014dc42a309d77d707095b32b2b5703d515b613878fe89eb348eace2f9b8549 +size 1041 diff --git a/features/optical_flow/eat_016_aug_shift_flow.npz b/features/optical_flow/eat_016_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b5bec1dab4e81ca60829eea14199b7f311aecbca --- /dev/null +++ b/features/optical_flow/eat_016_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89bb2588e18b338e1d3693e24fabdd3c016e0964f735759d52d674285784962 +size 1018 diff --git a/features/optical_flow/eat_016_flow.npz b/features/optical_flow/eat_016_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9d42611257f8ab2e57c12bf7ccc9eafac069052a --- /dev/null +++ b/features/optical_flow/eat_016_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64cb533182f1ece1c70512f186932845c6183e1fb9846430ffa596ea3117ffa +size 1041 diff --git a/features/optical_flow/eat_017_aug_rotate_flow.npz b/features/optical_flow/eat_017_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6ec626e21adff9f806bfea33aaf028d2c909b091 --- /dev/null +++ b/features/optical_flow/eat_017_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f92ef6de35480acdf1c6f249b92b8e634530b496ea628221e010848d698dac +size 831 diff --git a/features/optical_flow/eat_017_aug_shift_flow.npz b/features/optical_flow/eat_017_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f1a1bf7250a1516178da5d0237280e5fd8481e04 --- /dev/null +++ b/features/optical_flow/eat_017_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4210831f013d6ddd94182a0017242207adc9e93aa0dcf5422f442c4c3c875844 +size 825 diff --git a/features/optical_flow/eat_017_flow.npz b/features/optical_flow/eat_017_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9918371c6e505dce50a2c4dc451e1b66c84995c2 --- /dev/null +++ b/features/optical_flow/eat_017_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f947e98ce444f05ae563756a360c79df78e34b5acc0b583fcb7e675d16818fd +size 831 diff --git a/features/optical_flow/eat_018_flow.npz b/features/optical_flow/eat_018_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0e77e11978d3469a69ff7a1350fa6c787bb08edb --- /dev/null +++ b/features/optical_flow/eat_018_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f709237949865f17fe5a5feda1b6df5a71511610fc292b926d1e62aacf2e3934 +size 1844 diff --git a/features/optical_flow/eat_019_aug_flip_flow.npz b/features/optical_flow/eat_019_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0f3c69d153147324653370c671959f855c0c76ae --- /dev/null +++ b/features/optical_flow/eat_019_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b858b5257d3d34b8e69ba44cef2c9642aca5c525ed1ad766182f64e49a5e77 +size 769 diff --git a/features/optical_flow/eat_019_flow.npz b/features/optical_flow/eat_019_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d69bfd485e58da144c75174819061c25999e900e --- /dev/null +++ b/features/optical_flow/eat_019_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce674437855ad9557faa2500a1134002d739cd526e7e2ce84388cb749971a6d +size 766 diff --git a/features/optical_flow/eat_020_aug_rotate_flow.npz b/features/optical_flow/eat_020_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cf0ce48c2e1f8d31aed02bd246b10cd1a4da944a --- /dev/null +++ b/features/optical_flow/eat_020_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3f02d90dcb439a446280fa45c1406af14775b31dced2e0fdc481b7ba93f3ff6 +size 825 diff --git a/features/optical_flow/eat_020_flow.npz b/features/optical_flow/eat_020_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..aec10cb976d86a3a4f14de56c8413e5d5c40530a --- /dev/null +++ b/features/optical_flow/eat_020_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a80b59c80d89de70c5d112f0284a0a4bd6900928eb82c82cdd978bf0d827e2 +size 832 diff --git a/features/optical_flow/eat_021_aug_rotate_flow.npz b/features/optical_flow/eat_021_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..27880bad5906559df6d73f7cf694f25edc842f61 --- /dev/null +++ b/features/optical_flow/eat_021_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19875bde4b9ff78dccf269df8139a056e95c8f868786f43976a9fb7a38f595f +size 1635 diff --git a/features/optical_flow/eat_021_aug_shift_flow.npz b/features/optical_flow/eat_021_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3632e26d6cf8383da128237b9f46004fd05382d4 --- /dev/null +++ b/features/optical_flow/eat_021_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32303a539e51eda86db382ff7642267dd18695f07f057342cb4b94871f66f66 +size 1629 diff --git a/features/optical_flow/eat_021_flow.npz b/features/optical_flow/eat_021_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..17ee7ed2078d0832243f7b1ed7578e5a78be089d --- /dev/null +++ b/features/optical_flow/eat_021_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688b0329b07f0af92587e94a44cd0b67fb7be4c5c40bfd9c33080bf67aaef0db +size 1672 diff --git a/features/optical_flow/eat_022_aug_flip_flow.npz b/features/optical_flow/eat_022_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..56fb25bf752190dd286cb3452fa5655589807e5e --- /dev/null +++ b/features/optical_flow/eat_022_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733b77324525a5400994674a70060e33b13eba861b073e558bf71c1fe5db8799 +size 626 diff --git a/features/optical_flow/eat_022_flow.npz b/features/optical_flow/eat_022_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e46dc4dda53927d0c7bfdb032e64ea9fd0a929f2 --- /dev/null +++ b/features/optical_flow/eat_022_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe70148d36d1c199e81490623277cc302c547847aca70fc8a4a3cbe74f40462 +size 624 diff --git a/features/optical_flow/eat_023_aug_flip_flow.npz b/features/optical_flow/eat_023_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5d935777a1045cad0c7301bb603bcc4c09e61a80 --- /dev/null +++ b/features/optical_flow/eat_023_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9f824c7cb3e8fa8b6d73876562bf5e1365dfb7921b339c693eb8e5eec5aa83 +size 1199 diff --git a/features/optical_flow/eat_023_aug_shift_flow.npz b/features/optical_flow/eat_023_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2d6c8387a1983d1516b411f028867db68bd8a77f --- /dev/null +++ b/features/optical_flow/eat_023_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a62937c68fb7f15448a6d35a9596ea8e4367655a40bb77932fb6f345158e49 +size 1176 diff --git a/features/optical_flow/eat_023_flow.npz b/features/optical_flow/eat_023_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ca64635171955c54ea3fad0230766ab6d42b0bb8 --- /dev/null +++ b/features/optical_flow/eat_023_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c404926ae4e8ea81bd21c0e6601940872506f3997d564e5ab406643e570f17a +size 1205 diff --git a/features/optical_flow/eat_024_aug_rotate_flow.npz b/features/optical_flow/eat_024_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a1dc9b4e4f9e152baa52061785c36e9251dfb668 --- /dev/null +++ b/features/optical_flow/eat_024_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5e5c5e0f19ef01134600a3b0368cce1c88430a4064849df5d654b0414e9802 +size 1939 diff --git a/features/optical_flow/eat_024_aug_shift_flow.npz b/features/optical_flow/eat_024_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9ca1ade88400cf4c9d8b694b4313740f4e7a8a1f --- /dev/null +++ b/features/optical_flow/eat_024_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7a7518df399a11ecc5168119a57efe0634026cac97ae1c91ad9cf4b73a6db9 +size 1917 diff --git a/features/optical_flow/eat_024_flow.npz b/features/optical_flow/eat_024_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..25b31892482fbc0a2383035dea9e7a62a94b565a --- /dev/null +++ b/features/optical_flow/eat_024_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a202fe9eea5fd3fb3018c51a91ca8ac9d0b71b7aab4f3889cc7002b35a7e0fdb +size 1952 diff --git a/features/optical_flow/eat_025_aug_shift_flow.npz b/features/optical_flow/eat_025_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4337ef185cca60e420ef2edbca765e3ffb152b23 --- /dev/null +++ b/features/optical_flow/eat_025_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a39af132947fc6d6e0551f9f7c7d9606e66de8a30f39959ac08b1f4e059fa6b +size 1128 diff --git a/features/optical_flow/eat_025_flow.npz b/features/optical_flow/eat_025_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..01390172eaee871466aa1f39665cddf0bf0dd414 --- /dev/null +++ b/features/optical_flow/eat_025_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8944a4059dc937745478eeda4909b475d452e6bfe91b417d02b4fdff193f8457 +size 1155 diff --git a/features/optical_flow/eat_026_aug_shift_flow.npz b/features/optical_flow/eat_026_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..dd865146fddc4dcd6f498fd9471e2d9ebc99fd26 --- /dev/null +++ b/features/optical_flow/eat_026_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3440ed5d561e569d78bcb00071c896fc3153623b5c88658f4e3bc969167304bc +size 745 diff --git a/features/optical_flow/eat_026_flow.npz b/features/optical_flow/eat_026_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5b5488a0faf3af2acf44e13c941717de982ba573 --- /dev/null +++ b/features/optical_flow/eat_026_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6455b2531149f6411bc1c7e44fb20e963634046338f3a13348bd69cb96002554 +size 749 diff --git a/features/optical_flow/eat_027_aug_shift_flow.npz b/features/optical_flow/eat_027_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e73ed21a7f5d1a354531047498adf92f53e6f314 --- /dev/null +++ b/features/optical_flow/eat_027_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1927a4311dea57aae35a8efddf6bcd5a3476ed0210ef1326c64f5acb954e0e5 +size 1072 diff --git a/features/optical_flow/eat_027_flow.npz b/features/optical_flow/eat_027_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6800e69adc4cde12f34dd0f50f29ccf68034ac81 --- /dev/null +++ b/features/optical_flow/eat_027_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a905fab2e57937ec0f1f5ba7234266c32882081ef62630064afebd689b59280 +size 1094 diff --git a/features/optical_flow/eat_028_aug_rotate_flow.npz b/features/optical_flow/eat_028_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8fb29961bf2a4f446bb311b2bc1adc9e8a75148e --- /dev/null +++ b/features/optical_flow/eat_028_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421ec6168a6e61935e0ddbb882e8668efaba417fb73ed640a28560e74565b9cd +size 912 diff --git a/features/optical_flow/eat_028_flow.npz b/features/optical_flow/eat_028_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..18e60906eddb971aaada090ccfb9d7fcccf6789b --- /dev/null +++ b/features/optical_flow/eat_028_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa33d88f188ade50aae6258c80a79ae684e28762fc72bf32ce1b90af417e5c1 +size 918 diff --git a/features/optical_flow/eat_029_aug_flip_flow.npz b/features/optical_flow/eat_029_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2b0486595e985273712bba9f05474da36fbeaa96 --- /dev/null +++ b/features/optical_flow/eat_029_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fd63c034001f335270c01ad3f3bc41684653689e6db3c20afd017164570ca11 +size 787 diff --git a/features/optical_flow/eat_029_aug_rotate_flow.npz b/features/optical_flow/eat_029_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7245d96ea5434c0bd9294eb45fd45c909cf2850c --- /dev/null +++ b/features/optical_flow/eat_029_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5968a0e6116eae688c103deec8996439bf6e8fac431660589062b6f09c233fe0 +size 790 diff --git a/features/optical_flow/eat_029_flow.npz b/features/optical_flow/eat_029_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..512d9bd332c7595c8f390b241297ba2d8a3785d5 --- /dev/null +++ b/features/optical_flow/eat_029_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a9eb494d534067f0439174fcfd5235bcbde9f197020b3f200575d8f854e5e7 +size 791 diff --git a/features/optical_flow/eat_030_aug_rotate_flow.npz b/features/optical_flow/eat_030_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b4e5e7d22f2ab9bbeb3f629ad1f701ac7e0883df --- /dev/null +++ b/features/optical_flow/eat_030_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bfd0a9ee62c7ea587b3dbdbde9b09ef48b3d9cd9364d336dfa61e425bb171b +size 584 diff --git a/features/optical_flow/eat_030_aug_shift_flow.npz b/features/optical_flow/eat_030_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9654c146ec04972daa67bd4d2e77855f65829899 --- /dev/null +++ b/features/optical_flow/eat_030_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2655ba9e16521f4368d1b25472a70556cd05be7c2a6d0feed1e663b7646a13f3 +size 582 diff --git a/features/optical_flow/eat_030_flow.npz b/features/optical_flow/eat_030_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d3dcba754fede2879bbd133be6ea44352c597bb6 --- /dev/null +++ b/features/optical_flow/eat_030_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:157752a18ade7f41ed65702939e5ac1ef3ad75f20662bd0ef0ed52f08d03d257 +size 583 diff --git a/features/optical_flow/eat_031_aug_rotate_flow.npz b/features/optical_flow/eat_031_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..52956072420d733ee1f73aaa3f91f5d1d8839de1 --- /dev/null +++ b/features/optical_flow/eat_031_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037e561dae986d9f5b6992cfe6e1e44b572479254a6a966a01d043448beb5efb +size 1000 diff --git a/features/optical_flow/eat_031_flow.npz b/features/optical_flow/eat_031_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..02efe60f434e381bdf351ed006aafaafd2174d3d --- /dev/null +++ b/features/optical_flow/eat_031_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2ee4d2c0f7b80c94acf4232e06630e148374a618ce3da30fb6e6c1f44c5d85 +size 1024 diff --git a/features/optical_flow/eat_032_aug_flip_flow.npz b/features/optical_flow/eat_032_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..35d2c0907899ad0a62696e39a7d0fded1f723fb9 --- /dev/null +++ b/features/optical_flow/eat_032_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba1011c776158b37de2523d971d0048c9df737d035a3f6fa17b853b8bc521cb +size 1454 diff --git a/features/optical_flow/eat_032_aug_rotate_flow.npz b/features/optical_flow/eat_032_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ea976842b57af60b988670f5801be2d5c72750b7 --- /dev/null +++ b/features/optical_flow/eat_032_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f656414327543675591c8601cb7560d435fbad1c2035c7306559c5f2c4a567 +size 1430 diff --git a/features/optical_flow/eat_032_flow.npz b/features/optical_flow/eat_032_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2a03967c6a06d7b95a7106ffeca3a5d2cbaed8ea --- /dev/null +++ b/features/optical_flow/eat_032_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccb5d52a096e45aa4d4cbe2c5c4f928acb16b5826024bda23018cced1adcce5 +size 1446 diff --git a/features/optical_flow/eat_033_aug_rotate_flow.npz b/features/optical_flow/eat_033_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..96def1754b0c945ffafc24ad37c6412b0c20ca92 --- /dev/null +++ b/features/optical_flow/eat_033_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b11a6ed836854f9cc7da6c593939ea0dd0bf2b067a4060e5828b9e3235cdd5 +size 1025 diff --git a/features/optical_flow/eat_033_aug_shift_flow.npz b/features/optical_flow/eat_033_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..dda04b107c5d6973498c965163ff618af91ca704 --- /dev/null +++ b/features/optical_flow/eat_033_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8111e6a684dd4e8c8f1b29ab322ac49746fe88ce1532a3b5a38e1506c444dbf +size 1014 diff --git a/features/optical_flow/eat_033_flow.npz b/features/optical_flow/eat_033_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..da758a3d46bbff68c92b94bb67c55e19842a9cfa --- /dev/null +++ b/features/optical_flow/eat_033_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df57f489356c12e675e8d27bb3bba7c65c5b9f793b7b1adebe10412262e6974 +size 1036 diff --git a/features/optical_flow/eat_034_aug_flip_flow.npz b/features/optical_flow/eat_034_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..86551b9c688d922a80bb8bae4a85e450adfaafdc --- /dev/null +++ b/features/optical_flow/eat_034_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3755dded6cf9323be485f20eae1c383257225faf3f8ba99b015058449ac15633 +size 1137 diff --git a/features/optical_flow/eat_034_aug_shift_flow.npz b/features/optical_flow/eat_034_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..356c0a6daf681e20044904523c259815bf90a7bc --- /dev/null +++ b/features/optical_flow/eat_034_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e350eb7cb2b3271eed071e1ccb1423bcdc952dbb9897d2a5221d647911c1818 +size 1103 diff --git a/features/optical_flow/eat_034_flow.npz b/features/optical_flow/eat_034_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ddd7443b651e2f877f0e8eea6f0b8dc8a35ef4eb --- /dev/null +++ b/features/optical_flow/eat_034_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f60b6f0134249f6647e5485f0cd5665aef769f0f4580b9ffa9e455058c11bc +size 1128 diff --git a/features/optical_flow/eat_035_aug_flip_flow.npz b/features/optical_flow/eat_035_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b06e2bbd0404718064f55a67a522d484f609f7ac --- /dev/null +++ b/features/optical_flow/eat_035_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9237d4211982ba0ed853b2c6bd35f6dc537b91d9016e9c7cbb9ff673c9adbd4 +size 1059 diff --git a/features/optical_flow/eat_035_aug_rotate_flow.npz b/features/optical_flow/eat_035_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..84e8743fc6be9c82c416557263c9d415bf85d3a6 --- /dev/null +++ b/features/optical_flow/eat_035_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6121181b83a108e2f5d836f055eb8c18e159de941fe8540a2d6962b237b46652 +size 1042 diff --git a/features/optical_flow/eat_035_aug_shift_flow.npz b/features/optical_flow/eat_035_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..46c0519900fdb614869895210592ed2611b4c128 --- /dev/null +++ b/features/optical_flow/eat_035_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04321c1d5245f433dd442223f05ac50def9f04175584a3ee2df30d41654dbfad +size 1030 diff --git a/features/optical_flow/eat_035_flow.npz b/features/optical_flow/eat_035_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a7b952899f4db28a79632056d8dd68c5d6c6f596 --- /dev/null +++ b/features/optical_flow/eat_035_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f935c2a1fd29e0c7ba2ff238d1335a682344a6e8b0db53da8705bfcf7a1441 +size 1052 diff --git a/features/optical_flow/eat_036_aug_flip_flow.npz b/features/optical_flow/eat_036_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..89f52734c5f54a411e477c4718d26c4b339aa9da --- /dev/null +++ b/features/optical_flow/eat_036_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5c096d623cc5ea081b0d95ad881837374f7a413a5e1570e3b40a0333b6e045 +size 1319 diff --git a/features/optical_flow/eat_036_flow.npz b/features/optical_flow/eat_036_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..41d229cafd072c3781aa2724699933c1accb14e2 --- /dev/null +++ b/features/optical_flow/eat_036_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6db4998da846bc90e6bd0ef34cb6e15ad27ef2f3df14b1cdeb7ab36a4545369 +size 1315 diff --git a/features/optical_flow/eat_037_aug_flip_flow.npz b/features/optical_flow/eat_037_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cf4e33a3408c22d28613cb4d735be0a4425767c8 --- /dev/null +++ b/features/optical_flow/eat_037_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ef0681994d558ec3f633fdbb75aab5fb4b28a6ac02cf910302eba1015ac9ac +size 1034 diff --git a/features/optical_flow/eat_037_aug_rotate_flow.npz b/features/optical_flow/eat_037_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..528bba03be9cf61828995359e6154622c7261b6c --- /dev/null +++ b/features/optical_flow/eat_037_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f344b5f8d0f94698d4b62bff8ce830c623b9b59926d9bd633424a6c523148bd +size 1020 diff --git a/features/optical_flow/eat_037_flow.npz b/features/optical_flow/eat_037_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..822cf1d7e174aa7aa9ce859cc000a9991a812ad8 --- /dev/null +++ b/features/optical_flow/eat_037_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95b029edfa5f0ccc7150740283fe7abe3cf7640c311230a5b7256810bc76483 +size 1031 diff --git a/features/optical_flow/fish_001_aug_flip_flow.npz b/features/optical_flow/fish_001_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c1e6f20dc72f2404168d0c69c8bab7eef7b6dfb8 --- /dev/null +++ b/features/optical_flow/fish_001_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14dbc22d816b61b5ee9e7d1027e7b4df7f3ba8f9f6a85e16316f14a4ee33d94 +size 833 diff --git a/features/optical_flow/fish_001_aug_rotate_flow.npz b/features/optical_flow/fish_001_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cec002d7822eeda70ff9a0e932498fcba1920974 --- /dev/null +++ b/features/optical_flow/fish_001_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6b9b555c8d943e24f2e3da90da5447e60a4bbf1eb856f8cc70cf0f45d765cc +size 831 diff --git a/features/optical_flow/fish_001_aug_shift_flow.npz b/features/optical_flow/fish_001_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d9dffe0b80232f1ad435b4ae5613bcc31c26a8fb --- /dev/null +++ b/features/optical_flow/fish_001_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7fbcceac0ee326e09c22483d7c00a010f881accdea7ebdade9173d28cdb598 +size 825 diff --git a/features/optical_flow/fish_001_flow.npz b/features/optical_flow/fish_001_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c88d5e49e5236e048ec8a6fe21e81c7a6e43b278 --- /dev/null +++ b/features/optical_flow/fish_001_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b026fc44966201fdc50a7de188a7148adec469a3ccafb68bbfd168a40c9db5e5 +size 835 diff --git a/features/optical_flow/fish_002_aug_flip_flow.npz b/features/optical_flow/fish_002_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7201dd1cf5fc5a8498f1bb6f067d0bb1474882f0 --- /dev/null +++ b/features/optical_flow/fish_002_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb92975b909d9a64b51466f8498a96fa3d8ec4bc141e046ebb89ad8459040f4e +size 1107 diff --git a/features/optical_flow/fish_002_aug_rotate_flow.npz b/features/optical_flow/fish_002_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..bccbecfa955be5f488632adc476109ae02b51960 --- /dev/null +++ b/features/optical_flow/fish_002_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b70a49c576ee7c44815fe66a5dd55f48c56e2f67a38835e56f33054d911b45e6 +size 1093 diff --git a/features/optical_flow/fish_002_flow.npz b/features/optical_flow/fish_002_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a020601d1e3477db90bbab79646850623cd46b4b --- /dev/null +++ b/features/optical_flow/fish_002_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ecc4471d04298dfaa6b5285451c9156cbb0f5f7f31771d124ccfa849edc95f +size 1106 diff --git a/features/optical_flow/fish_003_aug_flip_flow.npz b/features/optical_flow/fish_003_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c2b80c8b9e99c799e13f5e2acdd9715202d1ff02 --- /dev/null +++ b/features/optical_flow/fish_003_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbb63c617f5186d7c7a948fdadd1ffcf076be1c9cd5e49a0f8fb8f326690163 +size 1020 diff --git a/features/optical_flow/fish_003_aug_rotate_flow.npz b/features/optical_flow/fish_003_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c3f5c826b1aad707d0185bd9887315fc0283ce3a --- /dev/null +++ b/features/optical_flow/fish_003_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57bd9e59210bd4d9fb94ba24b6bf95058bcd6aced4149bb9a7c4d96b394c9a22 +size 1009 diff --git a/features/optical_flow/fish_003_flow.npz b/features/optical_flow/fish_003_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3f4913ae02fd09996b7cf5e6dd7fe334ec894535 --- /dev/null +++ b/features/optical_flow/fish_003_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8be2f5fb8dad1d8a206af6106d1fb62776b35c6d23ba459ba4063bc3ab1c3e +size 1021 diff --git a/features/optical_flow/fish_004_aug_flip_flow.npz b/features/optical_flow/fish_004_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..530dbb167d530d5d00962cab1355a68f6b39b044 --- /dev/null +++ b/features/optical_flow/fish_004_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f552961caa29939f44fbdb2a1f8aa9cef2200166f72cdab282c9dc18dbab76aa +size 893 diff --git a/features/optical_flow/fish_004_flow.npz b/features/optical_flow/fish_004_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..71d38692da5c216919f9b6d2c1a1fba801fa626e --- /dev/null +++ b/features/optical_flow/fish_004_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36067f630118ad8a76237040dbece79789ba2cf6f943014d9588ff9cef6b349f +size 895 diff --git a/features/optical_flow/fish_005_aug_flip_flow.npz b/features/optical_flow/fish_005_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e753777679fbe733a945f563603a7bea2468ea77 --- /dev/null +++ b/features/optical_flow/fish_005_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc76ac34b22e293b5e4bcbb1da910dc45eb415b3f81b4ce4dab0737a544c4429 +size 539 diff --git a/features/optical_flow/fish_005_aug_rotate_flow.npz b/features/optical_flow/fish_005_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1882bd3579372ff9a1931594e9b46d203c6a06cf --- /dev/null +++ b/features/optical_flow/fish_005_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4054219cde56e6b4899851811e70b3df46b77df282261fe1be798198c180af +size 539 diff --git a/features/optical_flow/fish_005_flow.npz b/features/optical_flow/fish_005_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7dcd506ef833b8a68849067586f1af8a84a2e2e5 --- /dev/null +++ b/features/optical_flow/fish_005_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:559b3e1905e9c6e62b7afb774dc84b9e15a422e0375eb99db94b716aab9064bc +size 539 diff --git a/features/optical_flow/fish_006_aug_shift_flow.npz b/features/optical_flow/fish_006_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7a22ced53411fc50fe8f7d641c522014575f28b3 --- /dev/null +++ b/features/optical_flow/fish_006_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ca89b6c5398db5ecdd75025a3f10d67fbfcf35338d783a2c1460ab876ea3a6 +size 687 diff --git a/features/optical_flow/fish_006_flow.npz b/features/optical_flow/fish_006_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c045d760f95193d73c55a72d597786f52764f894 --- /dev/null +++ b/features/optical_flow/fish_006_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60cf7246b94a94d9380207362ad8aabd4bbbd59f459e788bf7e5007ce0be52e +size 686 diff --git a/features/optical_flow/fish_007_aug_flip_flow.npz b/features/optical_flow/fish_007_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5018baf0068d682a400884647efb5552efa2926f --- /dev/null +++ b/features/optical_flow/fish_007_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4288ed9d54159dd9cf1d9de94d5a5066a74e0970ac3af29db42bfe91f7d88742 +size 811 diff --git a/features/optical_flow/fish_007_aug_rotate_flow.npz b/features/optical_flow/fish_007_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..153a0a18774dd4a6cc25cdf5ec7dad58a91c6049 --- /dev/null +++ b/features/optical_flow/fish_007_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a31332ebaa7a306a2b72d66d92672757a9d4b4a4172b5e5419bda155c88942d +size 814 diff --git a/features/optical_flow/fish_007_aug_shift_flow.npz b/features/optical_flow/fish_007_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..aacca498f7214e017f174bd585a4cdec0389b2e4 --- /dev/null +++ b/features/optical_flow/fish_007_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be681fb5ed4afdd19a70a6d82a51db9db89c196ab1935a7fc66720edc9f40668 +size 799 diff --git a/features/optical_flow/fish_007_flow.npz b/features/optical_flow/fish_007_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..aa1700c7b1497b8d80d25dac2b0bb0505c28e193 --- /dev/null +++ b/features/optical_flow/fish_007_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854eb06fb2f634e6443e047aee4d843b970e4e5594f3cb226747c37bf9bce120 +size 811 diff --git a/features/optical_flow/fish_008_aug_flip_flow.npz b/features/optical_flow/fish_008_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d18f63f409f3cc7b0897817d060bf38e18159d8f --- /dev/null +++ b/features/optical_flow/fish_008_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c906a6150844cc575817c537fa8b43c167a147abd2147a0141cdf956bf0b09f +size 1681 diff --git a/features/optical_flow/fish_008_aug_shift_flow.npz b/features/optical_flow/fish_008_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9608551d350d19a154315fb0eb58c84802028bce --- /dev/null +++ b/features/optical_flow/fish_008_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe894ca76d480eeacdaec78fbeb6245ec20c95a849d9040619907bf140c9761b +size 1642 diff --git a/features/optical_flow/fish_008_flow.npz b/features/optical_flow/fish_008_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8f9657fabd5198438338b4e4a32e969dc7fffacf --- /dev/null +++ b/features/optical_flow/fish_008_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7845800f0a5fb75f6f103cd7e28b496eb76da874ecb3a6fc34699bea6081d524 +size 1688 diff --git a/features/optical_flow/fish_009_aug_rotate_flow.npz b/features/optical_flow/fish_009_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a4b72db0e9cb6fc541adf73755248e7011d995f2 --- /dev/null +++ b/features/optical_flow/fish_009_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f34eb13ed3f6f6557c33a380e83058c08588c5bd2faae20ec6b37c71a7ac50 +size 1777 diff --git a/features/optical_flow/fish_009_aug_shift_flow.npz b/features/optical_flow/fish_009_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..141068ce3ff08ca6bc89681d2f78d2df89ae296f --- /dev/null +++ b/features/optical_flow/fish_009_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a574ef76d882cd7b69e300cb7a3e4a2d586f997050cc97b83a7d9109632b713b +size 1759 diff --git a/features/optical_flow/fish_009_flow.npz b/features/optical_flow/fish_009_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..414e26d53a5f627faf1e0d718cdd6d752e2a6232 --- /dev/null +++ b/features/optical_flow/fish_009_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3292e4bcfe08711d15b99b7bef115f0253b750846fe89728b676e42f13fab153 +size 1794 diff --git a/features/optical_flow/fish_010_aug_rotate_flow.npz b/features/optical_flow/fish_010_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1ae41f0ea520bc1cff02bcb2114517eef4427aff --- /dev/null +++ b/features/optical_flow/fish_010_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53e1b0e97eef020168a5e78dea1eb1403cb8cb55c379a0f490f016ef506fefe +size 1433 diff --git a/features/optical_flow/fish_010_aug_shift_flow.npz b/features/optical_flow/fish_010_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ef773ab9c7f7dfac73e7ac03a0a6c857cbdcfba3 --- /dev/null +++ b/features/optical_flow/fish_010_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b616548472dc6d1480183160f11a695f50b55805b7a152d9b12c8916db2b1c +size 1423 diff --git a/features/optical_flow/fish_010_flow.npz b/features/optical_flow/fish_010_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4c3606ee445b473875a12ed12cf5ee324b2cd1a6 --- /dev/null +++ b/features/optical_flow/fish_010_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09dd1f88d491f739779beb7a2fe964d60a2d863591ba0ce468667f22d916fa1 +size 1437 diff --git a/features/optical_flow/fish_011_aug_flip_flow.npz b/features/optical_flow/fish_011_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..25c0f290a529499eb3863b0720e7cb24dc683da7 --- /dev/null +++ b/features/optical_flow/fish_011_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35507f9d2a858cabd9d8c4eda8c978a70938e7176eb3e826e7b01f8aea80125 +size 1446 diff --git a/features/optical_flow/fish_011_aug_shift_flow.npz b/features/optical_flow/fish_011_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d8fcc0b90969d085e1e7b1cdc2ad18f743bb038d --- /dev/null +++ b/features/optical_flow/fish_011_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315c34e7f0d7817da47f18341ff4139ddea8202b64a0144b6f68ff726735dd42 +size 1426 diff --git a/features/optical_flow/fish_011_flow.npz b/features/optical_flow/fish_011_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2d2385a04715bb36779405d33ee047ef4cd4e740 --- /dev/null +++ b/features/optical_flow/fish_011_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5e903ebf2a63eb60517048ed676fe6e776a2f651891107bbfa60a713c56acc +size 1436 diff --git a/features/optical_flow/fish_012_aug_flip_flow.npz b/features/optical_flow/fish_012_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f49f139e0a710a8e3152e9a0f95bdd7e8c7b31c3 --- /dev/null +++ b/features/optical_flow/fish_012_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8757d475a7710e484c810c3d6530c978013c20bae0e063ebfa922bccfc6d659 +size 893 diff --git a/features/optical_flow/fish_012_flow.npz b/features/optical_flow/fish_012_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f435a390e26bfe29e2a341d80e21b9e3b920fb3a --- /dev/null +++ b/features/optical_flow/fish_012_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e8bbf962b38e60b4375836310bf5ea9519dfdb615b665fceedd43b4c92b667 +size 893 diff --git a/features/optical_flow/fish_013_aug_rotate_flow.npz b/features/optical_flow/fish_013_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7fdc4e07bff8d2fcd4aff6f4a0291ea567b91607 --- /dev/null +++ b/features/optical_flow/fish_013_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9155035782e2a274449de0c4277b76f28ce2196e077d898e7e13c6a33c07e59e +size 956 diff --git a/features/optical_flow/fish_013_flow.npz b/features/optical_flow/fish_013_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..dacfe97e394f49a7418e31bb8bdf119e2df6a528 --- /dev/null +++ b/features/optical_flow/fish_013_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52c239bc57331ef9ddf4585c4302ba52fc398e06b131377895d56d190d57c66 +size 950 diff --git a/features/optical_flow/fish_014_aug_flip_flow.npz b/features/optical_flow/fish_014_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..42e2673c48f5475c427a0d0a236e6b2b5f5a1dfb --- /dev/null +++ b/features/optical_flow/fish_014_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0de6e894f0007d679e013c36949cb1c4cf0e5c561ba581e6c2860648206a60 +size 1954 diff --git a/features/optical_flow/fish_014_aug_rotate_flow.npz b/features/optical_flow/fish_014_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2c31bd5609f5be82c0f1c7134098ddfef8089f9f --- /dev/null +++ b/features/optical_flow/fish_014_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f2f72316e78a7cfa9301d6ddb0910df3a202eba6790950bb82f56b569cb17e +size 1914 diff --git a/features/optical_flow/fish_014_flow.npz b/features/optical_flow/fish_014_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ef795977cbad5d6b6c94204f6386d20aa7c0e0c7 --- /dev/null +++ b/features/optical_flow/fish_014_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf5211cb54a86dd12dc76c84b025acfb4580163ee0390a0e93a475f31e5e3d7 +size 1964 diff --git a/features/optical_flow/fish_015_aug_rotate_flow.npz b/features/optical_flow/fish_015_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6a7c5e87177b6f22287e92eb77f980ebb11d8acf --- /dev/null +++ b/features/optical_flow/fish_015_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182aedd1482a3150d04073e648a1c31e5a3c0b93f2a296b4c72f9de8dbeb2e77 +size 1892 diff --git a/features/optical_flow/fish_015_aug_shift_flow.npz b/features/optical_flow/fish_015_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..636e06da730b27161fb0bded45e8a1fa8e96126a --- /dev/null +++ b/features/optical_flow/fish_015_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea6f6ac966a99d27480d1faf8846e24cc18df2a00f752e8e9098edf60f04dc5 +size 1868 diff --git a/features/optical_flow/fish_015_flow.npz b/features/optical_flow/fish_015_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4fb9b66a6568587759dcd0b3c12530837e7a09f4 --- /dev/null +++ b/features/optical_flow/fish_015_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3003b1339b8cc7f3ec40195768dc94881298453f611305ca5bfbea7f46b3ed +size 1906 diff --git a/features/optical_flow/fish_016_flow.npz b/features/optical_flow/fish_016_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d948a9fb3b54703283da74c706e6c51854134300 --- /dev/null +++ b/features/optical_flow/fish_016_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a0d1ba774649af87332058afa5e8157cc18fd5b7255c587919a3f8e9682772 +size 1123 diff --git a/features/optical_flow/fish_017_aug_shift_flow.npz b/features/optical_flow/fish_017_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..137b26cd66fd18d7d34abf2775ded757a2666dc8 --- /dev/null +++ b/features/optical_flow/fish_017_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b369bcf513d03b931f03463d04a8558ee885bdbc3f9a27598c4b84be6a6c42 +size 826 diff --git a/features/optical_flow/fish_017_flow.npz b/features/optical_flow/fish_017_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..730587866b1b8a164a2da4d3e761ea6ca6e88d1e --- /dev/null +++ b/features/optical_flow/fish_017_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5759e9b402e99878feaa12cf45cc7c66dab0d42de5888cc6485dd48d84bd9c78 +size 832 diff --git a/features/optical_flow/fish_018_aug_flip_flow.npz b/features/optical_flow/fish_018_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e0b5e936085981fc30304a3ae91db63c9fcbcb39 --- /dev/null +++ b/features/optical_flow/fish_018_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440f82bcb00170ae3daa6fb9f5867ac94e3e2fc1f553a3b8b937dbf5789a2d60 +size 1036 diff --git a/features/optical_flow/fish_018_aug_rotate_flow.npz b/features/optical_flow/fish_018_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4d21a92ad31e4d3cd6dde7d81c4ec0ec41bf2428 --- /dev/null +++ b/features/optical_flow/fish_018_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1226e96afa56c70ec8e698fd85695e8ee1087ec4342b3c12e06ee58501e254 +size 1026 diff --git a/features/optical_flow/fish_018_aug_shift_flow.npz b/features/optical_flow/fish_018_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6231548ffa85d12111623daca4629c9a0fa98ab1 --- /dev/null +++ b/features/optical_flow/fish_018_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e0238d06a1335f91e45eeff04ab9eea5123969b4e84d8b8a530b751e6ef919 +size 1021 diff --git a/features/optical_flow/fish_018_flow.npz b/features/optical_flow/fish_018_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3852abda1026a37fe879e13e6bf61fc8f73c2186 --- /dev/null +++ b/features/optical_flow/fish_018_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048e54369ea32555363b494b989afe2bcc4e61f30e4d6f008606ad7b76d3ebda +size 1033 diff --git a/features/optical_flow/fish_019_aug_flip_flow.npz b/features/optical_flow/fish_019_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c45c6d53e6ad595be07a072faa142ce560d6f6f9 --- /dev/null +++ b/features/optical_flow/fish_019_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fafe0e481dcdf11a7fbd8585e3fce8bc5bb4008a2c17e1e8e055f8f0a3d3d938 +size 1128 diff --git a/features/optical_flow/fish_019_aug_rotate_flow.npz b/features/optical_flow/fish_019_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fc5704dc689d6779c34a4f20bc8a8edcfbccdf48 --- /dev/null +++ b/features/optical_flow/fish_019_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6282bcbf28aa60dbf89a8760624ba1c4c8d4fca3e79020de87448f7c7c2b0a +size 1121 diff --git a/features/optical_flow/fish_019_aug_shift_flow.npz b/features/optical_flow/fish_019_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..539a5f7cc0eafc7c7c628c479c0cb954338c231e --- /dev/null +++ b/features/optical_flow/fish_019_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6131e07bfbea772b59a679784a99142a872b080aa9c1e9828e56d5981b30b09c +size 1102 diff --git a/features/optical_flow/fish_019_flow.npz b/features/optical_flow/fish_019_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1bc605ff4d6760cbfc78e96a69d5046b204403c0 --- /dev/null +++ b/features/optical_flow/fish_019_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffef25f423bf40e345c412132b6d384cd03a4a69d64798ba6c06cbd554cff90 +size 1127 diff --git a/features/optical_flow/fish_020_aug_flip_flow.npz b/features/optical_flow/fish_020_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9004fa023754e66f12967badb9bd374bd5e3c91d --- /dev/null +++ b/features/optical_flow/fish_020_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d50140c9149367e6f220f71fb63628ac8452b45a1f5871f6d34f93ce0cb1e19 +size 714 diff --git a/features/optical_flow/fish_020_aug_rotate_flow.npz b/features/optical_flow/fish_020_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3e7f2c735c5a99c496c09c2a984b40e987bbdc10 --- /dev/null +++ b/features/optical_flow/fish_020_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb93318edc0c3b194caaca2891a56db551719e33aa0b4db6ee8b649915841c46 +size 738 diff --git a/features/optical_flow/fish_020_flow.npz b/features/optical_flow/fish_020_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6b5c2b722c6388dd3769a7da3289b296f9eca580 --- /dev/null +++ b/features/optical_flow/fish_020_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99481e946532ab3c6a26bf3f45c94d0210e594145c6e64f440e053583817517 +size 731 diff --git a/features/optical_flow/fish_021_aug_flip_flow.npz b/features/optical_flow/fish_021_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..87a0003101d1cc369fd68d4f90091063e14226dd --- /dev/null +++ b/features/optical_flow/fish_021_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee0e400d38655444e3d8fd9ab1f6689fd948a76e14cba75a77ef084d413db94 +size 496 diff --git a/features/optical_flow/fish_021_aug_shift_flow.npz b/features/optical_flow/fish_021_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..51b0c71ba002bdae48433f12686a637cbf70797f --- /dev/null +++ b/features/optical_flow/fish_021_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668539cb12e536d49a923c83e3e4e1c242fac8e0eea848283094696f9ebac928 +size 499 diff --git a/features/optical_flow/fish_021_flow.npz b/features/optical_flow/fish_021_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a1c84b5c44f410c077680451ba7108f063bab333 --- /dev/null +++ b/features/optical_flow/fish_021_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8715bb5fe29fbfed457cf3d53843f96dd23ce45d91876e6e362f6631dfc2a26 +size 495 diff --git a/features/optical_flow/fish_022_aug_flip_flow.npz b/features/optical_flow/fish_022_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..95c36f5814c497936f277439d43b07add87af946 --- /dev/null +++ b/features/optical_flow/fish_022_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d187e3d43a9228286565ddac8fc94f9110f3e269127c01df50e6afbabc4a01ee +size 415 diff --git a/features/optical_flow/fish_022_aug_rotate_flow.npz b/features/optical_flow/fish_022_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..baed22de4ee1737042c3bf02168b27d65322d647 --- /dev/null +++ b/features/optical_flow/fish_022_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbb4d3a3b6fa92a01ea420436d45f4f9af45b61c7f0bf2c4e0114b3ffc6968f +size 413 diff --git a/features/optical_flow/fish_022_flow.npz b/features/optical_flow/fish_022_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b77fd46bd170cf5c9ce99434a5f25c0072a7d9e9 --- /dev/null +++ b/features/optical_flow/fish_022_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408fc97a69da12e6a31dbb668154356a9ec618a134d2e35abd8a810ebd567a96 +size 415 diff --git a/features/optical_flow/fish_023_aug_flip_flow.npz b/features/optical_flow/fish_023_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fb2201012d368a453787e4738a3a9bebd83d1aae --- /dev/null +++ b/features/optical_flow/fish_023_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b262790351f2d70a33d249a6a940e54f724991d7a8456a1ac965705a090e180f +size 793 diff --git a/features/optical_flow/fish_023_aug_shift_flow.npz b/features/optical_flow/fish_023_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..bc3ea332ba4c702d244b9efd1995a9beb20cdda5 --- /dev/null +++ b/features/optical_flow/fish_023_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bacf25f7fc84d600518aafb43a05dab0fc2e03c09dccd1f055dff846290191f +size 795 diff --git a/features/optical_flow/fish_023_flow.npz b/features/optical_flow/fish_023_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6f2561edec9ddea462ad4654b0c11c0814c034e9 --- /dev/null +++ b/features/optical_flow/fish_023_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53094b41754e103b7e580fc4eaa2ec6215f785deff1fa0051cdadc33ccf438e +size 797 diff --git a/features/optical_flow/fish_024_aug_rotate_flow.npz b/features/optical_flow/fish_024_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..16226d4530c1dba922e04c7713c08b15b3b122ac --- /dev/null +++ b/features/optical_flow/fish_024_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab4bec5c4db62af4c30a8ae026f9633c2c404d6fd150c98b3e60f3bb76e7874 +size 825 diff --git a/features/optical_flow/fish_024_aug_shift_flow.npz b/features/optical_flow/fish_024_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..42865114299716a888e21fb9d101e83ea0cafa06 --- /dev/null +++ b/features/optical_flow/fish_024_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10118e6c4a6d081799b8d6c667ff3a8349097383a30fe1e6cec507c54193f08a +size 827 diff --git a/features/optical_flow/fish_024_flow.npz b/features/optical_flow/fish_024_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fe340f17ce6e6c19b8cc01a21f6d201bbbc7f3ca --- /dev/null +++ b/features/optical_flow/fish_024_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d4aa984cfd116f873eea225fcd8d37e9f73a2eb14037efe56b96467b6df307 +size 833 diff --git a/features/optical_flow/fish_025_aug_flip_flow.npz b/features/optical_flow/fish_025_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b4cd8b280a1cffafb39fc194f243183b9b043f74 --- /dev/null +++ b/features/optical_flow/fish_025_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506a79630a7e5d251add24c5a8b0d6fe8fcd7351915d2666df92e98e0e87fb13 +size 749 diff --git a/features/optical_flow/fish_025_aug_shift_flow.npz b/features/optical_flow/fish_025_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..66a1283dc469b4c0622747e080189ea1fdbdb549 --- /dev/null +++ b/features/optical_flow/fish_025_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ae15545275c941e3cca6794fbf4dcefbfaf03ee0ae8b9e6eb1e55088f9db4c +size 746 diff --git a/features/optical_flow/fish_025_flow.npz b/features/optical_flow/fish_025_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cd97bdc5a85233cdcb5ad5fc362819672a059be7 --- /dev/null +++ b/features/optical_flow/fish_025_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6998531a3513165350db24bce8a2547c2cefe0f6d024a12b4923c77aaf2e60 +size 749 diff --git a/features/optical_flow/fish_026_aug_shift_flow.npz b/features/optical_flow/fish_026_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fdc1d0fc45eb0d5f7470891f0f5a516d0daffa14 --- /dev/null +++ b/features/optical_flow/fish_026_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08108e0488052675d234927c9a3f076851bcf20dcacb5f668f4f8d7b53d76435 +size 1252 diff --git a/features/optical_flow/fish_026_flow.npz b/features/optical_flow/fish_026_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a38079e65e5837e524773f64e5c3a003ec5dfbe4 --- /dev/null +++ b/features/optical_flow/fish_026_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db4993e523374db632e331675178da86fbeaf431b2ee8a5e0db4e1e99eb19a2 +size 1285 diff --git a/features/optical_flow/fish_027_aug_flip_flow.npz b/features/optical_flow/fish_027_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..01dca69e842590448311b2119d65d2414b33f365 --- /dev/null +++ b/features/optical_flow/fish_027_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b31758b47aa343a508392d61530a7fdecdc79bcb2076838c7c7806a7a1ed2de5 +size 1412 diff --git a/features/optical_flow/fish_027_aug_shift_flow.npz b/features/optical_flow/fish_027_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8e5a9a2b83669b5118c3488dfee14a56016664c3 --- /dev/null +++ b/features/optical_flow/fish_027_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bbf498760bdad607c4463cc1c010630d6553b3295a3b92873dbe76837ed642 +size 1390 diff --git a/features/optical_flow/fish_027_flow.npz b/features/optical_flow/fish_027_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..10fa2c643bd2a345eef72bc2404ef205b0f4a161 --- /dev/null +++ b/features/optical_flow/fish_027_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538dbecbbfe1040d7bd8ddf91a2fa701c955baa57067759c36b5b1b10f10762f +size 1412 diff --git a/features/optical_flow/fish_028_aug_flip_flow.npz b/features/optical_flow/fish_028_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..06ebff8b7eacbb29786188c612b084d4f150d013 --- /dev/null +++ b/features/optical_flow/fish_028_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2efd91d2926940b0ded23b9fec46b840e800c64ffeea7bda57bb2f201d35c05 +size 1058 diff --git a/features/optical_flow/fish_028_aug_shift_flow.npz b/features/optical_flow/fish_028_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c7302d6641cd887e91bffe7bde09bea6f0319c9e --- /dev/null +++ b/features/optical_flow/fish_028_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184e0567e543036ad218a5829947428ef2085ea935063cee07fc5c7d930f8da7 +size 1038 diff --git a/features/optical_flow/fish_028_flow.npz b/features/optical_flow/fish_028_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e1ea6d36db026326696ad378f35b082eb87b6078 --- /dev/null +++ b/features/optical_flow/fish_028_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def6cf2b04496bd228aabb50804dfa70068e5189efc66d06c54eed99c2428684 +size 1060 diff --git a/features/optical_flow/fish_029_flow.npz b/features/optical_flow/fish_029_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2e64f0f7a739c137087d268aec32c5639e30cec2 --- /dev/null +++ b/features/optical_flow/fish_029_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0d1f6d7e5bb21135f12f2ca707841c55710a019a1e8514e9564fe6e8f3e5d9 +size 2058 diff --git a/features/optical_flow/fish_030_aug_rotate_flow.npz b/features/optical_flow/fish_030_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..298ec5120a1772eacda871d1e2635c48566d882a --- /dev/null +++ b/features/optical_flow/fish_030_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d663bce6863cf7a505c0e957c170d6a80d0995a635c6a74e5fcb9b5e0d2c6727 +size 1106 diff --git a/features/optical_flow/fish_030_aug_shift_flow.npz b/features/optical_flow/fish_030_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..64be6fc9f1696ac49087a1215a04318868a41fd5 --- /dev/null +++ b/features/optical_flow/fish_030_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c9bc340494a77fcc47f5efeb7d3aeccd22604cda808ff9fddf55fd96acf28c +size 1090 diff --git a/features/optical_flow/fish_030_flow.npz b/features/optical_flow/fish_030_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ee5d5913e54844cf28be2aacbd98e2b384e9bfce --- /dev/null +++ b/features/optical_flow/fish_030_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2843d4c5ab04ae8a3575cd84f95d4484c2ef99d11a981351e6840b40e526a17a +size 1119 diff --git a/features/optical_flow/fish_031_aug_flip_flow.npz b/features/optical_flow/fish_031_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0b74e2a2853cbd035d20ad8b3a0dd9c5b76c6505 --- /dev/null +++ b/features/optical_flow/fish_031_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25094d1d4339fe4cf177b5e067b8790f52d072aefae65943462bd0185d2aa214 +size 1338 diff --git a/features/optical_flow/fish_031_aug_rotate_flow.npz b/features/optical_flow/fish_031_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8992bb5618bf62d18b6516c5160c868841ad1c91 --- /dev/null +++ b/features/optical_flow/fish_031_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a1ab0cb5f56f15434c279780b6af4b614925871ec6911a666563958800f141 +size 1312 diff --git a/features/optical_flow/fish_031_flow.npz b/features/optical_flow/fish_031_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9a6521946f3815873c450390c95075c6c3e9d6e4 --- /dev/null +++ b/features/optical_flow/fish_031_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359d819cd1bf17fba7b4569ad837642cdf80b8d6000211f1368af5f73b1e16bd +size 1333 diff --git a/features/optical_flow/fish_032_aug_flip_flow.npz b/features/optical_flow/fish_032_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ae47871bfee05a70a6c1930e5bf3a82a332aa985 --- /dev/null +++ b/features/optical_flow/fish_032_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f4a00dee014e2a6c12b8aafe52406b9e88e9af950edeb61be0d051f4130718 +size 873 diff --git a/features/optical_flow/fish_032_flow.npz b/features/optical_flow/fish_032_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e04af5bbd3fac715d5208665a533d6b43e624ba7 --- /dev/null +++ b/features/optical_flow/fish_032_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c659fb14ef7ca21cc3fcb429ac64bcdae67c6a0fe954ebd7e0acccb94da7cf18 +size 875 diff --git a/features/optical_flow/fish_033_aug_rotate_flow.npz b/features/optical_flow/fish_033_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1ae4ae88862c835de4d89e1364819b124b7cef80 --- /dev/null +++ b/features/optical_flow/fish_033_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86615df8c0324afe8a5573bb1b46000fca909908e2e8787183e4c1a7e07ecf7a +size 730 diff --git a/features/optical_flow/fish_033_aug_shift_flow.npz b/features/optical_flow/fish_033_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7ece384b2473c509064a2006912eacc753aabcc0 --- /dev/null +++ b/features/optical_flow/fish_033_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3651c397a3f779403a3ce050987c155f1f3142599bf6bbc1ab5bbac0f29198 +size 724 diff --git a/features/optical_flow/fish_033_flow.npz b/features/optical_flow/fish_033_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0aa3974824f57715a61ffd8a4ad91e9221779f3b --- /dev/null +++ b/features/optical_flow/fish_033_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5f5d1530bcb6fc5e5dba9817c319ab92e2ac39296ffef24792d1a283291bce +size 729 diff --git a/features/optical_flow/fish_034_aug_rotate_flow.npz b/features/optical_flow/fish_034_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e7b78461a920e6bfcc629c74c5eae20fed75208d --- /dev/null +++ b/features/optical_flow/fish_034_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d0cbdde833e22d3dd32eab8e75d29de54c22a80edfe44dde693bad47c39ca6 +size 666 diff --git a/features/optical_flow/fish_034_aug_shift_flow.npz b/features/optical_flow/fish_034_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..79a743a53cab881657f1a4c712823d967b92f089 --- /dev/null +++ b/features/optical_flow/fish_034_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a3d9d7b12a53c8bcad82caa6c96a34bcff891887d5d2f5eb3c8079a40723726 +size 665 diff --git a/features/optical_flow/fish_034_flow.npz b/features/optical_flow/fish_034_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..09dd4be9fc87352b7d27db49e0b36f8f386082fd --- /dev/null +++ b/features/optical_flow/fish_034_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd47c7f1e30dc345fb6e7826366b2afc36fe0ae89ae525a1c6fd8e33c1707d5 +size 664 diff --git a/features/optical_flow/fish_035_aug_rotate_flow.npz b/features/optical_flow/fish_035_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8680c6cb9eb300b58db73e1124f35a736891fa11 --- /dev/null +++ b/features/optical_flow/fish_035_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad9f1b3c7428db22fb59d82a92d662961f2dae66d38affeef1e507d66bcbe97 +size 1783 diff --git a/features/optical_flow/fish_035_aug_shift_flow.npz b/features/optical_flow/fish_035_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..60fe8c79eb95a56d21dae5972142138ae903c1b2 --- /dev/null +++ b/features/optical_flow/fish_035_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c67a3703d93447059639b67846bc5090c59eabeb4ac720ba80a817b3d304d7f +size 1771 diff --git a/features/optical_flow/fish_035_flow.npz b/features/optical_flow/fish_035_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..eed5e3cdea49b467ce8919cd9c08508cc5c74d10 --- /dev/null +++ b/features/optical_flow/fish_035_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cb33d0118ee5735798f33ea4cdec925d3c08566328511602000bce84d63de9 +size 1812 diff --git a/features/optical_flow/fish_036_aug_rotate_flow.npz b/features/optical_flow/fish_036_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c65cc016fec2058626e9107a61cbd515f77595f4 --- /dev/null +++ b/features/optical_flow/fish_036_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c142f344f533e95458a614c080f6df0da6e2e8bd7b75be715c2cb0d9787ff9 +size 726 diff --git a/features/optical_flow/fish_036_aug_shift_flow.npz b/features/optical_flow/fish_036_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..229cd26ca0579091f58d4379530f30a0d8552dc1 --- /dev/null +++ b/features/optical_flow/fish_036_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5889e0809d2f87fc1e1f5cc1261596688a1e58b3375cc252fc437fe63666d4 +size 727 diff --git a/features/optical_flow/fish_036_flow.npz b/features/optical_flow/fish_036_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ce232c090f5aed2744fd1f8b35f292c4ae33ddd9 --- /dev/null +++ b/features/optical_flow/fish_036_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166ecef90d1f9c6875dd953536e5cec992f1a46c200c09e978b79b13b5a863f2 +size 724 diff --git a/features/optical_flow/fish_037_aug_flip_flow.npz b/features/optical_flow/fish_037_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9a68319fd8b76225df0a8b42591df62c4ecfaf51 --- /dev/null +++ b/features/optical_flow/fish_037_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67952008fdcb2d9c640e19e70a6e219d9b7dd2cd509e741a9d1b5d54efe11d1d +size 625 diff --git a/features/optical_flow/fish_037_aug_rotate_flow.npz b/features/optical_flow/fish_037_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8733900efb9a1851eb5d15fec5dfd3d91d441bba --- /dev/null +++ b/features/optical_flow/fish_037_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4814e9487ed34f37e309ab1f9bd402b309a931b201add7450829a90a529bcc60 +size 620 diff --git a/features/optical_flow/fish_037_aug_shift_flow.npz b/features/optical_flow/fish_037_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..89bfb12686f202b3534ee64dc989b8e732ef7dfd --- /dev/null +++ b/features/optical_flow/fish_037_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b3ad4ac5beaaf318aeb9a1a364949b9e6c6638c70539402f638d389a71d375 +size 622 diff --git a/features/optical_flow/fish_037_flow.npz b/features/optical_flow/fish_037_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5fe1f6e7192cfc0bfce441c25fdd790ec52278d7 --- /dev/null +++ b/features/optical_flow/fish_037_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485982d2c17173029c7f0d9ad67e516134dffdd05e173f444d2e3d8e44eb7977 +size 622 diff --git a/features/optical_flow/like_001_aug_flip_flow.npz b/features/optical_flow/like_001_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..833182166a1a8abeb54e1e31502e872ca0313734 --- /dev/null +++ b/features/optical_flow/like_001_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0904196545009608e49100db44357f7e06e0da3da35110a97a84465270d6df7b +size 999 diff --git a/features/optical_flow/like_001_aug_rotate_flow.npz b/features/optical_flow/like_001_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..62657df373e2a9bd9d7853bdd0be1839ecc39b02 --- /dev/null +++ b/features/optical_flow/like_001_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:490dee85552b7331cee54b6658f1925314f0075ecd423abc699e4a3d92b041a8 +size 992 diff --git a/features/optical_flow/like_001_flow.npz b/features/optical_flow/like_001_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..83632ee2dade7d6ce19e08f7f6451aa137736579 --- /dev/null +++ b/features/optical_flow/like_001_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26056d95dcb8b6920b14d12c7e43b117b3fb5c5ba4d3d189a019095ca8e50960 +size 1000 diff --git a/features/optical_flow/like_002_aug_shift_flow.npz b/features/optical_flow/like_002_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b09561ac44df17bdba4bd5191a69d9d9d4a01387 --- /dev/null +++ b/features/optical_flow/like_002_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f463142b62b9bcd3461f9dd76bc485f8fc40984968cb91264f493135d1d4d86a +size 1467 diff --git a/features/optical_flow/like_002_flow.npz b/features/optical_flow/like_002_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a9c68af6da5936efe931e11439068eb74689e1ae --- /dev/null +++ b/features/optical_flow/like_002_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fd3e3cea2cf8d1481a1aa7b0a5020cafb2cc7960661a25ee8d6b79b6fdf459 +size 1517 diff --git a/features/optical_flow/like_003_aug_flip_flow.npz b/features/optical_flow/like_003_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..53ee723aa4d1efa952253b0a91b6c2c23829e08c --- /dev/null +++ b/features/optical_flow/like_003_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049f88c4355ecb6cda16da2a7a06f74dc3d339bd999e780d6306674fd3054cb +size 1481 diff --git a/features/optical_flow/like_003_aug_rotate_flow.npz b/features/optical_flow/like_003_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b96fc5347a5c1ac0a819c665912b591e52621adb --- /dev/null +++ b/features/optical_flow/like_003_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e68ff2e5fc334a55cdcefcf9bda6de6476d92c4b5d8d32ca055399c453efcd3 +size 1454 diff --git a/features/optical_flow/like_003_flow.npz b/features/optical_flow/like_003_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..78b47b1f13ed1ba990fd3b3e045961f9ce857cde --- /dev/null +++ b/features/optical_flow/like_003_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad8607022a7044d16dd488e08761cdbbc1e224f6be7e9048b70364dec191797 +size 1482 diff --git a/features/optical_flow/like_004_aug_shift_flow.npz b/features/optical_flow/like_004_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..27279ff4a79b0773aa4f9e6d15ee2ece7ce61a21 --- /dev/null +++ b/features/optical_flow/like_004_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0350f762c249c297dbbfec46551b942c2af39a7b115fc94d3b658c03c92a7293 +size 804 diff --git a/features/optical_flow/like_004_flow.npz b/features/optical_flow/like_004_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a7595f9687967e982d2dd449e2d19c4c7f7d26ba --- /dev/null +++ b/features/optical_flow/like_004_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec81dd47fc8e6d81b93039f4001e73ab8d779a49b3752ef55c3bf95966864cc1 +size 811 diff --git a/features/optical_flow/like_005_aug_flip_flow.npz b/features/optical_flow/like_005_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..072737cfab804d9e46c1ff5b80b47563d0af877d --- /dev/null +++ b/features/optical_flow/like_005_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa02b5d629331a178bc3563d14c13269edbb24735667bcac2c46b8e0772c5816 +size 728 diff --git a/features/optical_flow/like_005_aug_rotate_flow.npz b/features/optical_flow/like_005_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..575e2df752450d459b4989fbfebf6217953bae58 --- /dev/null +++ b/features/optical_flow/like_005_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd71c8831889f5520a5e265776e18f77d51c627e78c59b1fd23e962e120c98b1 +size 728 diff --git a/features/optical_flow/like_005_aug_shift_flow.npz b/features/optical_flow/like_005_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..701234186c43e0fd7bfdcd326cfe5c3889998e59 --- /dev/null +++ b/features/optical_flow/like_005_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b038756f7cf36175725be3ebc7584cec472e3ae73e378f9b3a4e93db9cf7dad +size 727 diff --git a/features/optical_flow/like_005_flow.npz b/features/optical_flow/like_005_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c4e28c8a266e32c3295ef5f3b6a9e194552b725a --- /dev/null +++ b/features/optical_flow/like_005_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98be77017c5a866cf8e4e885510338296ad7651a87c876cce9c0cccf68b209f +size 731 diff --git a/features/optical_flow/like_006_aug_rotate_flow.npz b/features/optical_flow/like_006_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ecb31f6ee3e79018c01a0a0923cdf31cb8a1977b --- /dev/null +++ b/features/optical_flow/like_006_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20551a79174d3f6875970e93eacb7efa31c52c43fba7f700b7f680cd6d49df5 +size 936 diff --git a/features/optical_flow/like_006_flow.npz b/features/optical_flow/like_006_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..bceea02f0659ca5dbecafa9330f98c5bb816bef7 --- /dev/null +++ b/features/optical_flow/like_006_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bc94d741d3952364591ccf74be55bbefb4d7857bcf8a18a1d65da0f9a81bdb +size 934 diff --git a/features/optical_flow/like_007_aug_flip_flow.npz b/features/optical_flow/like_007_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..96b98f4b05c28898bd0de8f9e6eeb022334c8c83 --- /dev/null +++ b/features/optical_flow/like_007_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3205d4dd8f9a9d345e1d9683decbdab358467f7ed95dae19a1ddf283e43e984c +size 995 diff --git a/features/optical_flow/like_007_aug_shift_flow.npz b/features/optical_flow/like_007_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..70bc702116a553de898b511901e66dff4ed5981b --- /dev/null +++ b/features/optical_flow/like_007_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b20519a79292e6d098147d1c35edc0f7af1d380ea9a5d43d0a5105ebfadaeb +size 979 diff --git a/features/optical_flow/like_007_flow.npz b/features/optical_flow/like_007_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5223b9f94942dcb6acdd1e2d078d07ca71fceaab --- /dev/null +++ b/features/optical_flow/like_007_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f7c161d2ae89318bbee35245433017b51b2538752dc7f010a00b1a958d6a93 +size 993 diff --git a/features/optical_flow/like_008_aug_flip_flow.npz b/features/optical_flow/like_008_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..bdb0fbd5f8a4e1bfcc64b30dfd0391836987c7a6 --- /dev/null +++ b/features/optical_flow/like_008_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e4e1b62b40906d34e1105ca041021602faacffd3b5c3df48d96853f08a755e +size 1666 diff --git a/features/optical_flow/like_008_aug_rotate_flow.npz b/features/optical_flow/like_008_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2cb2ab920785ec886dbfbe4dd89dbae2099b81ed --- /dev/null +++ b/features/optical_flow/like_008_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fcd32465fa14a1d594b9345b187d60d98656907066cea34d541e5a17531d45 +size 1648 diff --git a/features/optical_flow/like_008_aug_shift_flow.npz b/features/optical_flow/like_008_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6e323c37e0976bdc4ef02b73a4f795abcb2787ac --- /dev/null +++ b/features/optical_flow/like_008_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af235257f17c15dccdb42ac6caa78efe6b08724dde7444d5b7ca5639afc4616a +size 1649 diff --git a/features/optical_flow/like_008_flow.npz b/features/optical_flow/like_008_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..53c90f2aeb14a7655f4a6f67e676bb35678a7945 --- /dev/null +++ b/features/optical_flow/like_008_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf79cdd33292d6244cad9ba13a96b519a59d321a5d560d0f4458f96aa72bc906 +size 1646 diff --git a/features/optical_flow/like_009_aug_flip_flow.npz b/features/optical_flow/like_009_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6c03cb992bf794487d73c728c5f3bc15eed81e5a --- /dev/null +++ b/features/optical_flow/like_009_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff6964f94097c667b40d92268584346a637aa967e8ff36c8ddf8191748b3180 +size 892 diff --git a/features/optical_flow/like_009_aug_rotate_flow.npz b/features/optical_flow/like_009_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a11f0f075f14ca3c94beebf555f448a4c1793e47 --- /dev/null +++ b/features/optical_flow/like_009_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cf2ea62384ea5e71ffd8d4322ee2820f9c016980e77714332cf54e11eb10a1 +size 934 diff --git a/features/optical_flow/like_009_flow.npz b/features/optical_flow/like_009_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..46b89bc8c59fad9360b654bd104a0c0e777307d2 --- /dev/null +++ b/features/optical_flow/like_009_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c653ff8333f70d77b3e7ccf5ada9e4f205cf14b129635a5902a9b5a2a0100219 +size 888 diff --git a/features/optical_flow/like_010_aug_shift_flow.npz b/features/optical_flow/like_010_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..92186511736979b1e666584b309c432062dafd42 --- /dev/null +++ b/features/optical_flow/like_010_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476574ed4f74404803dd09a662ffb8521d464a65556293dd4e4e97faeb58de5f +size 915 diff --git a/features/optical_flow/like_010_flow.npz b/features/optical_flow/like_010_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1ef4e241e7d2753e5974fed1b9951de50d9a8145 --- /dev/null +++ b/features/optical_flow/like_010_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2f7d597ec7a3ecfee91ba82955b36997d6f37d1aea7200b7dfcb0f29cd9bda +size 938 diff --git a/features/optical_flow/like_011_aug_flip_flow.npz b/features/optical_flow/like_011_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..19b6a4839c11611f9158a1e936e143fe2203289e --- /dev/null +++ b/features/optical_flow/like_011_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43501583c8672f61eccba2573ca41bf0e3f94db8b8bcb38c551e4301f4166e4c +size 1026 diff --git a/features/optical_flow/like_011_flow.npz b/features/optical_flow/like_011_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ba57cb0e8f6b73bff162a7e843430d056be13788 --- /dev/null +++ b/features/optical_flow/like_011_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b7fbcb3484a0ac6b981a39afffa0a01059f70990c18140e1a4bf5b61409106 +size 1033 diff --git a/features/optical_flow/like_012_aug_flip_flow.npz b/features/optical_flow/like_012_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8009aa4cdd63cd3a6568806f67d30524ee325d86 --- /dev/null +++ b/features/optical_flow/like_012_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c9d55438957e4c4608f51e3a4498abf61a2d532eb2b6fe4749c3a524ccd725 +size 1133 diff --git a/features/optical_flow/like_012_flow.npz b/features/optical_flow/like_012_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..12ff116d51fa97c88600e5856cc64bdc6b3b2baf --- /dev/null +++ b/features/optical_flow/like_012_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d8efb3dca6a2e031ec3a2834c5a894d52f6828ed7648b9949e1eb56f6a804b +size 1132 diff --git a/features/optical_flow/like_013_aug_flip_flow.npz b/features/optical_flow/like_013_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b6d95363241011c9d53a8d5308168bffaf099764 --- /dev/null +++ b/features/optical_flow/like_013_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef86f9ed9b296cbcde770eed41c8dde3034455bc61b30d1eb6c679b8895ccffa +size 1495 diff --git a/features/optical_flow/like_013_flow.npz b/features/optical_flow/like_013_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..878b090b2c82bf62fb5f551c76b69e931b3bbb7f --- /dev/null +++ b/features/optical_flow/like_013_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bce3959633c1775e8145e7522b20049e0d90d8bb2e7d5fb10f7a00d754346e1 +size 1497 diff --git a/features/optical_flow/like_014_aug_flip_flow.npz b/features/optical_flow/like_014_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c28fa2d266dc3334571cc3a9cac40ff00429b07d --- /dev/null +++ b/features/optical_flow/like_014_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20537ea15585a8c5c07f1c37bec973f5a5c3a1139537da96790cc561c2bdaf3 +size 730 diff --git a/features/optical_flow/like_014_flow.npz b/features/optical_flow/like_014_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4b092545e1de66b3593f91f801e5ef4ed606ca6d --- /dev/null +++ b/features/optical_flow/like_014_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ece9eec3e43754c8932341c9854ca82588a3403d6822334c89ccb800af78b99 +size 728 diff --git a/features/optical_flow/like_015_aug_flip_flow.npz b/features/optical_flow/like_015_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ad42c505e69ff246262da9bd426565e95cee646e --- /dev/null +++ b/features/optical_flow/like_015_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e0adcdd789bdf41fb8a5c4aaeabbf43f69362a121643fb7c4511a7851d70d4 +size 647 diff --git a/features/optical_flow/like_015_aug_rotate_flow.npz b/features/optical_flow/like_015_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8a0022634c9e4b95a3a693405036cd7d5c6a20b4 --- /dev/null +++ b/features/optical_flow/like_015_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bece9403fcea038289d42d5d19ccd4dc6d4d1448db301b23ebe4615dc31d3174 +size 642 diff --git a/features/optical_flow/like_015_flow.npz b/features/optical_flow/like_015_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1c9de8035d4d872a0809c4f9e11247b8dba375a8 --- /dev/null +++ b/features/optical_flow/like_015_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef98c1b965d00ef26369c93e19a96ee3189f4dae099c6c89e5a25f3e8ec196de +size 646 diff --git a/features/optical_flow/like_016_aug_flip_flow.npz b/features/optical_flow/like_016_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..216c673508fd16f2497dcb9c8d57f34ba58e921b --- /dev/null +++ b/features/optical_flow/like_016_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e92da46f64b12516ab3d6bdf3c8bfe1cbdf2ce7b1780502f5198531fa4dac5 +size 1126 diff --git a/features/optical_flow/like_016_aug_rotate_flow.npz b/features/optical_flow/like_016_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..dd90d9668cd74f9cbea5c4cfb923ac7e1c0531fd --- /dev/null +++ b/features/optical_flow/like_016_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a582bb0f035238a447dbc6941b577726db01dcbd91485b829d02872adc0c18a +size 1108 diff --git a/features/optical_flow/like_016_aug_shift_flow.npz b/features/optical_flow/like_016_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b5480c76685167036f7592c5052a7b087883540e --- /dev/null +++ b/features/optical_flow/like_016_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14b5df0d6cef61cbd38c2fbdab35cc0957a7ddcca7839d635a6bf6e3126e563 +size 1106 diff --git a/features/optical_flow/like_016_flow.npz b/features/optical_flow/like_016_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..89e7590fd93d96453596b08a826593c2b9efef0a --- /dev/null +++ b/features/optical_flow/like_016_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff17b289a08366504e6225d61a5dbcd5a584f41ccfb40b95e4395f6f85d5a69 +size 1121 diff --git a/features/optical_flow/like_017_flow.npz b/features/optical_flow/like_017_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f9357ba2dca79fae13a95a208302dabca56b7b3a --- /dev/null +++ b/features/optical_flow/like_017_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccfce477e9661bc53a9650fa959649619de5decd7cf06af8117b745fc3a0301 +size 1880 diff --git a/features/optical_flow/like_018_aug_rotate_flow.npz b/features/optical_flow/like_018_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..56bc21613ffe576d147a04b743c64730bee20bce --- /dev/null +++ b/features/optical_flow/like_018_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab026693d4496dfc1e7c88c9db083200c769ca1593f2a257225b6902da75a304 +size 1150 diff --git a/features/optical_flow/like_018_flow.npz b/features/optical_flow/like_018_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..577a366714c10aff4935d31c38f18a472ceff49a --- /dev/null +++ b/features/optical_flow/like_018_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f373eedbff231698fe5b8c739efec5d43cccaeef1203a845169ce4f44de4b5 +size 1176 diff --git a/features/optical_flow/like_019_aug_flip_flow.npz b/features/optical_flow/like_019_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6db59c2a77653f7d1bbbd4b8b798cde769bad3b4 --- /dev/null +++ b/features/optical_flow/like_019_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c39bf91ed1c59bf65fe50ec6623f1c4745344b790668ff330f46e4de2d1add +size 1707 diff --git a/features/optical_flow/like_019_aug_rotate_flow.npz b/features/optical_flow/like_019_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fe5d3a0cfbd56b1fc7d3fee4fcae332d27fc7b56 --- /dev/null +++ b/features/optical_flow/like_019_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e3b72e2c2dba33b75ed3b400a4c428046d32af70a40192b28346e17e2f48f0 +size 1685 diff --git a/features/optical_flow/like_019_aug_shift_flow.npz b/features/optical_flow/like_019_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c38b19dc96b92fc5aece0c46907a243e1bc49d72 --- /dev/null +++ b/features/optical_flow/like_019_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af9c92086fe3b4c694329186d9af4b62ad66685d19aa4a2b054b7d0da62130b +size 1682 diff --git a/features/optical_flow/like_019_flow.npz b/features/optical_flow/like_019_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fd23f8ec6e54f365ce65598f61322b043a315ae4 --- /dev/null +++ b/features/optical_flow/like_019_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64577df7214fd430fe8373aa902c0486eb42b6dc98cd933c27c76f4b240c9833 +size 1705 diff --git a/features/optical_flow/like_020_aug_flip_flow.npz b/features/optical_flow/like_020_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..db44e07bff711ff5e44bde72125dcb2dd868921d --- /dev/null +++ b/features/optical_flow/like_020_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e416cb389e9c5429fce64a640a71246759615e5e949925e239b5a6e5deed59 +size 809 diff --git a/features/optical_flow/like_020_aug_rotate_flow.npz b/features/optical_flow/like_020_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..748c0a91f7bff3505404fc526307f1d1c3bf07ed --- /dev/null +++ b/features/optical_flow/like_020_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdaeb3cedda511c1b790d36068c4b3d232afa125b0b76e25ae337a78512aab6 +size 927 diff --git a/features/optical_flow/like_020_aug_shift_flow.npz b/features/optical_flow/like_020_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a34c1d3ab8219ca1e52fe7fb4c07a23a34fd4eaf --- /dev/null +++ b/features/optical_flow/like_020_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c48de8ecbfb1653190a410e0b0a54f974f1b7130f763b95ca230bc9469c1b2 +size 918 diff --git a/features/optical_flow/like_020_flow.npz b/features/optical_flow/like_020_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..47bd4f9bceb316a929aabd64260dbdc8aefa461a --- /dev/null +++ b/features/optical_flow/like_020_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2315b0640173b53d3fd83a202d409f777faa50206cfd5eb1d3594f687f33da84 +size 907 diff --git a/features/optical_flow/like_021_aug_rotate_flow.npz b/features/optical_flow/like_021_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..eb75027ed6c3d6ba0d3458a2d3641950122d1aa3 --- /dev/null +++ b/features/optical_flow/like_021_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d5004a391dc804943cd7b9183f83c0d51ba2e224b63d406f2ffb7a9f8b5245 +size 667 diff --git a/features/optical_flow/like_021_aug_shift_flow.npz b/features/optical_flow/like_021_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d2d7622d45d5b51586a2a7af7066e59399ffda69 --- /dev/null +++ b/features/optical_flow/like_021_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a1b49a940221b3f6e9fae077b56fa045e8edd7abdd84cc2f53d36c5800b093 +size 667 diff --git a/features/optical_flow/like_021_flow.npz b/features/optical_flow/like_021_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4bd1132d015cefc18e1895b27eab434b1f2adaf4 --- /dev/null +++ b/features/optical_flow/like_021_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c3c937093ceed810f61d6b235ad10f7ede9847e6b81eebd2bd86ad1cfef0f3 +size 666 diff --git a/features/optical_flow/like_022_aug_flip_flow.npz b/features/optical_flow/like_022_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5130fa91bb88f563e14ec728a963901da54ed6b0 --- /dev/null +++ b/features/optical_flow/like_022_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6444c117c17a77f8b125a0b7c9be92d3551a3978588f2926c2562d61a2b961ee +size 1031 diff --git a/features/optical_flow/like_022_aug_rotate_flow.npz b/features/optical_flow/like_022_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cb965a68babab52273d6f218f0b5227164b29371 --- /dev/null +++ b/features/optical_flow/like_022_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6d3e3cb0b8026cada227168a563109c13e07ef0129944233a7b3d401ae9d75 +size 1028 diff --git a/features/optical_flow/like_022_flow.npz b/features/optical_flow/like_022_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..790c0772d6430f2aa7eb06f4fc90e1328d3ecd53 --- /dev/null +++ b/features/optical_flow/like_022_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e022fdd528e4e1303f6b0c782227589fbec58853659d59f79338783c5406dde9 +size 1035 diff --git a/features/optical_flow/like_023_aug_flip_flow.npz b/features/optical_flow/like_023_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..888c8b68232940e4de597246529926672252625d --- /dev/null +++ b/features/optical_flow/like_023_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d333cc8b74bc63d1e4469ff6497ae76d3b9570ca3402fc6ab5d35b48d7f616 +size 824 diff --git a/features/optical_flow/like_023_flow.npz b/features/optical_flow/like_023_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..30a6ff3cf8b0051ac63997bab0827edc7cfa4e18 --- /dev/null +++ b/features/optical_flow/like_023_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d18a895a1352ddc73be1f9c9c2bb54be843c57d4acd03dd81e76e4d5e0bf7e +size 826 diff --git a/features/optical_flow/like_024_aug_flip_flow.npz b/features/optical_flow/like_024_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d88af0e7669d4e0aa2b9253210d9fcdfdf3e3e93 --- /dev/null +++ b/features/optical_flow/like_024_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55426caa6602acfbf62695f218fd7ca0357ca52acd317c7ee5afbb1efba1db74 +size 1082 diff --git a/features/optical_flow/like_024_flow.npz b/features/optical_flow/like_024_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..9ba70277a8e1967e07fdefa003cec93a67d070c0 --- /dev/null +++ b/features/optical_flow/like_024_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684d4608a49158c30413515b8e531d0abfb7fdb7a9e6df00a9ec57720234bac4 +size 1078 diff --git a/features/optical_flow/like_025_aug_flip_flow.npz b/features/optical_flow/like_025_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..419b9c54043bdb100a6626c7e6a22bb8b8c886ce --- /dev/null +++ b/features/optical_flow/like_025_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc91482bebaadd4a817dd01593a5f186678b8e1515738a4d06fe7af47a7459ff +size 728 diff --git a/features/optical_flow/like_025_aug_shift_flow.npz b/features/optical_flow/like_025_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b1c9e715f5fc92e9dbffe9a54d392864a139e20a --- /dev/null +++ b/features/optical_flow/like_025_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91bf2804b3b95158f2565b46fe27d1fe908f2eb57f61906b59939a09c11d856 +size 726 diff --git a/features/optical_flow/like_025_flow.npz b/features/optical_flow/like_025_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1e36ae8ccc028d1089562a748c6b342b26c18569 --- /dev/null +++ b/features/optical_flow/like_025_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3d876afcc1d1ea367bc2098af2870b86ef9362eb652608a11aebb31b417023 +size 731 diff --git a/features/optical_flow/like_026_aug_flip_flow.npz b/features/optical_flow/like_026_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b8fc267b8431af2fc6b4382e46d384363b7a9e5b --- /dev/null +++ b/features/optical_flow/like_026_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a4430a85770cabc9b366b23c496af67978bd22857d3e33b968427c72952476 +size 1091 diff --git a/features/optical_flow/like_026_aug_rotate_flow.npz b/features/optical_flow/like_026_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5a1644cabf080e7ff88d80d0c48ba5832fc649de --- /dev/null +++ b/features/optical_flow/like_026_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f52680cf8e5dadd1b7937621200ff6f17bc20dbcb8c6680100856e88cf6a7c +size 1082 diff --git a/features/optical_flow/like_026_aug_shift_flow.npz b/features/optical_flow/like_026_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..87b67e6ec207a46c776ddf660b0679fe710751cb --- /dev/null +++ b/features/optical_flow/like_026_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f511830f3b1deb994bff84d155e043326be15618c66ee505a2ac19b3647bde +size 1067 diff --git a/features/optical_flow/like_026_flow.npz b/features/optical_flow/like_026_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2a0c6a552934e0b57f8932d9674f1bc7087d3660 --- /dev/null +++ b/features/optical_flow/like_026_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90a48ddb58ad4cf7667e698c90b5148ca6df26dfb14ed0cbececfdae563e036 +size 1083 diff --git a/features/optical_flow/like_027_flow.npz b/features/optical_flow/like_027_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..06a449c30282bb7752d453559b696df34c4603b5 --- /dev/null +++ b/features/optical_flow/like_027_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d395a7f0cdf9cefe8279d11dde08d7b7c12b5dccced47c3892b4190515edd62 +size 1559 diff --git a/features/optical_flow/like_028_aug_flip_flow.npz b/features/optical_flow/like_028_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..056e669c189bf776ba2cf6545e32c4b3e2debf38 --- /dev/null +++ b/features/optical_flow/like_028_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e85ae5a9fa7d703c21b3c2b8d1610b8cadb00460af40b364e0369606f621645 +size 1318 diff --git a/features/optical_flow/like_028_aug_rotate_flow.npz b/features/optical_flow/like_028_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a70635b4f5b595b3e344cd632c2d32bc73dd327b --- /dev/null +++ b/features/optical_flow/like_028_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e79539daa44634f70af8c1ab6876169114e14873dea6243ed7da3cf763c6f14 +size 1316 diff --git a/features/optical_flow/like_028_aug_shift_flow.npz b/features/optical_flow/like_028_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..690ff1186be36bdaa7c86cf1214097444cff6ee6 --- /dev/null +++ b/features/optical_flow/like_028_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb17ab070b7d87c6b9a152bb320506205f3526732ac5f583e208584452d1766f +size 1290 diff --git a/features/optical_flow/like_028_flow.npz b/features/optical_flow/like_028_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..50f4cb0569c9421f1e6ae4f48ad445cb493acdd9 --- /dev/null +++ b/features/optical_flow/like_028_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22b49f374c211bb3b4d20fcc90800a66140e592fb30ae09c326d9f946bf389ae +size 1319 diff --git a/features/optical_flow/like_029_aug_flip_flow.npz b/features/optical_flow/like_029_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c17cd7a65ba1ca041e67a38bbd9f11cb60247744 --- /dev/null +++ b/features/optical_flow/like_029_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71511c894f04cfd05de84e06fc61e3f915aa02152c5d66662f49c810e4728402 +size 1323 diff --git a/features/optical_flow/like_029_aug_shift_flow.npz b/features/optical_flow/like_029_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..88eb7e0cb55ef5e0182dda8ff7a86a4690a3d9a7 --- /dev/null +++ b/features/optical_flow/like_029_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eecc215c0a661a922f8bb4daa31854f5a9c0604627e1e33a22bd9617c3a475a +size 1292 diff --git a/features/optical_flow/like_029_flow.npz b/features/optical_flow/like_029_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ab8354b899093491c87c82e1981da47407a1c841 --- /dev/null +++ b/features/optical_flow/like_029_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcb25a44acf4ff8d08322ae0db44cde35bc879d34fe827fb3179624ec8561b0 +size 1321 diff --git a/features/optical_flow/like_030_aug_rotate_flow.npz b/features/optical_flow/like_030_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7219dda892977acbee4004f2dec18a26caf5044b --- /dev/null +++ b/features/optical_flow/like_030_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210d541523b01ac1a4e8fc8b570f5aa223e977859d44a675843ca9020e996234 +size 726 diff --git a/features/optical_flow/like_030_aug_shift_flow.npz b/features/optical_flow/like_030_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e782732422085c12771cd7081c5ebd5b0280679c --- /dev/null +++ b/features/optical_flow/like_030_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1cc25a24e4bcce22fd1b1620a69128d2073f035709d34e42ea3dcccbf5bec18 +size 730 diff --git a/features/optical_flow/like_030_flow.npz b/features/optical_flow/like_030_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6a25adfcdd638fd6f0e07797340a45c465a7e6f9 --- /dev/null +++ b/features/optical_flow/like_030_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9597a25d8a88cc6977c9e8709c99f40d44b0a2ac05542ee9f8b4542b32c617ae +size 728 diff --git a/features/optical_flow/like_031_aug_shift_flow.npz b/features/optical_flow/like_031_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..477542aae1139f3e518c6f907e0ce1c9561e27b0 --- /dev/null +++ b/features/optical_flow/like_031_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3562a4154bd42645d9987c8cf49624d0de386707a2a2408911dac215b9f9946b +size 723 diff --git a/features/optical_flow/like_031_flow.npz b/features/optical_flow/like_031_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a6e6fb5eb7689301867b50be33938815f99a2227 --- /dev/null +++ b/features/optical_flow/like_031_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79912e14c6d2fa808f46490acf68acf1c7c5aff0061abdccbffdae67367aff5 +size 728 diff --git a/features/optical_flow/like_032_aug_flip_flow.npz b/features/optical_flow/like_032_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0eabbccd22a7ed2b15904bd172ff04a350d94c9e --- /dev/null +++ b/features/optical_flow/like_032_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddbe6c45da1f45c5c8e857ddc8a46d44380660293e12c256b67bac080aceb817 +size 1498 diff --git a/features/optical_flow/like_032_aug_rotate_flow.npz b/features/optical_flow/like_032_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..117a18e260e485b25108860780a4799700ef5559 --- /dev/null +++ b/features/optical_flow/like_032_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c1806ee31e5e0ca9b92fe0de957dbccba7f2e995b943c95582d5425362d1fb +size 1498 diff --git a/features/optical_flow/like_032_aug_shift_flow.npz b/features/optical_flow/like_032_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..163b6e308b7fc908952a892602df53bfde6dede1 --- /dev/null +++ b/features/optical_flow/like_032_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2853040f980dbdad929d3b491c42d54d6895f7955644a43509ee35749930a895 +size 1480 diff --git a/features/optical_flow/like_032_flow.npz b/features/optical_flow/like_032_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..581690954dc87bbc8c06449ff1b5206fc2bb5d3f --- /dev/null +++ b/features/optical_flow/like_032_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b067a489f013fa8f1617a12874fa8279d4ddf32169e44676c15a79527d123d56 +size 1494 diff --git a/features/optical_flow/like_033_aug_rotate_flow.npz b/features/optical_flow/like_033_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a85cccc992d2cb1b29cf2afac3edca591c004fcd --- /dev/null +++ b/features/optical_flow/like_033_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c448eb176e577e170b956e367ebee37820eb58c52d4bc93e0f2989f86f2129de +size 1676 diff --git a/features/optical_flow/like_033_flow.npz b/features/optical_flow/like_033_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..64b6a9830a2d2d1328e2c74b48a17b713e928f3c --- /dev/null +++ b/features/optical_flow/like_033_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cc0b37e6a0c70814cc8adc7532d5249bb935c55ea6bc63e959843529ecf8cf +size 1681 diff --git a/features/optical_flow/like_034_aug_flip_flow.npz b/features/optical_flow/like_034_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..142d2a7c89f0a9a5898eff8a613851d5fe4f4561 --- /dev/null +++ b/features/optical_flow/like_034_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad2c34feac0b994e04775dc6b2d0dea08c6a24e08d1a57877766f3dd4ef32a23 +size 1140 diff --git a/features/optical_flow/like_034_aug_rotate_flow.npz b/features/optical_flow/like_034_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..20241bbe69516de745e24dcb6b30fd607de0e5f0 --- /dev/null +++ b/features/optical_flow/like_034_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b505b54921cd2ef6163057b72b015d6f8ae64ffca6ebbb5ecb0410cd56afb39b +size 1117 diff --git a/features/optical_flow/like_034_flow.npz b/features/optical_flow/like_034_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..44b703ba6fbce754fa121e49a722fcee6768228d --- /dev/null +++ b/features/optical_flow/like_034_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719504eac45b9c2698cd189b57a7eb3f44012b272b9e1d774164a5a22091538c +size 1140 diff --git a/features/optical_flow/like_035_aug_flip_flow.npz b/features/optical_flow/like_035_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..556ff1cd95478b2aee3771361fc63c81668ff5d2 --- /dev/null +++ b/features/optical_flow/like_035_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd78fbf3465a5fbbea40a743dbbb77bbab8edcbe91ac293bb58624c9621d7d3 +size 1477 diff --git a/features/optical_flow/like_035_aug_shift_flow.npz b/features/optical_flow/like_035_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..34f65a858390d2b92a7997687cfcc408d2a51b36 --- /dev/null +++ b/features/optical_flow/like_035_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49762d7212609c90fc1ba1195559bc336b3e6d466e4c6fb313002090417871fe +size 1443 diff --git a/features/optical_flow/like_035_flow.npz b/features/optical_flow/like_035_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0dc1ba6871be6ad03d5002f8f8fbf6f036fb97a0 --- /dev/null +++ b/features/optical_flow/like_035_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c740a2c43b4eb12cb10d06858e73b10329a48349fa2c3bcd8405a8b6f6cde47a +size 1470 diff --git a/features/optical_flow/like_036_aug_flip_flow.npz b/features/optical_flow/like_036_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f4ed83767294c92c653f5cf746b5068590fee231 --- /dev/null +++ b/features/optical_flow/like_036_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652bf1879cd3c6b111413313df39d838f47438b27a3dd0430ecd36dc93d25e06 +size 1331 diff --git a/features/optical_flow/like_036_aug_rotate_flow.npz b/features/optical_flow/like_036_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a4883d04a7836a3342dd984c7e63ddf3a54f9209 --- /dev/null +++ b/features/optical_flow/like_036_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8de82a4509f567d53778f9ad795b1c4aefc9a2fff6639c5a0a6cd50608ae5cc +size 1331 diff --git a/features/optical_flow/like_036_aug_shift_flow.npz b/features/optical_flow/like_036_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a38823f8093fcbee3efcf3fd6fedf5fb2216a8ef --- /dev/null +++ b/features/optical_flow/like_036_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7bcc42a9204be1a349f7bf095b0af42628f777907b81e272ed1be06702da34 +size 1300 diff --git a/features/optical_flow/like_036_flow.npz b/features/optical_flow/like_036_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f186103fd30a358fcde8e0b99fe153c5f4bfbecc --- /dev/null +++ b/features/optical_flow/like_036_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d1c3d215eb795dd2aad4c14338bc54b51e4486ebdc61ced4c1e3b60b52893ff +size 1334 diff --git a/features/optical_flow/like_037_aug_rotate_flow.npz b/features/optical_flow/like_037_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..2c3cff384c0b0f8116fa94aa38c5520d7906a0ba --- /dev/null +++ b/features/optical_flow/like_037_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38afb7a5e9811747b6d501e0657f499ca212210cb642da201e54b7dcc84ea359 +size 928 diff --git a/features/optical_flow/like_037_aug_shift_flow.npz b/features/optical_flow/like_037_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7cf1e03d30334530c521f5d0a2fa42a0213a289c --- /dev/null +++ b/features/optical_flow/like_037_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040f78269ffb26689e36bd2403ca785de8ff658d4a2a37cf2c4a1919d695f417 +size 917 diff --git a/features/optical_flow/like_037_flow.npz b/features/optical_flow/like_037_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e5d4490b2db7f3e18bd19cf21043b2e0b8ea6eb1 --- /dev/null +++ b/features/optical_flow/like_037_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451d2ca66a359e8145e5386efd43cacc94ae1e1cacc5c93e0325434c1c927718 +size 930 diff --git a/features/optical_flow/want_001_aug_flip_flow.npz b/features/optical_flow/want_001_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..fc6e6c33408009b16fe7d8174e476de21ca46a30 --- /dev/null +++ b/features/optical_flow/want_001_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13bfe65cfd8c0dba81738a2951047fdbc3cb37fb9e79b509ab489d80faf78f9 +size 1976 diff --git a/features/optical_flow/want_001_flow.npz b/features/optical_flow/want_001_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e876f6659cab493e1c63dbd47c5fe250022b7cbd --- /dev/null +++ b/features/optical_flow/want_001_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e63bcfb202c55c78d7346622cd409be342d9d2a559346dd29c54f8cee1493b +size 1985 diff --git a/features/optical_flow/want_002_aug_shift_flow.npz b/features/optical_flow/want_002_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1eca5067ec2f10bc91a9422f2f4b0f5eb3c80581 --- /dev/null +++ b/features/optical_flow/want_002_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b93569986d79689fdc02fcf75dc0f74360d3a9c80caa7ebb7f092b24a7f5b9c +size 1829 diff --git a/features/optical_flow/want_002_flow.npz b/features/optical_flow/want_002_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4b5079983ec8203a480d7397d7b88463e70933fe --- /dev/null +++ b/features/optical_flow/want_002_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2506e2523b8a584f0024fcf01f9b20cd68064ca104f901a0fda603fb603a6666 +size 1861 diff --git a/features/optical_flow/want_003_aug_flip_flow.npz b/features/optical_flow/want_003_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..14b0bf8c5223c3e2dc0dfa09f82fb862cce2eb5b --- /dev/null +++ b/features/optical_flow/want_003_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781a887edfa3d452c33137a9ba4ef222d93da9392b68a43407bd2c51141e562e +size 1274 diff --git a/features/optical_flow/want_003_aug_shift_flow.npz b/features/optical_flow/want_003_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..187120323963e44a8f70e25e3eab7478eb797429 --- /dev/null +++ b/features/optical_flow/want_003_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022a296c8f97c6d2857a140af7455b51c236f439ae3ea1db2058cbd2f0d61e4a +size 1243 diff --git a/features/optical_flow/want_003_flow.npz b/features/optical_flow/want_003_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..06870fc3d1dec60c1d2f43a95790863525302780 --- /dev/null +++ b/features/optical_flow/want_003_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c3b131fcb34584332d06f0cec2eca1063378020dc59a9037e248271cc7e9315 +size 1276 diff --git a/features/optical_flow/want_004_aug_rotate_flow.npz b/features/optical_flow/want_004_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8f4e138d9119c35f236223fd450aa679f57caae0 --- /dev/null +++ b/features/optical_flow/want_004_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a6ef9a59487f6ba2324841af0fc263cbad634328f2ae3460ff2e577bdd255ff +size 1212 diff --git a/features/optical_flow/want_004_aug_shift_flow.npz b/features/optical_flow/want_004_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..231e054dfda892c250cc57da997876997f145e4d --- /dev/null +++ b/features/optical_flow/want_004_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118ad74d6ce796436d54d8bc5e503c70556c1eed959b959021532e95eadae7ff +size 1203 diff --git a/features/optical_flow/want_004_flow.npz b/features/optical_flow/want_004_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7c2beb6324b9e6cd98f39f901468a3615d5f258a --- /dev/null +++ b/features/optical_flow/want_004_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74357744fe34c9e6682eaa481ab4716e68b950918d9baa72ec265460a496b8fc +size 1225 diff --git a/features/optical_flow/want_005_aug_rotate_flow.npz b/features/optical_flow/want_005_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0d96ed848f3c8ef078d7f0ab88718c257a60f7b5 --- /dev/null +++ b/features/optical_flow/want_005_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d5e4ea200eb4ef60557e4d4f283a8504ccd29046436dfc2e28bc5a8779276b +size 824 diff --git a/features/optical_flow/want_005_aug_shift_flow.npz b/features/optical_flow/want_005_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b8dea748b4cd35d6ae138a5c081274a8eb598d92 --- /dev/null +++ b/features/optical_flow/want_005_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2daeca4c418aa5907e72ab3c50dc9864c47a0f625c094999ff9cbb2aea39c7 +size 821 diff --git a/features/optical_flow/want_005_flow.npz b/features/optical_flow/want_005_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0e89aba5b1907a4ab0975cf5ba6980a6ff3902a6 --- /dev/null +++ b/features/optical_flow/want_005_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b296d9bac9d4ee37564293b722691be603f285621cf221b2d8d3ebe1d76dcd60 +size 834 diff --git a/features/optical_flow/want_006_aug_rotate_flow.npz b/features/optical_flow/want_006_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d25ab57c2ad2e9571db0a72208e0f10d2997c095 --- /dev/null +++ b/features/optical_flow/want_006_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a1ab576c86b394d3934929bd6f06cb97a6c7068f05e131d1ea54678c216d7b +size 1115 diff --git a/features/optical_flow/want_006_aug_shift_flow.npz b/features/optical_flow/want_006_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cb5b4d6c092f945d11367d45bc241913e75e04f9 --- /dev/null +++ b/features/optical_flow/want_006_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68140edd3ab8a0ec812575067434051a376c81b24d357c35772ca53e22360dc5 +size 1100 diff --git a/features/optical_flow/want_006_flow.npz b/features/optical_flow/want_006_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..79fbf2ebf2ab7d7888e0ff504545c695b02cda56 --- /dev/null +++ b/features/optical_flow/want_006_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d529e31360c94100186e99cb181ce17800dc2df1dfb55e7eedd1e0bfc06aea12 +size 1138 diff --git a/features/optical_flow/want_007_aug_flip_flow.npz b/features/optical_flow/want_007_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ba75c6e023aac5174279d671c8e0810a228588c1 --- /dev/null +++ b/features/optical_flow/want_007_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a04e191160e0c764ed4282a30a6718b88445b8badafb224c5e97bf031720df1 +size 1135 diff --git a/features/optical_flow/want_007_aug_rotate_flow.npz b/features/optical_flow/want_007_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..921ee0db0a9966f4be7740123709b820002829d4 --- /dev/null +++ b/features/optical_flow/want_007_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6816605b944627723b0935b82bf9169b300fa000ebcbf35417fb9a1850a28e5c +size 1121 diff --git a/features/optical_flow/want_007_aug_shift_flow.npz b/features/optical_flow/want_007_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b43e0b30f2a5e272bc3268ac49c27a7b7ced467d --- /dev/null +++ b/features/optical_flow/want_007_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561fca9f62ba45fe51b4355b7f3b8a4bc68877ae09baea225016f1af9d137334 +size 1105 diff --git a/features/optical_flow/want_007_flow.npz b/features/optical_flow/want_007_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..396a8edba521821f276d412d2b502f8d9ff3ab21 --- /dev/null +++ b/features/optical_flow/want_007_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36c82706669dd4aee5837160dcb8d55d2335e1bf916658ed75fc185124536a1 +size 1131 diff --git a/features/optical_flow/want_008_aug_flip_flow.npz b/features/optical_flow/want_008_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..626b776d32e16890e0a343b48fea28fe15e78e58 --- /dev/null +++ b/features/optical_flow/want_008_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d180360682ae804049e8a098409ebfd415dff40cc802104a85e697322ac4cf27 +size 1134 diff --git a/features/optical_flow/want_008_aug_rotate_flow.npz b/features/optical_flow/want_008_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..03eaed19d1af9c47fb61e229cd97d9dae0d095ad --- /dev/null +++ b/features/optical_flow/want_008_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f696e68a0465227eaa5ef963105dec831fc8ec5d979a1047f8a6cd0bd9a8c8a5 +size 1117 diff --git a/features/optical_flow/want_008_flow.npz b/features/optical_flow/want_008_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..25f65adce32382fe85917ddae738a433486c62ab --- /dev/null +++ b/features/optical_flow/want_008_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9621b13f10c115b3cd3ba2e4d77f884bda4438ce76e06c412f5aed86fa94771 +size 1139 diff --git a/features/optical_flow/want_009_aug_flip_flow.npz b/features/optical_flow/want_009_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..25a81ce9398f4bc864538387a1da80eb44940635 --- /dev/null +++ b/features/optical_flow/want_009_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca91047c35a9bcbfd3e1ad920ddf6404e139730094ba33f826056e52922e7db1 +size 1377 diff --git a/features/optical_flow/want_009_aug_rotate_flow.npz b/features/optical_flow/want_009_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3080ba113ad1a6a02fe927c15babe4afbdea3963 --- /dev/null +++ b/features/optical_flow/want_009_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82d706bd0fefa29bd7f838b495f49f88f1204d203b57aceb6e573c059607e8d +size 1371 diff --git a/features/optical_flow/want_009_aug_shift_flow.npz b/features/optical_flow/want_009_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a0e4450e6881cea8eb91717730aa8770cf035c6f --- /dev/null +++ b/features/optical_flow/want_009_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e708999761db923e4e995a148bd0c6d72f1221e7b2c835037684eb768f1634 +size 1365 diff --git a/features/optical_flow/want_009_flow.npz b/features/optical_flow/want_009_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c21f8ef481eacae959721bdd1b554931990d1acb --- /dev/null +++ b/features/optical_flow/want_009_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6931977e954282e68cb3c405cbb43068cee0091add3377daecd1572e5a4d933 +size 1380 diff --git a/features/optical_flow/want_010_aug_flip_flow.npz b/features/optical_flow/want_010_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7db85274fe8119bd2f337f25eb4bedb276f9fa99 --- /dev/null +++ b/features/optical_flow/want_010_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c4a815e5b55ddf795f4e513e89dd43c0a28d9bed44791a2c504c84dce374f2 +size 1382 diff --git a/features/optical_flow/want_010_aug_rotate_flow.npz b/features/optical_flow/want_010_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..419a8656b20eac0578d6feaff4fda43812a51109 --- /dev/null +++ b/features/optical_flow/want_010_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3184a3a79d0a5ef01f1a78f8ef576c700875a94f8cd90c377cb06c71c943e42e +size 1375 diff --git a/features/optical_flow/want_010_aug_shift_flow.npz b/features/optical_flow/want_010_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..daeb41216c2163a428c123cef3cd87266aa1c2f2 --- /dev/null +++ b/features/optical_flow/want_010_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a91592b833fc4bebd851cf35669c8f827f97cf04a3ac60da447470b660e567 +size 1366 diff --git a/features/optical_flow/want_010_flow.npz b/features/optical_flow/want_010_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0b2637fbee5c00ce67b761519c8479ea2409f4be --- /dev/null +++ b/features/optical_flow/want_010_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ba1091a449fdce0f6106b91b421c2ead5b8b7dd1fabc2d17887c070474a864 +size 1385 diff --git a/features/optical_flow/want_011_flow.npz b/features/optical_flow/want_011_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..290535bed296b8a02a6699cf664b6b44dc973bcc --- /dev/null +++ b/features/optical_flow/want_011_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7180f4900338ac5f60c9e3e8581f99c19f4677d3794bcf39063b946e1dba0fa +size 1691 diff --git a/features/optical_flow/want_012_aug_flip_flow.npz b/features/optical_flow/want_012_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..47272c2f4a7c474e9ce4a0ca261c0ecf2870b6c3 --- /dev/null +++ b/features/optical_flow/want_012_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dade5aebfa80111cbf71ba7e64aedf10f2cd6233b68bd15f7946c44884642a9 +size 848 diff --git a/features/optical_flow/want_012_aug_rotate_flow.npz b/features/optical_flow/want_012_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8ef5fa38cc36f785ab962f2bde79bf0232fc15a0 --- /dev/null +++ b/features/optical_flow/want_012_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc5d0b6ef1c1163f2420b0bf2579809046736b193a0c3a29cdee2acc39ef971 +size 846 diff --git a/features/optical_flow/want_012_aug_shift_flow.npz b/features/optical_flow/want_012_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4bcb5427e7eb5f74a4a1d6c673a49979820e68ba --- /dev/null +++ b/features/optical_flow/want_012_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d4ead271318761a88060e30e6a714ec1b34f3b134a0d5a17193cc461c51d82 +size 839 diff --git a/features/optical_flow/want_012_flow.npz b/features/optical_flow/want_012_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c8f188f15f012e7e70ac18382e3073b0d891dbb0 --- /dev/null +++ b/features/optical_flow/want_012_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:730835a84b715b646bc1fc5113e815f2b97b776fb2bd6fd8062a26409c9c5d3c +size 850 diff --git a/features/optical_flow/want_013_aug_flip_flow.npz b/features/optical_flow/want_013_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..02e4dd7b5ba0c8b63e61e456060b2a0e703b09bd --- /dev/null +++ b/features/optical_flow/want_013_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ae2e5aa520f9368294b13c6bb2601b9240e9004f15881166be2d39686216a6 +size 910 diff --git a/features/optical_flow/want_013_aug_rotate_flow.npz b/features/optical_flow/want_013_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b0e3cef1b5886d4d07785b2163865e539f02c551 --- /dev/null +++ b/features/optical_flow/want_013_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7180ed047d7b9f2f5b608dfd80282eebaa61da58ce52814789c7ca068818979 +size 899 diff --git a/features/optical_flow/want_013_aug_shift_flow.npz b/features/optical_flow/want_013_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c464e5ff720cac1f5acacebcf65ca79792522453 --- /dev/null +++ b/features/optical_flow/want_013_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86da55f9208b3acaf6eba8bb9fb093e3be16c1d71e61da858eacc5a8d71d9bb7 +size 894 diff --git a/features/optical_flow/want_013_flow.npz b/features/optical_flow/want_013_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d928f689db5c4ed187cc33745e3cfcc13ade5c23 --- /dev/null +++ b/features/optical_flow/want_013_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a060acdcd3c75aaa72bbc597e78c895b497ae260be66f3557f3bb6ff8119ae01 +size 914 diff --git a/features/optical_flow/want_014_aug_shift_flow.npz b/features/optical_flow/want_014_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..be32cf7b72116da517c6f1bc0f5cdb1cd9268750 --- /dev/null +++ b/features/optical_flow/want_014_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede6e37273592f0a6094d5929bf9f01ddf6fb73cc0dc22f2720044361c8166f4 +size 744 diff --git a/features/optical_flow/want_014_flow.npz b/features/optical_flow/want_014_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..011057dc56aad097840dee591a1afa374113dfe7 --- /dev/null +++ b/features/optical_flow/want_014_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:649b93b55467697dab25de323d3f10515647c0108a33b623203420aea99e89da +size 746 diff --git a/features/optical_flow/want_015_aug_flip_flow.npz b/features/optical_flow/want_015_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1738841591c6aa34dd1039f391b7c32e2d319846 --- /dev/null +++ b/features/optical_flow/want_015_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a274554f099c91726b6adc1d531bc661997768f54c7d390387f94b3a82a2f9 +size 1283 diff --git a/features/optical_flow/want_015_aug_rotate_flow.npz b/features/optical_flow/want_015_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..22e983c39d40971408bf95cd54fe24c671157edf --- /dev/null +++ b/features/optical_flow/want_015_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917304505bf03422dde980f432c2c9c03a5d37bbe57807865946ddff4d46898d +size 1268 diff --git a/features/optical_flow/want_015_aug_shift_flow.npz b/features/optical_flow/want_015_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8df626ec83326668e659ff7d8dbe4c17ca53469a --- /dev/null +++ b/features/optical_flow/want_015_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd667c0c7141efcb2291a6a12d6e5f77bbeeb800574e79c3e3819f725cd395e +size 1247 diff --git a/features/optical_flow/want_015_flow.npz b/features/optical_flow/want_015_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..007859e47455cf2c961c752690d4190a3774db76 --- /dev/null +++ b/features/optical_flow/want_015_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9270fe79d21d92ae9867298615e8d1711ddfc9b695a835d39afefb0623d6f762 +size 1285 diff --git a/features/optical_flow/want_016_aug_rotate_flow.npz b/features/optical_flow/want_016_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3ce2d3752ed3b9294e8d725a4316c8d11abfb99a --- /dev/null +++ b/features/optical_flow/want_016_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217e9f8b61b3de21147bae030fef85fc4c19dd06d3aaa0469d1ad27b72b2a1ab +size 1723 diff --git a/features/optical_flow/want_016_flow.npz b/features/optical_flow/want_016_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b761da4048a553a1a59ecab4622ac60b44e42b2b --- /dev/null +++ b/features/optical_flow/want_016_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c175f91e73e0c7afb4df6006717c85c604f0675f1135099ce69326bb226e678e +size 1753 diff --git a/features/optical_flow/want_017_aug_flip_flow.npz b/features/optical_flow/want_017_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..944e3bb41575f4d19150f5fa0b4e9f33456b3b8e --- /dev/null +++ b/features/optical_flow/want_017_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14b06d9daae852e895c5a5f1f68098278692dce68ff6a3d6a5d2df80398f801 +size 831 diff --git a/features/optical_flow/want_017_aug_shift_flow.npz b/features/optical_flow/want_017_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5c149721522c7db331b49b71a92f4ae414788f0c --- /dev/null +++ b/features/optical_flow/want_017_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82c932a4ee0da9fac809225892185c8d0a984197aa8dc3a634b4794fc1184fa +size 820 diff --git a/features/optical_flow/want_017_flow.npz b/features/optical_flow/want_017_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e097952af0384bfc246e738940b6acd66b5d5e1d --- /dev/null +++ b/features/optical_flow/want_017_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d920d4e0a5dcd15d4c8edb5aa89815f11d10795270f4135662830ec85ba9dac7 +size 834 diff --git a/features/optical_flow/want_018_aug_flip_flow.npz b/features/optical_flow/want_018_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..dcb8ceefcdd3017defcb5c54504109295389d401 --- /dev/null +++ b/features/optical_flow/want_018_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aee52ab6d6064d9ab72fdafcd3239f5899afa972b63b9b2400cc7c1c37736af +size 831 diff --git a/features/optical_flow/want_018_aug_rotate_flow.npz b/features/optical_flow/want_018_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f19aca04a18546d824a6395729bae1079317c964 --- /dev/null +++ b/features/optical_flow/want_018_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b709e563bc1231989f1999735e802118253109b7b083e618b32c634de1c22c8 +size 830 diff --git a/features/optical_flow/want_018_aug_shift_flow.npz b/features/optical_flow/want_018_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..afef4b731805202feb65d4a53f87ada899b8c8d9 --- /dev/null +++ b/features/optical_flow/want_018_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc1a68c3d6baac538513102c8470c2bf37c4b642c9d96dbffcfbec1ddce79f1 +size 824 diff --git a/features/optical_flow/want_018_flow.npz b/features/optical_flow/want_018_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..5a2f12e873d105e9881f70fd175e45ff2493e6f0 --- /dev/null +++ b/features/optical_flow/want_018_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cca4d54ec5b848d91ef92926767063edb7ee0693892aecff5024e8c9294e90a +size 834 diff --git a/features/optical_flow/want_019_flow.npz b/features/optical_flow/want_019_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0c28ad661c610a4c2955eca96e75e484f2afc367 --- /dev/null +++ b/features/optical_flow/want_019_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4704a9500668ff2d7431115913a57d6c7cd4fa618a4fd77037abb5c289f2d6e +size 1671 diff --git a/features/optical_flow/want_020_flow.npz b/features/optical_flow/want_020_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a714749d2a5d0747356d1a85d323881b582b0f02 --- /dev/null +++ b/features/optical_flow/want_020_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebef1dcd279dffd1bb698678c55ed799b66b3e2a9bac830f4080c941a49b7f0 +size 1398 diff --git a/features/optical_flow/want_021_aug_flip_flow.npz b/features/optical_flow/want_021_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..b0e91f9ef0732a854bf9adaac89361e48ff0aed1 --- /dev/null +++ b/features/optical_flow/want_021_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e1ccc3c7f89a9d8f3293df291b52aea61c5f8d07ec56b1b7ecac9e2879da1e +size 1302 diff --git a/features/optical_flow/want_021_aug_shift_flow.npz b/features/optical_flow/want_021_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..89aa773d8e446aea42aa1a5e53afeec0ce1db80c --- /dev/null +++ b/features/optical_flow/want_021_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aca5f0cc3cd3c2b7d027263a6ba09f54e775b3a0bca6af56639cd6250d11488 +size 1278 diff --git a/features/optical_flow/want_021_flow.npz b/features/optical_flow/want_021_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..16cc398717996825c2a3c161643d7e3ae5adaf7c --- /dev/null +++ b/features/optical_flow/want_021_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb589c52dea7af0f8b7c78742d72854bc4e53902bb9bbd011fb74bf8ed53914 +size 1314 diff --git a/features/optical_flow/want_022_aug_flip_flow.npz b/features/optical_flow/want_022_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..92863f4f19305962e5d6638f9764606cd0172260 --- /dev/null +++ b/features/optical_flow/want_022_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a012f4675d99e08abf609a08ca8e450873f02ec81b3320b319659a75314a48c1 +size 1385 diff --git a/features/optical_flow/want_022_aug_rotate_flow.npz b/features/optical_flow/want_022_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..bb389114efec3befdb840b6fad962289142e01e9 --- /dev/null +++ b/features/optical_flow/want_022_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3761835f027bbe69558e55b17ad234dd050124fbc2d4727f1836bfcde3bdb9 +size 1371 diff --git a/features/optical_flow/want_022_flow.npz b/features/optical_flow/want_022_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..78daf964c9573eba01c4f8bdbb8c8a473837b07e --- /dev/null +++ b/features/optical_flow/want_022_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13afbdbe53ee27acfe6686b13e773cf6200d51bacb5578660728d3b00039bc1f +size 1383 diff --git a/features/optical_flow/want_023_aug_shift_flow.npz b/features/optical_flow/want_023_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..6e1b1f4695213d90c127f7596ca6503d047ed1bc --- /dev/null +++ b/features/optical_flow/want_023_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f20ea4e7f0c21b0edf0531d691f7c376b8fc1867eaa8fd60bef942207cecc2 +size 824 diff --git a/features/optical_flow/want_023_flow.npz b/features/optical_flow/want_023_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..60feaf0ddc6515e22f3266363e780a0b665ad0cf --- /dev/null +++ b/features/optical_flow/want_023_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdff90b28005027f332daedfd8affd54c4ce2ee8a2e7fe0989b37b600cfc7d7 +size 833 diff --git a/features/optical_flow/want_024_aug_flip_flow.npz b/features/optical_flow/want_024_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d28f53b9d4cc5f12e28aa61857ffaaf490daa2d1 --- /dev/null +++ b/features/optical_flow/want_024_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b57277a907a998d8fdc561fa5bff150f305ab075ae42c4ac2ed78f2b046dc4 +size 830 diff --git a/features/optical_flow/want_024_aug_rotate_flow.npz b/features/optical_flow/want_024_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..30187730ff37446e5556bbc3d691b97623753ce9 --- /dev/null +++ b/features/optical_flow/want_024_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fbc277c225cac8a684add7b28da818f72a783feda88174c63a89d921dcfd25 +size 831 diff --git a/features/optical_flow/want_024_flow.npz b/features/optical_flow/want_024_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..80d9be62b44cf3bc5f9ac29a358a7d5c1098be15 --- /dev/null +++ b/features/optical_flow/want_024_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e25d96530541937a5fcbcbc9b93d6246fb18eeaecfeda7db472b6a239cc53e6 +size 831 diff --git a/features/optical_flow/want_025_aug_flip_flow.npz b/features/optical_flow/want_025_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c66f5124feecf5ac002510fcd6c1bd39536218f9 --- /dev/null +++ b/features/optical_flow/want_025_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495e2dfbd3104a0f6f878128f1d4c888adcf40c31ecbd28683b4747b03df22fb +size 1497 diff --git a/features/optical_flow/want_025_aug_shift_flow.npz b/features/optical_flow/want_025_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..d6395b2e19ad1d2290cefcc42adf09a584dc9600 --- /dev/null +++ b/features/optical_flow/want_025_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1be1b69acd4d2d4035d1bfaca150bd8cd0437be130972713d4f8af7d9070e3 +size 1465 diff --git a/features/optical_flow/want_025_flow.npz b/features/optical_flow/want_025_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..8227e9843fd82868eb118f113f0ba94fd181ddca --- /dev/null +++ b/features/optical_flow/want_025_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f29cb85fc725f40a93bd06a7b2b8ce5219709c3b93b6a60306d4bac4ce35ef0 +size 1498 diff --git a/features/optical_flow/want_026_flow.npz b/features/optical_flow/want_026_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..f45f6874490553b583a8962009855c0779f7bbc7 --- /dev/null +++ b/features/optical_flow/want_026_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5544e7fa7169e24a41037c9169f30913643343ca19cf3beb3382e2ad79ebb506 +size 849 diff --git a/features/optical_flow/want_027_aug_flip_flow.npz b/features/optical_flow/want_027_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a5ac93c7f8466404e42566ae12a9407b518bf225 --- /dev/null +++ b/features/optical_flow/want_027_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4808458fb563d5280b26e2b8fc0a72690f4ac198191c66da773ee00218c004 +size 938 diff --git a/features/optical_flow/want_027_aug_shift_flow.npz b/features/optical_flow/want_027_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..31a597208a21e461925c5e8d1bf50c0647c1ad83 --- /dev/null +++ b/features/optical_flow/want_027_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d157c6729af477f4ff6646151698fc4ffc6422183f2dff4a47ad9ae9b9b68d +size 908 diff --git a/features/optical_flow/want_027_flow.npz b/features/optical_flow/want_027_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c85adc84c3e24d2e69e8b4576277aaa69cb231d7 --- /dev/null +++ b/features/optical_flow/want_027_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0314487308daf737569cddd5061cb43a83e81c25841f5ea6a9bee19326ffd4b3 +size 937 diff --git a/features/optical_flow/want_028_aug_rotate_flow.npz b/features/optical_flow/want_028_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4a164bdc514a2e35eb78373268c9b2455ac27934 --- /dev/null +++ b/features/optical_flow/want_028_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d1f913c0e207f3e5233ec026aac300ed1cbcc8e3b4928b48bfdf7290551381 +size 947 diff --git a/features/optical_flow/want_028_flow.npz b/features/optical_flow/want_028_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c42405e3662c0808b0a07044e41c99e4cbc66926 --- /dev/null +++ b/features/optical_flow/want_028_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf3e4f8203a904149c418645b600cf8f324ca5d3cb752bfcd53fddee32469ec +size 955 diff --git a/features/optical_flow/want_029_aug_flip_flow.npz b/features/optical_flow/want_029_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..49c6795dd6338c2a8561c0a6104f574ebc8572e1 --- /dev/null +++ b/features/optical_flow/want_029_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52afb98a123c1f4e04426cd0dfeb393582c16d2702da432b6e40c93ef4409bd +size 894 diff --git a/features/optical_flow/want_029_flow.npz b/features/optical_flow/want_029_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a984319c11f0ee741b1fd7e96174d3f683576666 --- /dev/null +++ b/features/optical_flow/want_029_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09703666f2590c83bdd9f17045adb580ddd493d22d078993f2ca4da76b062839 +size 904 diff --git a/features/optical_flow/want_030_aug_rotate_flow.npz b/features/optical_flow/want_030_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..38110be69473fcd160ce71ed6f53594068b7085d --- /dev/null +++ b/features/optical_flow/want_030_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434e4e2aec293102d8418307f7c3dcb90e071ec049cf0d206c9445e7f544ffa0 +size 825 diff --git a/features/optical_flow/want_030_flow.npz b/features/optical_flow/want_030_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..96f9c60b0f026d5ed2e919e9329e772060c7ea87 --- /dev/null +++ b/features/optical_flow/want_030_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c928afe3c6f11672a1d87caf25283e20c86b672b7fedc00f9e6274377aae17 +size 835 diff --git a/features/optical_flow/want_031_aug_rotate_flow.npz b/features/optical_flow/want_031_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..7e2ecf407e57a6e657e096fdf50afb236a37864b --- /dev/null +++ b/features/optical_flow/want_031_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d9ab803a6916d66ce9771fee185758452d5a4feae01742767ca212bf3c2295 +size 1964 diff --git a/features/optical_flow/want_031_flow.npz b/features/optical_flow/want_031_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e876f6659cab493e1c63dbd47c5fe250022b7cbd --- /dev/null +++ b/features/optical_flow/want_031_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e63bcfb202c55c78d7346622cd409be342d9d2a559346dd29c54f8cee1493b +size 1985 diff --git a/features/optical_flow/want_032_aug_flip_flow.npz b/features/optical_flow/want_032_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..258e2716ca75d1e5e9797aeb92a2b7d919afb8f2 --- /dev/null +++ b/features/optical_flow/want_032_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1fb94c76b5b40b7214b0c2ffca1d3b5d3f6158e58b2464d5e2e5e388a55076b +size 1859 diff --git a/features/optical_flow/want_032_aug_shift_flow.npz b/features/optical_flow/want_032_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..68c6995446258910f85e5bf5f00d4f362105894a --- /dev/null +++ b/features/optical_flow/want_032_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe491e5ec5a51b8100a2256273f8076b998aa3215cfa1141716349d32bd138e +size 1822 diff --git a/features/optical_flow/want_032_flow.npz b/features/optical_flow/want_032_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..4b5079983ec8203a480d7397d7b88463e70933fe --- /dev/null +++ b/features/optical_flow/want_032_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2506e2523b8a584f0024fcf01f9b20cd68064ca104f901a0fda603fb603a6666 +size 1861 diff --git a/features/optical_flow/want_033_aug_flip_flow.npz b/features/optical_flow/want_033_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..a131532f4310801ba784cbb758edfbb6c146a595 --- /dev/null +++ b/features/optical_flow/want_033_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0f9c25554ea481f336e3fc34738f769976a7acd60b7ffaa921298e631a349f +size 933 diff --git a/features/optical_flow/want_033_aug_rotate_flow.npz b/features/optical_flow/want_033_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e69b0ec0f78c49bf9161428b5ec119442dd93f94 --- /dev/null +++ b/features/optical_flow/want_033_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235f5b0cd8948fbf3963585bd7ddbaee2602222b709e539599ead30a8a7f2488 +size 924 diff --git a/features/optical_flow/want_033_flow.npz b/features/optical_flow/want_033_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..96d6e32b3790aa2373ca95e88ba972e4498fde8a --- /dev/null +++ b/features/optical_flow/want_033_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d91b1d3e03ce697e59a119f3540dc47c3a871e383f553988958f67b9c81009 +size 936 diff --git a/features/optical_flow/want_034_aug_flip_flow.npz b/features/optical_flow/want_034_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c409fcb05ab09324093c424d71988fc64cac6410 --- /dev/null +++ b/features/optical_flow/want_034_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c3edbe15154e76d782ccafd4b28b34760251dafa433df6ce0d0ecae917e170 +size 1036 diff --git a/features/optical_flow/want_034_aug_rotate_flow.npz b/features/optical_flow/want_034_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..34eae9affa7f57faba4433df6678a0a8aeb3b829 --- /dev/null +++ b/features/optical_flow/want_034_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a0ea20515665e313a2ab3ba529f4d9eac37769c405296f1679765f9d931be9 +size 1019 diff --git a/features/optical_flow/want_034_flow.npz b/features/optical_flow/want_034_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..926359efa6de4baa312d58e301f4d5ad4ea58406 --- /dev/null +++ b/features/optical_flow/want_034_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a268aab4bea854002fb824a64fde17ca9fb1ea0e5853d6fce462b80b24c66b72 +size 1036 diff --git a/features/optical_flow/want_035_aug_flip_flow.npz b/features/optical_flow/want_035_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c5c1f16f0507820f486d77c2e6e6d684991c458b --- /dev/null +++ b/features/optical_flow/want_035_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad24b8ab0bf8e0bbd2302f05c0a3304a81ac6c36af1342ce6b25a91fd96d01bb +size 957 diff --git a/features/optical_flow/want_035_aug_rotate_flow.npz b/features/optical_flow/want_035_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..e481eb86137ffeb410a46726b9319255e07317ef --- /dev/null +++ b/features/optical_flow/want_035_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1933bf037e69c7e75523e8927d94d475e573098f4f4498e8053cac2f458e9f +size 953 diff --git a/features/optical_flow/want_035_aug_shift_flow.npz b/features/optical_flow/want_035_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..3fdab2454dd01e9b30ac3f56a221f274dba08953 --- /dev/null +++ b/features/optical_flow/want_035_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0494d7925ea88b96b0cca4d77c0814cc51fb7a3d0a746775b2cce3446f11cf4 +size 940 diff --git a/features/optical_flow/want_035_flow.npz b/features/optical_flow/want_035_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..ecb715f59b5943cbccca8a2fdc39f5305e17a824 --- /dev/null +++ b/features/optical_flow/want_035_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a42bfaf77ba59f2b3ca349f14f37108b846971e11f043d8ae78896084e646c +size 959 diff --git a/features/optical_flow/want_036_aug_flip_flow.npz b/features/optical_flow/want_036_aug_flip_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..c586e0e59fdc5131091f04389d490e5271a8fceb --- /dev/null +++ b/features/optical_flow/want_036_aug_flip_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27185f5da4f11a8d2fc14cb335da4631bca72c6b92d70d26ca51757e35a1c53 +size 665 diff --git a/features/optical_flow/want_036_aug_rotate_flow.npz b/features/optical_flow/want_036_aug_rotate_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..1dfcf3ac768ba30b09b87bec790648cf3afc7331 --- /dev/null +++ b/features/optical_flow/want_036_aug_rotate_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2bd2033e2e84bd1045f4aa012186341d298a302c1df571b722caf955361670 +size 665 diff --git a/features/optical_flow/want_036_aug_shift_flow.npz b/features/optical_flow/want_036_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..cd87e255423e71647fc6c44f0826ef367be8f182 --- /dev/null +++ b/features/optical_flow/want_036_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:777474758be9d457c632034e12f48bb75cedc04b328fc0e68ea9b19cb5734bef +size 667 diff --git a/features/optical_flow/want_036_flow.npz b/features/optical_flow/want_036_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..20c52aed8bcfa42f96d3350ffbe3d25aa6d77ccd --- /dev/null +++ b/features/optical_flow/want_036_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fafb6ba6c9998d8b23d36a0094652f3cf0d5c3820fa2bc44b18f8d87958e88d +size 664 diff --git a/features/optical_flow/want_037_aug_shift_flow.npz b/features/optical_flow/want_037_aug_shift_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..0ed1c085a9ca26d4f5d05448ff6d4c940cbfe98e --- /dev/null +++ b/features/optical_flow/want_037_aug_shift_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4204d0a3ce95d5540186adbd62c9c3ad69d7fbcf2f2131d69efdc82aa54f19e9 +size 922 diff --git a/features/optical_flow/want_037_flow.npz b/features/optical_flow/want_037_flow.npz new file mode 100644 index 0000000000000000000000000000000000000000..770707bc8977b123cb9be32c2cf2b087b77f2fe9 --- /dev/null +++ b/features/optical_flow/want_037_flow.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c101652584f62bc8f627cf4d49ef553888683210a87d581caea7eabbd5e513b +size 933 diff --git a/final_review_gate.py b/final_review_gate.py new file mode 100644 index 0000000000000000000000000000000000000000..326f6d908f30f15dad177fa664eb8efb54446f39 --- /dev/null +++ b/final_review_gate.py @@ -0,0 +1,59 @@ +# final_review_gate.py +import sys +import os + +if __name__ == "__main__": + # Try to make stdout unbuffered for more responsive interaction. + # This might not work on all platforms or if stdout is not a TTY, + # but it's a good practice for this kind of interactive script. + try: + sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', buffering=1) + except Exception: + pass # Ignore if unbuffering fails, e.g., in certain environments + + try: + sys.stderr = os.fdopen(sys.stderr.fileno(), 'w', buffering=1) + except Exception: + pass # Ignore + + print("--- FINAL REVIEW GATE ACTIVE ---", flush=True) + print("AI has completed its primary actions. Awaiting your review or further sub-prompts.", flush=True) + print("Type your sub-prompt, or one of: 'TASK_COMPLETE', 'Done', 'Quit', 'q' to signal completion.", flush=True) # MODIFIED + + active_session = True + while active_session: + try: + # Signal that the script is ready for input. + # The AI doesn't need to parse this, but it's good for user visibility. + print("REVIEW_GATE_AWAITING_INPUT:", end="", flush=True) + + line = sys.stdin.readline() + + if not line: # EOF + print("--- REVIEW GATE: STDIN CLOSED (EOF), EXITING SCRIPT ---", flush=True) + active_session = False + break + + user_input = line.strip() + + # Check for exit conditions + if user_input.upper() in ['TASK_COMPLETE', 'DONE', 'QUIT', 'Q']: # MODIFIED: Empty string no longer exits + print(f"--- REVIEW GATE: USER SIGNALED COMPLETION WITH '{user_input.upper()}' ---", flush=True) + active_session = False + break + elif user_input: # If there's any other non-empty input (and not a completion command) + # This is the critical line the AI will "listen" for. + print(f"USER_REVIEW_SUB_PROMPT: {user_input}", flush=True) + # If user_input was empty (and not a completion command), + # the loop simply continues, and "REVIEW_GATE_AWAITING_INPUT:" will be printed again. + + except KeyboardInterrupt: + print("--- REVIEW GATE: SESSION INTERRUPTED BY USER (KeyboardInterrupt) ---", flush=True) + active_session = False + break + except Exception as e: + print(f"--- REVIEW GATE SCRIPT ERROR: {e} ---", flush=True) + active_session = False + break + + print("--- FINAL REVIEW GATE SCRIPT EXITED ---", flush=True) \ No newline at end of file diff --git a/labels.csv b/labels.csv new file mode 100644 index 0000000000000000000000000000000000000000..8abf62b4a8b0e57c92147cd28ea0fb0340b4bb28 --- /dev/null +++ b/labels.csv @@ -0,0 +1,5 @@ +index,label +0,eat +1,fish +2,like +3,want \ No newline at end of file diff --git a/models/sign_language_model.pth b/models/sign_language_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ea85a50d8aa2746c5602174128724c43802149bb --- /dev/null +++ b/models/sign_language_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1caa89d0da7bfd7383b89e13b3fa5bb7bfa56b0fa2a683b51f4bf30cbc936b02 +size 1762569 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..ffb9a11169ebaa17cc887a57e6e526f75e8b40b7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +# --- Web Framework & Server --- +flask==2.3.3 +flask-socketio==5.3.4 +gunicorn==21.2.0 +werkzeug==2.3.6 + +# --- ML & Data Processing --- +torch==2.0.1 +opencv-python==4.8.0.74 +mediapipe==0.10.1 +numpy==1.24.3 +pandas==2.0.3 + +# --- APIs & HTTP Requests --- +openai==1.6.1 +requests==2.31.0 \ No newline at end of file diff --git a/sign_language_processor.py b/sign_language_processor.py new file mode 100644 index 0000000000000000000000000000000000000000..a40924a12c2bad5142cd2196748fc90785b7c562 --- /dev/null +++ b/sign_language_processor.py @@ -0,0 +1,295 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import os +import cv2 +import numpy as np +import pandas as pd +import torch +import torch.nn as nn +import mediapipe as mp +from openai import OpenAI + +# -------------------- +# 特徵提取模塊 +# -------------------- +class FeatureExtractor: + def __init__(self): + self.mp_holistic = mp.solutions.holistic + + def extract_pose_keypoints(self, frame, holistic_results): + keypoints = [] + if holistic_results.left_hand_landmarks: + for landmark in holistic_results.left_hand_landmarks.landmark: + keypoints.extend([landmark.x, landmark.y, landmark.z]) + else: + keypoints.extend([0] * (21 * 3)) + + if holistic_results.right_hand_landmarks: + for landmark in holistic_results.right_hand_landmarks.landmark: + keypoints.extend([landmark.x, landmark.y, landmark.z]) + else: + keypoints.extend([0] * (21 * 3)) + + if holistic_results.pose_landmarks: + for landmark in holistic_results.pose_landmarks.landmark: + keypoints.extend([landmark.x, landmark.y, landmark.z]) + else: + keypoints.extend([0] * (33 * 3)) + + return np.array(keypoints) + +# -------------------- +# 模型架構 +# -------------------- +class SignLanguageModel(nn.Module): + """ + 手語辨識模型,使用雙向LSTM和注意力機制,加入批量標準化和殘差連接 + """ + def __init__(self, input_dim, hidden_dim, num_layers, num_classes, dropout=0.5): + super(SignLanguageModel, self).__init__() + self.hidden_dim = hidden_dim + self.num_layers = num_layers + + # 特徵投影層,將輸入映射到統一維度 + self.feature_projection = nn.Sequential( + nn.Linear(input_dim, hidden_dim), + nn.BatchNorm1d(hidden_dim), + nn.ReLU(), + nn.Dropout(dropout/2) + ) + + # 雙向LSTM層 + self.lstm = nn.LSTM( + input_size=hidden_dim, + hidden_size=hidden_dim, + num_layers=num_layers, + batch_first=True, + dropout=dropout if num_layers > 1 else 0, + bidirectional=True + ) + + # 批量標準化層(用於規範化LSTM輸出) + self.lstm_bn = nn.BatchNorm1d(hidden_dim * 2) + + # 注意力機制 + self.attention = nn.Sequential( + nn.Linear(hidden_dim * 2, hidden_dim), + nn.Tanh(), + nn.Linear(hidden_dim, 1), + nn.Softmax(dim=1) + ) + + # 分類器 + self.classifier = nn.Sequential( + nn.Linear(hidden_dim * 2, hidden_dim), + nn.BatchNorm1d(hidden_dim), + nn.ReLU(), + nn.Dropout(dropout), + nn.Linear(hidden_dim, hidden_dim // 2), + nn.ReLU(), + nn.Dropout(dropout/2), + nn.Linear(hidden_dim // 2, num_classes) + ) + + def forward(self, x): + batch_size, seq_len, _ = x.size() + + # 特徵投影 + x_reshaped = x.reshape(-1, x.size(-1)) + x_projected_linear = self.feature_projection[0](x_reshaped) + x_projected_reshaped = x_projected_linear.reshape(batch_size, seq_len, -1) + x_projected_transposed = x_projected_reshaped.transpose(1, 2) + x_projected_bn = self.feature_projection[1](x_projected_transposed) + x_projected_transposed_back = x_projected_bn.transpose(1, 2) + x_projected = self.feature_projection[2](x_projected_transposed_back) + x_projected = self.feature_projection[3](x_projected) + + # LSTM處理 + lstm_out, _ = self.lstm(x_projected) + + # 對LSTM輸出應用BatchNorm + lstm_out_bn = self.lstm_bn(lstm_out.transpose(1, 2)).transpose(1, 2) + + # 注意力權重計算 + attention_weights = self.attention(lstm_out_bn) + + # 應用注意力機制 + context = torch.bmm(lstm_out_bn.transpose(1, 2), attention_weights).squeeze(-1) + + # 最終分類 + output = self.classifier(context) + return output + +# -------------------- +# 影片辨識器 +# -------------------- +class VideoSignLanguageRecognizer: + def __init__(self, model_path, threshold=0.7): + self.model_path = model_path + self.threshold = threshold + self.feature_extractor = FeatureExtractor() + self.label_map = self._load_label_mapping() + self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + self.model = self._load_model() + try: + self.openai_client = OpenAI() + except Exception as e: + print(f"初始化OpenAI客户端出錯: {e}") + self.openai_client = None + print(f"影片辨識器初始化完成!使用設備: {self.device}") + + def _load_label_mapping(self): + label_map = {} + labels_file = "labels.csv" + if os.path.exists(labels_file): + try: + df = pd.read_csv(labels_file) + for _, row in df.iterrows(): + label_map[int(row['index'])] = row['label'] + print(f"✅ 從 {labels_file} 載入了 {len(label_map)} 個類別標籤") + except Exception as e: + print(f"❌ 讀取 labels.csv 出錯: {e}") + else: + print(f"⚠️ 找不到標籤檔案: {labels_file},將使用空映射。") + return label_map + + def _load_model(self): + # The parameters here must match the original model's training parameters + num_classes = len(self.label_map) if self.label_map else 4 # Fallback to 4 classes if no labels.csv + input_dim = 225 + hidden_dim = 96 # Adjusted to match original model + num_layers = 2 + + model = SignLanguageModel( + input_dim=input_dim, + hidden_dim=hidden_dim, + num_layers=num_layers, + num_classes=num_classes + ) + + if os.path.exists(self.model_path): + try: + model.load_state_dict(torch.load(self.model_path, map_location=self.device)) + model.to(self.device) + model.eval() + print(f"✅ 模型成功從 {self.model_path} 載入") + return model + except Exception as e: + print(f"❌ 載入模型權重時出錯: {e}") + else: + print(f"⚠️ 找不到模型檔案: {self.model_path}") + return None + + def process_video(self, video_path): + if not self.model: + return {"status": "error", "message": "模型未成功載入"} + + cap = cv2.VideoCapture(video_path) + if not cap.isOpened(): + return {"status": "error", "message": f"無法打開影片檔案: {video_path}"} + + all_keypoints = [] + with self.feature_extractor.mp_holistic.Holistic(min_detection_confidence=0.5, min_tracking_confidence=0.5) as holistic: + while cap.isOpened(): + ret, frame = cap.read() + if not ret: break + keypoints = self._extract_features(frame, holistic) + all_keypoints.append(keypoints) + cap.release() + + if not all_keypoints: + return {"recognition_result": "影片中未偵測到有效動作。", "confidence": 0} + + keypoints_sequence = np.array(all_keypoints) + word_sequence, confidence = self._predict_from_sequence(keypoints_sequence) + + if self.openai_client and word_sequence: + final_sentence = self._generate_sentence_with_gpt(word_sequence) + else: + final_sentence = " ".join(word_sequence) if word_sequence else "無法辨識" + + return {"recognition_result": final_sentence, "confidence": confidence} + + def _extract_features(self, frame, holistic): + image = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) + image.flags.writeable = False + results = holistic.process(image) + image.flags.writeable = True + return self.feature_extractor.extract_pose_keypoints(frame, results) + + def _predict_from_sequence(self, keypoints_sequence): + WINDOW_SIZE = 30 + STRIDE = 10 + if len(keypoints_sequence) < WINDOW_SIZE: + return self._single_prediction(keypoints_sequence) + + predictions = [] + for i in range(0, len(keypoints_sequence) - WINDOW_SIZE + 1, STRIDE): + window = keypoints_sequence[i:i + WINDOW_SIZE] + prediction, confidence = self._predict_single_window(window) + if prediction is not None: + predictions.append({"word": prediction, "confidence": confidence}) + + if not predictions: return [], 0 + processed_words, avg_confidence = self._post_process_predictions(predictions) + return processed_words, avg_confidence + + def _single_prediction(self, keypoints_sequence): + if len(keypoints_sequence) == 0: return None, 0.0 + padded_sequence = self._normalize_sequence_length(keypoints_sequence, 30) + return self._predict_single_window(padded_sequence) + + def _predict_single_window(self, window_sequence): + sequence_tensor = torch.tensor(window_sequence, dtype=torch.float32).unsqueeze(0).to(self.device) + with torch.no_grad(): + outputs = self.model(sequence_tensor) + probabilities = torch.softmax(outputs, dim=1) + confidence, predicted_idx = torch.max(probabilities, 1) + + predicted_label = self.label_map.get(predicted_idx.item()) + if confidence.item() > self.threshold: + return predicted_label, confidence.item() + return None, 0.0 + + def _normalize_sequence_length(self, sequence, target_length): + current_length = len(sequence) + if current_length == 0: + return np.zeros((target_length, sequence.shape[1] if len(sequence.shape)>1 else 225)) + if current_length > target_length: + return sequence[:target_length] + else: + padding = np.zeros((target_length - current_length, sequence.shape[1])) + return np.vstack((sequence, padding)) + + def _post_process_predictions(self, predictions): + if not predictions: return [], 0.0 + # Simple deduplication + final_words = [] + if predictions: + final_words.append(predictions[0]['word']) + for i in range(1, len(predictions)): + if predictions[i]['word'] != predictions[i-1]['word']: + final_words.append(predictions[i]['word']) + + total_confidence = sum(p['confidence'] for p in predictions) + avg_confidence = total_confidence / len(predictions) if predictions else 0.0 + return final_words, avg_confidence + + def _generate_sentence_with_gpt(self, word_sequence): + if not self.openai_client: return " ".join(word_sequence) + prompt = (f"你是一個手語翻譯專家。請將以下由獨立單詞組成的序列轉換成一句通順、完整的台灣繁體中文句子。" + f"原始單詞序列: [{', '.join(word_sequence)}]\n\n翻譯後的句子:") + try: + response = self.openai_client.chat.completions.create( + model="gpt-4o-mini", + messages=[{"role": "user", "content": prompt}], + temperature=0.5, + max_tokens=150 + ) + sentence = response.choices[0].message.content.strip() + print(f"🤖 GPT生成句子: {sentence}") + return sentence + except Exception as e: + print(f"❌ GPT API 調用失敗: {e}") + return " ".join(word_sequence) \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..fec4820dab75f868f8aa92237e4035880aec6088 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,312 @@ + + + + + + 手語辨識系統 + + + + + +
+

手語辨識系統

+ +
+
+
+
未偵測
+ 即時視頻畫面 +
+ +
+

控制面板

+
+ + +
+
+ +
+

單詞序列

+
尚無偵測結果
+
+ +
+

翻譯結果

+
等待手語輸入完成...
+
+
+ +
+
+

目前預測結果

+
未開始
+
信心度: 0%
+ +
所有類別機率
+
+
+
+
+ + +
+ + + + \ No newline at end of file