diff --git a/Spider/Chapter07_动态渲染页面爬取/PyppeteerPractice.py b/Spider/Chapter07_动态渲染页面爬取/PyppeteerPractice.py
new file mode 100644
index 0000000..7654840
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/PyppeteerPractice.py
@@ -0,0 +1,104 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 19:15
+@Usage :
+@Desc :
+'''
+
+import logging
+from os.path import exists
+from os import makedirs
+import json
+import asyncio
+from pyppeteer import launch
+from pyppeteer.errors import TimeoutError
+
+logging.basicConfig(level=logging.INFO,
+ format='%(asctime)s - %(levelname)s: %(message)s')
+
+INDEX_URL = 'https://spa2.scrape.center/page/{page}'
+TIMEOUT = 10
+TOTAL_PAGE = 10
+RESULTS_DIR = 'results'
+WINDOW_WIDTH, WINDOW_HEIGHT = 1366, 768
+
+exists(RESULTS_DIR) or makedirs(RESULTS_DIR)
+
+browser, tab = None, None
+HEADLESS = True
+
+
+async def init():
+ global browser, tab
+ browser = await launch(headless=HEADLESS,
+ args=['--disable-infobars', f'--window-size={WINDOW_WIDTH},{WINDOW_HEIGHT}'])
+ tab = await browser.newPage()
+ await tab.setViewport({'width': WINDOW_WIDTH, 'height': WINDOW_HEIGHT})
+
+
+async def scrape_page(url, selector):
+ logging.info('scraping %s', url)
+ try:
+ await tab.goto(url)
+ await tab.waitForSelector(selector, options={
+ 'timeout': TIMEOUT * 1000
+ })
+ except TimeoutError:
+ logging.error('error occurred while scraping %s', url, exc_info=True)
+
+
+async def scrape_index(page):
+ url = INDEX_URL.format(page=page)
+ await scrape_page(url, '.item .name')
+
+
+async def parse_index():
+ return await tab.querySelectorAllEval('.item .name', 'nodes => nodes.map(node => node.href)')
+
+
+async def scrape_detail(url):
+ await scrape_page(url, 'h2')
+
+
+async def parse_detail():
+ url = tab.url
+ name = await tab.querySelectorEval('h2', 'node => node.innerText')
+ categories = await tab.querySelectorAllEval('.categories button span', 'nodes => nodes.map(node => node.innerText)')
+ cover = await tab.querySelectorEval('.cover', 'node => node.src')
+ score = await tab.querySelectorEval('.score', 'node => node.innerText')
+ drama = await tab.querySelectorEval('.drama p', 'node => node.innerText')
+ return {
+ 'url': url,
+ 'name': name,
+ 'categories': categories,
+ 'cover': cover,
+ 'score': score,
+ 'drama': drama
+ }
+
+
+async def save_data(data):
+ name = data.get('name')
+ data_path = f'{RESULTS_DIR}/{name}.json'
+ json.dump(data, open(data_path, 'w', encoding='utf-8'), ensure_ascii=False, indent=2)
+
+
+async def main():
+ await init()
+ try:
+ for page in range(1, TOTAL_PAGE + 1):
+ await scrape_index(page)
+ detail_urls = await parse_index()
+ for detail_url in detail_urls:
+ await scrape_detail(detail_url)
+ detail_data = await parse_detail()
+ logging.info('data %s', detail_data)
+ await save_data(detail_data)
+ finally:
+ await browser.close()
+
+
+if __name__ == '__main__':
+ asyncio.get_event_loop().run_until_complete(main())
diff --git a/Spider/Chapter07_动态渲染页面爬取/SeleniumPractice.py b/Spider/Chapter07_动态渲染页面爬取/SeleniumPractice.py
new file mode 100644
index 0000000..608fe7c
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/SeleniumPractice.py
@@ -0,0 +1,111 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 15:58
+@Usage : 使用Selenium实战爬取 https://spa2.scrape.center/
+@Desc : 该网站爬取详情页时存在一个token,这个token的实现逻辑可能不确定,并且随事件发生变化,
+因此需要使用Selenium模拟浏览器操作跳过这段逻辑
+'''
+from selenium import webdriver
+from selenium.common.exceptions import TimeoutException
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support.wait import WebDriverWait
+from os import makedirs
+from os.path import exists
+import logging
+from urllib.parse import urljoin
+import json
+
+logging.basicConfig(level=logging.INFO,
+ format='%(asctime)s - %(levelname)s: %(message)s')
+
+INDEX_URL = 'https://spa2.scrape.center/page/{page}'
+Timeout = 10
+Total_page = 10
+RESULTS_DIR = 'result'
+
+exists(RESULTS_DIR) or makedirs(RESULTS_DIR)
+
+# 防止有一些网站设置反屏蔽手段
+options = webdriver.ChromeOptions()
+options.add_experimental_option('excludeSwitches', ['enable-automation'])
+options.add_experimental_option('useAutomationExtension', False)
+
+# 显示设置超时时间
+browser = webdriver.Chrome(options=options)
+wait = WebDriverWait(browser, Timeout)
+
+
+# 爬取网页
+def scrape_page(url, condition, locator):
+ logging.info('scraping %s', url)
+ try:
+ browser.get(url)
+ # 设置等待
+ wait.until(condition(locator))
+ except TimeoutException:
+ logging.error('error occurred while scraping %s', url, exc_info=True)
+
+
+def scrape_index(page):
+ url = INDEX_URL.format(page=page)
+ # 设置等待条件为当所有的index下面的子item都出来之后
+ scrape_page(url, EC.visibility_of_all_elements_located, locator=(By.CSS_SELECTOR, '#index .item'))
+
+
+def parse_index():
+ titles = browser.find_elements(By.CSS_SELECTOR, '#index .item .name')
+ for title in titles:
+ href = title.get_attribute("href")
+ yield urljoin(INDEX_URL, href)
+
+
+def scrape_detail(url):
+ return scrape_page(url, EC.visibility_of_element_located, (By.TAG_NAME, 'h2'))
+
+
+def parse_detail():
+ url = browser.current_url
+ name = browser.find_element(By.TAG_NAME, 'h2').text
+ category = [element.text for element in browser.find_elements(By.CSS_SELECTOR, '.categories button span')]
+ cover = browser.find_element(By.CLASS_NAME, 'cover').get_attribute("src")
+ score = browser.find_element(By.CLASS_NAME, 'score').text
+ drama = browser.find_element(By.CSS_SELECTOR, '.drama p').text
+ return {
+ "url": url,
+ "name": name,
+ "category": category,
+ "cover": cover,
+ "score": score,
+ "drama": drama
+ }
+
+
+def save_data(data):
+ name = data.get('name')
+ data_path = f'{RESULTS_DIR}/{name}.json'
+ json.dump(data, open(data_path, 'w', encoding='utf-8'), ensure_ascii=False, indent=2)
+
+def main():
+ try:
+
+ for page in range(1, Total_page + 1):
+ scrape_index(page)
+ # 页面加载完毕之后,获取对应的url
+ detail_urls=list(parse_index())
+ # logging.info('detail data %s', list(detail_urls))
+ # 遍历所有的detail_urls,获取详情页信息
+ for detail_url in detail_urls:
+ scrape_detail(detail_url)
+ detail_info = parse_detail()
+ logging.info('detail info %s', detail_info)
+ save_data(detail_info)
+
+ finally:
+ browser.close()
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/__init__.py b/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/__init__.py
new file mode 100644
index 0000000..edd8101
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 19:32
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/main1.py b/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/main1.py
new file mode 100644
index 0000000..c4189d0
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/css位置偏移反爬样式分析/main1.py
@@ -0,0 +1,59 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 19:32
+@Usage :
+@Desc :
+'''
+
+from selenium import webdriver
+from pyquery import PyQuery as pq
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.webdriver.support.wait import WebDriverWait
+import re
+
+
+# 解析名字,排序获得正确的顺序
+def parse_name(name_html):
+ chars = name_html('.char')
+ items = []
+ for char in chars.items():
+ items.append({
+ 'text': char.text().strip(),
+ 'left': int(re.search('(\d+)px', char.attr('style')).group(1))
+ })
+ items = sorted(items, key=lambda x: x['left'], reverse=False)
+ return ''.join([item.get('text') for item in items])
+
+
+# 判断如果是完整的就不进行下述操作
+def parse_name_whole(name_html):
+ has_whole = name_html('.whole')
+ if has_whole:
+ return name_html.text()
+ else:
+ chars = name_html('.char')
+ items = []
+ for char in chars.items():
+ items.append({
+ 'text': char.text().strip(),
+ 'left': int(re.search('(\d+)px', char.attr('style')).group(1))
+ })
+ items = sorted(items, key=lambda x: x['left'], reverse=False)
+ return ''.join([item.get('text') for item in items])
+
+
+browser = webdriver.Chrome()
+browser.get('https://antispider3.scrape.center/')
+WebDriverWait(browser, 10) \
+ .until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, '.item')))
+html = browser.page_source
+doc = pq(html)
+names = doc('.item .name')
+
+for name_html in names.items():
+ name = parse_name_whole(name_html)
+ print(name)
+browser.close()
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/__init__.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/__init__.py
new file mode 100644
index 0000000..98d663a
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 13:27
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo1基本使用.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo1基本使用.py
new file mode 100644
index 0000000..fcfde1c
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo1基本使用.py
@@ -0,0 +1,40 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 13:34
+@Usage : playwright基本使用
+@Desc :
+@参考:https://github.dev/Python3WebSpider/PlaywrightTest
+'''
+
+# playwright既支持Pyppetter的异步模式,又支持selenium的同步模式
+import asyncio
+# 同步模式
+from playwright.sync_api import sync_playwright
+
+with sync_playwright() as p:
+ for browser_type in [p.chromium, p.firefox, p.webkit]:
+ browser = browser_type.launch(headless=False)
+ page = browser.new_page()
+ page.goto('https://www.baidu.com')
+ page.screenshot(path=f'screenshot-{browser_type.name}.png')
+ print(page.title())
+ browser.close()
+
+
+# 异步模式
+from playwright.async_api import async_playwright
+
+
+async def main():
+ async with async_playwright() as p:
+ for browser_type in [p.chromium, p.firefox, p.webkit]:
+ browser = await browser_type.launch(headless=False)
+ page = await browser.new_page()
+ await page.goto('https://www.baidu.com')
+ await page.screenshot(path=f'screenshot-{browser_type.name}.png')
+ print(await page.title())
+ await browser.close()
+
+asyncio.run(main())
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo2代码生成.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo2代码生成.py
new file mode 100644
index 0000000..d03f4a8
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo2代码生成.py
@@ -0,0 +1,34 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 14:00
+@Usage :
+@Desc :playWright有一个强大的功能,是可以录制我们在浏览器中的操作并自动生成代码
+'''
+
+from playwright.sync_api import Playwright, sync_playwright, expect
+
+
+def run(playwright: Playwright) -> None:
+ browser = playwright.firefox.launch(headless=False)
+ # 这里使用context而不是browser,可以让每个context都是一个独立的上下文环境,资源隔离
+ context = browser.new_context()
+ page = context.new_page()
+ page.goto("https://www.baidu.com/")
+ page.locator("#kw").click()
+ page.locator("#kw").fill("python")
+ page.get_by_role("button", name="百度一下").click()
+ page.get_by_role("button", name="百度一下").click()
+ page.locator("#kw").click()
+ page.locator("#kw").fill("nba")
+ page.get_by_role("button", name="百度一下").click()
+ page.close()
+
+ # ---------------------
+ context.close()
+ browser.close()
+
+
+with sync_playwright() as playwright:
+ run(playwright)
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo3移动端浏览器.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo3移动端浏览器.py
new file mode 100644
index 0000000..9549a92
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo3移动端浏览器.py
@@ -0,0 +1,44 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 14:40
+@Usage :
+@Desc :playwright还支持移动端浏览器
+'''
+
+import time
+from playwright.sync_api import sync_playwright
+
+# 模拟打开iPhone 12 Pro Max的safari浏览器
+with sync_playwright() as p:
+ iphone_12_pro_max = p.devices['iPhone 12 Pro Max']
+ browser = p.webkit.launch(headless=False)
+ context = browser.new_context(
+ **iphone_12_pro_max,
+ locale='zh-CN',
+ )
+ page = context.new_page()
+ page.goto('https://www.whatismybrowser.com/')
+ # 等待页面的某个状态完成,这里传入的state是networkidle,表示网络空闲状态
+ page.wait_for_load_state(state='networkidle')
+ page.screenshot(path='browser-info.png')
+ time.sleep(10)
+ browser.close()
+
+
+with sync_playwright() as p:
+ iphone_12_pro_max = p.devices['iPhone 12 Pro Max']
+ browser = p.webkit.launch(headless=False)
+ context = browser.new_context(
+ **iphone_12_pro_max,
+ locale='zh-CN',
+ geolocation={'longitude': 116.39014, 'latitude': 39.913904},
+ permissions=['geolocation']
+ )
+ page = context.new_page()
+ page.goto('https://amap.com')
+ page.wait_for_load_state(state='networkidle')
+ page.screenshot(path='location-iphone.png')
+ time.sleep(10)
+ browser.close()
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo4常用操作.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo4常用操作.py
new file mode 100644
index 0000000..e638d84
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/demo4常用操作.py
@@ -0,0 +1,100 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 15:12
+@Usage :
+@Desc : playwright常用操作
+'''
+
+from playwright.sync_api import sync_playwright
+
+
+# 事件监听
+def on_response(response):
+ print(f'Statue {response.status}: {response.url}')
+
+
+# 截获ajax命令
+def on_response1(response):
+ if '/api/movie/' in response.url and response.status == 200:
+ print(response.json())
+
+
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+ # 监听response时间,每次网络请求得到响应的时候会触发这个事件
+ # page.on('response', on_response)
+ page.on('response', on_response1)
+ page.goto('https://spa6.scrape.center/')
+ page.wait_for_load_state('networkidle')
+ browser.close()
+
+获取页面源代码
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+ page.goto('https://spa6.scrape.center/')
+ page.wait_for_load_state('networkidle')
+ html = page.content()
+ print(html)
+ browser.close()
+
+# 获取节点内容
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+ page.goto('https://spa6.scrape.center/')
+ page.wait_for_load_state('networkidle')
+ # 代表查找class为name的a节点,第二个参数传href表示获取超链接的内容
+ href = page.get_attribute('a.name', 'href')
+ print(href)
+ browser.close()
+
+# 获取多个节点
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+ page.goto('https://spa6.scrape.center/')
+ page.wait_for_load_state('networkidle')
+ elements = page.query_selector_all('a.name')
+ for element in elements:
+ print(element.get_attribute('href'))
+ print(element.text_content())
+ browser.close()
+
+# 网络拦截
+import re
+
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+
+
+ def canel_request(route, request):
+ route.abort()
+
+
+ page.route(re.compile(r"(\.png)|(\.jpg)"), canel_request)
+ page.goto("https://spa6.scrape.center/")
+ page.wait_for_load_state("networkidle")
+ page.screenshot(path='no_picture.png')
+ browser.close()
+
+# 拦截之后填充自己的
+import time
+
+with sync_playwright() as p:
+ browser = p.chromium.launch(headless=False)
+ page = browser.new_page()
+
+
+ def modify_response(route, request):
+ route.fulfill(path="./custom_response.html")
+
+
+ page.route('/', modify_response)
+ page.goto("https://spa6.scrape.center/")
+ time.sleep(10)
+ browser.close()
diff --git a/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/script.py b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/script.py
new file mode 100644
index 0000000..ce7e7e7
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/playwrightLearning/script.py
@@ -0,0 +1,24 @@
+from playwright.sync_api import Playwright, sync_playwright, expect
+
+
+def run(playwright: Playwright) -> None:
+ browser = playwright.firefox.launch(headless=False)
+ context = browser.new_context()
+ page = context.new_page()
+ page.goto("https://www.baidu.com/")
+ page.locator("#kw").click()
+ page.locator("#kw").fill("python")
+ page.get_by_role("button", name="百度一下").click()
+ page.get_by_role("button", name="百度一下").click()
+ page.locator("#kw").click()
+ page.locator("#kw").fill("nba")
+ page.get_by_role("button", name="百度一下").click()
+ page.close()
+
+ # ---------------------
+ context.close()
+ browser.close()
+
+
+with sync_playwright() as playwright:
+ run(playwright)
diff --git a/Spider/Chapter07_动态渲染页面爬取/seleniumLearning/demo3.py b/Spider/Chapter07_动态渲染页面爬取/seleniumLearning/demo3.py
index 0156c6c..4840b3d 100644
--- a/Spider/Chapter07_动态渲染页面爬取/seleniumLearning/demo3.py
+++ b/Spider/Chapter07_动态渲染页面爬取/seleniumLearning/demo3.py
@@ -20,3 +20,4 @@ input.clear() # 清空文字
input.send_keys('iPad')
button = browser.find_element(By.CLASS_NAME, 'btn-search')
button.click() # 点击搜索
+
diff --git a/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/__init__.py b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/__init__.py
new file mode 100644
index 0000000..8d35434
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 20:07
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main1.py b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main1.py
new file mode 100644
index 0000000..b9ccd9c
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main1.py
@@ -0,0 +1,28 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 20:07
+@Usage :
+@Desc :字体反扒测试
+'''
+
+from selenium import webdriver
+from pyquery import PyQuery as pq
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.webdriver.support.wait import WebDriverWait
+
+browser = webdriver.Chrome()
+browser.get('https://antispider4.scrape.center/')
+WebDriverWait(browser, 10) \
+ .until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, '.item')))
+html = browser.page_source
+doc = pq(html)
+items = doc('.item')
+for item in items.items():
+ name = item('.name').text()
+ categories = [o.text() for o in item('.categories button').items()]
+ score = item('.score').text()
+ print(f'name: {name} categories: {categories} score: {score}')
+browser.close()
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main2.py b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main2.py
new file mode 100644
index 0000000..2d65e9d
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main2.py
@@ -0,0 +1,20 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 20:20
+@Usage :
+@Desc :尝试解析对应的css源文件,来获取对应的我们想要的
+'''
+
+import re
+import requests
+url = 'https://antispider4.scrape.center/css/app.654ba59e.css'
+
+
+response = requests.get(url)
+pattern = re.compile('.icon-(.*?):before\{content:"(.*?)"\}')
+results = re.findall(pattern, response.text)
+icon_map = {item[0]: item[1] for item in results}
+print(icon_map['789'])
+print(icon_map['437'])
\ No newline at end of file
diff --git a/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main3.py b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main3.py
new file mode 100644
index 0000000..e44ef49
--- /dev/null
+++ b/Spider/Chapter07_动态渲染页面爬取/字体反爬案例分析与爬取实战/main3.py
@@ -0,0 +1,49 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/7 20:22
+@Usage :
+@Desc :
+'''
+
+from selenium import webdriver
+from pyquery import PyQuery as pq
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.webdriver.support.wait import WebDriverWait
+import re
+import requests
+url = 'https://antispider4.scrape.center/css/app.654ba59e.css'
+
+
+response = requests.get(url)
+pattern = re.compile('.icon-(.*?):before\{content:"(.*?)"\}')
+results = re.findall(pattern, response.text)
+icon_map = {item[0]: item[1] for item in results}
+
+
+def parse_score(item):
+ elements = item('.icon')
+ icon_values = []
+ for element in elements.items():
+ class_name = (element.attr('class'))
+ icon_key = re.search('icon-(\d+)', class_name).group(1)
+ icon_value = icon_map.get(icon_key)
+ icon_values.append(icon_value)
+ return ''.join(icon_values)
+
+
+browser = webdriver.Chrome()
+browser.get('https://antispider4.scrape.center/')
+WebDriverWait(browser, 10) \
+ .until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, '.item')))
+html = browser.page_source
+doc = pq(html)
+items = doc('.item')
+for item in items.items():
+ name = item('.name').text()
+ categories = [o.text() for o in item('.categories button').items()]
+ score = parse_score(item)
+ print(f'name: {name} categories: {categories} score: {score}')
+browser.close()
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/__init__.py b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/__init__.py
new file mode 100644
index 0000000..114f0b0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 17:17
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo1识别测试.py b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo1识别测试.py
new file mode 100644
index 0000000..825c858
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo1识别测试.py
@@ -0,0 +1,16 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 19:31
+@Usage :
+@Desc :
+'''
+
+import tesserocr
+from PIL import Image
+
+
+image = Image.open('image.png')
+result = tesserocr.image_to_text(image)
+print(result) # 打印:19 b 2
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo2处理验证码.py b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo2处理验证码.py
new file mode 100644
index 0000000..68dafc1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo2处理验证码.py
@@ -0,0 +1,26 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 19:35
+@Usage :
+@Desc :
+'''
+import tesserocr
+from PIL import Image
+import numpy as np
+
+image = Image.open('image.png')
+
+print(np.array(image).shape)
+print(image.mode)
+
+image = image.convert('L')
+threshold = 100
+array = np.array(image)
+
+array = np.where(array > threshold, 255, 0)
+image = Image.fromarray(array.astype('uint8'))
+
+# image.show()
+print(tesserocr.image_to_text(image))
diff --git a/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo3爬取实战.py b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo3爬取实战.py
new file mode 100644
index 0000000..3051b96
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/OCR技术识别图形验证码/demo3爬取实战.py
@@ -0,0 +1,65 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 19:53
+@Usage :
+@Desc : 尝试使用selenium和ocr技术去爬取 https://captcha7.scrape.center/
+@参考:https://github.com/Python3WebSpider/CrackImageCaptcha/blob/master/main.py
+'''
+
+from selenium import webdriver
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support.wait import WebDriverWait
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.common.exceptions import TimeoutException
+from io import BytesIO
+from PIL import Image
+import numpy as np
+import tesserocr
+import re
+from retrying import retry
+import time
+
+browser = webdriver.Chrome()
+
+
+# 预处理,提高图片识别率
+def preProcess(image):
+ image = image.convert('L')
+ array = np.array(image)
+ array = np.where(array > 50, 255, 0)
+ return Image.fromarray(array.astype('uint8'))
+
+
+@retry(stop_max_attempt_number=10, retry_on_result=lambda x: x is False)
+def login():
+ browser.get('https://captcha7.scrape.center/')
+ # send_keys输入
+ browser.find_element(By.CSS_SELECTOR, ".username input[type='text']").send_keys('admin')
+ browser.find_element(By.CSS_SELECTOR, ".password input[type='password']").send_keys('admin')
+ captcha = browser.find_element(By.CSS_SELECTOR, "#captcha")
+ image = Image.open(BytesIO(captcha.screenshot_as_png))
+ print("处理前:",tesserocr.image_to_text(image))
+ # 预处理提高识别率
+ # image = preProcess(image)
+ # captcha = tesserocr.image_to_text(image)
+ # 模式匹配,消除空格等
+ captcha=tesserocr.image_to_text(image)
+ print("处理后:",captcha)
+ captcha = re.sub(' ', '', captcha)
+ print("模式匹配后",captcha)
+ browser.find_element(By.CSS_SELECTOR, ".captcha input[type='text']").send_keys(captcha)
+ # 点击登录
+ browser.find_element(By.CSS_SELECTOR, '.login').click()
+ try:
+ WebDriverWait(browser, 10).until(EC.presence_of_element_located((By.XPATH, '//h2[contains(.,"登录成功")]')))
+ time.sleep(5)
+ browser.close()
+ return True
+ except TimeoutException:
+ return False
+
+
+if __name__ == '__main__':
+ login()
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/__init__.py b/Spider/Chapter08_验证码的识别/__init__.py
new file mode 100644
index 0000000..114f0b0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 17:17
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/__init__.py b/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/__init__.py
new file mode 100644
index 0000000..e21af44
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 20:49
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/demo1缺口识别.py b/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/demo1缺口识别.py
new file mode 100644
index 0000000..67bf658
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/opencv识别滑动验证码缺口/demo1缺口识别.py
@@ -0,0 +1,85 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/11 20:59
+@Usage :
+@Desc :
+@参考:https://github.com/Python3WebSpider/CrackSlideCaptcha/blob/cv/main.py
+'''
+
+import cv2
+
+GAUSSIAN_BLUR_KERNEL_SIZE = (5, 5)
+GAUSSIAN_BLUR_SIGMA_X = 0
+CANNY_THRESHOLD1 = 200
+CANNY_THRESHOLD2 = 450
+
+
+# 得到高斯滤波之后的图
+def get_gaussian_blur_image(image):
+ return cv2.GaussianBlur(image, GAUSSIAN_BLUR_KERNEL_SIZE, GAUSSIAN_BLUR_SIGMA_X)
+
+
+# 得到边缘检测之后的图
+def get_canny_image(image):
+ return cv2.Canny(image, CANNY_THRESHOLD1, CANNY_THRESHOLD2)
+
+
+# 得到轮廓信息,会保留比较明显的边缘信息
+def get_contours(image):
+ contours, _ = cv2.findContours(image, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE)
+ return contours
+
+
+# 得到轮廓的上下限:
+# 外接矩形的高度和宽度是通过实际测量得出来的,高约0.25,宽约0.15
+# 缺口有一个最大偏移量和最小偏移量,最小偏移量是验证码宽度的0.2倍,最大是0.85倍
+
+#面积阈值
+def get_contour_area_threshold(image_width, image_height):
+ contour_area_min = (image_width * 0.15) * (image_height * 0.25) * 0.8
+ contour_area_max = (image_width * 0.15) * (image_height * 0.25) * 1.2
+ return contour_area_min, contour_area_max
+
+# 周长阈值
+def get_arc_length_threshold(image_width, image_height):
+ arc_length_min = ((image_width * 0.15) + (image_height * 0.25)) * 2 * 0.8
+ arc_length_max = ((image_width * 0.15) + (image_height * 0.25)) * 2 * 1.2
+ return arc_length_min, arc_length_max
+
+# offset阈值
+def get_offset_threshold(image_width):
+ offset_min = 0.2 * image_width
+ offset_max = 0.85 * image_width
+ return offset_min, offset_max
+
+
+def main():
+ # 长,宽,channel
+ image_raw = cv2.imread('captcha.png')
+ image_height, image_width, _ = image_raw.shape
+ image_gaussian_blur = get_gaussian_blur_image(image_raw)
+ # 长,宽 黑白的没有channel
+ image_canny = get_canny_image(image_gaussian_blur)
+ contours = get_contours(image_canny)
+ cv2.imwrite('image_canny.png', image_canny)
+ cv2.imwrite('image_gaussian_blur.png', image_gaussian_blur)
+ contour_area_min, contour_area_max = get_contour_area_threshold(image_width, image_height)
+ arc_length_min, arc_length_max = get_arc_length_threshold(image_width, image_height)
+ offset_min, offset_max = get_offset_threshold(image_width)
+ offset = None
+ for contour in contours:
+ # 计算外接矩形的x,y起始点位置;w,h宽和高
+ x, y, w, h = cv2.boundingRect(contour)
+ if contour_area_min < cv2.contourArea(contour) < contour_area_max and \
+ arc_length_min < cv2.arcLength(contour, True) < arc_length_max and \
+ offset_min < x < offset_max:
+ cv2.rectangle(image_raw, (x, y), (x + w, y + h), (0, 0, 255), 2)
+ offset = x
+ cv2.imwrite('image_label.png', image_raw)
+ print('offset', offset)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/__init__.py b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/__init__.py
new file mode 100644
index 0000000..3d0c648
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 16:49
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/chaojiying.py b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/chaojiying.py
new file mode 100644
index 0000000..374dad0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/chaojiying.py
@@ -0,0 +1,53 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 16:49
+@Usage :
+@Desc : 基于超级鹰官网SDK改写的
+'''
+import requests
+from hashlib import md5
+
+
+class Chaojiying(object):
+
+ def __init__(self, username, password, soft_id):
+ self.username = username
+ self.password = md5(password.encode('utf-8')).hexdigest()
+ self.soft_id = soft_id
+ self.base_params = {
+ 'user': self.username,
+ 'pass2': self.password,
+ 'softid': self.soft_id, # 软件ID,需要到超级鹰后台的"软件ID"中获取
+ }
+ self.headers = {
+ 'User-Agent': 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)',
+ }
+
+ # 上传验证码并获取识别结果
+ def post_pic(self, im, codetype):
+ """
+ im: 图片字节
+ codetype: 题目类型 参考 http://www.chaojiying.com/price.html
+ """
+ params = {
+ 'codetype': codetype,
+ }
+ params.update(self.base_params)
+ files = {'userfile': ('ccc.jpg', im)}
+ r = requests.post('http://upload.chaojiying.net/Upload/Processing.php', data=params, files=files,
+ headers=self.headers)
+ return r.json()
+
+ # 用于上报识别错误,识别错误时不扣题分
+ def report_error(self, im_id):
+ """
+ im_id:报错题目的图片ID
+ """
+ params = {
+ 'id': im_id,
+ }
+ params.update(self.base_params)
+ r = requests.post('http://upload.chaojiying.net/Upload/ReportError.php', data=params, headers=self.headers)
+ return r.json()
diff --git a/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo1_图形验证码.py b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo1_图形验证码.py
new file mode 100644
index 0000000..383fc8f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo1_图形验证码.py
@@ -0,0 +1,19 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 16:55
+@Usage :
+@Desc :
+'''
+
+from chaojiying import Chaojiying
+
+USERNAME = 'Germey'
+PASSWORD = ''
+SOFT_ID = '915502'
+CAPTCHA_KIND = '1006'
+FILE_NAME = 'captcha1.png'
+client = Chaojiying(USERNAME, PASSWORD, SOFT_ID)
+result = client.post_pic(open(FILE_NAME, 'rb').read(), CAPTCHA_KIND)
+print(result)
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo2_点选验证码.py b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo2_点选验证码.py
new file mode 100644
index 0000000..acbb37c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/使用打码平台识别验证码/demo2_点选验证码.py
@@ -0,0 +1,26 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 16:57
+@Usage :
+@Desc :
+'''
+
+from chaojiying import Chaojiying
+
+# USERNAME = 'Germey'
+# PASSWORD = ''
+# SOFT_ID = '915502'
+# CAPTCHA_KIND = '9004'
+# FILE_NAME = 'captcha2.png'
+# client = Chaojiying(USERNAME, PASSWORD, SOFT_ID)
+# result = client.post_pic(open(FILE_NAME, 'rb').read(), CAPTCHA_KIND)
+# print(result)
+
+import cv2
+
+image = cv2.imread('captcha2.png')
+image = cv2.circle(image, (108, 133), radius=10, color=(0, 0, 255), thickness=-1)
+image = cv2.circle(image, (227, 143), radius=10, color=(0, 0, 255), thickness=-1)
+cv2.imwrite('captcha2_label.png', image)
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/收集验证码自动化处理/__init__.py b/Spider/Chapter08_验证码的识别/收集验证码自动化处理/__init__.py
new file mode 100644
index 0000000..7ed0a5a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/收集验证码自动化处理/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 19:42
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/收集验证码自动化处理/demo1_Flask接受手机端短信.py b/Spider/Chapter08_验证码的识别/收集验证码自动化处理/demo1_Flask接受手机端短信.py
new file mode 100644
index 0000000..9ffa636
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/收集验证码自动化处理/demo1_Flask接受手机端短信.py
@@ -0,0 +1,23 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 19:43
+@Usage :
+@Desc :
+'''
+
+from flask import Flask, request, jsonify
+
+app = Flask(__name__)
+
+
+@app.route('/sms', methods=['POST'])
+def receive():
+ sms_content = request.form.get('content')
+ print(sms_content)
+ return jsonify(status='success')
+
+
+if __name__ == '__main__':
+ app.run(debug=True)
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/__init__.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/__init__.py
new file mode 100644
index 0000000..fc71d3c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 12:49
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/dataset.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/dataset.py
new file mode 100644
index 0000000..8a7d71b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/dataset.py
@@ -0,0 +1,58 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 12:53
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import os
+from torch.utils.data import DataLoader, Dataset
+import torchvision.transforms as transforms
+from PIL import Image
+import encoding as ohe
+import setting
+
+
+class mydataset(Dataset):
+
+ def __init__(self, folder, transform=None):
+ self.train_image_file_paths = [os.path.join(folder, image_file) for image_file in os.listdir(folder)]
+ self.transform = transform
+
+ def __len__(self):
+ return len(self.train_image_file_paths)
+
+ def __getitem__(self, idx):
+ image_root = self.train_image_file_paths[idx]
+ image_name = image_root.split(os.path.sep)[-1]
+ image = Image.open(image_root)
+ if self.transform is not None:
+ image = self.transform(image)
+ label = ohe.encode(image_name.split('_')[0])
+ return image, label
+
+
+transform = transforms.Compose([
+ # transforms.ColorJitter(),
+ transforms.Grayscale(),
+ transforms.ToTensor(),
+ # transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])
+])
+
+
+def get_train_data_loader():
+ dataset = mydataset(setting.TRAIN_DATASET_PATH, transform=transform)
+ return DataLoader(dataset, batch_size=64, shuffle=True)
+
+
+def get_eval_data_loader():
+ dataset = mydataset(setting.EVAL_DATASET_PATH, transform=transform)
+ return DataLoader(dataset, batch_size=1, shuffle=True)
+
+
+def get_predict_data_loader():
+ dataset = mydataset(setting.PREDICT_DATASET_PATH, transform=transform)
+ return DataLoader(dataset, batch_size=1, shuffle=True)
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/encoding.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/encoding.py
new file mode 100644
index 0000000..9fe7197
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/encoding.py
@@ -0,0 +1,65 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 12:54
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import numpy as np
+import setting
+
+
+def encode(text):
+ vector = np.zeros(setting.ALL_CHAR_SET_LEN * setting.MAX_CAPTCHA, dtype=float)
+
+ def char2pos(c):
+ if c == '_':
+ k = 62
+ return k
+ # ord()用来返回单个字符的ascii值(0-255)获取unicode值
+ # chr()用来返回一个【0-255】数值对应的ascii符号
+ # 48,65,97分别是0,A,a的ascii值
+ # 等价于ord(c)-ord(0)
+ k = ord(c) - 48
+ if k > 9:
+ # >9说明不是字母,+10是因为0-9位数字
+ k = ord(c) - 65 + 10
+ if k > 35:
+ # +26是因为大写字母有26位
+ k = ord(c) - 97 + 26 + 10
+ if k > 61:
+ raise ValueError('error')
+ return k
+
+ for i, c in enumerate(text):
+ idx = i * setting.ALL_CHAR_SET_LEN + char2pos(c)
+ vector[idx] = 1.0
+ return vector
+
+
+def decode(vec):
+ char_pos = vec.nonzero()[0]
+ text = []
+ for i, c in enumerate(char_pos):
+ char_at_pos = i # c/63
+ char_idx = c % setting.ALL_CHAR_SET_LEN
+ if char_idx < 10:
+ char_code = char_idx + ord('0')
+ elif char_idx < 36:
+ char_code = char_idx - 10 + ord('A')
+ elif char_idx < 62:
+ char_code = char_idx - 36 + ord('a')
+ elif char_idx == 62:
+ char_code = ord('_')
+ else:
+ raise ValueError('error')
+ text.append(chr(char_code))
+ return "".join(text)
+
+
+if __name__ == '__main__':
+ e = encode("BK7H")
+ print(decode(e))
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/evaluate.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/evaluate.py
new file mode 100644
index 0000000..a57a5a6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/evaluate.py
@@ -0,0 +1,57 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 13:41
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import numpy as np
+import torch
+from torch.autograd import Variable
+import setting
+import dataset
+from model import CNN
+import encoding
+
+
+def main(model_path):
+ cnn = CNN()
+ cnn.eval()
+ cnn.load_state_dict(torch.load(model_path))
+ print("load cnn net.")
+
+ eval_dataloader = dataset.get_eval_data_loader()
+
+ correct = 0
+ total = 0
+ for i, (images, labels) in enumerate(eval_dataloader):
+ image = images
+ vimage = Variable(image)
+ predict_label = cnn(vimage)
+
+ c0 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, 0:setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c1 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, setting.ALL_CHAR_SET_LEN:2 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c2 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, 2 * setting.ALL_CHAR_SET_LEN:3 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c3 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, 3 * setting.ALL_CHAR_SET_LEN:4 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ predict_label = '%s%s%s%s' % (c0, c1, c2, c3)
+ true_label = encoding.decode(labels.numpy()[0])
+ total += labels.size(0)
+ if (predict_label == true_label):
+ correct += 1
+ if (total % 200 == 0):
+ print('Test Accuracy of the model on the %d eval images: %f %%' %
+ (total, 100 * correct / total))
+ print('Test Accuracy of the model on the %d eval images: %f %%' %
+ (total, 100 * correct / total))
+ return correct / total
+
+
+if __name__ == '__main__':
+ main()
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/generate.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/generate.py
new file mode 100644
index 0000000..04da55c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/generate.py
@@ -0,0 +1,45 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 13:30
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+from captcha.image import ImageCaptcha # pip install captcha
+from PIL import Image
+import random
+import time
+import setting
+import os
+
+
+def generate_captcha_text():
+ captcha_text = []
+ for i in range(setting.MAX_CAPTCHA):
+ c = random.choice(setting.ALL_CHAR_SET)
+ captcha_text.append(c)
+ return ''.join(captcha_text)
+
+
+def generate_captcha_text_and_image():
+ image = ImageCaptcha()
+ captcha_text = generate_captcha_text()
+ captcha_image = Image.open(image.generate(captcha_text))
+ return captcha_text, captcha_image
+
+
+if __name__ == '__main__':
+ # 生成3000张验证集
+ count = 3000
+ path = setting.PREDICT_DATASET_PATH
+ if not os.path.exists(path):
+ os.makedirs(path)
+ for i in range(count):
+ now = str(int(time.time()))
+ text, image = generate_captcha_text_and_image()
+ filename = text + '_' + now + '.png'
+ image.save(path + os.path.sep + filename)
+ print('saved %d : %s' % (i + 1, filename))
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/model.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/model.py
new file mode 100644
index 0000000..663d460
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/model.py
@@ -0,0 +1,55 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 13:36
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import torch.nn as nn
+import setting
+
+
+# CNN Model (2 conv layer)
+class CNN(nn.Module):
+ def __init__(self):
+ super(CNN, self).__init__()
+ self.layer1 = nn.Sequential(
+ nn.Conv2d(1, 32, kernel_size=3, padding=1),
+ nn.BatchNorm2d(32),
+ nn.Dropout(0.5), # drop 50% of the neuron
+ nn.ReLU(),
+ nn.MaxPool2d(2))
+ self.layer2 = nn.Sequential(
+ nn.Conv2d(32, 64, kernel_size=3, padding=1),
+ nn.BatchNorm2d(64),
+ nn.Dropout(0.5), # drop 50% of the neuron
+ nn.ReLU(),
+ nn.MaxPool2d(2))
+ self.layer3 = nn.Sequential(
+ nn.Conv2d(64, 64, kernel_size=3, padding=1),
+ nn.BatchNorm2d(64),
+ nn.Dropout(0.5), # drop 50% of the neuron
+ nn.ReLU(),
+ nn.MaxPool2d(2))
+ self.fc = nn.Sequential(
+ # 除以8是因为MaxPool2d了3次
+ nn.Linear((setting.IMAGE_WIDTH // 8) * (setting.IMAGE_HEIGHT // 8) * 64, 1024),
+ nn.Dropout(0.5), # drop 50% of the neuron
+ nn.ReLU())
+ self.rfc = nn.Sequential(
+ # setting.MAX_CAPTCHA * setting.ALL_CHAR_SET_LEN是字典集的长度
+ nn.Linear(1024, setting.MAX_CAPTCHA * setting.ALL_CHAR_SET_LEN),
+ )
+
+ def forward(self, x):
+ out = self.layer1(x)
+ out = self.layer2(out)
+ out = self.layer3(out)
+ # flatten展平
+ out = out.view(out.size(0), -1)
+ out = self.fc(out)
+ out = self.rfc(out)
+ return out
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/predict.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/predict.py
new file mode 100644
index 0000000..7ed4e95
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/predict.py
@@ -0,0 +1,53 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 15:03
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import numpy as np
+import torch
+from torch.autograd import Variable
+# from visdom import Visdom # pip install Visdom
+import setting
+import dataset
+from model import CNN
+import encoding as encode
+
+
+def main():
+ cnn = CNN()
+ cnn.eval()
+ cnn.load_state_dict(torch.load('./output/best_model.pkl', map_location=torch.device('cpu')))
+ print("load cnn net.")
+
+ predict_dataloader = dataset.get_predict_data_loader()
+
+ # vis = Visdom()
+ correct = 0
+ for i, (images, labels) in enumerate(predict_dataloader):
+ image = images
+ vimage = Variable(image)
+ predict_label = cnn(vimage)
+ actual_label = encode.decode(labels[0].numpy())
+
+ c0 = setting.ALL_CHAR_SET[np.argmax(predict_label[0, 0:setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c1 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, setting.ALL_CHAR_SET_LEN:2 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c2 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, 2 * setting.ALL_CHAR_SET_LEN:3 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ c3 = setting.ALL_CHAR_SET[np.argmax(
+ predict_label[0, 3 * setting.ALL_CHAR_SET_LEN:4 * setting.ALL_CHAR_SET_LEN].data.numpy())]
+ correct += 1 if "".join([c0, c1, c2, c3]) == actual_label else 0
+ c = '%s%s%s%s' % (c0, c1, c2, c3)
+ print(f"predict:{c},actual:{actual_label}")
+ # vis.images(image, opts=dict(caption=c))
+ print(f"total:{len(predict_dataloader)},correct:{correct}")
+ # 经过测试,最终正确率约74%,total:3000,correct:2233
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/setting.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/setting.py
new file mode 100644
index 0000000..069ed3d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/setting.py
@@ -0,0 +1,29 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 12:54
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import os
+
+# 验证码中的字符
+# string.digits + string.ascii_uppercase
+NUMBER = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
+ALPHABET = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
+ 'V', 'W', 'X', 'Y', 'Z']
+
+ALL_CHAR_SET = NUMBER + ALPHABET
+ALL_CHAR_SET_LEN = len(ALL_CHAR_SET)
+MAX_CAPTCHA = 4
+
+# 图像大小
+IMAGE_HEIGHT = 60
+IMAGE_WIDTH = 160
+
+TRAIN_DATASET_PATH = 'dataset' + os.path.sep + 'train'
+EVAL_DATASET_PATH = 'dataset' + os.path.sep + 'eval'
+PREDICT_DATASET_PATH = 'dataset' + os.path.sep + 'predict'
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/train.py b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/train.py
new file mode 100644
index 0000000..9e7ea43
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别图形验证码/train.py
@@ -0,0 +1,66 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 13:40
+@Usage :
+@Desc :
+'''
+
+# -*- coding: UTF-8 -*-
+import torch
+import torch.nn as nn
+from torch.autograd import Variable
+import dataset
+from model import CNN
+from evaluate import main as evaluate
+import os
+import os.path
+
+num_epochs = 30
+batch_size = 100
+learning_rate = 0.001
+
+output = './output'
+os.path.exists(output) or os.makedirs(output)
+
+
+def main():
+ cnn = CNN()
+ cnn.train()
+
+ criterion = nn.MultiLabelSoftMarginLoss()
+ optimizer = torch.optim.Adam(cnn.parameters(), lr=learning_rate)
+ max_eval_acc = -1
+
+ train_dataloader = dataset.get_train_data_loader()
+ for epoch in range(num_epochs):
+ model_path = os.path.join(output, "model.pkl")
+ for i, (images, labels) in enumerate(train_dataloader):
+ # 在这里变成可以torch梯度autograd的变量
+ images = Variable(images)
+ labels = Variable(labels.float())
+ predict_labels = cnn(images)
+ loss = criterion(predict_labels, labels)
+ optimizer.zero_grad()
+ loss.backward()
+ optimizer.step()
+ if (i + 1) % 10 == 0:
+ print("epoch:", epoch, "step:", i, "loss:", loss.item())
+
+
+
+ print("epoch:", epoch, "step:", i, "loss:", loss.item())
+ torch.save(cnn.state_dict(), model_path)
+ print("save model")
+ eval_acc = evaluate(model_path)
+ if eval_acc > max_eval_acc:
+ # best model save as best_model.pkl
+ torch.save(cnn.state_dict(), os.path.join(output, "best_model.pkl"))
+ print("save best model")
+ torch.save(cnn.state_dict(), os.path.join(output, "model.pkl"))
+ print("save last model")
+
+
+if __name__ == '__main__':
+ main()
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/.gitignore b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/.gitignore
new file mode 100644
index 0000000..994778d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/.gitignore
@@ -0,0 +1,19 @@
+#checkpoints/
+.DS_Store
+build
+.git
+*.egg-info
+dist
+output
+data/coco
+backup
+weights/*.weights
+weights/*
+__pycache__
+
+/.idea
+
+/logs
+data/captcha/images/*.xml
+
+.vscode/
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/LICENSE b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/LICENSE
new file mode 100644
index 0000000..92b370f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/LICENSE
@@ -0,0 +1,674 @@
+GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/README.md b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/README.md
new file mode 100644
index 0000000..8746e63
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/README.md
@@ -0,0 +1,124 @@
+# 滑动验证码深度学习识别
+
+本项目使用深度学习 YOLOV3 模型来识别滑动验证码缺口,基于 [https://github.com/eriklindernoren/PyTorch-YOLOv3](https://github.com/eriklindernoren/PyTorch-YOLOv3) 修改。
+
+只需要几百张缺口标注图片即可训练出精度高的识别模型,识别效果样例:
+
+
+## 克隆项目
+
+运行命令:
+
+```
+git clone https://github.com/Python3WebSpider/DeepLearningSlideCaptcha2.git
+```
+
+## 数据准备
+
+使用 LabelImg 工具标注自行标注一批数据,大约 200 张以上即可训练出不错的效果。
+
+LabelImg:[https://github.com/tzutalin/labelImg](https://github.com/tzutalin/labelImg)
+
+标注要求:
+
+* 圈出验证码目标滑块区域的完整完整矩形,无需标注源滑块。
+* 目标矩形命名为 target 这个类别。
+* 建议使用 LabelImg 的快捷键提高标注效率。
+
+## 环境准备
+
+建议在 GPU 环境和虚拟 Python 环境下执行如下命令:
+
+```
+pip3 install -r requirements.txt
+```
+
+## 预训练模型下载
+
+YOLOV3 的训练要加载预训练模型才能有不错的训练效果,预训练模型下载:
+
+```
+bash prepare.sh
+```
+
+下载完成之后会在 weights 文件夹下出现模型权重文件,供训练使用。
+
+## 训练
+
+本项目已经提供了标注好的数据集,在 data/captcha,可以直接使用。
+
+如果要训练自己的数据,数据格式准备见:[https://github.com/eriklindernoren/PyTorch-YOLOv3#train-on-custom-dataset](https://github.com/eriklindernoren/PyTorch-YOLOv3#train-on-custom-dataset)。
+
+当前数据训练脚本:
+
+```
+bash train.sh
+```
+
+实测 P100 训练时长约 15 秒一个 epoch,大约几分钟即可训练出较好效果。
+
+## 测试
+
+训练完毕之后会在 checkpoints 文件夹生成 pth 文件,可直接使用模型来预测生成标注结果。
+
+此时 checkpoints 文件夹会生成训练好的 pth 文件。
+
+当前数据测试脚本:
+
+```
+sh detect.sh
+```
+
+该脚本会读取 captcha 下的 test 文件夹所有图片,并将处理后的结果输出到 test 文件夹。
+
+运行结果样例:
+
+```
+Performing object detection:
+ + Batch 0, Inference Time: 0:00:00.044223
+ + Batch 1, Inference Time: 0:00:00.028566
+ + Batch 2, Inference Time: 0:00:00.029764
+ + Batch 3, Inference Time: 0:00:00.032430
+ + Batch 4, Inference Time: 0:00:00.033373
+ + Batch 5, Inference Time: 0:00:00.027861
+ + Batch 6, Inference Time: 0:00:00.031444
+ + Batch 7, Inference Time: 0:00:00.032110
+ + Batch 8, Inference Time: 0:00:00.029131
+
+Saving images:
+(0) Image: 'data/captcha/test/captcha_4497.png'
+ + Label: target, Conf: 0.99999
+(1) Image: 'data/captcha/test/captcha_4498.png'
+ + Label: target, Conf: 0.99999
+(2) Image: 'data/captcha/test/captcha_4499.png'
+ + Label: target, Conf: 0.99997
+(3) Image: 'data/captcha/test/captcha_4500.png'
+ + Label: target, Conf: 0.99999
+(4) Image: 'data/captcha/test/captcha_4501.png'
+ + Label: target, Conf: 0.99997
+(5) Image: 'data/captcha/test/captcha_4502.png'
+ + Label: target, Conf: 0.99999
+(6) Image: 'data/captcha/test/captcha_4503.png'
+ + Label: target, Conf: 0.99997
+(7) Image: 'data/captcha/test/captcha_4504.png'
+ + Label: target, Conf: 0.99998
+(8) Image: 'data/captcha/test/captcha_4505.png'
+ + Label: target, Conf: 0.99998
+```
+
+样例结果:
+
+
+
+
+
+
+
+## 协议
+
+本项目基于开源 [GNU 协议](https://github.com/eriklindernoren/PyTorch-YOLOv3/blob/master/LICENSE)
+,另外本项目不提供任何有关滑动轨迹相关模拟和 JavaScript 逆向分析方案。
+
+本项目仅供学习交流使用,请勿用于非法用途,本人不承担任何法律责任。
+
+如有侵权请联系个人删除,谢谢。
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/__init__.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/__init__.py
new file mode 100644
index 0000000..66b3e2d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/12 15:31
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/checkpoints/.gitignore b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/checkpoints/.gitignore
new file mode 100644
index 0000000..c96a04f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/checkpoints/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/collect.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/collect.py
new file mode 100644
index 0000000..12c09f9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/collect.py
@@ -0,0 +1,26 @@
+from selenium import webdriver
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support.ui import WebDriverWait
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.common.exceptions import WebDriverException
+import time
+import logging as logger
+
+COUNT = 1000
+
+for i in range(0, COUNT + 1):
+ try:
+ browser = webdriver.Chrome()
+ wait = WebDriverWait(browser, 10)
+ browser.get('https://captcha1.scrape.center/')
+ button = wait.until(EC.element_to_be_clickable(
+ (By.CSS_SELECTOR, '.el-button')))
+ button.click()
+ captcha = wait.until(
+ EC.presence_of_element_located((By.CSS_SELECTOR, '.geetest_slicebg.geetest_absolute')))
+ time.sleep(5)
+ captcha.screenshot(f'data/captcha/images/captcha_{i}.png')
+ except WebDriverException as e:
+ logger.error(f'webdriver error occurred {e.msg}')
+ finally:
+ browser.close()
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/captcha.data b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/captcha.data
new file mode 100644
index 0000000..738c60d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/captcha.data
@@ -0,0 +1,4 @@
+classes= 1
+train=data/captcha/train.txt
+valid=data/captcha/valid.txt
+names=data/captcha/classes.names
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/yolov3-captcha.cfg b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/yolov3-captcha.cfg
new file mode 100644
index 0000000..b114af1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/config/yolov3-captcha.cfg
@@ -0,0 +1,790 @@
+
+[net]
+# Testing
+#batch=1
+#subdivisions=1
+# Training
+batch=16
+subdivisions=1
+width=416
+height=416
+channels=3
+momentum=0.9
+decay=0.0005
+angle=0
+saturation = 1.5
+exposure = 1.5
+hue=.1
+
+learning_rate=0.001
+burn_in=1000
+max_batches = 500200
+policy=steps
+steps=400000,450000
+scales=.1,.1
+
+[convolutional]
+batch_normalize=1
+filters=32
+size=3
+stride=1
+pad=1
+activation=leaky
+
+# Downsample
+
+[convolutional]
+batch_normalize=1
+filters=64
+size=3
+stride=2
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=32
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=64
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+# Downsample
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=3
+stride=2
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=64
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=64
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+# Downsample
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=2
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+# Downsample
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=2
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+# Downsample
+
+[convolutional]
+batch_normalize=1
+filters=1024
+size=3
+stride=2
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=1024
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=1024
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=1024
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=1024
+size=3
+stride=1
+pad=1
+activation=leaky
+
+[shortcut]
+from=-3
+activation=linear
+
+######################
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=1024
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=1024
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=512
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=1024
+activation=leaky
+
+[convolutional]
+size=1
+stride=1
+pad=1
+filters=18
+activation=linear
+
+
+[yolo]
+mask = 6,7,8
+anchors = 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326
+classes=1
+num=9
+jitter=.3
+ignore_thresh = .7
+truth_thresh = 1
+random=1
+
+
+[route]
+layers = -4
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[upsample]
+stride=2
+
+[route]
+layers = -1, 61
+
+
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=512
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=512
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=256
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=512
+activation=leaky
+
+[convolutional]
+size=1
+stride=1
+pad=1
+filters=18
+activation=linear
+
+
+[yolo]
+mask = 3,4,5
+anchors = 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326
+classes=1
+num=9
+jitter=.3
+ignore_thresh = .7
+truth_thresh = 1
+random=1
+
+
+
+[route]
+layers = -4
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[upsample]
+stride=2
+
+[route]
+layers = -1, 36
+
+
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=256
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=256
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+filters=128
+size=1
+stride=1
+pad=1
+activation=leaky
+
+[convolutional]
+batch_normalize=1
+size=3
+stride=1
+pad=1
+filters=256
+activation=leaky
+
+[convolutional]
+size=1
+stride=1
+pad=1
+filters=18
+activation=linear
+
+
+[yolo]
+mask = 0,1,2
+anchors = 10,13, 16,30, 33,23, 30,61, 62,45, 59,119, 116,90, 156,198, 373,326
+classes=1
+num=9
+jitter=.3
+ignore_thresh = .7
+truth_thresh = 1
+random=1
+
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/classes.names b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/classes.names
new file mode 100644
index 0000000..eb5a316
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/classes.names
@@ -0,0 +1 @@
+target
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_0.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_0.png
new file mode 100644
index 0000000..8c8dcd3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_0.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1.png
new file mode 100644
index 0000000..63718d7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_10.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_10.png
new file mode 100644
index 0000000..e9f4672
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_10.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_100.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_100.png
new file mode 100644
index 0000000..bb216ad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_100.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1000.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1000.png
new file mode 100644
index 0000000..1683ce7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_1000.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_101.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_101.png
new file mode 100644
index 0000000..005a831
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_101.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_102.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_102.png
new file mode 100644
index 0000000..8dd86a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_102.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_103.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_103.png
new file mode 100644
index 0000000..efbe795
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_103.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_104.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_104.png
new file mode 100644
index 0000000..dde90a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_104.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_105.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_105.png
new file mode 100644
index 0000000..7fc74f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_105.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_106.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_106.png
new file mode 100644
index 0000000..78d57fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_106.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_107.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_107.png
new file mode 100644
index 0000000..4a5102c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_107.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_108.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_108.png
new file mode 100644
index 0000000..d6266cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_108.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_109.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_109.png
new file mode 100644
index 0000000..90b25cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_109.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_11.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_11.png
new file mode 100644
index 0000000..6e4b9ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_11.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_110.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_110.png
new file mode 100644
index 0000000..b066399
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_110.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_111.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_111.png
new file mode 100644
index 0000000..77a3849
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_111.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_112.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_112.png
new file mode 100644
index 0000000..78167fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_112.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_113.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_113.png
new file mode 100644
index 0000000..c29b5af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_113.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_114.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_114.png
new file mode 100644
index 0000000..8241cfb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_114.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_115.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_115.png
new file mode 100644
index 0000000..a492c7c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_115.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_116.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_116.png
new file mode 100644
index 0000000..04dbd40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_116.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_117.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_117.png
new file mode 100644
index 0000000..8939762
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_117.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_118.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_118.png
new file mode 100644
index 0000000..b2dce44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_118.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_119.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_119.png
new file mode 100644
index 0000000..00429e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_119.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_12.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_12.png
new file mode 100644
index 0000000..55c198b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_12.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_120.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_120.png
new file mode 100644
index 0000000..a091ae9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_120.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_121.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_121.png
new file mode 100644
index 0000000..b477e01
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_121.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_122.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_122.png
new file mode 100644
index 0000000..b870f79
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_122.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_123.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_123.png
new file mode 100644
index 0000000..1bc07f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_123.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_124.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_124.png
new file mode 100644
index 0000000..6933fca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_124.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_125.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_125.png
new file mode 100644
index 0000000..7f0eb8f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_125.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_126.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_126.png
new file mode 100644
index 0000000..720d376
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_126.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_127.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_127.png
new file mode 100644
index 0000000..f118db5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_127.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_128.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_128.png
new file mode 100644
index 0000000..12eefd6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_128.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_129.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_129.png
new file mode 100644
index 0000000..53143d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_129.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_13.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_13.png
new file mode 100644
index 0000000..d4e7e09
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_13.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_130.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_130.png
new file mode 100644
index 0000000..e4e757f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_130.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_131.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_131.png
new file mode 100644
index 0000000..a6d0b7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_131.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_132.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_132.png
new file mode 100644
index 0000000..f836299
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_132.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_133.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_133.png
new file mode 100644
index 0000000..851cc6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_133.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_134.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_134.png
new file mode 100644
index 0000000..772321d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_134.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_135.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_135.png
new file mode 100644
index 0000000..fd5f9ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_135.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_136.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_136.png
new file mode 100644
index 0000000..447c455
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_136.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_137.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_137.png
new file mode 100644
index 0000000..69938e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_137.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_138.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_138.png
new file mode 100644
index 0000000..9858214
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_138.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_139.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_139.png
new file mode 100644
index 0000000..82f781e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_139.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_14.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_14.png
new file mode 100644
index 0000000..fddd57d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_14.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_140.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_140.png
new file mode 100644
index 0000000..b01ed26
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_140.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_141.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_141.png
new file mode 100644
index 0000000..329fdd2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_141.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_142.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_142.png
new file mode 100644
index 0000000..bd8f8a0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_142.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_143.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_143.png
new file mode 100644
index 0000000..01a5dd2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_143.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_144.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_144.png
new file mode 100644
index 0000000..e95123b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_144.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_145.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_145.png
new file mode 100644
index 0000000..1d2ea3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_145.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_146.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_146.png
new file mode 100644
index 0000000..79f9933
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_146.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_147.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_147.png
new file mode 100644
index 0000000..b8cdad3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_147.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_148.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_148.png
new file mode 100644
index 0000000..e9c6196
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_148.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_149.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_149.png
new file mode 100644
index 0000000..49e7e49
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_149.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_15.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_15.png
new file mode 100644
index 0000000..15d38d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_15.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_150.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_150.png
new file mode 100644
index 0000000..c26f554
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_150.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_151.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_151.png
new file mode 100644
index 0000000..b4c9907
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_151.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_152.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_152.png
new file mode 100644
index 0000000..ca2ec08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_152.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_153.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_153.png
new file mode 100644
index 0000000..0cc9233
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_153.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_154.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_154.png
new file mode 100644
index 0000000..7d80659
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_154.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_155.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_155.png
new file mode 100644
index 0000000..e9282bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_155.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_156.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_156.png
new file mode 100644
index 0000000..317b998
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_156.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_157.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_157.png
new file mode 100644
index 0000000..51b8d94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_157.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_158.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_158.png
new file mode 100644
index 0000000..e4b54c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_158.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_159.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_159.png
new file mode 100644
index 0000000..dd62cb4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_159.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_16.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_16.png
new file mode 100644
index 0000000..390ba94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_16.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_160.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_160.png
new file mode 100644
index 0000000..cb993ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_160.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_161.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_161.png
new file mode 100644
index 0000000..ec1994c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_161.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_162.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_162.png
new file mode 100644
index 0000000..c822a15
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_162.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_163.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_163.png
new file mode 100644
index 0000000..0f39a7e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_163.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_164.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_164.png
new file mode 100644
index 0000000..80e24e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_164.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_165.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_165.png
new file mode 100644
index 0000000..917f379
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_165.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_166.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_166.png
new file mode 100644
index 0000000..bb84a3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_166.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_167.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_167.png
new file mode 100644
index 0000000..706b497
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_167.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_168.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_168.png
new file mode 100644
index 0000000..ad1c6a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_168.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_169.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_169.png
new file mode 100644
index 0000000..82a3cb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_169.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_17.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_17.png
new file mode 100644
index 0000000..87e4ecf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_17.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_170.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_170.png
new file mode 100644
index 0000000..613b27c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_170.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_171.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_171.png
new file mode 100644
index 0000000..4686471
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_171.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_172.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_172.png
new file mode 100644
index 0000000..53c6f91
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_172.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_173.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_173.png
new file mode 100644
index 0000000..d07399d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_173.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_174.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_174.png
new file mode 100644
index 0000000..6ff09e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_174.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_175.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_175.png
new file mode 100644
index 0000000..b2c7da7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_175.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_176.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_176.png
new file mode 100644
index 0000000..cdd9db1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_176.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_177.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_177.png
new file mode 100644
index 0000000..095ed38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_177.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_178.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_178.png
new file mode 100644
index 0000000..76806f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_178.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_179.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_179.png
new file mode 100644
index 0000000..fca37ee
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_179.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_18.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_18.png
new file mode 100644
index 0000000..514edaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_18.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_180.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_180.png
new file mode 100644
index 0000000..162fb29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_180.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_181.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_181.png
new file mode 100644
index 0000000..097f58a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_181.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_182.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_182.png
new file mode 100644
index 0000000..8e9463b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_182.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_183.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_183.png
new file mode 100644
index 0000000..3ca7f60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_183.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_184.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_184.png
new file mode 100644
index 0000000..d96aa7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_184.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_185.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_185.png
new file mode 100644
index 0000000..a0c1a1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_185.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_186.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_186.png
new file mode 100644
index 0000000..e44083d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_186.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_187.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_187.png
new file mode 100644
index 0000000..be3f2ba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_187.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_188.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_188.png
new file mode 100644
index 0000000..13d80e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_188.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_189.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_189.png
new file mode 100644
index 0000000..8638f76
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_189.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_19.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_19.png
new file mode 100644
index 0000000..a56d900
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_19.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_190.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_190.png
new file mode 100644
index 0000000..45fb970
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_190.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_191.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_191.png
new file mode 100644
index 0000000..175c721
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_191.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_192.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_192.png
new file mode 100644
index 0000000..7ca2dd0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_192.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_193.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_193.png
new file mode 100644
index 0000000..62602eb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_193.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_194.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_194.png
new file mode 100644
index 0000000..3447cf7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_194.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_195.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_195.png
new file mode 100644
index 0000000..849d4e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_195.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_196.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_196.png
new file mode 100644
index 0000000..2c86e66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_196.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_197.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_197.png
new file mode 100644
index 0000000..eab092e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_197.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_198.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_198.png
new file mode 100644
index 0000000..ea3c601
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_198.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_199.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_199.png
new file mode 100644
index 0000000..0fd8d28
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_199.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_2.png
new file mode 100644
index 0000000..cdde274
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_20.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_20.png
new file mode 100644
index 0000000..714dd47
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_20.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_200.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_200.png
new file mode 100644
index 0000000..b094e7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_200.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_201.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_201.png
new file mode 100644
index 0000000..60c0660
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_201.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_202.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_202.png
new file mode 100644
index 0000000..2db9cda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_202.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_203.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_203.png
new file mode 100644
index 0000000..388ca94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_203.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_204.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_204.png
new file mode 100644
index 0000000..0ad0d2a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_204.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_205.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_205.png
new file mode 100644
index 0000000..0800a77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_205.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_206.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_206.png
new file mode 100644
index 0000000..5b37b4f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_206.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_207.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_207.png
new file mode 100644
index 0000000..5b8e996
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_207.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_208.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_208.png
new file mode 100644
index 0000000..745ff14
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_208.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_209.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_209.png
new file mode 100644
index 0000000..709ae63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_209.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_21.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_21.png
new file mode 100644
index 0000000..4f71111
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_21.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_210.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_210.png
new file mode 100644
index 0000000..761da54
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_210.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_211.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_211.png
new file mode 100644
index 0000000..0e7ca89
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_211.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_212.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_212.png
new file mode 100644
index 0000000..b76005d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_212.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_213.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_213.png
new file mode 100644
index 0000000..25fd6ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_213.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_214.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_214.png
new file mode 100644
index 0000000..b392767
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_214.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_215.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_215.png
new file mode 100644
index 0000000..ee1209b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_215.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_216.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_216.png
new file mode 100644
index 0000000..af35f44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_216.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_217.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_217.png
new file mode 100644
index 0000000..b7f4e9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_217.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_218.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_218.png
new file mode 100644
index 0000000..1fbfb65
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_218.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_219.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_219.png
new file mode 100644
index 0000000..a72688a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_219.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_22.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_22.png
new file mode 100644
index 0000000..62bfcac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_22.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_220.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_220.png
new file mode 100644
index 0000000..da10d48
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_220.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_221.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_221.png
new file mode 100644
index 0000000..c25486f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_221.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_222.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_222.png
new file mode 100644
index 0000000..37d0be9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_222.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_223.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_223.png
new file mode 100644
index 0000000..52742f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_223.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_224.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_224.png
new file mode 100644
index 0000000..c663473
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_224.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_225.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_225.png
new file mode 100644
index 0000000..acb8416
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_225.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_226.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_226.png
new file mode 100644
index 0000000..eb01551
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_226.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_227.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_227.png
new file mode 100644
index 0000000..8b9bcaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_227.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_228.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_228.png
new file mode 100644
index 0000000..6e08407
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_228.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_229.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_229.png
new file mode 100644
index 0000000..3f2e10e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_229.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_23.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_23.png
new file mode 100644
index 0000000..8ca1088
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_23.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_230.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_230.png
new file mode 100644
index 0000000..f0bbdac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_230.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_231.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_231.png
new file mode 100644
index 0000000..fdaeb33
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_231.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_232.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_232.png
new file mode 100644
index 0000000..7f0df40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_232.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_233.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_233.png
new file mode 100644
index 0000000..63912fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_233.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_234.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_234.png
new file mode 100644
index 0000000..422b2e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_234.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_235.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_235.png
new file mode 100644
index 0000000..bea5966
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_235.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_236.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_236.png
new file mode 100644
index 0000000..115e40a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_236.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_237.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_237.png
new file mode 100644
index 0000000..df30435
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_237.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_238.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_238.png
new file mode 100644
index 0000000..5ddf576
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_238.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_239.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_239.png
new file mode 100644
index 0000000..2f6bec3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_239.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_24.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_24.png
new file mode 100644
index 0000000..cc8a2b3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_24.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_240.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_240.png
new file mode 100644
index 0000000..b61b120
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_240.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_241.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_241.png
new file mode 100644
index 0000000..2708a71
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_241.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_242.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_242.png
new file mode 100644
index 0000000..58237ab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_242.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_243.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_243.png
new file mode 100644
index 0000000..e92bfa3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_243.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_244.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_244.png
new file mode 100644
index 0000000..32f5010
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_244.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_245.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_245.png
new file mode 100644
index 0000000..5989025
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_245.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_246.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_246.png
new file mode 100644
index 0000000..55003e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_246.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_247.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_247.png
new file mode 100644
index 0000000..90a8880
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_247.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_248.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_248.png
new file mode 100644
index 0000000..32f2447
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_248.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_249.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_249.png
new file mode 100644
index 0000000..67eb314
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_249.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_25.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_25.png
new file mode 100644
index 0000000..271b816
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_25.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_250.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_250.png
new file mode 100644
index 0000000..a216d29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_250.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_251.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_251.png
new file mode 100644
index 0000000..1f50ff1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_251.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_252.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_252.png
new file mode 100644
index 0000000..cbda673
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_252.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_253.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_253.png
new file mode 100644
index 0000000..b477457
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_253.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_254.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_254.png
new file mode 100644
index 0000000..24265a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_254.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_255.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_255.png
new file mode 100644
index 0000000..3fd75be
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_255.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_256.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_256.png
new file mode 100644
index 0000000..a23f440
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_256.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_257.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_257.png
new file mode 100644
index 0000000..c3ab7db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_257.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_258.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_258.png
new file mode 100644
index 0000000..92290ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_258.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_259.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_259.png
new file mode 100644
index 0000000..20d8ba4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_259.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_26.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_26.png
new file mode 100644
index 0000000..0f105e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_26.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_260.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_260.png
new file mode 100644
index 0000000..fcc8f98
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_260.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_261.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_261.png
new file mode 100644
index 0000000..7c4fb2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_261.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_262.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_262.png
new file mode 100644
index 0000000..22d40d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_262.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_263.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_263.png
new file mode 100644
index 0000000..8f541f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_263.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_264.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_264.png
new file mode 100644
index 0000000..d6b9b6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_264.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_265.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_265.png
new file mode 100644
index 0000000..59a182b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_265.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_266.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_266.png
new file mode 100644
index 0000000..0561f35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_266.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_267.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_267.png
new file mode 100644
index 0000000..560fde4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_267.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_268.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_268.png
new file mode 100644
index 0000000..64e4625
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_268.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_269.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_269.png
new file mode 100644
index 0000000..5564b8c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_269.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_27.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_27.png
new file mode 100644
index 0000000..4e5699e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_27.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_270.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_270.png
new file mode 100644
index 0000000..bc162a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_270.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_271.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_271.png
new file mode 100644
index 0000000..b7a1173
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_271.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_272.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_272.png
new file mode 100644
index 0000000..10c3fae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_272.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_273.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_273.png
new file mode 100644
index 0000000..240fc12
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_273.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_274.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_274.png
new file mode 100644
index 0000000..a14eb9b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_274.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_275.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_275.png
new file mode 100644
index 0000000..f19c35c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_275.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_276.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_276.png
new file mode 100644
index 0000000..1608246
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_276.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_277.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_277.png
new file mode 100644
index 0000000..f9ba2ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_277.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_278.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_278.png
new file mode 100644
index 0000000..635f080
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_278.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_279.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_279.png
new file mode 100644
index 0000000..06300ba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_279.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_28.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_28.png
new file mode 100644
index 0000000..528edb5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_28.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_280.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_280.png
new file mode 100644
index 0000000..d8d4eba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_280.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_281.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_281.png
new file mode 100644
index 0000000..8c4c30d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_281.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_282.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_282.png
new file mode 100644
index 0000000..b81a83d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_282.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_283.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_283.png
new file mode 100644
index 0000000..c8172b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_283.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_284.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_284.png
new file mode 100644
index 0000000..0a52ace
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_284.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_285.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_285.png
new file mode 100644
index 0000000..5c703a5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_285.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_286.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_286.png
new file mode 100644
index 0000000..d8cfc6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_286.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_287.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_287.png
new file mode 100644
index 0000000..1d2ce9f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_287.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_288.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_288.png
new file mode 100644
index 0000000..e5096c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_288.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_289.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_289.png
new file mode 100644
index 0000000..d00db0a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_289.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_29.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_29.png
new file mode 100644
index 0000000..fd1be6e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_29.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_290.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_290.png
new file mode 100644
index 0000000..01ab05e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_290.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_291.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_291.png
new file mode 100644
index 0000000..fadffc9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_291.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_292.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_292.png
new file mode 100644
index 0000000..573f798
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_292.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_293.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_293.png
new file mode 100644
index 0000000..b0d8da8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_293.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_294.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_294.png
new file mode 100644
index 0000000..8fa40ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_294.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_295.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_295.png
new file mode 100644
index 0000000..cbc19ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_295.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_296.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_296.png
new file mode 100644
index 0000000..e11e20f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_296.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_297.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_297.png
new file mode 100644
index 0000000..c632a86
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_297.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_298.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_298.png
new file mode 100644
index 0000000..8b28329
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_298.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_299.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_299.png
new file mode 100644
index 0000000..b30ba5a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_299.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_3.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_3.png
new file mode 100644
index 0000000..f76fa51
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_3.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_30.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_30.png
new file mode 100644
index 0000000..29265d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_30.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_300.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_300.png
new file mode 100644
index 0000000..f23049e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_300.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_301.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_301.png
new file mode 100644
index 0000000..def18aa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_301.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_302.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_302.png
new file mode 100644
index 0000000..39bcdd9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_302.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_303.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_303.png
new file mode 100644
index 0000000..911f1ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_303.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_304.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_304.png
new file mode 100644
index 0000000..7e447ec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_304.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_305.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_305.png
new file mode 100644
index 0000000..6589a2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_305.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_306.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_306.png
new file mode 100644
index 0000000..af284c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_306.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_307.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_307.png
new file mode 100644
index 0000000..afe273c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_307.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_308.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_308.png
new file mode 100644
index 0000000..a1bc95a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_308.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_309.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_309.png
new file mode 100644
index 0000000..ec66ea3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_309.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_31.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_31.png
new file mode 100644
index 0000000..7b5d91e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_31.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_310.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_310.png
new file mode 100644
index 0000000..e7aef5d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_310.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_311.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_311.png
new file mode 100644
index 0000000..db2b454
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_311.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_312.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_312.png
new file mode 100644
index 0000000..d877e8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_312.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_313.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_313.png
new file mode 100644
index 0000000..cf05e40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_313.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_314.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_314.png
new file mode 100644
index 0000000..98d7666
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_314.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_315.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_315.png
new file mode 100644
index 0000000..c958c52
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_315.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_316.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_316.png
new file mode 100644
index 0000000..edc6c2e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_316.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_317.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_317.png
new file mode 100644
index 0000000..f7b70aa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_317.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_318.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_318.png
new file mode 100644
index 0000000..cbdd561
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_318.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_319.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_319.png
new file mode 100644
index 0000000..347f482
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_319.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_32.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_32.png
new file mode 100644
index 0000000..a9ce79e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_32.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_320.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_320.png
new file mode 100644
index 0000000..b411b5e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_320.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_321.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_321.png
new file mode 100644
index 0000000..6cdf157
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_321.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_322.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_322.png
new file mode 100644
index 0000000..e0f2e03
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_322.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_323.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_323.png
new file mode 100644
index 0000000..6565022
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_323.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_324.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_324.png
new file mode 100644
index 0000000..202f6d0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_324.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_325.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_325.png
new file mode 100644
index 0000000..3f56f1a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_325.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_326.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_326.png
new file mode 100644
index 0000000..491be3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_326.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_327.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_327.png
new file mode 100644
index 0000000..a59b910
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_327.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_328.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_328.png
new file mode 100644
index 0000000..9e2f972
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_328.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_329.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_329.png
new file mode 100644
index 0000000..b9b101f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_329.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_33.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_33.png
new file mode 100644
index 0000000..9f3de21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_33.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_330.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_330.png
new file mode 100644
index 0000000..725ef87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_330.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_331.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_331.png
new file mode 100644
index 0000000..ad4602a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_331.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_332.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_332.png
new file mode 100644
index 0000000..07a5def
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_332.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_333.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_333.png
new file mode 100644
index 0000000..863e8b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_333.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_334.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_334.png
new file mode 100644
index 0000000..ae18767
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_334.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_335.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_335.png
new file mode 100644
index 0000000..343f210
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_335.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_336.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_336.png
new file mode 100644
index 0000000..4b16cef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_336.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_337.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_337.png
new file mode 100644
index 0000000..f5b5d7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_337.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_338.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_338.png
new file mode 100644
index 0000000..b54aec2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_338.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_339.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_339.png
new file mode 100644
index 0000000..8f283a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_339.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_34.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_34.png
new file mode 100644
index 0000000..6246bcb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_34.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_340.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_340.png
new file mode 100644
index 0000000..700f91f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_340.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_341.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_341.png
new file mode 100644
index 0000000..7595799
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_341.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_342.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_342.png
new file mode 100644
index 0000000..e849d06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_342.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_343.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_343.png
new file mode 100644
index 0000000..3ab9d45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_343.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_344.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_344.png
new file mode 100644
index 0000000..7858974
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_344.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_345.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_345.png
new file mode 100644
index 0000000..9f9caed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_345.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_346.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_346.png
new file mode 100644
index 0000000..28b5427
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_346.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_347.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_347.png
new file mode 100644
index 0000000..c9bf8e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_347.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_348.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_348.png
new file mode 100644
index 0000000..95fe6c2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_348.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_349.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_349.png
new file mode 100644
index 0000000..7b58ff0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_349.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_35.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_35.png
new file mode 100644
index 0000000..61ba6c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_35.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_350.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_350.png
new file mode 100644
index 0000000..9c4b3bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_350.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_351.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_351.png
new file mode 100644
index 0000000..c896371
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_351.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_352.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_352.png
new file mode 100644
index 0000000..08ee615
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_352.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_353.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_353.png
new file mode 100644
index 0000000..ede64f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_353.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_354.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_354.png
new file mode 100644
index 0000000..25c3b87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_354.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_355.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_355.png
new file mode 100644
index 0000000..38f6488
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_355.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_356.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_356.png
new file mode 100644
index 0000000..f8e350a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_356.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_357.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_357.png
new file mode 100644
index 0000000..e0f5268
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_357.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_358.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_358.png
new file mode 100644
index 0000000..3a976c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_358.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_359.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_359.png
new file mode 100644
index 0000000..9294113
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_359.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_36.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_36.png
new file mode 100644
index 0000000..206d6d0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_36.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_360.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_360.png
new file mode 100644
index 0000000..9f4df66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_360.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_361.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_361.png
new file mode 100644
index 0000000..db29524
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_361.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_362.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_362.png
new file mode 100644
index 0000000..18c40ca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_362.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_363.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_363.png
new file mode 100644
index 0000000..c6a0edc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_363.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_364.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_364.png
new file mode 100644
index 0000000..33e73c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_364.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_365.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_365.png
new file mode 100644
index 0000000..96ecc78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_365.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_366.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_366.png
new file mode 100644
index 0000000..2d61ed2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_366.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_367.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_367.png
new file mode 100644
index 0000000..ee16302
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_367.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_368.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_368.png
new file mode 100644
index 0000000..6ae9d9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_368.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_369.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_369.png
new file mode 100644
index 0000000..147b63d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_369.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_37.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_37.png
new file mode 100644
index 0000000..fc30754
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_37.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_370.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_370.png
new file mode 100644
index 0000000..44d0086
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_370.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_371.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_371.png
new file mode 100644
index 0000000..28ef221
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_371.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_372.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_372.png
new file mode 100644
index 0000000..e1cacfe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_372.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_373.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_373.png
new file mode 100644
index 0000000..128448a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_373.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_374.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_374.png
new file mode 100644
index 0000000..d86290a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_374.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_375.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_375.png
new file mode 100644
index 0000000..496b761
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_375.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_376.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_376.png
new file mode 100644
index 0000000..10e159a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_376.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_377.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_377.png
new file mode 100644
index 0000000..60555f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_377.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_378.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_378.png
new file mode 100644
index 0000000..19483af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_378.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_379.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_379.png
new file mode 100644
index 0000000..377ce35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_379.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_38.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_38.png
new file mode 100644
index 0000000..59f2654
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_38.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_380.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_380.png
new file mode 100644
index 0000000..a37e0a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_380.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_381.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_381.png
new file mode 100644
index 0000000..7ac8d5c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_381.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_382.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_382.png
new file mode 100644
index 0000000..57bbd0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_382.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_383.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_383.png
new file mode 100644
index 0000000..7d204fa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_383.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_384.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_384.png
new file mode 100644
index 0000000..9ca813a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_384.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_385.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_385.png
new file mode 100644
index 0000000..0028a3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_385.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_386.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_386.png
new file mode 100644
index 0000000..f567d6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_386.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_387.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_387.png
new file mode 100644
index 0000000..0edf974
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_387.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_388.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_388.png
new file mode 100644
index 0000000..f7c581e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_388.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_389.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_389.png
new file mode 100644
index 0000000..9cfd3d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_389.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_39.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_39.png
new file mode 100644
index 0000000..5dc7be5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_39.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_390.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_390.png
new file mode 100644
index 0000000..4849fb4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_390.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_391.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_391.png
new file mode 100644
index 0000000..b934f2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_391.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_392.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_392.png
new file mode 100644
index 0000000..173a35f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_392.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_393.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_393.png
new file mode 100644
index 0000000..9ff49b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_393.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_394.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_394.png
new file mode 100644
index 0000000..92aa49e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_394.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_395.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_395.png
new file mode 100644
index 0000000..f209dc2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_395.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_396.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_396.png
new file mode 100644
index 0000000..b7a80e6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_396.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_397.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_397.png
new file mode 100644
index 0000000..89aa3fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_397.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_398.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_398.png
new file mode 100644
index 0000000..730a90a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_398.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_399.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_399.png
new file mode 100644
index 0000000..44c3459
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_399.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_4.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_4.png
new file mode 100644
index 0000000..8c3b4a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_4.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_40.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_40.png
new file mode 100644
index 0000000..0a8d69a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_40.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_400.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_400.png
new file mode 100644
index 0000000..3a32f35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_400.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_401.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_401.png
new file mode 100644
index 0000000..7a46d3b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_401.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_402.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_402.png
new file mode 100644
index 0000000..ad277cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_402.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_403.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_403.png
new file mode 100644
index 0000000..ab61ca5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_403.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_404.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_404.png
new file mode 100644
index 0000000..7da8680
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_404.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_405.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_405.png
new file mode 100644
index 0000000..5807ea4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_405.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_406.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_406.png
new file mode 100644
index 0000000..ff6b589
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_406.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_407.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_407.png
new file mode 100644
index 0000000..a846242
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_407.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_408.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_408.png
new file mode 100644
index 0000000..b74ce44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_408.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_409.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_409.png
new file mode 100644
index 0000000..d53454a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_409.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_41.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_41.png
new file mode 100644
index 0000000..4eaff8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_41.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_410.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_410.png
new file mode 100644
index 0000000..4a38b06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_410.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_411.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_411.png
new file mode 100644
index 0000000..9e4bb26
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_411.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_412.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_412.png
new file mode 100644
index 0000000..cb7a4b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_412.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_413.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_413.png
new file mode 100644
index 0000000..f4bfd53
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_413.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_414.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_414.png
new file mode 100644
index 0000000..8024259
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_414.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_415.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_415.png
new file mode 100644
index 0000000..785f2a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_415.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_416.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_416.png
new file mode 100644
index 0000000..ffb3a46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_416.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_417.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_417.png
new file mode 100644
index 0000000..52bb77f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_417.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_418.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_418.png
new file mode 100644
index 0000000..91fd206
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_418.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_419.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_419.png
new file mode 100644
index 0000000..b891804
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_419.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_42.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_42.png
new file mode 100644
index 0000000..16dc114
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_42.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_420.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_420.png
new file mode 100644
index 0000000..603b1d4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_420.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_421.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_421.png
new file mode 100644
index 0000000..a1d0daa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_421.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_422.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_422.png
new file mode 100644
index 0000000..d1199fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_422.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_423.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_423.png
new file mode 100644
index 0000000..83572ce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_423.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_424.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_424.png
new file mode 100644
index 0000000..b589e9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_424.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_425.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_425.png
new file mode 100644
index 0000000..a7533c9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_425.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_426.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_426.png
new file mode 100644
index 0000000..8583a25
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_426.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_427.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_427.png
new file mode 100644
index 0000000..194e3d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_427.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_428.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_428.png
new file mode 100644
index 0000000..d85f9df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_428.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_429.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_429.png
new file mode 100644
index 0000000..cd85fe3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_429.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_43.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_43.png
new file mode 100644
index 0000000..107aa29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_43.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_430.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_430.png
new file mode 100644
index 0000000..a3e7772
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_430.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_431.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_431.png
new file mode 100644
index 0000000..6440a60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_431.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_432.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_432.png
new file mode 100644
index 0000000..89f082c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_432.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_433.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_433.png
new file mode 100644
index 0000000..07c1098
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_433.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_434.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_434.png
new file mode 100644
index 0000000..b21b5cc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_434.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_435.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_435.png
new file mode 100644
index 0000000..794d641
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_435.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_436.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_436.png
new file mode 100644
index 0000000..9cd3269
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_436.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_437.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_437.png
new file mode 100644
index 0000000..72892e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_437.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_438.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_438.png
new file mode 100644
index 0000000..b1e53fa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_438.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_439.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_439.png
new file mode 100644
index 0000000..9cd3da9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_439.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_44.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_44.png
new file mode 100644
index 0000000..9cbf5e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_44.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_440.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_440.png
new file mode 100644
index 0000000..edd316c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_440.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_441.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_441.png
new file mode 100644
index 0000000..82fc22a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_441.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_442.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_442.png
new file mode 100644
index 0000000..c0a7123
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_442.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_443.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_443.png
new file mode 100644
index 0000000..01bc6ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_443.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_444.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_444.png
new file mode 100644
index 0000000..1715230
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_444.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_445.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_445.png
new file mode 100644
index 0000000..276af8d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_445.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_446.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_446.png
new file mode 100644
index 0000000..daf7e7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_446.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_447.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_447.png
new file mode 100644
index 0000000..d1e6858
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_447.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_448.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_448.png
new file mode 100644
index 0000000..cc1e355
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_448.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_449.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_449.png
new file mode 100644
index 0000000..6dc36f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_449.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_45.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_45.png
new file mode 100644
index 0000000..d1a5dce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_45.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_450.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_450.png
new file mode 100644
index 0000000..6263ab0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_450.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_451.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_451.png
new file mode 100644
index 0000000..aa5f999
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_451.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_452.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_452.png
new file mode 100644
index 0000000..f7a3b74
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_452.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_453.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_453.png
new file mode 100644
index 0000000..79216b3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_453.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_454.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_454.png
new file mode 100644
index 0000000..74c4aa9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_454.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_455.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_455.png
new file mode 100644
index 0000000..7777af3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_455.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_456.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_456.png
new file mode 100644
index 0000000..75aee44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_456.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_457.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_457.png
new file mode 100644
index 0000000..15bbc64
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_457.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_458.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_458.png
new file mode 100644
index 0000000..a9c3a67
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_458.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_459.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_459.png
new file mode 100644
index 0000000..c9b3c1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_459.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_46.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_46.png
new file mode 100644
index 0000000..43e79f6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_46.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_460.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_460.png
new file mode 100644
index 0000000..7e52be8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_460.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_461.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_461.png
new file mode 100644
index 0000000..bf88a4a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_461.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_462.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_462.png
new file mode 100644
index 0000000..92ed52b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_462.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_463.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_463.png
new file mode 100644
index 0000000..1bab5bc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_463.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_464.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_464.png
new file mode 100644
index 0000000..c1dc992
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_464.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_465.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_465.png
new file mode 100644
index 0000000..02ee83a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_465.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_466.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_466.png
new file mode 100644
index 0000000..759ae05
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_466.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_467.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_467.png
new file mode 100644
index 0000000..730c3c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_467.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_468.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_468.png
new file mode 100644
index 0000000..ac596a9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_468.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_469.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_469.png
new file mode 100644
index 0000000..1ed940b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_469.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_47.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_47.png
new file mode 100644
index 0000000..2d3b1a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_47.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_470.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_470.png
new file mode 100644
index 0000000..d847a0f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_470.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_471.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_471.png
new file mode 100644
index 0000000..a04d79c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_471.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_472.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_472.png
new file mode 100644
index 0000000..cc6d160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_472.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_473.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_473.png
new file mode 100644
index 0000000..2af8949
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_473.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_474.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_474.png
new file mode 100644
index 0000000..e1fad41
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_474.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_475.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_475.png
new file mode 100644
index 0000000..523a192
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_475.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_476.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_476.png
new file mode 100644
index 0000000..f1c805f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_476.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_477.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_477.png
new file mode 100644
index 0000000..22bbf8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_477.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_478.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_478.png
new file mode 100644
index 0000000..25b34bb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_478.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_479.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_479.png
new file mode 100644
index 0000000..e4d96df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_479.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_48.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_48.png
new file mode 100644
index 0000000..858562f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_48.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_480.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_480.png
new file mode 100644
index 0000000..d22c43f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_480.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_481.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_481.png
new file mode 100644
index 0000000..43b4de5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_481.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_482.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_482.png
new file mode 100644
index 0000000..24dcb39
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_482.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_483.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_483.png
new file mode 100644
index 0000000..f6fb25a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_483.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_484.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_484.png
new file mode 100644
index 0000000..1bc8983
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_484.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_485.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_485.png
new file mode 100644
index 0000000..1034b12
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_485.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_486.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_486.png
new file mode 100644
index 0000000..b7da245
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_486.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_487.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_487.png
new file mode 100644
index 0000000..f0b81d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_487.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_488.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_488.png
new file mode 100644
index 0000000..128390a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_488.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_489.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_489.png
new file mode 100644
index 0000000..c111e76
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_489.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_49.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_49.png
new file mode 100644
index 0000000..8f3794f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_49.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_490.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_490.png
new file mode 100644
index 0000000..f38b750
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_490.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_491.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_491.png
new file mode 100644
index 0000000..516d5ac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_491.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_492.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_492.png
new file mode 100644
index 0000000..8729b5b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_492.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_493.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_493.png
new file mode 100644
index 0000000..95f8237
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_493.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_494.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_494.png
new file mode 100644
index 0000000..3e7a335
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_494.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_495.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_495.png
new file mode 100644
index 0000000..473b832
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_495.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_496.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_496.png
new file mode 100644
index 0000000..224250f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_496.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_497.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_497.png
new file mode 100644
index 0000000..7b9c9b4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_497.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_498.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_498.png
new file mode 100644
index 0000000..55a0dff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_498.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_499.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_499.png
new file mode 100644
index 0000000..8e06ac7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_499.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_5.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_5.png
new file mode 100644
index 0000000..25b7e6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_5.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_50.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_50.png
new file mode 100644
index 0000000..395f6cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_50.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_500.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_500.png
new file mode 100644
index 0000000..5e883b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_500.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_501.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_501.png
new file mode 100644
index 0000000..bfc4d9b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_501.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_502.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_502.png
new file mode 100644
index 0000000..edc3eb8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_502.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_503.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_503.png
new file mode 100644
index 0000000..631df1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_503.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_504.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_504.png
new file mode 100644
index 0000000..4b49e7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_504.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_505.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_505.png
new file mode 100644
index 0000000..eca3377
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_505.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_506.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_506.png
new file mode 100644
index 0000000..62f478c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_506.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_507.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_507.png
new file mode 100644
index 0000000..4299fc2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_507.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_508.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_508.png
new file mode 100644
index 0000000..847f654
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_508.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_509.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_509.png
new file mode 100644
index 0000000..41c11b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_509.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_51.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_51.png
new file mode 100644
index 0000000..c7d693d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_51.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_510.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_510.png
new file mode 100644
index 0000000..fbf259d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_510.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_511.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_511.png
new file mode 100644
index 0000000..b69cb37
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_511.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_512.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_512.png
new file mode 100644
index 0000000..bdee5c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_512.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_513.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_513.png
new file mode 100644
index 0000000..bcc710b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_513.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_514.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_514.png
new file mode 100644
index 0000000..a87926f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_514.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_515.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_515.png
new file mode 100644
index 0000000..3b430f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_515.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_516.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_516.png
new file mode 100644
index 0000000..1327e59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_516.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_517.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_517.png
new file mode 100644
index 0000000..d2ff1c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_517.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_518.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_518.png
new file mode 100644
index 0000000..2bd9953
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_518.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_519.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_519.png
new file mode 100644
index 0000000..3ff7158
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_519.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_52.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_52.png
new file mode 100644
index 0000000..1b3fc11
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_52.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_520.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_520.png
new file mode 100644
index 0000000..ba317a3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_520.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_521.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_521.png
new file mode 100644
index 0000000..0feec08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_521.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_522.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_522.png
new file mode 100644
index 0000000..417fce6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_522.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_523.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_523.png
new file mode 100644
index 0000000..0d4a1b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_523.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_524.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_524.png
new file mode 100644
index 0000000..0ae6227
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_524.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_525.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_525.png
new file mode 100644
index 0000000..00b6bbb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_525.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_526.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_526.png
new file mode 100644
index 0000000..49ea27e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_526.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_527.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_527.png
new file mode 100644
index 0000000..e95b646
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_527.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_528.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_528.png
new file mode 100644
index 0000000..4f2be0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_528.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_529.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_529.png
new file mode 100644
index 0000000..cbffade
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_529.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_53.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_53.png
new file mode 100644
index 0000000..78c5baa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_53.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_530.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_530.png
new file mode 100644
index 0000000..8956fdb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_530.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_531.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_531.png
new file mode 100644
index 0000000..dae2f3d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_531.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_532.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_532.png
new file mode 100644
index 0000000..0f8917d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_532.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_533.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_533.png
new file mode 100644
index 0000000..53e4751
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_533.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_534.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_534.png
new file mode 100644
index 0000000..48ed6a3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_534.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_535.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_535.png
new file mode 100644
index 0000000..14eb5f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_535.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_536.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_536.png
new file mode 100644
index 0000000..f4566ca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_536.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_537.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_537.png
new file mode 100644
index 0000000..43c42e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_537.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_538.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_538.png
new file mode 100644
index 0000000..1f34d31
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_538.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_539.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_539.png
new file mode 100644
index 0000000..006fe6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_539.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_54.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_54.png
new file mode 100644
index 0000000..87e67dd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_54.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_540.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_540.png
new file mode 100644
index 0000000..5c3788e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_540.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_541.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_541.png
new file mode 100644
index 0000000..3fbae38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_541.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_542.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_542.png
new file mode 100644
index 0000000..14a02ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_542.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_543.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_543.png
new file mode 100644
index 0000000..cd13734
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_543.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_544.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_544.png
new file mode 100644
index 0000000..598d399
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_544.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_545.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_545.png
new file mode 100644
index 0000000..ef59452
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_545.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_546.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_546.png
new file mode 100644
index 0000000..fc71e87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_546.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_547.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_547.png
new file mode 100644
index 0000000..1fb1f9a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_547.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_548.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_548.png
new file mode 100644
index 0000000..67da888
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_548.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_549.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_549.png
new file mode 100644
index 0000000..fdc51b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_549.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_55.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_55.png
new file mode 100644
index 0000000..c086a21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_55.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_550.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_550.png
new file mode 100644
index 0000000..160574f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_550.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_551.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_551.png
new file mode 100644
index 0000000..f4f3656
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_551.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_552.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_552.png
new file mode 100644
index 0000000..5ff7c83
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_552.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_553.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_553.png
new file mode 100644
index 0000000..6377bec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_553.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_554.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_554.png
new file mode 100644
index 0000000..6f7ccb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_554.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_555.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_555.png
new file mode 100644
index 0000000..82538ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_555.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_556.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_556.png
new file mode 100644
index 0000000..cff7fe5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_556.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_557.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_557.png
new file mode 100644
index 0000000..2c295bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_557.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_558.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_558.png
new file mode 100644
index 0000000..0a88b00
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_558.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_559.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_559.png
new file mode 100644
index 0000000..9f66797
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_559.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_56.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_56.png
new file mode 100644
index 0000000..f021498
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_56.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_560.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_560.png
new file mode 100644
index 0000000..8b2f605
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_560.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_561.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_561.png
new file mode 100644
index 0000000..424dd2a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_561.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_562.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_562.png
new file mode 100644
index 0000000..c10a56c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_562.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_563.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_563.png
new file mode 100644
index 0000000..37a2833
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_563.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_564.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_564.png
new file mode 100644
index 0000000..8246212
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_564.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_565.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_565.png
new file mode 100644
index 0000000..6253362
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_565.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_566.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_566.png
new file mode 100644
index 0000000..0f26af2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_566.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_567.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_567.png
new file mode 100644
index 0000000..d678cd3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_567.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_568.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_568.png
new file mode 100644
index 0000000..eeeea05
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_568.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_569.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_569.png
new file mode 100644
index 0000000..ba2f8b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_569.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_57.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_57.png
new file mode 100644
index 0000000..4729e3f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_57.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_570.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_570.png
new file mode 100644
index 0000000..aa1817c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_570.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_571.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_571.png
new file mode 100644
index 0000000..9d03f91
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_571.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_572.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_572.png
new file mode 100644
index 0000000..53d45cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_572.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_573.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_573.png
new file mode 100644
index 0000000..9e9f718
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_573.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_574.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_574.png
new file mode 100644
index 0000000..cd19697
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_574.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_575.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_575.png
new file mode 100644
index 0000000..8a23b9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_575.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_576.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_576.png
new file mode 100644
index 0000000..b714798
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_576.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_577.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_577.png
new file mode 100644
index 0000000..e6227df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_577.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_578.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_578.png
new file mode 100644
index 0000000..92cdb8c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_578.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_579.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_579.png
new file mode 100644
index 0000000..f7e3075
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_579.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_58.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_58.png
new file mode 100644
index 0000000..cf48f3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_58.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_580.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_580.png
new file mode 100644
index 0000000..858337c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_580.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_581.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_581.png
new file mode 100644
index 0000000..b641d6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_581.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_582.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_582.png
new file mode 100644
index 0000000..3b71897
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_582.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_583.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_583.png
new file mode 100644
index 0000000..f7d078b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_583.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_584.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_584.png
new file mode 100644
index 0000000..3e694a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_584.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_585.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_585.png
new file mode 100644
index 0000000..fd1fde5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_585.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_586.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_586.png
new file mode 100644
index 0000000..e4f20a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_586.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_587.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_587.png
new file mode 100644
index 0000000..297a7ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_587.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_588.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_588.png
new file mode 100644
index 0000000..a66f0a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_588.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_589.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_589.png
new file mode 100644
index 0000000..9133c81
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_589.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_59.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_59.png
new file mode 100644
index 0000000..01790fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_59.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_590.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_590.png
new file mode 100644
index 0000000..a74edaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_590.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_591.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_591.png
new file mode 100644
index 0000000..1d333c7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_591.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_592.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_592.png
new file mode 100644
index 0000000..66e79e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_592.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_593.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_593.png
new file mode 100644
index 0000000..c8da488
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_593.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_594.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_594.png
new file mode 100644
index 0000000..afadabb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_594.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_595.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_595.png
new file mode 100644
index 0000000..880d6cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_595.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_596.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_596.png
new file mode 100644
index 0000000..cba3aaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_596.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_597.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_597.png
new file mode 100644
index 0000000..20964da
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_597.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_598.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_598.png
new file mode 100644
index 0000000..6b8435f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_598.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_599.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_599.png
new file mode 100644
index 0000000..cc6136c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_599.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_6.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_6.png
new file mode 100644
index 0000000..6fcf944
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_6.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_60.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_60.png
new file mode 100644
index 0000000..770e88c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_60.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_600.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_600.png
new file mode 100644
index 0000000..89b39b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_600.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_601.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_601.png
new file mode 100644
index 0000000..b2d5326
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_601.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_602.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_602.png
new file mode 100644
index 0000000..f2aac09
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_602.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_603.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_603.png
new file mode 100644
index 0000000..2d26f53
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_603.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_604.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_604.png
new file mode 100644
index 0000000..21fc7f1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_604.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_605.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_605.png
new file mode 100644
index 0000000..b213640
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_605.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_606.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_606.png
new file mode 100644
index 0000000..e44083a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_606.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_607.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_607.png
new file mode 100644
index 0000000..1323af6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_607.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_608.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_608.png
new file mode 100644
index 0000000..e19bb6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_608.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_609.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_609.png
new file mode 100644
index 0000000..5ff811e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_609.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_61.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_61.png
new file mode 100644
index 0000000..27c0ec3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_61.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_610.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_610.png
new file mode 100644
index 0000000..04ec700
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_610.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_611.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_611.png
new file mode 100644
index 0000000..b1383c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_611.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_612.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_612.png
new file mode 100644
index 0000000..94743d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_612.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_613.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_613.png
new file mode 100644
index 0000000..55f7fbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_613.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_614.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_614.png
new file mode 100644
index 0000000..dff3323
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_614.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_615.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_615.png
new file mode 100644
index 0000000..d97cab3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_615.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_616.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_616.png
new file mode 100644
index 0000000..ad0e431
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_616.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_617.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_617.png
new file mode 100644
index 0000000..c4d69b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_617.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_618.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_618.png
new file mode 100644
index 0000000..464db0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_618.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_619.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_619.png
new file mode 100644
index 0000000..d6c61d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_619.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_62.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_62.png
new file mode 100644
index 0000000..38ff066
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_62.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_620.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_620.png
new file mode 100644
index 0000000..78e8106
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_620.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_621.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_621.png
new file mode 100644
index 0000000..5bd68e4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_621.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_622.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_622.png
new file mode 100644
index 0000000..45c2d61
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_622.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_623.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_623.png
new file mode 100644
index 0000000..d0d946a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_623.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_624.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_624.png
new file mode 100644
index 0000000..d5e972a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_624.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_625.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_625.png
new file mode 100644
index 0000000..9c69144
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_625.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_626.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_626.png
new file mode 100644
index 0000000..b3887d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_626.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_627.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_627.png
new file mode 100644
index 0000000..11607e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_627.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_628.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_628.png
new file mode 100644
index 0000000..5b6346d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_628.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_629.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_629.png
new file mode 100644
index 0000000..a5213b8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_629.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_63.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_63.png
new file mode 100644
index 0000000..43f7570
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_63.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_630.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_630.png
new file mode 100644
index 0000000..50932db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_630.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_631.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_631.png
new file mode 100644
index 0000000..19ee12c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_631.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_632.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_632.png
new file mode 100644
index 0000000..52b73fc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_632.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_633.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_633.png
new file mode 100644
index 0000000..5496471
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_633.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_634.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_634.png
new file mode 100644
index 0000000..b8d8d77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_634.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_635.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_635.png
new file mode 100644
index 0000000..43dc231
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_635.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_636.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_636.png
new file mode 100644
index 0000000..ae30b1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_636.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_637.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_637.png
new file mode 100644
index 0000000..f22eca6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_637.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_638.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_638.png
new file mode 100644
index 0000000..754cd2d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_638.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_639.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_639.png
new file mode 100644
index 0000000..1d69d59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_639.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_64.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_64.png
new file mode 100644
index 0000000..6661abd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_64.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_640.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_640.png
new file mode 100644
index 0000000..be6d7e9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_640.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_641.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_641.png
new file mode 100644
index 0000000..9b8b218
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_641.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_642.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_642.png
new file mode 100644
index 0000000..bcfb633
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_642.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_643.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_643.png
new file mode 100644
index 0000000..7353ca5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_643.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_644.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_644.png
new file mode 100644
index 0000000..607ee4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_644.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_645.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_645.png
new file mode 100644
index 0000000..d54665f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_645.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_646.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_646.png
new file mode 100644
index 0000000..bbb5909
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_646.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_647.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_647.png
new file mode 100644
index 0000000..182be1f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_647.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_648.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_648.png
new file mode 100644
index 0000000..8803eaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_648.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_649.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_649.png
new file mode 100644
index 0000000..e0550a5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_649.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_65.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_65.png
new file mode 100644
index 0000000..f746fe8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_65.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_650.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_650.png
new file mode 100644
index 0000000..8dd6b17
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_650.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_651.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_651.png
new file mode 100644
index 0000000..5c6b048
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_651.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_652.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_652.png
new file mode 100644
index 0000000..22efe46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_652.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_653.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_653.png
new file mode 100644
index 0000000..dbe670d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_653.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_654.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_654.png
new file mode 100644
index 0000000..ab95435
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_654.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_655.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_655.png
new file mode 100644
index 0000000..89775b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_655.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_656.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_656.png
new file mode 100644
index 0000000..5836842
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_656.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_657.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_657.png
new file mode 100644
index 0000000..435d080
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_657.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_658.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_658.png
new file mode 100644
index 0000000..5fbf6f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_658.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_659.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_659.png
new file mode 100644
index 0000000..a2f111d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_659.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_66.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_66.png
new file mode 100644
index 0000000..571042b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_66.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_660.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_660.png
new file mode 100644
index 0000000..c8d9a43
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_660.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_661.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_661.png
new file mode 100644
index 0000000..dccc583
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_661.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_662.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_662.png
new file mode 100644
index 0000000..a1e9cc8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_662.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_663.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_663.png
new file mode 100644
index 0000000..9607f0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_663.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_664.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_664.png
new file mode 100644
index 0000000..c3496af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_664.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_665.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_665.png
new file mode 100644
index 0000000..9456ce3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_665.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_666.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_666.png
new file mode 100644
index 0000000..66aa8ce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_666.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_667.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_667.png
new file mode 100644
index 0000000..0171cc0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_667.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_668.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_668.png
new file mode 100644
index 0000000..d500701
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_668.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_669.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_669.png
new file mode 100644
index 0000000..ee861a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_669.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_67.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_67.png
new file mode 100644
index 0000000..d608799
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_67.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_670.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_670.png
new file mode 100644
index 0000000..20c885d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_670.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_671.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_671.png
new file mode 100644
index 0000000..6ad82e6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_671.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_672.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_672.png
new file mode 100644
index 0000000..891f0bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_672.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_673.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_673.png
new file mode 100644
index 0000000..f4e21fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_673.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_674.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_674.png
new file mode 100644
index 0000000..953ecd7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_674.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_675.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_675.png
new file mode 100644
index 0000000..2afff39
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_675.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_676.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_676.png
new file mode 100644
index 0000000..3d23977
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_676.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_677.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_677.png
new file mode 100644
index 0000000..f81e62f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_677.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_678.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_678.png
new file mode 100644
index 0000000..957ec4b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_678.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_679.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_679.png
new file mode 100644
index 0000000..7892dbb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_679.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_68.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_68.png
new file mode 100644
index 0000000..62da4c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_68.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_680.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_680.png
new file mode 100644
index 0000000..c728d6e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_680.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_681.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_681.png
new file mode 100644
index 0000000..a71cf46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_681.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_682.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_682.png
new file mode 100644
index 0000000..eabb015
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_682.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_683.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_683.png
new file mode 100644
index 0000000..8090b29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_683.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_684.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_684.png
new file mode 100644
index 0000000..a6c9ffe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_684.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_685.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_685.png
new file mode 100644
index 0000000..f9e3f19
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_685.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_686.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_686.png
new file mode 100644
index 0000000..ab47e16
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_686.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_687.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_687.png
new file mode 100644
index 0000000..10035f9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_687.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_688.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_688.png
new file mode 100644
index 0000000..bcae4df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_688.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_689.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_689.png
new file mode 100644
index 0000000..dd5b521
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_689.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_69.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_69.png
new file mode 100644
index 0000000..6fea73d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_69.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_690.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_690.png
new file mode 100644
index 0000000..abde0c9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_690.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_691.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_691.png
new file mode 100644
index 0000000..4ac3160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_691.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_692.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_692.png
new file mode 100644
index 0000000..4ceec7a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_692.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_693.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_693.png
new file mode 100644
index 0000000..28a0377
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_693.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_694.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_694.png
new file mode 100644
index 0000000..1eb208c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_694.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_695.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_695.png
new file mode 100644
index 0000000..5171419
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_695.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_696.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_696.png
new file mode 100644
index 0000000..877d797
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_696.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_697.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_697.png
new file mode 100644
index 0000000..99ea83d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_697.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_698.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_698.png
new file mode 100644
index 0000000..7bfb160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_698.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_699.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_699.png
new file mode 100644
index 0000000..cd3c3ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_699.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_7.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_7.png
new file mode 100644
index 0000000..603f5f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_7.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_70.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_70.png
new file mode 100644
index 0000000..7f93703
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_70.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_700.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_700.png
new file mode 100644
index 0000000..96eb34a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_700.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_701.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_701.png
new file mode 100644
index 0000000..daa8870
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_701.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_702.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_702.png
new file mode 100644
index 0000000..273ec7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_702.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_703.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_703.png
new file mode 100644
index 0000000..a5c8828
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_703.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_704.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_704.png
new file mode 100644
index 0000000..cb96429
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_704.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_705.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_705.png
new file mode 100644
index 0000000..85ca2eb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_705.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_706.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_706.png
new file mode 100644
index 0000000..aedabf4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_706.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_707.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_707.png
new file mode 100644
index 0000000..65c0fbc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_707.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_708.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_708.png
new file mode 100644
index 0000000..4e7a93e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_708.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_709.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_709.png
new file mode 100644
index 0000000..c0826c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_709.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_71.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_71.png
new file mode 100644
index 0000000..4b1e8bb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_71.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_710.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_710.png
new file mode 100644
index 0000000..895c5c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_710.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_711.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_711.png
new file mode 100644
index 0000000..9254952
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_711.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_712.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_712.png
new file mode 100644
index 0000000..1c1a328
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_712.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_713.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_713.png
new file mode 100644
index 0000000..ceeb401
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_713.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_714.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_714.png
new file mode 100644
index 0000000..85d9ba3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_714.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_715.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_715.png
new file mode 100644
index 0000000..b981ee5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_715.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_716.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_716.png
new file mode 100644
index 0000000..f03e458
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_716.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_717.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_717.png
new file mode 100644
index 0000000..a8d7711
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_717.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_718.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_718.png
new file mode 100644
index 0000000..f81ce6c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_718.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_719.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_719.png
new file mode 100644
index 0000000..55e5cf2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_719.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_72.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_72.png
new file mode 100644
index 0000000..242cc2e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_72.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_720.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_720.png
new file mode 100644
index 0000000..f6dbfaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_720.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_721.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_721.png
new file mode 100644
index 0000000..45eb028
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_721.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_722.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_722.png
new file mode 100644
index 0000000..f17ea70
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_722.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_723.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_723.png
new file mode 100644
index 0000000..0d1fefa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_723.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_724.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_724.png
new file mode 100644
index 0000000..a5063db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_724.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_725.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_725.png
new file mode 100644
index 0000000..ab26809
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_725.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_726.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_726.png
new file mode 100644
index 0000000..b0e8cbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_726.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_727.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_727.png
new file mode 100644
index 0000000..75b1151
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_727.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_728.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_728.png
new file mode 100644
index 0000000..6d80030
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_728.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_729.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_729.png
new file mode 100644
index 0000000..a5f0c45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_729.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_73.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_73.png
new file mode 100644
index 0000000..6dc6bad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_73.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_730.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_730.png
new file mode 100644
index 0000000..eea680f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_730.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_731.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_731.png
new file mode 100644
index 0000000..45779f9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_731.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_732.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_732.png
new file mode 100644
index 0000000..5199741
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_732.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_733.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_733.png
new file mode 100644
index 0000000..3177f9a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_733.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_734.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_734.png
new file mode 100644
index 0000000..9c6d91a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_734.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_735.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_735.png
new file mode 100644
index 0000000..422d13c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_735.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_736.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_736.png
new file mode 100644
index 0000000..41b2b4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_736.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_737.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_737.png
new file mode 100644
index 0000000..b0b2d21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_737.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_738.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_738.png
new file mode 100644
index 0000000..56e1937
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_738.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_739.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_739.png
new file mode 100644
index 0000000..da8c293
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_739.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_74.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_74.png
new file mode 100644
index 0000000..9791d57
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_74.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_740.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_740.png
new file mode 100644
index 0000000..10747ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_740.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_741.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_741.png
new file mode 100644
index 0000000..0f5c816
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_741.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_742.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_742.png
new file mode 100644
index 0000000..894e6b4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_742.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_743.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_743.png
new file mode 100644
index 0000000..edd3f78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_743.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_744.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_744.png
new file mode 100644
index 0000000..81f2b1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_744.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_745.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_745.png
new file mode 100644
index 0000000..03c3988
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_745.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_746.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_746.png
new file mode 100644
index 0000000..52d9aad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_746.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_747.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_747.png
new file mode 100644
index 0000000..d0bc5f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_747.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_748.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_748.png
new file mode 100644
index 0000000..abe1ee2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_748.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_749.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_749.png
new file mode 100644
index 0000000..c773e7e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_749.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_75.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_75.png
new file mode 100644
index 0000000..8f4720d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_75.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_750.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_750.png
new file mode 100644
index 0000000..7a2ffb0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_750.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_751.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_751.png
new file mode 100644
index 0000000..2de08ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_751.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_752.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_752.png
new file mode 100644
index 0000000..af1a14a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_752.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_753.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_753.png
new file mode 100644
index 0000000..81b3d1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_753.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_754.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_754.png
new file mode 100644
index 0000000..eb25cf9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_754.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_755.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_755.png
new file mode 100644
index 0000000..f736d14
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_755.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_756.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_756.png
new file mode 100644
index 0000000..0276779
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_756.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_757.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_757.png
new file mode 100644
index 0000000..4b24683
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_757.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_758.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_758.png
new file mode 100644
index 0000000..080e01c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_758.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_759.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_759.png
new file mode 100644
index 0000000..b581d60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_759.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_76.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_76.png
new file mode 100644
index 0000000..ba6f64c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_76.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_760.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_760.png
new file mode 100644
index 0000000..a2663d2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_760.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_761.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_761.png
new file mode 100644
index 0000000..52cfe98
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_761.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_762.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_762.png
new file mode 100644
index 0000000..cfb9664
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_762.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_763.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_763.png
new file mode 100644
index 0000000..1d5fe0d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_763.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_764.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_764.png
new file mode 100644
index 0000000..c484744
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_764.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_765.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_765.png
new file mode 100644
index 0000000..0bfaf45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_765.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_766.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_766.png
new file mode 100644
index 0000000..d420758
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_766.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_767.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_767.png
new file mode 100644
index 0000000..5cdc6f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_767.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_768.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_768.png
new file mode 100644
index 0000000..cb076e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_768.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_769.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_769.png
new file mode 100644
index 0000000..3307fc3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_769.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_77.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_77.png
new file mode 100644
index 0000000..1a61ed3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_77.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_770.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_770.png
new file mode 100644
index 0000000..a76fb5d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_770.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_771.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_771.png
new file mode 100644
index 0000000..557c71a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_771.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_772.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_772.png
new file mode 100644
index 0000000..25659fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_772.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_773.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_773.png
new file mode 100644
index 0000000..8f16002
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_773.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_774.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_774.png
new file mode 100644
index 0000000..69ecae9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_774.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_775.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_775.png
new file mode 100644
index 0000000..d3be414
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_775.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_776.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_776.png
new file mode 100644
index 0000000..1fb428c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_776.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_777.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_777.png
new file mode 100644
index 0000000..c58185a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_777.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_778.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_778.png
new file mode 100644
index 0000000..805eb0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_778.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_779.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_779.png
new file mode 100644
index 0000000..d9a2136
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_779.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_78.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_78.png
new file mode 100644
index 0000000..66f9f32
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_78.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_780.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_780.png
new file mode 100644
index 0000000..cce5e31
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_780.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_781.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_781.png
new file mode 100644
index 0000000..5a6226e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_781.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_782.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_782.png
new file mode 100644
index 0000000..0d27505
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_782.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_783.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_783.png
new file mode 100644
index 0000000..0216504
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_783.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_784.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_784.png
new file mode 100644
index 0000000..bc542c4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_784.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_785.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_785.png
new file mode 100644
index 0000000..870f865
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_785.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_786.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_786.png
new file mode 100644
index 0000000..cb4c6bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_786.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_787.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_787.png
new file mode 100644
index 0000000..07c4cf7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_787.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_788.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_788.png
new file mode 100644
index 0000000..78d6924
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_788.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_789.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_789.png
new file mode 100644
index 0000000..96e1ed4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_789.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_79.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_79.png
new file mode 100644
index 0000000..32a96fc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_79.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_790.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_790.png
new file mode 100644
index 0000000..4f3e9db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_790.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_791.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_791.png
new file mode 100644
index 0000000..07c091d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_791.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_792.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_792.png
new file mode 100644
index 0000000..0592fc8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_792.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_793.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_793.png
new file mode 100644
index 0000000..8724f90
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_793.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_794.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_794.png
new file mode 100644
index 0000000..60e7108
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_794.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_795.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_795.png
new file mode 100644
index 0000000..0cc89bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_795.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_796.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_796.png
new file mode 100644
index 0000000..e774840
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_796.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_797.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_797.png
new file mode 100644
index 0000000..c8ec3cd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_797.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_798.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_798.png
new file mode 100644
index 0000000..f90007d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_798.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_799.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_799.png
new file mode 100644
index 0000000..ca11c5a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_799.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_8.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_8.png
new file mode 100644
index 0000000..6bbc2cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_8.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_80.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_80.png
new file mode 100644
index 0000000..29f0188
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_80.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_800.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_800.png
new file mode 100644
index 0000000..08d720e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_800.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_801.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_801.png
new file mode 100644
index 0000000..cea4fa9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_801.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_802.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_802.png
new file mode 100644
index 0000000..6dfe74a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_802.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_803.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_803.png
new file mode 100644
index 0000000..d0862f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_803.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_804.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_804.png
new file mode 100644
index 0000000..a5dc860
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_804.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_805.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_805.png
new file mode 100644
index 0000000..ab057ea
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_805.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_806.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_806.png
new file mode 100644
index 0000000..77dd090
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_806.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_807.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_807.png
new file mode 100644
index 0000000..35da302
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_807.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_808.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_808.png
new file mode 100644
index 0000000..fd8f75c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_808.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_809.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_809.png
new file mode 100644
index 0000000..df8d315
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_809.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_81.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_81.png
new file mode 100644
index 0000000..1680b8d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_81.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_810.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_810.png
new file mode 100644
index 0000000..466b557
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_810.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_811.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_811.png
new file mode 100644
index 0000000..3138dd5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_811.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_812.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_812.png
new file mode 100644
index 0000000..89c91f6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_812.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_813.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_813.png
new file mode 100644
index 0000000..03e1990
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_813.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_814.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_814.png
new file mode 100644
index 0000000..ca93249
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_814.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_815.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_815.png
new file mode 100644
index 0000000..4dd7636
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_815.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_816.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_816.png
new file mode 100644
index 0000000..5719a83
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_816.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_817.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_817.png
new file mode 100644
index 0000000..8ff58f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_817.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_818.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_818.png
new file mode 100644
index 0000000..f9007d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_818.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_819.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_819.png
new file mode 100644
index 0000000..a922ba4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_819.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_82.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_82.png
new file mode 100644
index 0000000..32ba2df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_82.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_820.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_820.png
new file mode 100644
index 0000000..36af458
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_820.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_821.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_821.png
new file mode 100644
index 0000000..9ff7235
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_821.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_822.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_822.png
new file mode 100644
index 0000000..504fc0f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_822.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_823.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_823.png
new file mode 100644
index 0000000..fbb5a22
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_823.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_824.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_824.png
new file mode 100644
index 0000000..a4f3948
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_824.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_825.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_825.png
new file mode 100644
index 0000000..d0f2536
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_825.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_826.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_826.png
new file mode 100644
index 0000000..94da81a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_826.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_827.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_827.png
new file mode 100644
index 0000000..f68b122
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_827.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_828.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_828.png
new file mode 100644
index 0000000..27ba67e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_828.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_829.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_829.png
new file mode 100644
index 0000000..b6d33ad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_829.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_83.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_83.png
new file mode 100644
index 0000000..b1e2536
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_83.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_830.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_830.png
new file mode 100644
index 0000000..dd0da37
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_830.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_831.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_831.png
new file mode 100644
index 0000000..8ab10a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_831.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_832.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_832.png
new file mode 100644
index 0000000..6803261
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_832.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_833.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_833.png
new file mode 100644
index 0000000..2299531
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_833.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_834.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_834.png
new file mode 100644
index 0000000..439b331
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_834.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_835.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_835.png
new file mode 100644
index 0000000..40c3e61
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_835.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_836.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_836.png
new file mode 100644
index 0000000..aac8f23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_836.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_837.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_837.png
new file mode 100644
index 0000000..f502f9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_837.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_838.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_838.png
new file mode 100644
index 0000000..ff9ca66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_838.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_839.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_839.png
new file mode 100644
index 0000000..bb82e77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_839.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_84.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_84.png
new file mode 100644
index 0000000..3b62def
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_84.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_840.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_840.png
new file mode 100644
index 0000000..7e7aad4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_840.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_841.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_841.png
new file mode 100644
index 0000000..31897ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_841.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_842.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_842.png
new file mode 100644
index 0000000..83fa398
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_842.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_843.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_843.png
new file mode 100644
index 0000000..d7dd853
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_843.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_844.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_844.png
new file mode 100644
index 0000000..a792d95
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_844.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_845.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_845.png
new file mode 100644
index 0000000..57bbe38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_845.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_846.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_846.png
new file mode 100644
index 0000000..5c8e7e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_846.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_847.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_847.png
new file mode 100644
index 0000000..e7d3cab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_847.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_848.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_848.png
new file mode 100644
index 0000000..d6b0795
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_848.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_849.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_849.png
new file mode 100644
index 0000000..06381fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_849.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_85.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_85.png
new file mode 100644
index 0000000..1256f0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_85.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_850.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_850.png
new file mode 100644
index 0000000..1ad3a08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_850.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_851.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_851.png
new file mode 100644
index 0000000..3539469
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_851.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_852.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_852.png
new file mode 100644
index 0000000..24eafaf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_852.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_853.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_853.png
new file mode 100644
index 0000000..7b2816d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_853.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_854.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_854.png
new file mode 100644
index 0000000..d5d2d78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_854.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_855.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_855.png
new file mode 100644
index 0000000..e67f9c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_855.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_856.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_856.png
new file mode 100644
index 0000000..d22bcbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_856.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_857.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_857.png
new file mode 100644
index 0000000..c45cef9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_857.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_858.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_858.png
new file mode 100644
index 0000000..84ffeb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_858.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_859.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_859.png
new file mode 100644
index 0000000..846b4c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_859.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_86.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_86.png
new file mode 100644
index 0000000..ae84a1b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_86.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_860.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_860.png
new file mode 100644
index 0000000..536522e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_860.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_861.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_861.png
new file mode 100644
index 0000000..f6e718a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_861.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_862.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_862.png
new file mode 100644
index 0000000..025a608
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_862.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_863.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_863.png
new file mode 100644
index 0000000..d97e970
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_863.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_864.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_864.png
new file mode 100644
index 0000000..1be2555
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_864.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_865.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_865.png
new file mode 100644
index 0000000..18efb18
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_865.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_866.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_866.png
new file mode 100644
index 0000000..16be896
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_866.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_867.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_867.png
new file mode 100644
index 0000000..2fff8f1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_867.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_868.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_868.png
new file mode 100644
index 0000000..6a2bf06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_868.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_869.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_869.png
new file mode 100644
index 0000000..e54f5a0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_869.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_87.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_87.png
new file mode 100644
index 0000000..7d18d4e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_87.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_870.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_870.png
new file mode 100644
index 0000000..a34ba2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_870.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_871.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_871.png
new file mode 100644
index 0000000..a262127
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_871.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_872.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_872.png
new file mode 100644
index 0000000..88d25ab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_872.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_873.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_873.png
new file mode 100644
index 0000000..635e5c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_873.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_874.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_874.png
new file mode 100644
index 0000000..09b296f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_874.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_875.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_875.png
new file mode 100644
index 0000000..ce83e59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_875.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_876.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_876.png
new file mode 100644
index 0000000..1c90866
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_876.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_877.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_877.png
new file mode 100644
index 0000000..181efda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_877.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_878.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_878.png
new file mode 100644
index 0000000..c983837
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_878.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_879.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_879.png
new file mode 100644
index 0000000..ebe8514
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_879.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_88.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_88.png
new file mode 100644
index 0000000..9114eaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_88.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_880.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_880.png
new file mode 100644
index 0000000..b735168
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_880.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_881.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_881.png
new file mode 100644
index 0000000..f020dce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_881.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_882.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_882.png
new file mode 100644
index 0000000..b24592f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_882.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_883.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_883.png
new file mode 100644
index 0000000..9d55038
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_883.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_884.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_884.png
new file mode 100644
index 0000000..cb09a4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_884.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_885.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_885.png
new file mode 100644
index 0000000..be3d609
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_885.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_886.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_886.png
new file mode 100644
index 0000000..9fefff4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_886.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_887.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_887.png
new file mode 100644
index 0000000..60b8545
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_887.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_888.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_888.png
new file mode 100644
index 0000000..9eaa721
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_888.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_889.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_889.png
new file mode 100644
index 0000000..a214823
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_889.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_89.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_89.png
new file mode 100644
index 0000000..f15a2d7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_89.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_890.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_890.png
new file mode 100644
index 0000000..9aca291
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_890.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_891.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_891.png
new file mode 100644
index 0000000..1e49d4b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_891.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_892.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_892.png
new file mode 100644
index 0000000..5002d3b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_892.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_893.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_893.png
new file mode 100644
index 0000000..169c183
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_893.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_894.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_894.png
new file mode 100644
index 0000000..3e38c1b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_894.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_895.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_895.png
new file mode 100644
index 0000000..3886b23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_895.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_896.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_896.png
new file mode 100644
index 0000000..5b15b44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_896.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_897.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_897.png
new file mode 100644
index 0000000..d45ba0c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_897.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_898.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_898.png
new file mode 100644
index 0000000..583ab23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_898.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_899.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_899.png
new file mode 100644
index 0000000..b2bb5a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_899.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_9.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_9.png
new file mode 100644
index 0000000..afd0166
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_9.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_90.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_90.png
new file mode 100644
index 0000000..15f27e2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_90.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_900.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_900.png
new file mode 100644
index 0000000..fa307d9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_900.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_901.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_901.png
new file mode 100644
index 0000000..ce95449
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_901.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_902.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_902.png
new file mode 100644
index 0000000..bfdb2dc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_902.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_903.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_903.png
new file mode 100644
index 0000000..06d44f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_903.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_904.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_904.png
new file mode 100644
index 0000000..b8eba75
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_904.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_905.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_905.png
new file mode 100644
index 0000000..f86a592
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_905.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_906.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_906.png
new file mode 100644
index 0000000..1edb4f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_906.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_907.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_907.png
new file mode 100644
index 0000000..6696494
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_907.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_908.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_908.png
new file mode 100644
index 0000000..158a6e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_908.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_909.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_909.png
new file mode 100644
index 0000000..e0dfd63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_909.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_91.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_91.png
new file mode 100644
index 0000000..45e238a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_91.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_910.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_910.png
new file mode 100644
index 0000000..c37bbb9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_910.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_911.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_911.png
new file mode 100644
index 0000000..bb16c1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_911.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_912.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_912.png
new file mode 100644
index 0000000..81bd3cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_912.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_913.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_913.png
new file mode 100644
index 0000000..319c8e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_913.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_914.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_914.png
new file mode 100644
index 0000000..1d6d347
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_914.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_915.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_915.png
new file mode 100644
index 0000000..b353418
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_915.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_916.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_916.png
new file mode 100644
index 0000000..979a680
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_916.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_917.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_917.png
new file mode 100644
index 0000000..f972eee
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_917.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_918.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_918.png
new file mode 100644
index 0000000..db5a190
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_918.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_919.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_919.png
new file mode 100644
index 0000000..2dfcf2f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_919.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_92.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_92.png
new file mode 100644
index 0000000..e31dcbd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_92.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_920.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_920.png
new file mode 100644
index 0000000..b8a328e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_920.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_921.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_921.png
new file mode 100644
index 0000000..550cfc6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_921.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_922.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_922.png
new file mode 100644
index 0000000..c6e411a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_922.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_923.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_923.png
new file mode 100644
index 0000000..049a948
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_923.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_924.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_924.png
new file mode 100644
index 0000000..44324b5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_924.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_925.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_925.png
new file mode 100644
index 0000000..c307573
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_925.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_926.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_926.png
new file mode 100644
index 0000000..358706e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_926.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_927.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_927.png
new file mode 100644
index 0000000..7a62be2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_927.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_928.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_928.png
new file mode 100644
index 0000000..24ed967
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_928.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_929.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_929.png
new file mode 100644
index 0000000..d3f2c58
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_929.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_93.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_93.png
new file mode 100644
index 0000000..54d6de1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_93.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_930.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_930.png
new file mode 100644
index 0000000..53487ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_930.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_931.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_931.png
new file mode 100644
index 0000000..ebbc1c2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_931.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_932.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_932.png
new file mode 100644
index 0000000..03de80f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_932.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_933.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_933.png
new file mode 100644
index 0000000..0f1e8ec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_933.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_934.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_934.png
new file mode 100644
index 0000000..78f2e97
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_934.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_935.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_935.png
new file mode 100644
index 0000000..d86bc0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_935.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_936.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_936.png
new file mode 100644
index 0000000..51b2cbf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_936.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_937.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_937.png
new file mode 100644
index 0000000..9c34b25
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_937.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_938.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_938.png
new file mode 100644
index 0000000..5a0a9e9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_938.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_939.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_939.png
new file mode 100644
index 0000000..5c547fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_939.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_94.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_94.png
new file mode 100644
index 0000000..120bb9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_94.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_940.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_940.png
new file mode 100644
index 0000000..d2c0288
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_940.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_941.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_941.png
new file mode 100644
index 0000000..619ef13
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_941.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_942.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_942.png
new file mode 100644
index 0000000..c36271b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_942.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_943.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_943.png
new file mode 100644
index 0000000..8dc67d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_943.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_944.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_944.png
new file mode 100644
index 0000000..531fd0d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_944.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_945.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_945.png
new file mode 100644
index 0000000..8a3dc4c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_945.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_946.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_946.png
new file mode 100644
index 0000000..2e23148
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_946.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_947.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_947.png
new file mode 100644
index 0000000..3ed8188
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_947.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_948.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_948.png
new file mode 100644
index 0000000..fad1b99
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_948.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_949.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_949.png
new file mode 100644
index 0000000..4940179
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_949.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_95.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_95.png
new file mode 100644
index 0000000..3aa82a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_95.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_950.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_950.png
new file mode 100644
index 0000000..d9698c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_950.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_951.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_951.png
new file mode 100644
index 0000000..149fd73
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_951.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_952.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_952.png
new file mode 100644
index 0000000..e9d6a8f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_952.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_953.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_953.png
new file mode 100644
index 0000000..3317d2d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_953.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_954.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_954.png
new file mode 100644
index 0000000..0c48fa6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_954.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_955.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_955.png
new file mode 100644
index 0000000..51fe9ea
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_955.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_956.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_956.png
new file mode 100644
index 0000000..ed6daf4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_956.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_957.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_957.png
new file mode 100644
index 0000000..de4f673
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_957.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_958.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_958.png
new file mode 100644
index 0000000..695d6bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_958.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_959.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_959.png
new file mode 100644
index 0000000..aa4ff17
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_959.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_96.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_96.png
new file mode 100644
index 0000000..8f165e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_96.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_960.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_960.png
new file mode 100644
index 0000000..cddaeda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_960.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_961.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_961.png
new file mode 100644
index 0000000..1b82865
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_961.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_962.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_962.png
new file mode 100644
index 0000000..247bd0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_962.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_963.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_963.png
new file mode 100644
index 0000000..ddcec8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_963.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_964.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_964.png
new file mode 100644
index 0000000..73c8156
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_964.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_965.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_965.png
new file mode 100644
index 0000000..ee21119
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_965.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_966.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_966.png
new file mode 100644
index 0000000..f6c2519
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_966.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_967.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_967.png
new file mode 100644
index 0000000..0908739
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_967.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_968.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_968.png
new file mode 100644
index 0000000..1f78f60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_968.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_969.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_969.png
new file mode 100644
index 0000000..817d8fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_969.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_97.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_97.png
new file mode 100644
index 0000000..b96519e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_97.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_970.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_970.png
new file mode 100644
index 0000000..c50228e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_970.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_971.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_971.png
new file mode 100644
index 0000000..16f9c10
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_971.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_972.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_972.png
new file mode 100644
index 0000000..eee298f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_972.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_973.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_973.png
new file mode 100644
index 0000000..592fb67
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_973.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_974.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_974.png
new file mode 100644
index 0000000..36e391f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_974.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_975.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_975.png
new file mode 100644
index 0000000..68ecc78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_975.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_976.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_976.png
new file mode 100644
index 0000000..0eb8493
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_976.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_977.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_977.png
new file mode 100644
index 0000000..95334a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_977.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_978.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_978.png
new file mode 100644
index 0000000..517df69
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_978.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_979.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_979.png
new file mode 100644
index 0000000..49eef41
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_979.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_98.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_98.png
new file mode 100644
index 0000000..7b9e70e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_98.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_980.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_980.png
new file mode 100644
index 0000000..47e7b3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_980.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_981.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_981.png
new file mode 100644
index 0000000..ccd829d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_981.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_982.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_982.png
new file mode 100644
index 0000000..adf0ef2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_982.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_983.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_983.png
new file mode 100644
index 0000000..61283f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_983.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_984.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_984.png
new file mode 100644
index 0000000..b73751c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_984.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_985.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_985.png
new file mode 100644
index 0000000..75ba1ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_985.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_986.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_986.png
new file mode 100644
index 0000000..d64a309
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_986.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_987.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_987.png
new file mode 100644
index 0000000..5581516
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_987.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_988.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_988.png
new file mode 100644
index 0000000..65b6eb6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_988.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_989.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_989.png
new file mode 100644
index 0000000..b5969d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_989.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_99.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_99.png
new file mode 100644
index 0000000..2735848
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_99.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_990.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_990.png
new file mode 100644
index 0000000..ce80e8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_990.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_991.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_991.png
new file mode 100644
index 0000000..0db3ec1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_991.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_992.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_992.png
new file mode 100644
index 0000000..5228b49
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_992.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_993.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_993.png
new file mode 100644
index 0000000..f76ab63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_993.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_994.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_994.png
new file mode 100644
index 0000000..e415c1d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_994.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_995.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_995.png
new file mode 100644
index 0000000..46af11f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_995.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_996.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_996.png
new file mode 100644
index 0000000..1ff7ab0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_996.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_997.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_997.png
new file mode 100644
index 0000000..c1b5c84
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_997.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_998.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_998.png
new file mode 100644
index 0000000..ced9d6d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_998.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_999.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_999.png
new file mode 100644
index 0000000..1012640
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/images/captcha_999.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_0.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_0.txt
new file mode 100644
index 0000000..12beefe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_0.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1.txt
new file mode 100644
index 0000000..c054805
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_10.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_10.txt
new file mode 100644
index 0000000..54b2eaa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_10.txt
@@ -0,0 +1 @@
+0 0.35 0.271875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_100.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_100.txt
new file mode 100644
index 0000000..699eba8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_100.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1000.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1000.txt
new file mode 100644
index 0000000..5c61787
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_1000.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_101.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_101.txt
new file mode 100644
index 0000000..ae5cb85
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_101.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_102.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_102.txt
new file mode 100644
index 0000000..11a1663
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_102.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_103.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_103.txt
new file mode 100644
index 0000000..2ed7cb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_103.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_104.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_104.txt
new file mode 100644
index 0000000..5c0b4f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_104.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_105.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_105.txt
new file mode 100644
index 0000000..46b1b89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_105.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_106.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_106.txt
new file mode 100644
index 0000000..9d0be29
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_106.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_107.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_107.txt
new file mode 100644
index 0000000..51db49a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_107.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_108.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_108.txt
new file mode 100644
index 0000000..6bbd89c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_108.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_109.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_109.txt
new file mode 100644
index 0000000..8355674
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_109.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_11.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_11.txt
new file mode 100644
index 0000000..3613a4f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_11.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_110.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_110.txt
new file mode 100644
index 0000000..f4ecef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_110.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_111.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_111.txt
new file mode 100644
index 0000000..8bc2bf0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_111.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_112.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_112.txt
new file mode 100644
index 0000000..60fb234
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_112.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.628125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_113.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_113.txt
new file mode 100644
index 0000000..4a5718d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_113.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_114.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_114.txt
new file mode 100644
index 0000000..50ff5f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_114.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_115.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_115.txt
new file mode 100644
index 0000000..520e716
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_115.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_116.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_116.txt
new file mode 100644
index 0000000..3f9ca4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_116.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_117.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_117.txt
new file mode 100644
index 0000000..1f0b3f6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_117.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.18125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_118.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_118.txt
new file mode 100644
index 0000000..a3154e5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_118.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_119.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_119.txt
new file mode 100644
index 0000000..050a301
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_119.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_12.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_12.txt
new file mode 100644
index 0000000..14a88cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_12.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_120.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_120.txt
new file mode 100644
index 0000000..c37f55a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_120.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_121.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_121.txt
new file mode 100644
index 0000000..7d5e10d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_121.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_122.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_122.txt
new file mode 100644
index 0000000..2022da2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_122.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_123.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_123.txt
new file mode 100644
index 0000000..cd07f11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_123.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_124.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_124.txt
new file mode 100644
index 0000000..2971de1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_124.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_125.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_125.txt
new file mode 100644
index 0000000..1f98d09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_125.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_126.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_126.txt
new file mode 100644
index 0000000..427dad6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_126.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_127.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_127.txt
new file mode 100644
index 0000000..0653eb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_127.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_128.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_128.txt
new file mode 100644
index 0000000..c5a3689
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_128.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_129.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_129.txt
new file mode 100644
index 0000000..5a07582
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_129.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_13.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_13.txt
new file mode 100644
index 0000000..b870c20
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_13.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_130.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_130.txt
new file mode 100644
index 0000000..4d930bf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_130.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_131.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_131.txt
new file mode 100644
index 0000000..77dc521
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_131.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_132.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_132.txt
new file mode 100644
index 0000000..75a88ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_132.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_133.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_133.txt
new file mode 100644
index 0000000..e8968e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_133.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_134.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_134.txt
new file mode 100644
index 0000000..4971157
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_134.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_135.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_135.txt
new file mode 100644
index 0000000..2744d7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_135.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_136.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_136.txt
new file mode 100644
index 0000000..faa5585
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_136.txt
@@ -0,0 +1 @@
+0 0.4115384615384615 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_137.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_137.txt
new file mode 100644
index 0000000..122fada
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_137.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_138.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_138.txt
new file mode 100644
index 0000000..8efd0c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_138.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_139.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_139.txt
new file mode 100644
index 0000000..9ce12c0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_139.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_14.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_14.txt
new file mode 100644
index 0000000..844bd09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_14.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_140.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_140.txt
new file mode 100644
index 0000000..b1bf29d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_140.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_141.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_141.txt
new file mode 100644
index 0000000..d14803d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_141.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_142.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_142.txt
new file mode 100644
index 0000000..ecfa39a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_142.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_143.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_143.txt
new file mode 100644
index 0000000..e595503
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_143.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_144.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_144.txt
new file mode 100644
index 0000000..1a905d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_144.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_145.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_145.txt
new file mode 100644
index 0000000..7d11c71
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_145.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_146.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_146.txt
new file mode 100644
index 0000000..08fe145
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_146.txt
@@ -0,0 +1 @@
+0 0.325 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_147.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_147.txt
new file mode 100644
index 0000000..aeb53ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_147.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_148.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_148.txt
new file mode 100644
index 0000000..a95127e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_148.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_149.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_149.txt
new file mode 100644
index 0000000..9ed089f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_149.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_15.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_15.txt
new file mode 100644
index 0000000..1e93e01
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_15.txt
@@ -0,0 +1 @@
+0 0.325 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_150.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_150.txt
new file mode 100644
index 0000000..d591ff2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_150.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_151.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_151.txt
new file mode 100644
index 0000000..cac71f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_151.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_152.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_152.txt
new file mode 100644
index 0000000..7088c08
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_152.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_153.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_153.txt
new file mode 100644
index 0000000..db33103
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_153.txt
@@ -0,0 +1 @@
+0 0.425 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_154.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_154.txt
new file mode 100644
index 0000000..4fe5d65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_154.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_155.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_155.txt
new file mode 100644
index 0000000..39860fa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_155.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_156.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_156.txt
new file mode 100644
index 0000000..ab94693
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_156.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_157.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_157.txt
new file mode 100644
index 0000000..6771b35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_157.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_158.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_158.txt
new file mode 100644
index 0000000..0cf2e81
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_158.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_159.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_159.txt
new file mode 100644
index 0000000..3547ada
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_159.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_16.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_16.txt
new file mode 100644
index 0000000..9df1347
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_16.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_160.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_160.txt
new file mode 100644
index 0000000..7061df8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_160.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.078125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_161.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_161.txt
new file mode 100644
index 0000000..a702321
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_161.txt
@@ -0,0 +1 @@
+0 0.625 0.190625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_162.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_162.txt
new file mode 100644
index 0000000..dfab0d5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_162.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_163.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_163.txt
new file mode 100644
index 0000000..93df56c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_163.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_164.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_164.txt
new file mode 100644
index 0000000..9a3fe89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_164.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_165.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_165.txt
new file mode 100644
index 0000000..4beae6e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_165.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_166.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_166.txt
new file mode 100644
index 0000000..4bae9f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_166.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_167.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_167.txt
new file mode 100644
index 0000000..152de20
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_167.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_168.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_168.txt
new file mode 100644
index 0000000..dcee446
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_168.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_169.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_169.txt
new file mode 100644
index 0000000..5aa92c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_169.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_17.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_17.txt
new file mode 100644
index 0000000..f76dd9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_17.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_170.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_170.txt
new file mode 100644
index 0000000..2f188b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_170.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_171.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_171.txt
new file mode 100644
index 0000000..9c17619
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_171.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_172.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_172.txt
new file mode 100644
index 0000000..eb4b9a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_172.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_173.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_173.txt
new file mode 100644
index 0000000..5f0919b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_173.txt
@@ -0,0 +1 @@
+0 0.3096153846153846 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_174.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_174.txt
new file mode 100644
index 0000000..e035bd7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_174.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_175.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_175.txt
new file mode 100644
index 0000000..c464d2e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_175.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_176.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_176.txt
new file mode 100644
index 0000000..75367c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_176.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_177.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_177.txt
new file mode 100644
index 0000000..59c5a49
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_177.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_178.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_178.txt
new file mode 100644
index 0000000..6fbed4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_178.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_179.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_179.txt
new file mode 100644
index 0000000..8443f60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_179.txt
@@ -0,0 +1 @@
+0 0.4 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_18.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_18.txt
new file mode 100644
index 0000000..5aaf59f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_18.txt
@@ -0,0 +1 @@
+0 0.575 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_180.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_180.txt
new file mode 100644
index 0000000..b716af3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_180.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_181.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_181.txt
new file mode 100644
index 0000000..4ab791b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_181.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_182.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_182.txt
new file mode 100644
index 0000000..a9180c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_182.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_183.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_183.txt
new file mode 100644
index 0000000..6f874ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_183.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_184.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_184.txt
new file mode 100644
index 0000000..dc5a7e7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_184.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_185.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_185.txt
new file mode 100644
index 0000000..9f6e987
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_185.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_186.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_186.txt
new file mode 100644
index 0000000..b55734a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_186.txt
@@ -0,0 +1 @@
+0 0.45 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_187.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_187.txt
new file mode 100644
index 0000000..e51ecb0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_187.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_188.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_188.txt
new file mode 100644
index 0000000..8cc3dce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_188.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_189.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_189.txt
new file mode 100644
index 0000000..56e8dc2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_189.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_19.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_19.txt
new file mode 100644
index 0000000..a85467f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_19.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_190.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_190.txt
new file mode 100644
index 0000000..c0c85e2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_190.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_191.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_191.txt
new file mode 100644
index 0000000..8a1a386
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_191.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_192.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_192.txt
new file mode 100644
index 0000000..f90e6a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_192.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_193.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_193.txt
new file mode 100644
index 0000000..36072de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_193.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_194.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_194.txt
new file mode 100644
index 0000000..118684c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_194.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_195.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_195.txt
new file mode 100644
index 0000000..83ff8b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_195.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_196.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_196.txt
new file mode 100644
index 0000000..44e1f21
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_196.txt
@@ -0,0 +1 @@
+0 0.49230769230769234 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_197.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_197.txt
new file mode 100644
index 0000000..868004d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_197.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_198.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_198.txt
new file mode 100644
index 0000000..96665d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_198.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_199.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_199.txt
new file mode 100644
index 0000000..61463f4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_199.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_2.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_2.txt
new file mode 100644
index 0000000..c2672a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_2.txt
@@ -0,0 +1 @@
+0 0.4115384615384615 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_20.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_20.txt
new file mode 100644
index 0000000..05deb62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_20.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_200.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_200.txt
new file mode 100644
index 0000000..7f61fb4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_200.txt
@@ -0,0 +1 @@
+0 0.575 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_201.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_201.txt
new file mode 100644
index 0000000..95da5a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_201.txt
@@ -0,0 +1 @@
+0 0.6807692307692308 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_202.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_202.txt
new file mode 100644
index 0000000..98257f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_202.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_203.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_203.txt
new file mode 100644
index 0000000..4bef2cd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_203.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_204.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_204.txt
new file mode 100644
index 0000000..9ea86c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_204.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_205.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_205.txt
new file mode 100644
index 0000000..5019a1a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_205.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_206.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_206.txt
new file mode 100644
index 0000000..fc19620
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_206.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_207.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_207.txt
new file mode 100644
index 0000000..24dad37
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_207.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_208.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_208.txt
new file mode 100644
index 0000000..b8b464e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_208.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_209.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_209.txt
new file mode 100644
index 0000000..f6733dc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_209.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.659375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_21.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_21.txt
new file mode 100644
index 0000000..accb7df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_21.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_210.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_210.txt
new file mode 100644
index 0000000..98e710c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_210.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_211.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_211.txt
new file mode 100644
index 0000000..b7ae955
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_211.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_212.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_212.txt
new file mode 100644
index 0000000..434702e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_212.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_213.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_213.txt
new file mode 100644
index 0000000..fb9f9a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_213.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_214.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_214.txt
new file mode 100644
index 0000000..f1a17ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_214.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.40625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_215.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_215.txt
new file mode 100644
index 0000000..11b77ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_215.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_216.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_216.txt
new file mode 100644
index 0000000..11e83ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_216.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_217.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_217.txt
new file mode 100644
index 0000000..ab6b152
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_217.txt
@@ -0,0 +1 @@
+0 0.40384615384615385 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_218.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_218.txt
new file mode 100644
index 0000000..73368e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_218.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_219.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_219.txt
new file mode 100644
index 0000000..f810725
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_219.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_22.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_22.txt
new file mode 100644
index 0000000..f7f3030
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_22.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_220.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_220.txt
new file mode 100644
index 0000000..d73a539
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_220.txt
@@ -0,0 +1 @@
+0 0.65 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_221.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_221.txt
new file mode 100644
index 0000000..6a4c868
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_221.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_222.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_222.txt
new file mode 100644
index 0000000..537f6da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_222.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_223.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_223.txt
new file mode 100644
index 0000000..9ed9a1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_223.txt
@@ -0,0 +1 @@
+0 0.3096153846153846 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_224.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_224.txt
new file mode 100644
index 0000000..72e2c2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_224.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_225.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_225.txt
new file mode 100644
index 0000000..4955961
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_225.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_226.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_226.txt
new file mode 100644
index 0000000..c219f6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_226.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_227.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_227.txt
new file mode 100644
index 0000000..7a7709d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_227.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_228.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_228.txt
new file mode 100644
index 0000000..8d6008a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_228.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.45 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_229.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_229.txt
new file mode 100644
index 0000000..52aeab9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_229.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_23.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_23.txt
new file mode 100644
index 0000000..37854fb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_23.txt
@@ -0,0 +1 @@
+0 0.3730769230769231 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_230.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_230.txt
new file mode 100644
index 0000000..b411f81
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_230.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_231.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_231.txt
new file mode 100644
index 0000000..a8b1476
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_231.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_232.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_232.txt
new file mode 100644
index 0000000..2b5782d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_232.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_233.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_233.txt
new file mode 100644
index 0000000..0f490c0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_233.txt
@@ -0,0 +1 @@
+0 0.55 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_234.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_234.txt
new file mode 100644
index 0000000..03e5f54
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_234.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_235.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_235.txt
new file mode 100644
index 0000000..d1f70cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_235.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_236.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_236.txt
new file mode 100644
index 0000000..41b038b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_236.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_237.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_237.txt
new file mode 100644
index 0000000..53681a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_237.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_238.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_238.txt
new file mode 100644
index 0000000..1de0029
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_238.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_239.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_239.txt
new file mode 100644
index 0000000..b9de947
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_239.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_24.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_24.txt
new file mode 100644
index 0000000..711358c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_24.txt
@@ -0,0 +1 @@
+0 0.35 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_240.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_240.txt
new file mode 100644
index 0000000..76501ca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_240.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_241.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_241.txt
new file mode 100644
index 0000000..98744ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_241.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_242.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_242.txt
new file mode 100644
index 0000000..7f7231b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_242.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_243.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_243.txt
new file mode 100644
index 0000000..4ffddce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_243.txt
@@ -0,0 +1 @@
+0 0.525 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_244.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_244.txt
new file mode 100644
index 0000000..79542f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_244.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_245.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_245.txt
new file mode 100644
index 0000000..0df73ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_245.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_246.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_246.txt
new file mode 100644
index 0000000..f637261
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_246.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_247.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_247.txt
new file mode 100644
index 0000000..b8224ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_247.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_248.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_248.txt
new file mode 100644
index 0000000..63e21b9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_248.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_249.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_249.txt
new file mode 100644
index 0000000..fa22cdd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_249.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_25.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_25.txt
new file mode 100644
index 0000000..c5deaca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_25.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_250.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_250.txt
new file mode 100644
index 0000000..ae714ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_250.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_251.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_251.txt
new file mode 100644
index 0000000..6ce886d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_251.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_252.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_252.txt
new file mode 100644
index 0000000..8346e57
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_252.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_253.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_253.txt
new file mode 100644
index 0000000..0bba845
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_253.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_254.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_254.txt
new file mode 100644
index 0000000..e6f1b0b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_254.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_255.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_255.txt
new file mode 100644
index 0000000..5f27c7f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_255.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_256.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_256.txt
new file mode 100644
index 0000000..d28c02b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_256.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_257.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_257.txt
new file mode 100644
index 0000000..5b9fff2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_257.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_258.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_258.txt
new file mode 100644
index 0000000..5cca452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_258.txt
@@ -0,0 +1 @@
+0 0.475 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_259.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_259.txt
new file mode 100644
index 0000000..c422330
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_259.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_26.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_26.txt
new file mode 100644
index 0000000..4cd4185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_26.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_260.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_260.txt
new file mode 100644
index 0000000..5159af0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_260.txt
@@ -0,0 +1 @@
+0 0.4673076923076923 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_261.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_261.txt
new file mode 100644
index 0000000..92da60b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_261.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_262.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_262.txt
new file mode 100644
index 0000000..02d55c7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_262.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_263.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_263.txt
new file mode 100644
index 0000000..0c9f164
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_263.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_264.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_264.txt
new file mode 100644
index 0000000..b9e6952
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_264.txt
@@ -0,0 +1 @@
+0 0.475 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_265.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_265.txt
new file mode 100644
index 0000000..10215ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_265.txt
@@ -0,0 +1 @@
+0 0.45 0.525 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_266.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_266.txt
new file mode 100644
index 0000000..7ab2a6b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_266.txt
@@ -0,0 +1 @@
+0 0.6673076923076923 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_267.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_267.txt
new file mode 100644
index 0000000..ba9a152
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_267.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_268.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_268.txt
new file mode 100644
index 0000000..c139e9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_268.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_269.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_269.txt
new file mode 100644
index 0000000..b54bc69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_269.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.24375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_27.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_27.txt
new file mode 100644
index 0000000..e45d28a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_27.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.628125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_270.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_270.txt
new file mode 100644
index 0000000..7368fb8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_270.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_271.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_271.txt
new file mode 100644
index 0000000..c4f80f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_271.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_272.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_272.txt
new file mode 100644
index 0000000..657b5c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_272.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.48125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_273.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_273.txt
new file mode 100644
index 0000000..04eae6c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_273.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_274.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_274.txt
new file mode 100644
index 0000000..1bf6af4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_274.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_275.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_275.txt
new file mode 100644
index 0000000..e3b2a02
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_275.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_276.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_276.txt
new file mode 100644
index 0000000..eab8ec0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_276.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_277.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_277.txt
new file mode 100644
index 0000000..82c1143
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_277.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_278.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_278.txt
new file mode 100644
index 0000000..0439508
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_278.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_279.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_279.txt
new file mode 100644
index 0000000..7643b0d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_279.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_28.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_28.txt
new file mode 100644
index 0000000..3ad369c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_28.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_280.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_280.txt
new file mode 100644
index 0000000..4c8d4a9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_280.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_281.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_281.txt
new file mode 100644
index 0000000..9b487aa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_281.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_282.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_282.txt
new file mode 100644
index 0000000..4531e11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_282.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_283.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_283.txt
new file mode 100644
index 0000000..37c3ede
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_283.txt
@@ -0,0 +1 @@
+0 0.575 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_284.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_284.txt
new file mode 100644
index 0000000..7772f65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_284.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_285.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_285.txt
new file mode 100644
index 0000000..ef548be
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_285.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_286.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_286.txt
new file mode 100644
index 0000000..3fde522
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_286.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_287.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_287.txt
new file mode 100644
index 0000000..aff8654
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_287.txt
@@ -0,0 +1 @@
+0 0.625 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_288.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_288.txt
new file mode 100644
index 0000000..673e13b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_288.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_289.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_289.txt
new file mode 100644
index 0000000..03cb0f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_289.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_29.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_29.txt
new file mode 100644
index 0000000..a6466b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_29.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_290.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_290.txt
new file mode 100644
index 0000000..90d82a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_290.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_291.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_291.txt
new file mode 100644
index 0000000..ae1182f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_291.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_292.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_292.txt
new file mode 100644
index 0000000..506aa6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_292.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_293.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_293.txt
new file mode 100644
index 0000000..141195f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_293.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_294.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_294.txt
new file mode 100644
index 0000000..9f989c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_294.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_295.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_295.txt
new file mode 100644
index 0000000..002800a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_295.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_296.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_296.txt
new file mode 100644
index 0000000..300e61c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_296.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_297.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_297.txt
new file mode 100644
index 0000000..81b79e0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_297.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_298.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_298.txt
new file mode 100644
index 0000000..e826550
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_298.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_299.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_299.txt
new file mode 100644
index 0000000..e2aca35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_299.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_3.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_3.txt
new file mode 100644
index 0000000..d470c30
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_3.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_30.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_30.txt
new file mode 100644
index 0000000..da706ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_30.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_300.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_300.txt
new file mode 100644
index 0000000..a5b17d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_300.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_301.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_301.txt
new file mode 100644
index 0000000..1079851
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_301.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_302.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_302.txt
new file mode 100644
index 0000000..ee77bfc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_302.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_303.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_303.txt
new file mode 100644
index 0000000..b92df26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_303.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_304.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_304.txt
new file mode 100644
index 0000000..70813a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_304.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_305.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_305.txt
new file mode 100644
index 0000000..1cc8b3f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_305.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.165625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_306.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_306.txt
new file mode 100644
index 0000000..37c3ede
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_306.txt
@@ -0,0 +1 @@
+0 0.575 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_307.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_307.txt
new file mode 100644
index 0000000..9e212d7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_307.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_308.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_308.txt
new file mode 100644
index 0000000..1550373
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_308.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_309.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_309.txt
new file mode 100644
index 0000000..0c1f148
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_309.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_31.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_31.txt
new file mode 100644
index 0000000..79792f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_31.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_310.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_310.txt
new file mode 100644
index 0000000..f79a7af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_310.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_311.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_311.txt
new file mode 100644
index 0000000..25bd653
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_311.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_312.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_312.txt
new file mode 100644
index 0000000..73bb1d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_312.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_313.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_313.txt
new file mode 100644
index 0000000..32ecaab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_313.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_314.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_314.txt
new file mode 100644
index 0000000..ed3461b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_314.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_315.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_315.txt
new file mode 100644
index 0000000..f9616fa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_315.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_316.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_316.txt
new file mode 100644
index 0000000..d57d0a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_316.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_317.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_317.txt
new file mode 100644
index 0000000..5d12d3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_317.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_318.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_318.txt
new file mode 100644
index 0000000..844bd09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_318.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_319.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_319.txt
new file mode 100644
index 0000000..4b368ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_319.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_32.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_32.txt
new file mode 100644
index 0000000..df9db74
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_32.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_320.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_320.txt
new file mode 100644
index 0000000..eb95c53
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_320.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.271875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_321.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_321.txt
new file mode 100644
index 0000000..70b066b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_321.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_322.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_322.txt
new file mode 100644
index 0000000..4ef9fe9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_322.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_323.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_323.txt
new file mode 100644
index 0000000..dab9016
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_323.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_324.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_324.txt
new file mode 100644
index 0000000..3e25071
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_324.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_325.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_325.txt
new file mode 100644
index 0000000..b83dde7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_325.txt
@@ -0,0 +1 @@
+0 0.6 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_326.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_326.txt
new file mode 100644
index 0000000..1d7c7b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_326.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_327.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_327.txt
new file mode 100644
index 0000000..41ff8df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_327.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_328.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_328.txt
new file mode 100644
index 0000000..309b42c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_328.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_329.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_329.txt
new file mode 100644
index 0000000..f12421b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_329.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_33.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_33.txt
new file mode 100644
index 0000000..c5deaca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_33.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_330.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_330.txt
new file mode 100644
index 0000000..d786bc2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_330.txt
@@ -0,0 +1 @@
+0 0.325 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_331.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_331.txt
new file mode 100644
index 0000000..5ddfd65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_331.txt
@@ -0,0 +1 @@
+0 0.5 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_332.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_332.txt
new file mode 100644
index 0000000..c924c58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_332.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_333.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_333.txt
new file mode 100644
index 0000000..d260eab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_333.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_334.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_334.txt
new file mode 100644
index 0000000..a8f7cb6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_334.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_335.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_335.txt
new file mode 100644
index 0000000..4c55d96
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_335.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_336.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_336.txt
new file mode 100644
index 0000000..46b56a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_336.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_337.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_337.txt
new file mode 100644
index 0000000..189a66f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_337.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_338.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_338.txt
new file mode 100644
index 0000000..9875178
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_338.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_339.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_339.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_339.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_34.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_34.txt
new file mode 100644
index 0000000..565236e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_34.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_340.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_340.txt
new file mode 100644
index 0000000..cb0d0e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_340.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_341.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_341.txt
new file mode 100644
index 0000000..98b99c8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_341.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_342.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_342.txt
new file mode 100644
index 0000000..2a3bba7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_342.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_343.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_343.txt
new file mode 100644
index 0000000..f3467f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_343.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_344.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_344.txt
new file mode 100644
index 0000000..bf174da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_344.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_345.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_345.txt
new file mode 100644
index 0000000..84d80c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_345.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_346.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_346.txt
new file mode 100644
index 0000000..969e9bd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_346.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_347.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_347.txt
new file mode 100644
index 0000000..ecdf74a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_347.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_348.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_348.txt
new file mode 100644
index 0000000..c104351
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_348.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_349.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_349.txt
new file mode 100644
index 0000000..875d657
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_349.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_35.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_35.txt
new file mode 100644
index 0000000..0eaaff7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_35.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_350.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_350.txt
new file mode 100644
index 0000000..06ddc7e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_350.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_351.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_351.txt
new file mode 100644
index 0000000..00d5e31
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_351.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_352.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_352.txt
new file mode 100644
index 0000000..eed5531
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_352.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_353.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_353.txt
new file mode 100644
index 0000000..2a5df5e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_353.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_354.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_354.txt
new file mode 100644
index 0000000..019b6f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_354.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_355.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_355.txt
new file mode 100644
index 0000000..871056a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_355.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_356.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_356.txt
new file mode 100644
index 0000000..73fb54a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_356.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_357.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_357.txt
new file mode 100644
index 0000000..efa98ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_357.txt
@@ -0,0 +1 @@
+0 0.5 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_358.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_358.txt
new file mode 100644
index 0000000..55d13fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_358.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_359.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_359.txt
new file mode 100644
index 0000000..fca2498
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_359.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_36.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_36.txt
new file mode 100644
index 0000000..fd36b9d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_36.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.340625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_360.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_360.txt
new file mode 100644
index 0000000..d824628
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_360.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_361.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_361.txt
new file mode 100644
index 0000000..bcf6fda
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_361.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_362.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_362.txt
new file mode 100644
index 0000000..1f19eaf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_362.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_363.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_363.txt
new file mode 100644
index 0000000..6ace519
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_363.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_364.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_364.txt
new file mode 100644
index 0000000..0698cf8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_364.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_365.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_365.txt
new file mode 100644
index 0000000..af6d2a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_365.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_366.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_366.txt
new file mode 100644
index 0000000..e547b79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_366.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_367.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_367.txt
new file mode 100644
index 0000000..0bf34fd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_367.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_368.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_368.txt
new file mode 100644
index 0000000..076ada7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_368.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_369.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_369.txt
new file mode 100644
index 0000000..187efd2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_369.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_37.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_37.txt
new file mode 100644
index 0000000..e192d16
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_37.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_370.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_370.txt
new file mode 100644
index 0000000..52b43b0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_370.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_371.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_371.txt
new file mode 100644
index 0000000..4420e9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_371.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_372.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_372.txt
new file mode 100644
index 0000000..3791163
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_372.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_373.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_373.txt
new file mode 100644
index 0000000..146e650
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_373.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_374.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_374.txt
new file mode 100644
index 0000000..276c682
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_374.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_375.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_375.txt
new file mode 100644
index 0000000..29b2b97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_375.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_376.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_376.txt
new file mode 100644
index 0000000..67f7282
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_376.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_377.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_377.txt
new file mode 100644
index 0000000..9332c77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_377.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_378.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_378.txt
new file mode 100644
index 0000000..7ff2a1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_378.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_379.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_379.txt
new file mode 100644
index 0000000..87e53f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_379.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_38.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_38.txt
new file mode 100644
index 0000000..bace8b1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_38.txt
@@ -0,0 +1 @@
+0 0.425 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_380.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_380.txt
new file mode 100644
index 0000000..2f2ec60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_380.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_381.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_381.txt
new file mode 100644
index 0000000..1a4205f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_381.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_382.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_382.txt
new file mode 100644
index 0000000..c386580
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_382.txt
@@ -0,0 +1 @@
+0 0.575 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_383.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_383.txt
new file mode 100644
index 0000000..c36959f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_383.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_384.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_384.txt
new file mode 100644
index 0000000..1a7c094
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_384.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_385.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_385.txt
new file mode 100644
index 0000000..b5f76e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_385.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_386.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_386.txt
new file mode 100644
index 0000000..f12421b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_386.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_387.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_387.txt
new file mode 100644
index 0000000..3526530
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_387.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_388.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_388.txt
new file mode 100644
index 0000000..f4c8eab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_388.txt
@@ -0,0 +1 @@
+0 0.4673076923076923 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_389.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_389.txt
new file mode 100644
index 0000000..9aea70c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_389.txt
@@ -0,0 +1 @@
+0 0.575 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_39.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_39.txt
new file mode 100644
index 0000000..0faaa15
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_39.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_390.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_390.txt
new file mode 100644
index 0000000..2fcdc63
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_390.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_391.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_391.txt
new file mode 100644
index 0000000..22ccd77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_391.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_392.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_392.txt
new file mode 100644
index 0000000..dae9650
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_392.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_393.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_393.txt
new file mode 100644
index 0000000..18e23f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_393.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_394.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_394.txt
new file mode 100644
index 0000000..06b8366
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_394.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_395.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_395.txt
new file mode 100644
index 0000000..a8adc08
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_395.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_396.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_396.txt
new file mode 100644
index 0000000..ae187e8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_396.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_397.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_397.txt
new file mode 100644
index 0000000..ae2ed44
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_397.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_398.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_398.txt
new file mode 100644
index 0000000..a8dd6b6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_398.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_399.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_399.txt
new file mode 100644
index 0000000..56b31b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_399.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_4.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_4.txt
new file mode 100644
index 0000000..416b5cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_4.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_40.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_40.txt
new file mode 100644
index 0000000..334f385
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_40.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_400.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_400.txt
new file mode 100644
index 0000000..05bc6fe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_400.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_401.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_401.txt
new file mode 100644
index 0000000..1c512ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_401.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_402.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_402.txt
new file mode 100644
index 0000000..d53205d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_402.txt
@@ -0,0 +1 @@
+0 0.325 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_403.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_403.txt
new file mode 100644
index 0000000..f033e7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_403.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_404.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_404.txt
new file mode 100644
index 0000000..cd7addf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_404.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_405.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_405.txt
new file mode 100644
index 0000000..34ce950
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_405.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_406.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_406.txt
new file mode 100644
index 0000000..5e33568
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_406.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_407.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_407.txt
new file mode 100644
index 0000000..3a3ed5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_407.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_408.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_408.txt
new file mode 100644
index 0000000..e81880e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_408.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_409.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_409.txt
new file mode 100644
index 0000000..af5eaa4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_409.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_41.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_41.txt
new file mode 100644
index 0000000..e5619b6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_41.txt
@@ -0,0 +1 @@
+0 0.5461538461538461 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_410.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_410.txt
new file mode 100644
index 0000000..f24dcec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_410.txt
@@ -0,0 +1 @@
+0 0.6346153846153846 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_411.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_411.txt
new file mode 100644
index 0000000..71d06c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_411.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_412.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_412.txt
new file mode 100644
index 0000000..7af0ef9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_412.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_413.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_413.txt
new file mode 100644
index 0000000..d8fb839
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_413.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_414.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_414.txt
new file mode 100644
index 0000000..1ad44a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_414.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_415.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_415.txt
new file mode 100644
index 0000000..6b042de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_415.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_416.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_416.txt
new file mode 100644
index 0000000..fa3285d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_416.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_417.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_417.txt
new file mode 100644
index 0000000..409cf73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_417.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_418.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_418.txt
new file mode 100644
index 0000000..a03149f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_418.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_419.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_419.txt
new file mode 100644
index 0000000..bb1d337
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_419.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_42.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_42.txt
new file mode 100644
index 0000000..fe23d41
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_42.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_420.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_420.txt
new file mode 100644
index 0000000..8432eb0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_420.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_421.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_421.txt
new file mode 100644
index 0000000..a87bf60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_421.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_422.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_422.txt
new file mode 100644
index 0000000..abffae2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_422.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_423.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_423.txt
new file mode 100644
index 0000000..dc5afa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_423.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_424.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_424.txt
new file mode 100644
index 0000000..a5838ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_424.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_425.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_425.txt
new file mode 100644
index 0000000..3bfd9eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_425.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_426.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_426.txt
new file mode 100644
index 0000000..5a37dfc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_426.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.234375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_427.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_427.txt
new file mode 100644
index 0000000..0dcbe78
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_427.txt
@@ -0,0 +1 @@
+0 0.6 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_428.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_428.txt
new file mode 100644
index 0000000..3ec7e33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_428.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_429.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_429.txt
new file mode 100644
index 0000000..b3ec0c3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_429.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_43.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_43.txt
new file mode 100644
index 0000000..ef9e295
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_43.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_430.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_430.txt
new file mode 100644
index 0000000..572a01a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_430.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_431.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_431.txt
new file mode 100644
index 0000000..fec7a36
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_431.txt
@@ -0,0 +1 @@
+0 0.475 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_432.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_432.txt
new file mode 100644
index 0000000..789240f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_432.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_433.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_433.txt
new file mode 100644
index 0000000..43b8aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_433.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_434.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_434.txt
new file mode 100644
index 0000000..82e07fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_434.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_435.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_435.txt
new file mode 100644
index 0000000..1361397
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_435.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_436.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_436.txt
new file mode 100644
index 0000000..1bec417
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_436.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_437.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_437.txt
new file mode 100644
index 0000000..66529c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_437.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_438.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_438.txt
new file mode 100644
index 0000000..a90d501
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_438.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_439.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_439.txt
new file mode 100644
index 0000000..1cca387
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_439.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_44.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_44.txt
new file mode 100644
index 0000000..fe9127a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_44.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_440.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_440.txt
new file mode 100644
index 0000000..5647dfe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_440.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_441.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_441.txt
new file mode 100644
index 0000000..69264eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_441.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_442.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_442.txt
new file mode 100644
index 0000000..9f796f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_442.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_443.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_443.txt
new file mode 100644
index 0000000..cd1ed8c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_443.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_444.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_444.txt
new file mode 100644
index 0000000..b92f51d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_444.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_445.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_445.txt
new file mode 100644
index 0000000..a7122a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_445.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.371875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_446.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_446.txt
new file mode 100644
index 0000000..3056f8d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_446.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_447.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_447.txt
new file mode 100644
index 0000000..c8fd7c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_447.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_448.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_448.txt
new file mode 100644
index 0000000..42e7566
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_448.txt
@@ -0,0 +1 @@
+0 0.5 0.340625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_449.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_449.txt
new file mode 100644
index 0000000..d5f6e18
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_449.txt
@@ -0,0 +1 @@
+0 0.6557692307692308 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_45.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_45.txt
new file mode 100644
index 0000000..be27224
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_45.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_450.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_450.txt
new file mode 100644
index 0000000..254b0fe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_450.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_451.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_451.txt
new file mode 100644
index 0000000..3438ed1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_451.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_452.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_452.txt
new file mode 100644
index 0000000..0f7caab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_452.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_453.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_453.txt
new file mode 100644
index 0000000..64ce159
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_453.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_454.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_454.txt
new file mode 100644
index 0000000..df14c97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_454.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_455.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_455.txt
new file mode 100644
index 0000000..20e81a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_455.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_456.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_456.txt
new file mode 100644
index 0000000..c40cd35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_456.txt
@@ -0,0 +1 @@
+0 0.375 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_457.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_457.txt
new file mode 100644
index 0000000..60d09f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_457.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_458.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_458.txt
new file mode 100644
index 0000000..33131a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_458.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_459.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_459.txt
new file mode 100644
index 0000000..7c7b268
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_459.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_46.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_46.txt
new file mode 100644
index 0000000..b135db0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_46.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_460.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_460.txt
new file mode 100644
index 0000000..41a354f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_460.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_461.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_461.txt
new file mode 100644
index 0000000..ff05970
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_461.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_462.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_462.txt
new file mode 100644
index 0000000..f6f2bfa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_462.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_463.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_463.txt
new file mode 100644
index 0000000..8b7f7ec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_463.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_464.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_464.txt
new file mode 100644
index 0000000..1dc6654
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_464.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_465.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_465.txt
new file mode 100644
index 0000000..2b351fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_465.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.165625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_466.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_466.txt
new file mode 100644
index 0000000..3eee44a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_466.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_467.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_467.txt
new file mode 100644
index 0000000..30708d5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_467.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_468.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_468.txt
new file mode 100644
index 0000000..f77b38c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_468.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_469.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_469.txt
new file mode 100644
index 0000000..1867d9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_469.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_47.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_47.txt
new file mode 100644
index 0000000..5fcdbce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_47.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_470.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_470.txt
new file mode 100644
index 0000000..84c8011
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_470.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_471.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_471.txt
new file mode 100644
index 0000000..2770aa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_471.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_472.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_472.txt
new file mode 100644
index 0000000..cb91346
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_472.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_473.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_473.txt
new file mode 100644
index 0000000..7341d02
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_473.txt
@@ -0,0 +1 @@
+0 0.625 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_474.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_474.txt
new file mode 100644
index 0000000..78894a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_474.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_475.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_475.txt
new file mode 100644
index 0000000..961e3bd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_475.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_476.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_476.txt
new file mode 100644
index 0000000..51cdb5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_476.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_477.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_477.txt
new file mode 100644
index 0000000..a73edef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_477.txt
@@ -0,0 +1 @@
+0 0.525 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_478.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_478.txt
new file mode 100644
index 0000000..0bc673d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_478.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_479.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_479.txt
new file mode 100644
index 0000000..7e9910a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_479.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_48.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_48.txt
new file mode 100644
index 0000000..b1d93f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_48.txt
@@ -0,0 +1 @@
+0 0.45 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_480.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_480.txt
new file mode 100644
index 0000000..1ece177
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_480.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_481.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_481.txt
new file mode 100644
index 0000000..87e147f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_481.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_482.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_482.txt
new file mode 100644
index 0000000..aee9ecf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_482.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_483.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_483.txt
new file mode 100644
index 0000000..8d850af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_483.txt
@@ -0,0 +1 @@
+0 0.40384615384615385 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_484.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_484.txt
new file mode 100644
index 0000000..55c0f3c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_484.txt
@@ -0,0 +1 @@
+0 0.4 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_485.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_485.txt
new file mode 100644
index 0000000..abdd3ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_485.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_486.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_486.txt
new file mode 100644
index 0000000..093ac52
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_486.txt
@@ -0,0 +1 @@
+0 0.4 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_487.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_487.txt
new file mode 100644
index 0000000..b7286ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_487.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_488.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_488.txt
new file mode 100644
index 0000000..6c03d22
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_488.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_489.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_489.txt
new file mode 100644
index 0000000..d48661f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_489.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_49.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_49.txt
new file mode 100644
index 0000000..7bf9900
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_49.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_490.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_490.txt
new file mode 100644
index 0000000..1837efd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_490.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_491.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_491.txt
new file mode 100644
index 0000000..e8cb6cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_491.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_492.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_492.txt
new file mode 100644
index 0000000..6190a04
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_492.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_493.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_493.txt
new file mode 100644
index 0000000..7843909
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_493.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_494.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_494.txt
new file mode 100644
index 0000000..fa1e00f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_494.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_495.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_495.txt
new file mode 100644
index 0000000..8d6d7be
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_495.txt
@@ -0,0 +1 @@
+0 0.3730769230769231 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_496.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_496.txt
new file mode 100644
index 0000000..fd0eb1d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_496.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_497.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_497.txt
new file mode 100644
index 0000000..df1813a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_497.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.3 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_498.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_498.txt
new file mode 100644
index 0000000..0942858
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_498.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_499.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_499.txt
new file mode 100644
index 0000000..161ae00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_499.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_5.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_5.txt
new file mode 100644
index 0000000..3a8ae19
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_5.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_50.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_50.txt
new file mode 100644
index 0000000..9d82f33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_50.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_500.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_500.txt
new file mode 100644
index 0000000..ecf503d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_500.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_501.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_501.txt
new file mode 100644
index 0000000..8515f89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_501.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_502.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_502.txt
new file mode 100644
index 0000000..b4466ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_502.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_503.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_503.txt
new file mode 100644
index 0000000..90bd624
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_503.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_504.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_504.txt
new file mode 100644
index 0000000..239b697
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_504.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_505.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_505.txt
new file mode 100644
index 0000000..135e324
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_505.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_506.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_506.txt
new file mode 100644
index 0000000..6cc4b69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_506.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_507.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_507.txt
new file mode 100644
index 0000000..77913c8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_507.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_508.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_508.txt
new file mode 100644
index 0000000..ea9741d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_508.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_509.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_509.txt
new file mode 100644
index 0000000..c1c46ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_509.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_51.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_51.txt
new file mode 100644
index 0000000..bae483b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_51.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_510.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_510.txt
new file mode 100644
index 0000000..f580129
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_510.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_511.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_511.txt
new file mode 100644
index 0000000..226409f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_511.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_512.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_512.txt
new file mode 100644
index 0000000..979a15e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_512.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.1375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_513.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_513.txt
new file mode 100644
index 0000000..09c6c41
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_513.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_514.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_514.txt
new file mode 100644
index 0000000..4e00b1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_514.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_515.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_515.txt
new file mode 100644
index 0000000..1347cf2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_515.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_516.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_516.txt
new file mode 100644
index 0000000..0d45ab4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_516.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_517.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_517.txt
new file mode 100644
index 0000000..6a16ad1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_517.txt
@@ -0,0 +1 @@
+0 0.325 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_518.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_518.txt
new file mode 100644
index 0000000..009b920
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_518.txt
@@ -0,0 +1 @@
+0 0.41346153846153844 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_519.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_519.txt
new file mode 100644
index 0000000..4cbcc33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_519.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_52.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_52.txt
new file mode 100644
index 0000000..04c2ed3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_52.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_520.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_520.txt
new file mode 100644
index 0000000..1a14550
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_520.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_521.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_521.txt
new file mode 100644
index 0000000..1281d69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_521.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_522.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_522.txt
new file mode 100644
index 0000000..9feb54d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_522.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_523.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_523.txt
new file mode 100644
index 0000000..fb21c9a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_523.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_524.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_524.txt
new file mode 100644
index 0000000..9625840
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_524.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_525.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_525.txt
new file mode 100644
index 0000000..4be5e1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_525.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_526.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_526.txt
new file mode 100644
index 0000000..8ca6701
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_526.txt
@@ -0,0 +1 @@
+0 0.675 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_527.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_527.txt
new file mode 100644
index 0000000..8b9953d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_527.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_528.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_528.txt
new file mode 100644
index 0000000..b18bc56
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_528.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_529.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_529.txt
new file mode 100644
index 0000000..37ca185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_529.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_53.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_53.txt
new file mode 100644
index 0000000..bf3b4b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_53.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.084375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_530.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_530.txt
new file mode 100644
index 0000000..f498815
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_530.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_531.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_531.txt
new file mode 100644
index 0000000..93b2b5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_531.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_532.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_532.txt
new file mode 100644
index 0000000..fc2f1f4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_532.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_533.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_533.txt
new file mode 100644
index 0000000..a99f9f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_533.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_534.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_534.txt
new file mode 100644
index 0000000..95eb91c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_534.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_535.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_535.txt
new file mode 100644
index 0000000..e6d6911
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_535.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_536.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_536.txt
new file mode 100644
index 0000000..ae5fff5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_536.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_537.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_537.txt
new file mode 100644
index 0000000..e7efa9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_537.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_538.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_538.txt
new file mode 100644
index 0000000..8f2edd0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_538.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.646875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_539.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_539.txt
new file mode 100644
index 0000000..97ee822
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_539.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_54.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_54.txt
new file mode 100644
index 0000000..7c940dc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_54.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_540.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_540.txt
new file mode 100644
index 0000000..c74b068
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_540.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_541.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_541.txt
new file mode 100644
index 0000000..57cddcc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_541.txt
@@ -0,0 +1 @@
+0 0.5461538461538461 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_542.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_542.txt
new file mode 100644
index 0000000..3e30cd7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_542.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_543.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_543.txt
new file mode 100644
index 0000000..6059bc1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_543.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_544.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_544.txt
new file mode 100644
index 0000000..cc9d46b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_544.txt
@@ -0,0 +1 @@
+0 0.375 0.084375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_545.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_545.txt
new file mode 100644
index 0000000..f2641c2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_545.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_546.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_546.txt
new file mode 100644
index 0000000..a5bd0d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_546.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_547.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_547.txt
new file mode 100644
index 0000000..1fd915a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_547.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_548.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_548.txt
new file mode 100644
index 0000000..60d65b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_548.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_549.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_549.txt
new file mode 100644
index 0000000..9b17ba9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_549.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_55.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_55.txt
new file mode 100644
index 0000000..b8159d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_55.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_550.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_550.txt
new file mode 100644
index 0000000..3a70233
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_550.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_551.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_551.txt
new file mode 100644
index 0000000..c076861
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_551.txt
@@ -0,0 +1 @@
+0 0.6673076923076923 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_552.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_552.txt
new file mode 100644
index 0000000..702b490
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_552.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_553.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_553.txt
new file mode 100644
index 0000000..87c6aec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_553.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_554.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_554.txt
new file mode 100644
index 0000000..4361932
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_554.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_555.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_555.txt
new file mode 100644
index 0000000..b52465a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_555.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_556.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_556.txt
new file mode 100644
index 0000000..e63fe04
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_556.txt
@@ -0,0 +1 @@
+0 0.325 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_557.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_557.txt
new file mode 100644
index 0000000..bdb2066
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_557.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_558.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_558.txt
new file mode 100644
index 0000000..5722c59
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_558.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_559.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_559.txt
new file mode 100644
index 0000000..7bc9e40
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_559.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_56.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_56.txt
new file mode 100644
index 0000000..59e6b3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_56.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_560.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_560.txt
new file mode 100644
index 0000000..715aabe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_560.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_561.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_561.txt
new file mode 100644
index 0000000..e196846
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_561.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_562.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_562.txt
new file mode 100644
index 0000000..1bc81bb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_562.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_563.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_563.txt
new file mode 100644
index 0000000..44bba2d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_563.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_564.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_564.txt
new file mode 100644
index 0000000..87a7643
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_564.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_565.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_565.txt
new file mode 100644
index 0000000..9fec86b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_565.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_566.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_566.txt
new file mode 100644
index 0000000..2ae336b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_566.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_567.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_567.txt
new file mode 100644
index 0000000..48f9cfa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_567.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.234375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_568.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_568.txt
new file mode 100644
index 0000000..3b252ec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_568.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_569.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_569.txt
new file mode 100644
index 0000000..417a777
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_569.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_57.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_57.txt
new file mode 100644
index 0000000..9daab33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_57.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_570.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_570.txt
new file mode 100644
index 0000000..1651e6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_570.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_571.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_571.txt
new file mode 100644
index 0000000..8806452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_571.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_572.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_572.txt
new file mode 100644
index 0000000..f0f2cc4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_572.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_573.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_573.txt
new file mode 100644
index 0000000..194fa16
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_573.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_574.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_574.txt
new file mode 100644
index 0000000..0d1627f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_574.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_575.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_575.txt
new file mode 100644
index 0000000..1991135
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_575.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_576.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_576.txt
new file mode 100644
index 0000000..ad609ac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_576.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_577.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_577.txt
new file mode 100644
index 0000000..8e2ea9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_577.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_578.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_578.txt
new file mode 100644
index 0000000..eb892d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_578.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_579.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_579.txt
new file mode 100644
index 0000000..bf9bec7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_579.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_58.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_58.txt
new file mode 100644
index 0000000..5044287
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_58.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_580.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_580.txt
new file mode 100644
index 0000000..01ca7e7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_580.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_581.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_581.txt
new file mode 100644
index 0000000..f85437f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_581.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_582.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_582.txt
new file mode 100644
index 0000000..f6a1836
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_582.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_583.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_583.txt
new file mode 100644
index 0000000..52ed8ca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_583.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_584.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_584.txt
new file mode 100644
index 0000000..0546360
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_584.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_585.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_585.txt
new file mode 100644
index 0000000..8fb557d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_585.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_586.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_586.txt
new file mode 100644
index 0000000..5022d3a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_586.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_587.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_587.txt
new file mode 100644
index 0000000..bc32b2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_587.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_588.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_588.txt
new file mode 100644
index 0000000..b31a3ee
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_588.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_589.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_589.txt
new file mode 100644
index 0000000..5313457
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_589.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_59.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_59.txt
new file mode 100644
index 0000000..25dc4df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_59.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_590.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_590.txt
new file mode 100644
index 0000000..7a6fb82
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_590.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_591.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_591.txt
new file mode 100644
index 0000000..72dd2ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_591.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_592.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_592.txt
new file mode 100644
index 0000000..494e283
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_592.txt
@@ -0,0 +1 @@
+0 0.6807692307692308 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_593.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_593.txt
new file mode 100644
index 0000000..23055f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_593.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_594.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_594.txt
new file mode 100644
index 0000000..db8d99f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_594.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_595.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_595.txt
new file mode 100644
index 0000000..d6383f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_595.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_596.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_596.txt
new file mode 100644
index 0000000..9afbacc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_596.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_597.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_597.txt
new file mode 100644
index 0000000..941f6f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_597.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_598.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_598.txt
new file mode 100644
index 0000000..9325358
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_598.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_599.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_599.txt
new file mode 100644
index 0000000..fad5383
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_599.txt
@@ -0,0 +1 @@
+0 0.5153846153846153 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_6.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_6.txt
new file mode 100644
index 0000000..1bc9c5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_6.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_60.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_60.txt
new file mode 100644
index 0000000..1ce4452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_60.txt
@@ -0,0 +1 @@
+0 0.35 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_600.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_600.txt
new file mode 100644
index 0000000..f00f3eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_600.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_601.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_601.txt
new file mode 100644
index 0000000..1e7ceda
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_601.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_602.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_602.txt
new file mode 100644
index 0000000..7277950
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_602.txt
@@ -0,0 +1 @@
+0 0.425 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_603.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_603.txt
new file mode 100644
index 0000000..e98bbb5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_603.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_604.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_604.txt
new file mode 100644
index 0000000..37fbe35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_604.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_605.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_605.txt
new file mode 100644
index 0000000..1d22910
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_605.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_606.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_606.txt
new file mode 100644
index 0000000..6af410c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_606.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_607.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_607.txt
new file mode 100644
index 0000000..779cba3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_607.txt
@@ -0,0 +1 @@
+0 0.6038461538461538 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_608.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_608.txt
new file mode 100644
index 0000000..6f6ac6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_608.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_609.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_609.txt
new file mode 100644
index 0000000..e0bc4e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_609.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_61.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_61.txt
new file mode 100644
index 0000000..a4ea8a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_61.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_610.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_610.txt
new file mode 100644
index 0000000..c513175
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_610.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_611.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_611.txt
new file mode 100644
index 0000000..2959c58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_611.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_612.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_612.txt
new file mode 100644
index 0000000..182f227
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_612.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_613.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_613.txt
new file mode 100644
index 0000000..d540b76
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_613.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_614.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_614.txt
new file mode 100644
index 0000000..a70d39b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_614.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_615.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_615.txt
new file mode 100644
index 0000000..53c1c15
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_615.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_616.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_616.txt
new file mode 100644
index 0000000..5456c39
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_616.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_617.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_617.txt
new file mode 100644
index 0000000..263feb9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_617.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_618.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_618.txt
new file mode 100644
index 0000000..30d9d0c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_618.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.646875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_619.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_619.txt
new file mode 100644
index 0000000..117a6db
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_619.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_62.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_62.txt
new file mode 100644
index 0000000..beae879
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_62.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_620.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_620.txt
new file mode 100644
index 0000000..769dfb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_620.txt
@@ -0,0 +1 @@
+0 0.36923076923076925 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_621.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_621.txt
new file mode 100644
index 0000000..1fc0e75
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_621.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_622.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_622.txt
new file mode 100644
index 0000000..8e992d4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_622.txt
@@ -0,0 +1 @@
+0 0.575 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_623.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_623.txt
new file mode 100644
index 0000000..b16cf00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_623.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_624.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_624.txt
new file mode 100644
index 0000000..71cd109
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_624.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_625.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_625.txt
new file mode 100644
index 0000000..aa9a21c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_625.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_626.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_626.txt
new file mode 100644
index 0000000..ca9365a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_626.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.371875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_627.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_627.txt
new file mode 100644
index 0000000..6b8ef12
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_627.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_628.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_628.txt
new file mode 100644
index 0000000..8412441
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_628.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_629.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_629.txt
new file mode 100644
index 0000000..4469a47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_629.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_63.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_63.txt
new file mode 100644
index 0000000..644542e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_63.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_630.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_630.txt
new file mode 100644
index 0000000..ae2804e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_630.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_631.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_631.txt
new file mode 100644
index 0000000..a5d6e96
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_631.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_632.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_632.txt
new file mode 100644
index 0000000..5f7f7c2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_632.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_633.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_633.txt
new file mode 100644
index 0000000..09e8348
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_633.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_634.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_634.txt
new file mode 100644
index 0000000..681116c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_634.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_635.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_635.txt
new file mode 100644
index 0000000..eab5110
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_635.txt
@@ -0,0 +1 @@
+0 0.5153846153846153 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_636.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_636.txt
new file mode 100644
index 0000000..9af966a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_636.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_637.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_637.txt
new file mode 100644
index 0000000..9e5da93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_637.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_638.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_638.txt
new file mode 100644
index 0000000..55fa9a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_638.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_639.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_639.txt
new file mode 100644
index 0000000..9dbdd55
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_639.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_64.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_64.txt
new file mode 100644
index 0000000..2af9dae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_64.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_640.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_640.txt
new file mode 100644
index 0000000..b32aa7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_640.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_641.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_641.txt
new file mode 100644
index 0000000..aea91df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_641.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_642.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_642.txt
new file mode 100644
index 0000000..35993d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_642.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_643.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_643.txt
new file mode 100644
index 0000000..3828a85
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_643.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_644.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_644.txt
new file mode 100644
index 0000000..e983517
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_644.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_645.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_645.txt
new file mode 100644
index 0000000..2a5f9a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_645.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_646.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_646.txt
new file mode 100644
index 0000000..8cefa9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_646.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_647.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_647.txt
new file mode 100644
index 0000000..77ca2ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_647.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.45 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_648.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_648.txt
new file mode 100644
index 0000000..00aef56
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_648.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_649.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_649.txt
new file mode 100644
index 0000000..ca38b72
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_649.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_65.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_65.txt
new file mode 100644
index 0000000..751a9e9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_65.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_650.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_650.txt
new file mode 100644
index 0000000..2936051
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_650.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_651.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_651.txt
new file mode 100644
index 0000000..6a5dc26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_651.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_652.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_652.txt
new file mode 100644
index 0000000..4d18f33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_652.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_653.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_653.txt
new file mode 100644
index 0000000..e3d499f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_653.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_654.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_654.txt
new file mode 100644
index 0000000..d1b66b2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_654.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_655.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_655.txt
new file mode 100644
index 0000000..8be6668
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_655.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_656.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_656.txt
new file mode 100644
index 0000000..af7775d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_656.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_657.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_657.txt
new file mode 100644
index 0000000..03a934f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_657.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_658.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_658.txt
new file mode 100644
index 0000000..0dfc4bb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_658.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_659.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_659.txt
new file mode 100644
index 0000000..fa3285d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_659.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_66.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_66.txt
new file mode 100644
index 0000000..a049d58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_66.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_660.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_660.txt
new file mode 100644
index 0000000..c7a4551
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_660.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_661.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_661.txt
new file mode 100644
index 0000000..75d5d77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_661.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_662.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_662.txt
new file mode 100644
index 0000000..cc6da53
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_662.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_663.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_663.txt
new file mode 100644
index 0000000..6860283
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_663.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_664.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_664.txt
new file mode 100644
index 0000000..cf3e1f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_664.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_665.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_665.txt
new file mode 100644
index 0000000..87c433b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_665.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_666.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_666.txt
new file mode 100644
index 0000000..c991a7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_666.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_667.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_667.txt
new file mode 100644
index 0000000..1e28f48
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_667.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_668.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_668.txt
new file mode 100644
index 0000000..3b2fd34
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_668.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_669.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_669.txt
new file mode 100644
index 0000000..e00f00e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_669.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_67.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_67.txt
new file mode 100644
index 0000000..380aaa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_67.txt
@@ -0,0 +1 @@
+0 0.35 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_670.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_670.txt
new file mode 100644
index 0000000..c2d412c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_670.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_671.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_671.txt
new file mode 100644
index 0000000..0346b11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_671.txt
@@ -0,0 +1 @@
+0 0.5 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_672.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_672.txt
new file mode 100644
index 0000000..acfa65e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_672.txt
@@ -0,0 +1 @@
+0 0.6038461538461538 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_673.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_673.txt
new file mode 100644
index 0000000..bc7ab5f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_673.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_674.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_674.txt
new file mode 100644
index 0000000..d4e666b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_674.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_675.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_675.txt
new file mode 100644
index 0000000..9ec5c69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_675.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_676.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_676.txt
new file mode 100644
index 0000000..9332c77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_676.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_677.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_677.txt
new file mode 100644
index 0000000..c5c908b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_677.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_678.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_678.txt
new file mode 100644
index 0000000..690a984
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_678.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_679.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_679.txt
new file mode 100644
index 0000000..7ff63f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_679.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_68.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_68.txt
new file mode 100644
index 0000000..e49d5ee
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_68.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_680.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_680.txt
new file mode 100644
index 0000000..050d22e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_680.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_681.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_681.txt
new file mode 100644
index 0000000..64dc952
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_681.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_682.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_682.txt
new file mode 100644
index 0000000..fa99e5e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_682.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_683.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_683.txt
new file mode 100644
index 0000000..07ba98c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_683.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_684.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_684.txt
new file mode 100644
index 0000000..b75f04d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_684.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_685.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_685.txt
new file mode 100644
index 0000000..53dd16a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_685.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_686.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_686.txt
new file mode 100644
index 0000000..dd3d623
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_686.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_687.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_687.txt
new file mode 100644
index 0000000..93711d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_687.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_688.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_688.txt
new file mode 100644
index 0000000..5b9c6b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_688.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_689.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_689.txt
new file mode 100644
index 0000000..42f057a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_689.txt
@@ -0,0 +1 @@
+0 0.35 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_69.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_69.txt
new file mode 100644
index 0000000..b8dea74
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_69.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_690.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_690.txt
new file mode 100644
index 0000000..1420fdc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_690.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_691.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_691.txt
new file mode 100644
index 0000000..85cdb8d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_691.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_692.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_692.txt
new file mode 100644
index 0000000..354e8c3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_692.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_693.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_693.txt
new file mode 100644
index 0000000..90905cd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_693.txt
@@ -0,0 +1 @@
+0 0.36923076923076925 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_694.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_694.txt
new file mode 100644
index 0000000..4fd98ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_694.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_695.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_695.txt
new file mode 100644
index 0000000..f799b68
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_695.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.1375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_696.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_696.txt
new file mode 100644
index 0000000..7590d4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_696.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_697.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_697.txt
new file mode 100644
index 0000000..74e8554
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_697.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.40625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_698.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_698.txt
new file mode 100644
index 0000000..62b35f9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_698.txt
@@ -0,0 +1 @@
+0 0.425 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_699.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_699.txt
new file mode 100644
index 0000000..dbf2e34
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_699.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_7.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_7.txt
new file mode 100644
index 0000000..403b1ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_7.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_70.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_70.txt
new file mode 100644
index 0000000..fb2ed00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_70.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_700.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_700.txt
new file mode 100644
index 0000000..d077071
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_700.txt
@@ -0,0 +1 @@
+0 0.575 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_701.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_701.txt
new file mode 100644
index 0000000..37ca185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_701.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_702.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_702.txt
new file mode 100644
index 0000000..e2d73c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_702.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_703.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_703.txt
new file mode 100644
index 0000000..8b1497b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_703.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_704.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_704.txt
new file mode 100644
index 0000000..ed6a265
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_704.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_705.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_705.txt
new file mode 100644
index 0000000..c172b52
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_705.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_706.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_706.txt
new file mode 100644
index 0000000..8556242
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_706.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_707.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_707.txt
new file mode 100644
index 0000000..eb39e9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_707.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_708.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_708.txt
new file mode 100644
index 0000000..34e2920
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_708.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_709.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_709.txt
new file mode 100644
index 0000000..286debd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_709.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_71.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_71.txt
new file mode 100644
index 0000000..be6e1ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_71.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_710.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_710.txt
new file mode 100644
index 0000000..81439bc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_710.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_711.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_711.txt
new file mode 100644
index 0000000..04c0ae9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_711.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_712.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_712.txt
new file mode 100644
index 0000000..924a037
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_712.txt
@@ -0,0 +1 @@
+0 0.6192307692307693 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_713.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_713.txt
new file mode 100644
index 0000000..00c39d7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_713.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_714.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_714.txt
new file mode 100644
index 0000000..cc16757
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_714.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_715.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_715.txt
new file mode 100644
index 0000000..064bab6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_715.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.6 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_716.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_716.txt
new file mode 100644
index 0000000..7ab2770
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_716.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_717.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_717.txt
new file mode 100644
index 0000000..f7bb6de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_717.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_718.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_718.txt
new file mode 100644
index 0000000..c4b40ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_718.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_719.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_719.txt
new file mode 100644
index 0000000..4d0122a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_719.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_72.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_72.txt
new file mode 100644
index 0000000..8cbe82a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_72.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_720.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_720.txt
new file mode 100644
index 0000000..8d54a42
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_720.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_721.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_721.txt
new file mode 100644
index 0000000..526ef6e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_721.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_722.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_722.txt
new file mode 100644
index 0000000..9196bb5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_722.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_723.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_723.txt
new file mode 100644
index 0000000..fadf546
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_723.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_724.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_724.txt
new file mode 100644
index 0000000..7f6ffbe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_724.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_725.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_725.txt
new file mode 100644
index 0000000..86c2f4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_725.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_726.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_726.txt
new file mode 100644
index 0000000..f8f0b37
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_726.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.078125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_727.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_727.txt
new file mode 100644
index 0000000..1721f4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_727.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_728.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_728.txt
new file mode 100644
index 0000000..560fdfe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_728.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_729.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_729.txt
new file mode 100644
index 0000000..d612fb2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_729.txt
@@ -0,0 +1 @@
+0 0.375 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_73.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_73.txt
new file mode 100644
index 0000000..946ca93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_73.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_730.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_730.txt
new file mode 100644
index 0000000..c836be8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_730.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_731.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_731.txt
new file mode 100644
index 0000000..c386580
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_731.txt
@@ -0,0 +1 @@
+0 0.575 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_732.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_732.txt
new file mode 100644
index 0000000..5151bd4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_732.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_733.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_733.txt
new file mode 100644
index 0000000..469abf0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_733.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_734.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_734.txt
new file mode 100644
index 0000000..e914a92
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_734.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_735.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_735.txt
new file mode 100644
index 0000000..770057e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_735.txt
@@ -0,0 +1 @@
+0 0.5 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_736.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_736.txt
new file mode 100644
index 0000000..b581e62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_736.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_737.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_737.txt
new file mode 100644
index 0000000..86baa6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_737.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.190625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_738.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_738.txt
new file mode 100644
index 0000000..33eef5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_738.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_739.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_739.txt
new file mode 100644
index 0000000..4ab4aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_739.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_74.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_74.txt
new file mode 100644
index 0000000..68708f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_74.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_740.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_740.txt
new file mode 100644
index 0000000..abdd3ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_740.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_741.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_741.txt
new file mode 100644
index 0000000..3a0258d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_741.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_742.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_742.txt
new file mode 100644
index 0000000..8b3caaa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_742.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_743.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_743.txt
new file mode 100644
index 0000000..f8946a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_743.txt
@@ -0,0 +1 @@
+0 0.5 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_744.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_744.txt
new file mode 100644
index 0000000..65a47a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_744.txt
@@ -0,0 +1 @@
+0 0.45 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_745.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_745.txt
new file mode 100644
index 0000000..6c11ca8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_745.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_746.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_746.txt
new file mode 100644
index 0000000..af09141
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_746.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_747.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_747.txt
new file mode 100644
index 0000000..2e0c7a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_747.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_748.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_748.txt
new file mode 100644
index 0000000..388d2e2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_748.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_749.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_749.txt
new file mode 100644
index 0000000..0b5aca9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_749.txt
@@ -0,0 +1 @@
+0 0.6384615384615384 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_75.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_75.txt
new file mode 100644
index 0000000..84b9a22
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_75.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_750.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_750.txt
new file mode 100644
index 0000000..b6aa83c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_750.txt
@@ -0,0 +1 @@
+0 0.525 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_751.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_751.txt
new file mode 100644
index 0000000..2f5d45e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_751.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_752.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_752.txt
new file mode 100644
index 0000000..13bd218
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_752.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_753.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_753.txt
new file mode 100644
index 0000000..cafc3d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_753.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_754.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_754.txt
new file mode 100644
index 0000000..7d56260
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_754.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_755.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_755.txt
new file mode 100644
index 0000000..0246ef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_755.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_756.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_756.txt
new file mode 100644
index 0000000..f30ae71
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_756.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_757.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_757.txt
new file mode 100644
index 0000000..1c535c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_757.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_758.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_758.txt
new file mode 100644
index 0000000..250ddd0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_758.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_759.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_759.txt
new file mode 100644
index 0000000..ea1db6a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_759.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.265625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_76.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_76.txt
new file mode 100644
index 0000000..d47d26e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_76.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_760.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_760.txt
new file mode 100644
index 0000000..7f35054
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_760.txt
@@ -0,0 +1 @@
+0 0.6 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_761.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_761.txt
new file mode 100644
index 0000000..5014e26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_761.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.3 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_762.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_762.txt
new file mode 100644
index 0000000..dab120a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_762.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_763.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_763.txt
new file mode 100644
index 0000000..f80aab1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_763.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_764.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_764.txt
new file mode 100644
index 0000000..d98d49b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_764.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_765.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_765.txt
new file mode 100644
index 0000000..cb9e7a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_765.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_766.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_766.txt
new file mode 100644
index 0000000..ee87e75
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_766.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_767.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_767.txt
new file mode 100644
index 0000000..3809a7f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_767.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_768.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_768.txt
new file mode 100644
index 0000000..c236265
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_768.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_769.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_769.txt
new file mode 100644
index 0000000..422c571
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_769.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_77.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_77.txt
new file mode 100644
index 0000000..657791b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_77.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_770.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_770.txt
new file mode 100644
index 0000000..43e1f7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_770.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_771.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_771.txt
new file mode 100644
index 0000000..b9f8996
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_771.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_772.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_772.txt
new file mode 100644
index 0000000..df20c94
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_772.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.659375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_773.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_773.txt
new file mode 100644
index 0000000..03d1630
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_773.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_774.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_774.txt
new file mode 100644
index 0000000..0d4dcc1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_774.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_775.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_775.txt
new file mode 100644
index 0000000..c3c8fd3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_775.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_776.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_776.txt
new file mode 100644
index 0000000..368cac0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_776.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_777.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_777.txt
new file mode 100644
index 0000000..2fcc412
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_777.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_778.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_778.txt
new file mode 100644
index 0000000..56397ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_778.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_779.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_779.txt
new file mode 100644
index 0000000..61b80a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_779.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_78.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_78.txt
new file mode 100644
index 0000000..99284ae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_78.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_780.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_780.txt
new file mode 100644
index 0000000..86c2748
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_780.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_781.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_781.txt
new file mode 100644
index 0000000..4044a1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_781.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_782.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_782.txt
new file mode 100644
index 0000000..a932ca1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_782.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_783.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_783.txt
new file mode 100644
index 0000000..b47f917
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_783.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.621875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_784.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_784.txt
new file mode 100644
index 0000000..4a8976b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_784.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_785.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_785.txt
new file mode 100644
index 0000000..93148fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_785.txt
@@ -0,0 +1 @@
+0 0.65 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_786.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_786.txt
new file mode 100644
index 0000000..3502ea0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_786.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_787.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_787.txt
new file mode 100644
index 0000000..fd7c418
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_787.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_788.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_788.txt
new file mode 100644
index 0000000..9b18d23
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_788.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_789.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_789.txt
new file mode 100644
index 0000000..053cb0a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_789.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_79.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_79.txt
new file mode 100644
index 0000000..6348780
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_79.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_790.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_790.txt
new file mode 100644
index 0000000..4cf9122
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_790.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_791.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_791.txt
new file mode 100644
index 0000000..20cacd9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_791.txt
@@ -0,0 +1 @@
+0 0.5 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_792.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_792.txt
new file mode 100644
index 0000000..3ea952f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_792.txt
@@ -0,0 +1 @@
+0 0.425 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_793.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_793.txt
new file mode 100644
index 0000000..b5a1671
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_793.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_794.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_794.txt
new file mode 100644
index 0000000..8c3e2ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_794.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_795.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_795.txt
new file mode 100644
index 0000000..d03f43e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_795.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_796.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_796.txt
new file mode 100644
index 0000000..7b76a32
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_796.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.6 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_797.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_797.txt
new file mode 100644
index 0000000..9035b73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_797.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_798.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_798.txt
new file mode 100644
index 0000000..1619297
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_798.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_799.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_799.txt
new file mode 100644
index 0000000..6f337d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_799.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_8.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_8.txt
new file mode 100644
index 0000000..500dc77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_8.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_80.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_80.txt
new file mode 100644
index 0000000..0b2922a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_80.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_800.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_800.txt
new file mode 100644
index 0000000..cea322f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_800.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_801.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_801.txt
new file mode 100644
index 0000000..0246ef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_801.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_802.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_802.txt
new file mode 100644
index 0000000..1459da5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_802.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_803.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_803.txt
new file mode 100644
index 0000000..5b1deb1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_803.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_804.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_804.txt
new file mode 100644
index 0000000..97d51d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_804.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_805.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_805.txt
new file mode 100644
index 0000000..3a87724
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_805.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_806.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_806.txt
new file mode 100644
index 0000000..799de13
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_806.txt
@@ -0,0 +1 @@
+0 0.35192307692307695 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_807.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_807.txt
new file mode 100644
index 0000000..d49e705
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_807.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_808.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_808.txt
new file mode 100644
index 0000000..76fac5d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_808.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_809.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_809.txt
new file mode 100644
index 0000000..fa1255a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_809.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_81.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_81.txt
new file mode 100644
index 0000000..b8da217
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_81.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_810.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_810.txt
new file mode 100644
index 0000000..ccf6ee9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_810.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_811.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_811.txt
new file mode 100644
index 0000000..d6bc6a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_811.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_812.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_812.txt
new file mode 100644
index 0000000..88e37df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_812.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_813.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_813.txt
new file mode 100644
index 0000000..990de50
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_813.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_814.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_814.txt
new file mode 100644
index 0000000..0492f2c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_814.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_815.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_815.txt
new file mode 100644
index 0000000..21c0b8b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_815.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_816.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_816.txt
new file mode 100644
index 0000000..648e148
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_816.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_817.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_817.txt
new file mode 100644
index 0000000..4398fe1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_817.txt
@@ -0,0 +1 @@
+0 0.65 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_818.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_818.txt
new file mode 100644
index 0000000..fef25bc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_818.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_819.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_819.txt
new file mode 100644
index 0000000..cf87658
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_819.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_82.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_82.txt
new file mode 100644
index 0000000..b4a3d92
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_82.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_820.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_820.txt
new file mode 100644
index 0000000..ab0988f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_820.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_821.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_821.txt
new file mode 100644
index 0000000..25a5167
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_821.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_822.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_822.txt
new file mode 100644
index 0000000..f4c7869
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_822.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_823.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_823.txt
new file mode 100644
index 0000000..2236925
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_823.txt
@@ -0,0 +1 @@
+0 0.575 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_824.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_824.txt
new file mode 100644
index 0000000..57370bf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_824.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_825.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_825.txt
new file mode 100644
index 0000000..9f8e9af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_825.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_826.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_826.txt
new file mode 100644
index 0000000..22ba662
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_826.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_827.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_827.txt
new file mode 100644
index 0000000..053f612
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_827.txt
@@ -0,0 +1 @@
+0 0.35 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_828.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_828.txt
new file mode 100644
index 0000000..f9c67f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_828.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_829.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_829.txt
new file mode 100644
index 0000000..87e6bd2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_829.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_83.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_83.txt
new file mode 100644
index 0000000..4a7a367
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_83.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_830.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_830.txt
new file mode 100644
index 0000000..00c7e3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_830.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_831.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_831.txt
new file mode 100644
index 0000000..4d49b97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_831.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_832.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_832.txt
new file mode 100644
index 0000000..c46e4f6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_832.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_833.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_833.txt
new file mode 100644
index 0000000..252635b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_833.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_834.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_834.txt
new file mode 100644
index 0000000..7a54855
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_834.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_835.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_835.txt
new file mode 100644
index 0000000..f48109b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_835.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_836.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_836.txt
new file mode 100644
index 0000000..eba80a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_836.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_837.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_837.txt
new file mode 100644
index 0000000..2c3c638
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_837.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_838.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_838.txt
new file mode 100644
index 0000000..4ce380e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_838.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_839.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_839.txt
new file mode 100644
index 0000000..a2fbe1c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_839.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_84.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_84.txt
new file mode 100644
index 0000000..182d059
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_84.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_840.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_840.txt
new file mode 100644
index 0000000..23f5fbc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_840.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_841.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_841.txt
new file mode 100644
index 0000000..26df00f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_841.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_842.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_842.txt
new file mode 100644
index 0000000..66529c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_842.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_843.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_843.txt
new file mode 100644
index 0000000..b7fb5c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_843.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_844.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_844.txt
new file mode 100644
index 0000000..8a49f4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_844.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_845.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_845.txt
new file mode 100644
index 0000000..3001658
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_845.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_846.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_846.txt
new file mode 100644
index 0000000..9da2efd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_846.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_847.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_847.txt
new file mode 100644
index 0000000..0dc930b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_847.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_848.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_848.txt
new file mode 100644
index 0000000..9f2acb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_848.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_849.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_849.txt
new file mode 100644
index 0000000..8d0a686
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_849.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_85.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_85.txt
new file mode 100644
index 0000000..e469e68
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_85.txt
@@ -0,0 +1 @@
+0 0.4 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_850.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_850.txt
new file mode 100644
index 0000000..c1674e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_850.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_851.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_851.txt
new file mode 100644
index 0000000..03bacef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_851.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_852.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_852.txt
new file mode 100644
index 0000000..532b7ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_852.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_853.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_853.txt
new file mode 100644
index 0000000..655c38d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_853.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_854.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_854.txt
new file mode 100644
index 0000000..ca57efc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_854.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_855.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_855.txt
new file mode 100644
index 0000000..0ebe589
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_855.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_856.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_856.txt
new file mode 100644
index 0000000..b310ce8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_856.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_857.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_857.txt
new file mode 100644
index 0000000..31ce9a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_857.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_858.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_858.txt
new file mode 100644
index 0000000..b2a796d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_858.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_859.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_859.txt
new file mode 100644
index 0000000..73dc958
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_859.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_86.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_86.txt
new file mode 100644
index 0000000..b62a51a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_86.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_860.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_860.txt
new file mode 100644
index 0000000..3f05bb1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_860.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_861.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_861.txt
new file mode 100644
index 0000000..b11cfb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_861.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_862.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_862.txt
new file mode 100644
index 0000000..d6cb984
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_862.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_863.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_863.txt
new file mode 100644
index 0000000..6c1805c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_863.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_864.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_864.txt
new file mode 100644
index 0000000..79c88b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_864.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_865.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_865.txt
new file mode 100644
index 0000000..af6d5d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_865.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_866.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_866.txt
new file mode 100644
index 0000000..8c64abf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_866.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_867.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_867.txt
new file mode 100644
index 0000000..ebda7b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_867.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_868.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_868.txt
new file mode 100644
index 0000000..b3c0102
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_868.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.196875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_869.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_869.txt
new file mode 100644
index 0000000..1db1c89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_869.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.18125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_87.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_87.txt
new file mode 100644
index 0000000..00e2b1f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_87.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_870.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_870.txt
new file mode 100644
index 0000000..d431e9a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_870.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_871.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_871.txt
new file mode 100644
index 0000000..7fadbdd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_871.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_872.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_872.txt
new file mode 100644
index 0000000..621c704
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_872.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_873.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_873.txt
new file mode 100644
index 0000000..0b8928c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_873.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.48125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_874.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_874.txt
new file mode 100644
index 0000000..6012cf3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_874.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_875.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_875.txt
new file mode 100644
index 0000000..b799c4e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_875.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_876.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_876.txt
new file mode 100644
index 0000000..e939c1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_876.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_877.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_877.txt
new file mode 100644
index 0000000..54a92db
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_877.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_878.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_878.txt
new file mode 100644
index 0000000..25c0ea4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_878.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_879.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_879.txt
new file mode 100644
index 0000000..d129ed8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_879.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_88.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_88.txt
new file mode 100644
index 0000000..88ebfac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_88.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_880.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_880.txt
new file mode 100644
index 0000000..bbb3034
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_880.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_881.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_881.txt
new file mode 100644
index 0000000..b41cf7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_881.txt
@@ -0,0 +1 @@
+0 0.4 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_882.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_882.txt
new file mode 100644
index 0000000..9f6dddf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_882.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_883.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_883.txt
new file mode 100644
index 0000000..3fabb09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_883.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_884.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_884.txt
new file mode 100644
index 0000000..788869d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_884.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_885.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_885.txt
new file mode 100644
index 0000000..d11bc6d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_885.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.265625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_886.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_886.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_886.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_887.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_887.txt
new file mode 100644
index 0000000..e956178
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_887.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_888.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_888.txt
new file mode 100644
index 0000000..26a8a6d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_888.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_889.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_889.txt
new file mode 100644
index 0000000..7a9a449
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_889.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_89.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_89.txt
new file mode 100644
index 0000000..edb1725
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_89.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_890.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_890.txt
new file mode 100644
index 0000000..6133eb8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_890.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_891.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_891.txt
new file mode 100644
index 0000000..89694af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_891.txt
@@ -0,0 +1 @@
+0 0.65 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_892.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_892.txt
new file mode 100644
index 0000000..23dad62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_892.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_893.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_893.txt
new file mode 100644
index 0000000..7ed814b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_893.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_894.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_894.txt
new file mode 100644
index 0000000..733dd93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_894.txt
@@ -0,0 +1 @@
+0 0.6384615384615384 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_895.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_895.txt
new file mode 100644
index 0000000..388155f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_895.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_896.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_896.txt
new file mode 100644
index 0000000..2632d3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_896.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_897.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_897.txt
new file mode 100644
index 0000000..f065af9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_897.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_898.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_898.txt
new file mode 100644
index 0000000..e24b894
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_898.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_899.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_899.txt
new file mode 100644
index 0000000..7d5f97c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_899.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_9.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_9.txt
new file mode 100644
index 0000000..0227e94
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_9.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_90.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_90.txt
new file mode 100644
index 0000000..8428034
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_90.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_900.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_900.txt
new file mode 100644
index 0000000..d3fe802
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_900.txt
@@ -0,0 +1 @@
+0 0.325 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_901.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_901.txt
new file mode 100644
index 0000000..8755512
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_901.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_902.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_902.txt
new file mode 100644
index 0000000..375cb97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_902.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_903.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_903.txt
new file mode 100644
index 0000000..adf3beb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_903.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_904.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_904.txt
new file mode 100644
index 0000000..e3521eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_904.txt
@@ -0,0 +1 @@
+0 0.6557692307692308 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_905.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_905.txt
new file mode 100644
index 0000000..fde0ee3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_905.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_906.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_906.txt
new file mode 100644
index 0000000..e42640b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_906.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_907.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_907.txt
new file mode 100644
index 0000000..62b5c4c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_907.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_908.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_908.txt
new file mode 100644
index 0000000..d5e76ae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_908.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_909.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_909.txt
new file mode 100644
index 0000000..41d37ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_909.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_91.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_91.txt
new file mode 100644
index 0000000..7f3c8aa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_91.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_910.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_910.txt
new file mode 100644
index 0000000..80d17ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_910.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_911.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_911.txt
new file mode 100644
index 0000000..536f488
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_911.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_912.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_912.txt
new file mode 100644
index 0000000..63836e5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_912.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_913.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_913.txt
new file mode 100644
index 0000000..3140f2e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_913.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_914.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_914.txt
new file mode 100644
index 0000000..87629a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_914.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_915.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_915.txt
new file mode 100644
index 0000000..49829a6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_915.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_916.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_916.txt
new file mode 100644
index 0000000..b4bda47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_916.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_917.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_917.txt
new file mode 100644
index 0000000..0b4a5b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_917.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_918.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_918.txt
new file mode 100644
index 0000000..83e0a93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_918.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_919.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_919.txt
new file mode 100644
index 0000000..acd3c1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_919.txt
@@ -0,0 +1 @@
+0 0.35192307692307695 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_92.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_92.txt
new file mode 100644
index 0000000..154c688
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_92.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_920.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_920.txt
new file mode 100644
index 0000000..cbdafcd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_920.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_921.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_921.txt
new file mode 100644
index 0000000..7107c5f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_921.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_922.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_922.txt
new file mode 100644
index 0000000..52a0aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_922.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_923.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_923.txt
new file mode 100644
index 0000000..033e420
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_923.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_924.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_924.txt
new file mode 100644
index 0000000..99ee2f9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_924.txt
@@ -0,0 +1 @@
+0 0.41346153846153844 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_925.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_925.txt
new file mode 100644
index 0000000..2f4bea6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_925.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_926.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_926.txt
new file mode 100644
index 0000000..38e9525
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_926.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_927.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_927.txt
new file mode 100644
index 0000000..531b6fd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_927.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.253125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_928.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_928.txt
new file mode 100644
index 0000000..56ce869
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_928.txt
@@ -0,0 +1 @@
+0 0.475 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_929.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_929.txt
new file mode 100644
index 0000000..d66a768
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_929.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_93.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_93.txt
new file mode 100644
index 0000000..b877faf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_93.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_930.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_930.txt
new file mode 100644
index 0000000..d068ef2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_930.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_931.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_931.txt
new file mode 100644
index 0000000..607ab10
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_931.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_932.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_932.txt
new file mode 100644
index 0000000..ff21521
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_932.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_933.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_933.txt
new file mode 100644
index 0000000..b107b38
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_933.txt
@@ -0,0 +1 @@
+0 0.6 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_934.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_934.txt
new file mode 100644
index 0000000..7729c73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_934.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_935.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_935.txt
new file mode 100644
index 0000000..875d61c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_935.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_936.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_936.txt
new file mode 100644
index 0000000..a3b2810
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_936.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_937.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_937.txt
new file mode 100644
index 0000000..00ec6d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_937.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_938.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_938.txt
new file mode 100644
index 0000000..c401031
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_938.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_939.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_939.txt
new file mode 100644
index 0000000..a377249
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_939.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_94.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_94.txt
new file mode 100644
index 0000000..1106651
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_94.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_940.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_940.txt
new file mode 100644
index 0000000..0c8f6c1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_940.txt
@@ -0,0 +1 @@
+0 0.675 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_941.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_941.txt
new file mode 100644
index 0000000..a32f1a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_941.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_942.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_942.txt
new file mode 100644
index 0000000..1146691
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_942.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_943.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_943.txt
new file mode 100644
index 0000000..8f6b61b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_943.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_944.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_944.txt
new file mode 100644
index 0000000..1cbf797
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_944.txt
@@ -0,0 +1 @@
+0 0.4173076923076923 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_945.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_945.txt
new file mode 100644
index 0000000..e2fe276
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_945.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_946.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_946.txt
new file mode 100644
index 0000000..f547cb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_946.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_947.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_947.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_947.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_948.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_948.txt
new file mode 100644
index 0000000..4bb71a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_948.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_949.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_949.txt
new file mode 100644
index 0000000..7d98220
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_949.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_95.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_95.txt
new file mode 100644
index 0000000..ec3b8e9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_95.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_950.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_950.txt
new file mode 100644
index 0000000..6ce886d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_950.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_951.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_951.txt
new file mode 100644
index 0000000..07d8620
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_951.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_952.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_952.txt
new file mode 100644
index 0000000..3a1fb0b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_952.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.621875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_953.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_953.txt
new file mode 100644
index 0000000..3677870
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_953.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_954.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_954.txt
new file mode 100644
index 0000000..b16f0a9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_954.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_955.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_955.txt
new file mode 100644
index 0000000..d4bf5f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_955.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_956.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_956.txt
new file mode 100644
index 0000000..c4648f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_956.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_957.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_957.txt
new file mode 100644
index 0000000..e101403
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_957.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_958.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_958.txt
new file mode 100644
index 0000000..fe76793
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_958.txt
@@ -0,0 +1 @@
+0 0.575 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_959.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_959.txt
new file mode 100644
index 0000000..2fbb838
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_959.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_96.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_96.txt
new file mode 100644
index 0000000..cda155c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_96.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_960.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_960.txt
new file mode 100644
index 0000000..b3e95e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_960.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_961.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_961.txt
new file mode 100644
index 0000000..425641f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_961.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_962.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_962.txt
new file mode 100644
index 0000000..afd1e99
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_962.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_963.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_963.txt
new file mode 100644
index 0000000..51567e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_963.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_964.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_964.txt
new file mode 100644
index 0000000..6a61333
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_964.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_965.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_965.txt
new file mode 100644
index 0000000..c6d2205
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_965.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_966.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_966.txt
new file mode 100644
index 0000000..f2bd385
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_966.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_967.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_967.txt
new file mode 100644
index 0000000..e0e8758
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_967.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_968.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_968.txt
new file mode 100644
index 0000000..b196b47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_968.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_969.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_969.txt
new file mode 100644
index 0000000..4eb9d42
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_969.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_97.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_97.txt
new file mode 100644
index 0000000..d23f68f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_97.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_970.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_970.txt
new file mode 100644
index 0000000..c37d3ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_970.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_971.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_971.txt
new file mode 100644
index 0000000..93f4dcd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_971.txt
@@ -0,0 +1 @@
+0 0.475 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_972.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_972.txt
new file mode 100644
index 0000000..1360b57
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_972.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_973.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_973.txt
new file mode 100644
index 0000000..bd36157
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_973.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_974.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_974.txt
new file mode 100644
index 0000000..791f0ac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_974.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_975.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_975.txt
new file mode 100644
index 0000000..be69d91
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_975.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_976.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_976.txt
new file mode 100644
index 0000000..f161a05
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_976.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_977.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_977.txt
new file mode 100644
index 0000000..379d5ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_977.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_978.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_978.txt
new file mode 100644
index 0000000..d8181b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_978.txt
@@ -0,0 +1 @@
+0 0.5 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_979.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_979.txt
new file mode 100644
index 0000000..f2605ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_979.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_98.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_98.txt
new file mode 100644
index 0000000..85c03ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_98.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_980.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_980.txt
new file mode 100644
index 0000000..194ff9f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_980.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_981.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_981.txt
new file mode 100644
index 0000000..bfa7e45
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_981.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_982.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_982.txt
new file mode 100644
index 0000000..292d0a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_982.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_983.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_983.txt
new file mode 100644
index 0000000..b943b98
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_983.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_984.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_984.txt
new file mode 100644
index 0000000..92cafe3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_984.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_985.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_985.txt
new file mode 100644
index 0000000..2a9c762
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_985.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_986.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_986.txt
new file mode 100644
index 0000000..b614353
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_986.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_987.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_987.txt
new file mode 100644
index 0000000..4038842
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_987.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_988.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_988.txt
new file mode 100644
index 0000000..9702c79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_988.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_989.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_989.txt
new file mode 100644
index 0000000..23f9b8a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_989.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_99.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_99.txt
new file mode 100644
index 0000000..c92021c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_99.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_990.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_990.txt
new file mode 100644
index 0000000..feb6772
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_990.txt
@@ -0,0 +1 @@
+0 0.45 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_991.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_991.txt
new file mode 100644
index 0000000..5256bcc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_991.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_992.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_992.txt
new file mode 100644
index 0000000..7491b79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_992.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_993.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_993.txt
new file mode 100644
index 0000000..1f3ca2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_993.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_994.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_994.txt
new file mode 100644
index 0000000..9871909
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_994.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_995.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_995.txt
new file mode 100644
index 0000000..d5bdbc7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_995.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_996.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_996.txt
new file mode 100644
index 0000000..6d53084
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_996.txt
@@ -0,0 +1 @@
+0 0.6 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_997.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_997.txt
new file mode 100644
index 0000000..f6d139b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_997.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_998.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_998.txt
new file mode 100644
index 0000000..27007d2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_998.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_999.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_999.txt
new file mode 100644
index 0000000..9f9f1da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/labels/captcha_999.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/1.png
new file mode 100644
index 0000000..022b5c5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/2.png
new file mode 100644
index 0000000..7d347b9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_288.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_288.png
new file mode 100644
index 0000000..07f364d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_288.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_354.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_354.png
new file mode 100644
index 0000000..7227663
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_354.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_435.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_435.png
new file mode 100644
index 0000000..bd024c7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/result/captcha_435.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/1.png
new file mode 100644
index 0000000..26f6506
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/2.png
new file mode 100644
index 0000000..9b685e9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_288.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_288.png
new file mode 100644
index 0000000..e5096c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_288.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_354.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_354.png
new file mode 100644
index 0000000..25c3b87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_354.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_435.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_435.png
new file mode 100644
index 0000000..794d641
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/test/captcha_435.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/train.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/train.txt
new file mode 100644
index 0000000..e079c29
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/train.txt
@@ -0,0 +1,800 @@
+data/captcha/images/captcha_625.png
+data/captcha/images/captcha_109.png
+data/captcha/images/captcha_983.png
+data/captcha/images/captcha_788.png
+data/captcha/images/captcha_882.png
+data/captcha/images/captcha_840.png
+data/captcha/images/captcha_947.png
+data/captcha/images/captcha_125.png
+data/captcha/images/captcha_10.png
+data/captcha/images/captcha_531.png
+data/captcha/images/captcha_315.png
+data/captcha/images/captcha_685.png
+data/captcha/images/captcha_836.png
+data/captcha/images/captcha_257.png
+data/captcha/images/captcha_199.png
+data/captcha/images/captcha_106.png
+data/captcha/images/captcha_380.png
+data/captcha/images/captcha_795.png
+data/captcha/images/captcha_459.png
+data/captcha/images/captcha_31.png
+data/captcha/images/captcha_338.png
+data/captcha/images/captcha_888.png
+data/captcha/images/captcha_529.png
+data/captcha/images/captcha_739.png
+data/captcha/images/captcha_499.png
+data/captcha/images/captcha_210.png
+data/captcha/images/captcha_628.png
+data/captcha/images/captcha_389.png
+data/captcha/images/captcha_19.png
+data/captcha/images/captcha_742.png
+data/captcha/images/captcha_827.png
+data/captcha/images/captcha_515.png
+data/captcha/images/captcha_6.png
+data/captcha/images/captcha_787.png
+data/captcha/images/captcha_684.png
+data/captcha/images/captcha_639.png
+data/captcha/images/captcha_324.png
+data/captcha/images/captcha_945.png
+data/captcha/images/captcha_228.png
+data/captcha/images/captcha_877.png
+data/captcha/images/captcha_87.png
+data/captcha/images/captcha_674.png
+data/captcha/images/captcha_950.png
+data/captcha/images/captcha_669.png
+data/captcha/images/captcha_643.png
+data/captcha/images/captcha_191.png
+data/captcha/images/captcha_769.png
+data/captcha/images/captcha_660.png
+data/captcha/images/captcha_738.png
+data/captcha/images/captcha_309.png
+data/captcha/images/captcha_830.png
+data/captcha/images/captcha_916.png
+data/captcha/images/captcha_812.png
+data/captcha/images/captcha_78.png
+data/captcha/images/captcha_603.png
+data/captcha/images/captcha_712.png
+data/captcha/images/captcha_227.png
+data/captcha/images/captcha_502.png
+data/captcha/images/captcha_381.png
+data/captcha/images/captcha_113.png
+data/captcha/images/captcha_487.png
+data/captcha/images/captcha_932.png
+data/captcha/images/captcha_954.png
+data/captcha/images/captcha_392.png
+data/captcha/images/captcha_151.png
+data/captcha/images/captcha_11.png
+data/captcha/images/captcha_462.png
+data/captcha/images/captcha_746.png
+data/captcha/images/captcha_928.png
+data/captcha/images/captcha_967.png
+data/captcha/images/captcha_232.png
+data/captcha/images/captcha_845.png
+data/captcha/images/captcha_375.png
+data/captcha/images/captcha_588.png
+data/captcha/images/captcha_185.png
+data/captcha/images/captcha_792.png
+data/captcha/images/captcha_201.png
+data/captcha/images/captcha_133.png
+data/captcha/images/captcha_146.png
+data/captcha/images/captcha_519.png
+data/captcha/images/captcha_490.png
+data/captcha/images/captcha_810.png
+data/captcha/images/captcha_461.png
+data/captcha/images/captcha_373.png
+data/captcha/images/captcha_866.png
+data/captcha/images/captcha_841.png
+data/captcha/images/captcha_789.png
+data/captcha/images/captcha_301.png
+data/captcha/images/captcha_469.png
+data/captcha/images/captcha_81.png
+data/captcha/images/captcha_640.png
+data/captcha/images/captcha_267.png
+data/captcha/images/captcha_396.png
+data/captcha/images/captcha_148.png
+data/captcha/images/captcha_771.png
+data/captcha/images/captcha_200.png
+data/captcha/images/captcha_521.png
+data/captcha/images/captcha_572.png
+data/captcha/images/captcha_532.png
+data/captcha/images/captcha_465.png
+data/captcha/images/captcha_17.png
+data/captcha/images/captcha_480.png
+data/captcha/images/captcha_471.png
+data/captcha/images/captcha_155.png
+data/captcha/images/captcha_388.png
+data/captcha/images/captcha_546.png
+data/captcha/images/captcha_548.png
+data/captcha/images/captcha_209.png
+data/captcha/images/captcha_22.png
+data/captcha/images/captcha_101.png
+data/captcha/images/captcha_686.png
+data/captcha/images/captcha_359.png
+data/captcha/images/captcha_207.png
+data/captcha/images/captcha_761.png
+data/captcha/images/captcha_567.png
+data/captcha/images/captcha_906.png
+data/captcha/images/captcha_667.png
+data/captcha/images/captcha_858.png
+data/captcha/images/captcha_264.png
+data/captcha/images/captcha_855.png
+data/captcha/images/captcha_946.png
+data/captcha/images/captcha_722.png
+data/captcha/images/captcha_446.png
+data/captcha/images/captcha_892.png
+data/captcha/images/captcha_293.png
+data/captcha/images/captcha_590.png
+data/captcha/images/captcha_764.png
+data/captcha/images/captcha_750.png
+data/captcha/images/captcha_451.png
+data/captcha/images/captcha_426.png
+data/captcha/images/captcha_294.png
+data/captcha/images/captcha_544.png
+data/captcha/images/captcha_985.png
+data/captcha/images/captcha_370.png
+data/captcha/images/captcha_178.png
+data/captcha/images/captcha_415.png
+data/captcha/images/captcha_922.png
+data/captcha/images/captcha_36.png
+data/captcha/images/captcha_491.png
+data/captcha/images/captcha_617.png
+data/captcha/images/captcha_936.png
+data/captcha/images/captcha_384.png
+data/captcha/images/captcha_774.png
+data/captcha/images/captcha_401.png
+data/captcha/images/captcha_900.png
+data/captcha/images/captcha_0.png
+data/captcha/images/captcha_693.png
+data/captcha/images/captcha_52.png
+data/captcha/images/captcha_759.png
+data/captcha/images/captcha_295.png
+data/captcha/images/captcha_40.png
+data/captcha/images/captcha_307.png
+data/captcha/images/captcha_796.png
+data/captcha/images/captcha_478.png
+data/captcha/images/captcha_202.png
+data/captcha/images/captcha_535.png
+data/captcha/images/captcha_162.png
+data/captcha/images/captcha_254.png
+data/captcha/images/captcha_555.png
+data/captcha/images/captcha_843.png
+data/captcha/images/captcha_921.png
+data/captcha/images/captcha_322.png
+data/captcha/images/captcha_233.png
+data/captcha/images/captcha_604.png
+data/captcha/images/captcha_901.png
+data/captcha/images/captcha_452.png
+data/captcha/images/captcha_18.png
+data/captcha/images/captcha_831.png
+data/captcha/images/captcha_797.png
+data/captcha/images/captcha_798.png
+data/captcha/images/captcha_171.png
+data/captcha/images/captcha_350.png
+data/captcha/images/captcha_929.png
+data/captcha/images/captcha_842.png
+data/captcha/images/captcha_838.png
+data/captcha/images/captcha_780.png
+data/captcha/images/captcha_614.png
+data/captcha/images/captcha_62.png
+data/captcha/images/captcha_941.png
+data/captcha/images/captcha_629.png
+data/captcha/images/captcha_766.png
+data/captcha/images/captcha_408.png
+data/captcha/images/captcha_387.png
+data/captcha/images/captcha_175.png
+data/captcha/images/captcha_420.png
+data/captcha/images/captcha_269.png
+data/captcha/images/captcha_80.png
+data/captcha/images/captcha_237.png
+data/captcha/images/captcha_467.png
+data/captcha/images/captcha_559.png
+data/captcha/images/captcha_957.png
+data/captcha/images/captcha_136.png
+data/captcha/images/captcha_411.png
+data/captcha/images/captcha_917.png
+data/captcha/images/captcha_311.png
+data/captcha/images/captcha_698.png
+data/captcha/images/captcha_517.png
+data/captcha/images/captcha_336.png
+data/captcha/images/captcha_231.png
+data/captcha/images/captcha_297.png
+data/captcha/images/captcha_608.png
+data/captcha/images/captcha_41.png
+data/captcha/images/captcha_500.png
+data/captcha/images/captcha_364.png
+data/captcha/images/captcha_82.png
+data/captcha/images/captcha_728.png
+data/captcha/images/captcha_126.png
+data/captcha/images/captcha_122.png
+data/captcha/images/captcha_205.png
+data/captcha/images/captcha_73.png
+data/captcha/images/captcha_421.png
+data/captcha/images/captcha_54.png
+data/captcha/images/captcha_607.png
+data/captcha/images/captcha_212.png
+data/captcha/images/captcha_990.png
+data/captcha/images/captcha_89.png
+data/captcha/images/captcha_206.png
+data/captcha/images/captcha_879.png
+data/captcha/images/captcha_344.png
+data/captcha/images/captcha_161.png
+data/captcha/images/captcha_971.png
+data/captcha/images/captcha_606.png
+data/captcha/images/captcha_913.png
+data/captcha/images/captcha_383.png
+data/captcha/images/captcha_852.png
+data/captcha/images/captcha_561.png
+data/captcha/images/captcha_486.png
+data/captcha/images/captcha_341.png
+data/captcha/images/captcha_250.png
+data/captcha/images/captcha_940.png
+data/captcha/images/captcha_974.png
+data/captcha/images/captcha_286.png
+data/captcha/images/captcha_751.png
+data/captcha/images/captcha_681.png
+data/captcha/images/captcha_552.png
+data/captcha/images/captcha_305.png
+data/captcha/images/captcha_26.png
+data/captcha/images/captcha_71.png
+data/captcha/images/captcha_262.png
+data/captcha/images/captcha_453.png
+data/captcha/images/captcha_554.png
+data/captcha/images/captcha_820.png
+data/captcha/images/captcha_46.png
+data/captcha/images/captcha_91.png
+data/captcha/images/captcha_4.png
+data/captcha/images/captcha_69.png
+data/captcha/images/captcha_851.png
+data/captcha/images/captcha_351.png
+data/captcha/images/captcha_697.png
+data/captcha/images/captcha_419.png
+data/captcha/images/captcha_433.png
+data/captcha/images/captcha_332.png
+data/captcha/images/captcha_809.png
+data/captcha/images/captcha_839.png
+data/captcha/images/captcha_575.png
+data/captcha/images/captcha_188.png
+data/captcha/images/captcha_910.png
+data/captcha/images/captcha_14.png
+data/captcha/images/captcha_179.png
+data/captcha/images/captcha_543.png
+data/captcha/images/captcha_287.png
+data/captcha/images/captcha_12.png
+data/captcha/images/captcha_184.png
+data/captcha/images/captcha_412.png
+data/captcha/images/captcha_163.png
+data/captcha/images/captcha_621.png
+data/captcha/images/captcha_483.png
+data/captcha/images/captcha_330.png
+data/captcha/images/captcha_321.png
+data/captcha/images/captcha_382.png
+data/captcha/images/captcha_53.png
+data/captcha/images/captcha_814.png
+data/captcha/images/captcha_730.png
+data/captcha/images/captcha_214.png
+data/captcha/images/captcha_245.png
+data/captcha/images/captcha_56.png
+data/captcha/images/captcha_32.png
+data/captcha/images/captcha_431.png
+data/captcha/images/captcha_503.png
+data/captcha/images/captcha_677.png
+data/captcha/images/captcha_432.png
+data/captcha/images/captcha_748.png
+data/captcha/images/captcha_450.png
+data/captcha/images/captcha_887.png
+data/captcha/images/captcha_74.png
+data/captcha/images/captcha_886.png
+data/captcha/images/captcha_715.png
+data/captcha/images/captcha_860.png
+data/captcha/images/captcha_777.png
+data/captcha/images/captcha_243.png
+data/captcha/images/captcha_569.png
+data/captcha/images/captcha_174.png
+data/captcha/images/captcha_525.png
+data/captcha/images/captcha_447.png
+data/captcha/images/captcha_318.png
+data/captcha/images/captcha_568.png
+data/captcha/images/captcha_703.png
+data/captcha/images/captcha_605.png
+data/captcha/images/captcha_197.png
+data/captcha/images/captcha_140.png
+data/captcha/images/captcha_427.png
+data/captcha/images/captcha_907.png
+data/captcha/images/captcha_881.png
+data/captcha/images/captcha_584.png
+data/captcha/images/captcha_75.png
+data/captcha/images/captcha_319.png
+data/captcha/images/captcha_824.png
+data/captcha/images/captcha_580.png
+data/captcha/images/captcha_88.png
+data/captcha/images/captcha_79.png
+data/captcha/images/captcha_699.png
+data/captcha/images/captcha_268.png
+data/captcha/images/captcha_115.png
+data/captcha/images/captcha_951.png
+data/captcha/images/captcha_694.png
+data/captcha/images/captcha_753.png
+data/captcha/images/captcha_909.png
+data/captcha/images/captcha_374.png
+data/captcha/images/captcha_440.png
+data/captcha/images/captcha_883.png
+data/captcha/images/captcha_573.png
+data/captcha/images/captcha_801.png
+data/captcha/images/captcha_919.png
+data/captcha/images/captcha_158.png
+data/captcha/images/captcha_998.png
+data/captcha/images/captcha_50.png
+data/captcha/images/captcha_166.png
+data/captcha/images/captcha_586.png
+data/captcha/images/captcha_93.png
+data/captcha/images/captcha_270.png
+data/captcha/images/captcha_258.png
+data/captcha/images/captcha_299.png
+data/captcha/images/captcha_758.png
+data/captcha/images/captcha_652.png
+data/captcha/images/captcha_110.png
+data/captcha/images/captcha_626.png
+data/captcha/images/captcha_458.png
+data/captcha/images/captcha_277.png
+data/captcha/images/captcha_650.png
+data/captcha/images/captcha_688.png
+data/captcha/images/captcha_790.png
+data/captcha/images/captcha_943.png
+data/captcha/images/captcha_935.png
+data/captcha/images/captcha_736.png
+data/captcha/images/captcha_734.png
+data/captcha/images/captcha_710.png
+data/captcha/images/captcha_61.png
+data/captcha/images/captcha_402.png
+data/captcha/images/captcha_893.png
+data/captcha/images/captcha_104.png
+data/captcha/images/captcha_911.png
+data/captcha/images/captcha_713.png
+data/captcha/images/captcha_147.png
+data/captcha/images/captcha_948.png
+data/captcha/images/captcha_826.png
+data/captcha/images/captcha_714.png
+data/captcha/images/captcha_434.png
+data/captcha/images/captcha_95.png
+data/captcha/images/captcha_377.png
+data/captcha/images/captcha_846.png
+data/captcha/images/captcha_663.png
+data/captcha/images/captcha_968.png
+data/captcha/images/captcha_596.png
+data/captcha/images/captcha_844.png
+data/captcha/images/captcha_339.png
+data/captcha/images/captcha_124.png
+data/captcha/images/captcha_752.png
+data/captcha/images/captcha_312.png
+data/captcha/images/captcha_204.png
+data/captcha/images/captcha_482.png
+data/captcha/images/captcha_59.png
+data/captcha/images/captcha_520.png
+data/captcha/images/captcha_538.png
+data/captcha/images/captcha_442.png
+data/captcha/images/captcha_980.png
+data/captcha/images/captcha_225.png
+data/captcha/images/captcha_428.png
+data/captcha/images/captcha_857.png
+data/captcha/images/captcha_740.png
+data/captcha/images/captcha_960.png
+data/captcha/images/captcha_638.png
+data/captcha/images/captcha_897.png
+data/captcha/images/captcha_242.png
+data/captcha/images/captcha_923.png
+data/captcha/images/captcha_58.png
+data/captcha/images/captcha_861.png
+data/captcha/images/captcha_856.png
+data/captcha/images/captcha_189.png
+data/captcha/images/captcha_25.png
+data/captcha/images/captcha_915.png
+data/captcha/images/captcha_400.png
+data/captcha/images/captcha_298.png
+data/captcha/images/captcha_310.png
+data/captcha/images/captcha_265.png
+data/captcha/images/captcha_176.png
+data/captcha/images/captcha_327.png
+data/captcha/images/captcha_653.png
+data/captcha/images/captcha_216.png
+data/captcha/images/captcha_272.png
+data/captcha/images/captcha_355.png
+data/captcha/images/captcha_514.png
+data/captcha/images/captcha_562.png
+data/captcha/images/captcha_992.png
+data/captcha/images/captcha_579.png
+data/captcha/images/captcha_849.png
+data/captcha/images/captcha_547.png
+data/captcha/images/captcha_865.png
+data/captcha/images/captcha_230.png
+data/captcha/images/captcha_273.png
+data/captcha/images/captcha_195.png
+data/captcha/images/captcha_44.png
+data/captcha/images/captcha_328.png
+data/captcha/images/captcha_834.png
+data/captcha/images/captcha_867.png
+data/captcha/images/captcha_726.png
+data/captcha/images/captcha_409.png
+data/captcha/images/captcha_24.png
+data/captcha/images/captcha_246.png
+data/captcha/images/captcha_597.png
+data/captcha/images/captcha_770.png
+data/captcha/images/captcha_168.png
+data/captcha/images/captcha_405.png
+data/captcha/images/captcha_448.png
+data/captcha/images/captcha_690.png
+data/captcha/images/captcha_963.png
+data/captcha/images/captcha_429.png
+data/captcha/images/captcha_719.png
+data/captcha/images/captcha_403.png
+data/captcha/images/captcha_536.png
+data/captcha/images/captcha_436.png
+data/captcha/images/captcha_142.png
+data/captcha/images/captcha_702.png
+data/captcha/images/captcha_566.png
+data/captcha/images/captcha_156.png
+data/captcha/images/captcha_417.png
+data/captcha/images/captcha_664.png
+data/captcha/images/captcha_476.png
+data/captcha/images/captcha_472.png
+data/captcha/images/captcha_464.png
+data/captcha/images/captcha_828.png
+data/captcha/images/captcha_813.png
+data/captcha/images/captcha_542.png
+data/captcha/images/captcha_988.png
+data/captcha/images/captcha_337.png
+data/captcha/images/captcha_896.png
+data/captcha/images/captcha_473.png
+data/captcha/images/captcha_300.png
+data/captcha/images/captcha_105.png
+data/captcha/images/captcha_292.png
+data/captcha/images/captcha_942.png
+data/captcha/images/captcha_821.png
+data/captcha/images/captcha_815.png
+data/captcha/images/captcha_394.png
+data/captcha/images/captcha_306.png
+data/captcha/images/captcha_407.png
+data/captcha/images/captcha_754.png
+data/captcha/images/captcha_404.png
+data/captcha/images/captcha_260.png
+data/captcha/images/captcha_768.png
+data/captcha/images/captcha_732.png
+data/captcha/images/captcha_51.png
+data/captcha/images/captcha_767.png
+data/captcha/images/captcha_505.png
+data/captcha/images/captcha_72.png
+data/captcha/images/captcha_116.png
+data/captcha/images/captcha_602.png
+data/captcha/images/captcha_187.png
+data/captcha/images/captcha_397.png
+data/captcha/images/captcha_244.png
+data/captcha/images/captcha_622.png
+data/captcha/images/captcha_986.png
+data/captcha/images/captcha_422.png
+data/captcha/images/captcha_627.png
+data/captcha/images/captcha_190.png
+data/captcha/images/captcha_234.png
+data/captcha/images/captcha_466.png
+data/captcha/images/captcha_772.png
+data/captcha/images/captcha_805.png
+data/captcha/images/captcha_648.png
+data/captcha/images/captcha_485.png
+data/captcha/images/captcha_128.png
+data/captcha/images/captcha_183.png
+data/captcha/images/captcha_541.png
+data/captcha/images/captcha_563.png
+data/captcha/images/captcha_152.png
+data/captcha/images/captcha_438.png
+data/captcha/images/captcha_410.png
+data/captcha/images/captcha_76.png
+data/captcha/images/captcha_644.png
+data/captcha/images/captcha_526.png
+data/captcha/images/captcha_600.png
+data/captcha/images/captcha_987.png
+data/captcha/images/captcha_66.png
+data/captcha/images/captcha_962.png
+data/captcha/images/captcha_139.png
+data/captcha/images/captcha_120.png
+data/captcha/images/captcha_325.png
+data/captcha/images/captcha_875.png
+data/captcha/images/captcha_90.png
+data/captcha/images/captcha_775.png
+data/captcha/images/captcha_425.png
+data/captcha/images/captcha_329.png
+data/captcha/images/captcha_944.png
+data/captcha/images/captcha_226.png
+data/captcha/images/captcha_616.png
+data/captcha/images/captcha_489.png
+data/captcha/images/captcha_361.png
+data/captcha/images/captcha_989.png
+data/captcha/images/captcha_835.png
+data/captcha/images/captcha_23.png
+data/captcha/images/captcha_589.png
+data/captcha/images/captcha_591.png
+data/captcha/images/captcha_144.png
+data/captcha/images/captcha_762.png
+data/captcha/images/captcha_778.png
+data/captcha/images/captcha_255.png
+data/captcha/images/captcha_67.png
+data/captcha/images/captcha_123.png
+data/captcha/images/captcha_895.png
+data/captcha/images/captcha_47.png
+data/captcha/images/captcha_278.png
+data/captcha/images/captcha_973.png
+data/captcha/images/captcha_181.png
+data/captcha/images/captcha_537.png
+data/captcha/images/captcha_372.png
+data/captcha/images/captcha_203.png
+data/captcha/images/captcha_825.png
+data/captcha/images/captcha_782.png
+data/captcha/images/captcha_13.png
+data/captcha/images/captcha_982.png
+data/captcha/images/captcha_630.png
+data/captcha/images/captcha_654.png
+data/captcha/images/captcha_864.png
+data/captcha/images/captcha_186.png
+data/captcha/images/captcha_863.png
+data/captcha/images/captcha_773.png
+data/captcha/images/captcha_779.png
+data/captcha/images/captcha_3.png
+data/captcha/images/captcha_349.png
+data/captcha/images/captcha_956.png
+data/captcha/images/captcha_807.png
+data/captcha/images/captcha_474.png
+data/captcha/images/captcha_613.png
+data/captcha/images/captcha_687.png
+data/captcha/images/captcha_439.png
+data/captcha/images/captcha_587.png
+data/captcha/images/captcha_413.png
+data/captcha/images/captcha_376.png
+data/captcha/images/captcha_763.png
+data/captcha/images/captcha_540.png
+data/captcha/images/captcha_98.png
+data/captcha/images/captcha_704.png
+data/captcha/images/captcha_457.png
+data/captcha/images/captcha_931.png
+data/captcha/images/captcha_853.png
+data/captcha/images/captcha_631.png
+data/captcha/images/captcha_177.png
+data/captcha/images/captcha_360.png
+data/captcha/images/captcha_343.png
+data/captcha/images/captcha_256.png
+data/captcha/images/captcha_938.png
+data/captcha/images/captcha_623.png
+data/captcha/images/captcha_592.png
+data/captcha/images/captcha_117.png
+data/captcha/images/captcha_366.png
+data/captcha/images/captcha_121.png
+data/captcha/images/captcha_850.png
+data/captcha/images/captcha_868.png
+data/captcha/images/captcha_37.png
+data/captcha/images/captcha_369.png
+data/captcha/images/captcha_222.png
+data/captcha/images/captcha_609.png
+data/captcha/images/captcha_683.png
+data/captcha/images/captcha_63.png
+data/captcha/images/captcha_637.png
+data/captcha/images/captcha_130.png
+data/captcha/images/captcha_455.png
+data/captcha/images/captcha_799.png
+data/captcha/images/captcha_159.png
+data/captcha/images/captcha_335.png
+data/captcha/images/captcha_898.png
+data/captcha/images/captcha_55.png
+data/captcha/images/captcha_363.png
+data/captcha/images/captcha_727.png
+data/captcha/images/captcha_735.png
+data/captcha/images/captcha_498.png
+data/captcha/images/captcha_334.png
+data/captcha/images/captcha_904.png
+data/captcha/images/captcha_333.png
+data/captcha/images/captcha_182.png
+data/captcha/images/captcha_793.png
+data/captcha/images/captcha_829.png
+data/captcha/images/captcha_894.png
+data/captcha/images/captcha_418.png
+data/captcha/images/captcha_274.png
+data/captcha/images/captcha_612.png
+data/captcha/images/captcha_599.png
+data/captcha/images/captcha_646.png
+data/captcha/images/captcha_316.png
+data/captcha/images/captcha_979.png
+data/captcha/images/captcha_837.png
+data/captcha/images/captcha_645.png
+data/captcha/images/captcha_695.png
+data/captcha/images/captcha_320.png
+data/captcha/images/captcha_655.png
+data/captcha/images/captcha_416.png
+data/captcha/images/captcha_112.png
+data/captcha/images/captcha_890.png
+data/captcha/images/captcha_662.png
+data/captcha/images/captcha_964.png
+data/captcha/images/captcha_671.png
+data/captcha/images/captcha_284.png
+data/captcha/images/captcha_670.png
+data/captcha/images/captcha_378.png
+data/captcha/images/captcha_539.png
+data/captcha/images/captcha_678.png
+data/captcha/images/captcha_247.png
+data/captcha/images/captcha_876.png
+data/captcha/images/captcha_765.png
+data/captcha/images/captcha_924.png
+data/captcha/images/captcha_345.png
+data/captcha/images/captcha_21.png
+data/captcha/images/captcha_720.png
+data/captcha/images/captcha_35.png
+data/captcha/images/captcha_657.png
+data/captcha/images/captcha_676.png
+data/captcha/images/captcha_791.png
+data/captcha/images/captcha_131.png
+data/captcha/images/captcha_679.png
+data/captcha/images/captcha_49.png
+data/captcha/images/captcha_362.png
+data/captcha/images/captcha_303.png
+data/captcha/images/captcha_460.png
+data/captcha/images/captcha_872.png
+data/captcha/images/captcha_889.png
+data/captcha/images/captcha_641.png
+data/captcha/images/captcha_275.png
+data/captcha/images/captcha_477.png
+data/captcha/images/captcha_523.png
+data/captcha/images/captcha_952.png
+data/captcha/images/captcha_925.png
+data/captcha/images/captcha_854.png
+data/captcha/images/captcha_252.png
+data/captcha/images/captcha_494.png
+data/captcha/images/captcha_760.png
+data/captcha/images/captcha_642.png
+data/captcha/images/captcha_107.png
+data/captcha/images/captcha_443.png
+data/captcha/images/captcha_926.png
+data/captcha/images/captcha_705.png
+data/captcha/images/captcha_632.png
+data/captcha/images/captcha_999.png
+data/captcha/images/captcha_198.png
+data/captcha/images/captcha_635.png
+data/captcha/images/captcha_367.png
+data/captcha/images/captcha_65.png
+data/captcha/images/captcha_211.png
+data/captcha/images/captcha_709.png
+data/captcha/images/captcha_706.png
+data/captcha/images/captcha_96.png
+data/captcha/images/captcha_708.png
+data/captcha/images/captcha_610.png
+data/captcha/images/captcha_885.png
+data/captcha/images/captcha_94.png
+data/captcha/images/captcha_314.png
+data/captcha/images/captcha_261.png
+data/captcha/images/captcha_512.png
+data/captcha/images/captcha_239.png
+data/captcha/images/captcha_618.png
+data/captcha/images/captcha_102.png
+data/captcha/images/captcha_696.png
+data/captcha/images/captcha_884.png
+data/captcha/images/captcha_45.png
+data/captcha/images/captcha_236.png
+data/captcha/images/captcha_263.png
+data/captcha/images/captcha_899.png
+data/captcha/images/captcha_390.png
+data/captcha/images/captcha_819.png
+data/captcha/images/captcha_869.png
+data/captcha/images/captcha_259.png
+data/captcha/images/captcha_955.png
+data/captcha/images/captcha_85.png
+data/captcha/images/captcha_551.png
+data/captcha/images/captcha_496.png
+data/captcha/images/captcha_878.png
+data/captcha/images/captcha_454.png
+data/captcha/images/captcha_167.png
+data/captcha/images/captcha_723.png
+data/captcha/images/captcha_430.png
+data/captcha/images/captcha_585.png
+data/captcha/images/captcha_511.png
+data/captcha/images/captcha_111.png
+data/captcha/images/captcha_365.png
+data/captcha/images/captcha_518.png
+data/captcha/images/captcha_385.png
+data/captcha/images/captcha_194.png
+data/captcha/images/captcha_513.png
+data/captcha/images/captcha_749.png
+data/captcha/images/captcha_27.png
+data/captcha/images/captcha_129.png
+data/captcha/images/captcha_823.png
+data/captcha/images/captcha_598.png
+data/captcha/images/captcha_783.png
+data/captcha/images/captcha_441.png
+data/captcha/images/captcha_937.png
+data/captcha/images/captcha_729.png
+data/captcha/images/captcha_386.png
+data/captcha/images/captcha_620.png
+data/captcha/images/captcha_953.png
+data/captcha/images/captcha_138.png
+data/captcha/images/captcha_352.png
+data/captcha/images/captcha_302.png
+data/captcha/images/captcha_673.png
+data/captcha/images/captcha_501.png
+data/captcha/images/captcha_522.png
+data/captcha/images/captcha_308.png
+data/captcha/images/captcha_289.png
+data/captcha/images/captcha_776.png
+data/captcha/images/captcha_395.png
+data/captcha/images/captcha_423.png
+data/captcha/images/captcha_48.png
+data/captcha/images/captcha_9.png
+data/captcha/images/captcha_169.png
+data/captcha/images/captcha_219.png
+data/captcha/images/captcha_229.png
+data/captcha/images/captcha_574.png
+data/captcha/images/captcha_77.png
+data/captcha/images/captcha_5.png
+data/captcha/images/captcha_822.png
+data/captcha/images/captcha_880.png
+data/captcha/images/captcha_495.png
+data/captcha/images/captcha_507.png
+data/captcha/images/captcha_283.png
+data/captcha/images/captcha_737.png
+data/captcha/images/captcha_993.png
+data/captcha/images/captcha_291.png
+data/captcha/images/captcha_223.png
+data/captcha/images/captcha_504.png
+data/captcha/images/captcha_296.png
+data/captcha/images/captcha_847.png
+data/captcha/images/captcha_510.png
+data/captcha/images/captcha_215.png
+data/captcha/images/captcha_991.png
+data/captcha/images/captcha_611.png
+data/captcha/images/captcha_493.png
+data/captcha/images/captcha_530.png
+data/captcha/images/captcha_449.png
+data/captcha/images/captcha_557.png
+data/captcha/images/captcha_7.png
+data/captcha/images/captcha_506.png
+data/captcha/images/captcha_803.png
+data/captcha/images/captcha_356.png
+data/captcha/images/captcha_470.png
+data/captcha/images/captcha_675.png
+data/captcha/images/captcha_132.png
+data/captcha/images/captcha_100.png
+data/captcha/images/captcha_70.png
+data/captcha/images/captcha_108.png
+data/captcha/images/captcha_118.png
+data/captcha/images/captcha_145.png
+data/captcha/images/captcha_571.png
+data/captcha/images/captcha_60.png
+data/captcha/images/captcha_624.png
+data/captcha/images/captcha_818.png
+data/captcha/images/captcha_781.png
+data/captcha/images/captcha_348.png
+data/captcha/images/captcha_995.png
+data/captcha/images/captcha_808.png
+data/captcha/images/captcha_217.png
+data/captcha/images/captcha_785.png
+data/captcha/images/captcha_756.png
+data/captcha/images/captcha_784.png
+data/captcha/images/captcha_172.png
+data/captcha/images/captcha_196.png
+data/captcha/images/captcha_290.png
+data/captcha/images/captcha_154.png
+data/captcha/images/captcha_619.png
+data/captcha/images/captcha_235.png
+data/captcha/images/captcha_57.png
+data/captcha/images/captcha_978.png
+data/captcha/images/captcha_633.png
+data/captcha/images/captcha_757.png
+data/captcha/images/captcha_634.png
+data/captcha/images/captcha_15.png
+data/captcha/images/captcha_711.png
+data/captcha/images/captcha_601.png
+data/captcha/images/captcha_160.png
+data/captcha/images/captcha_68.png
+data/captcha/images/captcha_578.png
+data/captcha/images/captcha_595.png
+data/captcha/images/captcha_984.png
+data/captcha/images/captcha_38.png
+data/captcha/images/captcha_253.png
+data/captcha/images/captcha_134.png
+data/captcha/images/captcha_509.png
+data/captcha/images/captcha_285.png
+data/captcha/images/captcha_358.png
+data/captcha/images/captcha_733.png
+data/captcha/images/captcha_357.png
+data/captcha/images/captcha_912.png
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/valid.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/valid.txt
new file mode 100644
index 0000000..d607c0c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/data/captcha/valid.txt
@@ -0,0 +1,201 @@
+data/captcha/images/captcha_755.png
+data/captcha/images/captcha_508.png
+data/captcha/images/captcha_961.png
+data/captcha/images/captcha_192.png
+data/captcha/images/captcha_16.png
+data/captcha/images/captcha_391.png
+data/captcha/images/captcha_848.png
+data/captcha/images/captcha_870.png
+data/captcha/images/captcha_560.png
+data/captcha/images/captcha_905.png
+data/captcha/images/captcha_743.png
+data/captcha/images/captcha_516.png
+data/captcha/images/captcha_248.png
+data/captcha/images/captcha_2.png
+data/captcha/images/captcha_636.png
+data/captcha/images/captcha_114.png
+data/captcha/images/captcha_86.png
+data/captcha/images/captcha_279.png
+data/captcha/images/captcha_970.png
+data/captcha/images/captcha_368.png
+data/captcha/images/captcha_371.png
+data/captcha/images/captcha_30.png
+data/captcha/images/captcha_716.png
+data/captcha/images/captcha_33.png
+data/captcha/images/captcha_930.png
+data/captcha/images/captcha_193.png
+data/captcha/images/captcha_920.png
+data/captcha/images/captcha_918.png
+data/captcha/images/captcha_157.png
+data/captcha/images/captcha_816.png
+data/captcha/images/captcha_213.png
+data/captcha/images/captcha_804.png
+data/captcha/images/captcha_276.png
+data/captcha/images/captcha_550.png
+data/captcha/images/captcha_859.png
+data/captcha/images/captcha_353.png
+data/captcha/images/captcha_975.png
+data/captcha/images/captcha_965.png
+data/captcha/images/captcha_577.png
+data/captcha/images/captcha_651.png
+data/captcha/images/captcha_266.png
+data/captcha/images/captcha_833.png
+data/captcha/images/captcha_721.png
+data/captcha/images/captcha_933.png
+data/captcha/images/captcha_832.png
+data/captcha/images/captcha_8.png
+data/captcha/images/captcha_534.png
+data/captcha/images/captcha_718.png
+data/captcha/images/captcha_143.png
+data/captcha/images/captcha_786.png
+data/captcha/images/captcha_347.png
+data/captcha/images/captcha_313.png
+data/captcha/images/captcha_127.png
+data/captcha/images/captcha_28.png
+data/captcha/images/captcha_165.png
+data/captcha/images/captcha_958.png
+data/captcha/images/captcha_666.png
+data/captcha/images/captcha_208.png
+data/captcha/images/captcha_99.png
+data/captcha/images/captcha_340.png
+data/captcha/images/captcha_700.png
+data/captcha/images/captcha_251.png
+data/captcha/images/captcha_527.png
+data/captcha/images/captcha_556.png
+data/captcha/images/captcha_994.png
+data/captcha/images/captcha_43.png
+data/captcha/images/captcha_97.png
+data/captcha/images/captcha_908.png
+data/captcha/images/captcha_20.png
+data/captcha/images/captcha_731.png
+data/captcha/images/captcha_524.png
+data/captcha/images/captcha_475.png
+data/captcha/images/captcha_153.png
+data/captcha/images/captcha_564.png
+data/captcha/images/captcha_996.png
+data/captcha/images/captcha_444.png
+data/captcha/images/captcha_170.png
+data/captcha/images/captcha_84.png
+data/captcha/images/captcha_331.png
+data/captcha/images/captcha_656.png
+data/captcha/images/captcha_141.png
+data/captcha/images/captcha_164.png
+data/captcha/images/captcha_744.png
+data/captcha/images/captcha_747.png
+data/captcha/images/captcha_119.png
+data/captcha/images/captcha_806.png
+data/captcha/images/captcha_658.png
+data/captcha/images/captcha_959.png
+data/captcha/images/captcha_672.png
+data/captcha/images/captcha_149.png
+data/captcha/images/captcha_445.png
+data/captcha/images/captcha_288.png
+data/captcha/images/captcha_435.png
+data/captcha/images/captcha_354.png
+data/captcha/images/captcha_966.png
+data/captcha/images/captcha_707.png
+data/captcha/images/captcha_414.png
+data/captcha/images/captcha_934.png
+data/captcha/images/captcha_581.png
+data/captcha/images/captcha_977.png
+data/captcha/images/captcha_240.png
+data/captcha/images/captcha_682.png
+data/captcha/images/captcha_29.png
+data/captcha/images/captcha_668.png
+data/captcha/images/captcha_583.png
+data/captcha/images/captcha_326.png
+data/captcha/images/captcha_64.png
+data/captcha/images/captcha_456.png
+data/captcha/images/captcha_282.png
+data/captcha/images/captcha_939.png
+data/captcha/images/captcha_665.png
+data/captcha/images/captcha_565.png
+data/captcha/images/captcha_398.png
+data/captcha/images/captcha_241.png
+data/captcha/images/captcha_218.png
+data/captcha/images/captcha_249.png
+data/captcha/images/captcha_689.png
+data/captcha/images/captcha_862.png
+data/captcha/images/captcha_903.png
+data/captcha/images/captcha_468.png
+data/captcha/images/captcha_42.png
+data/captcha/images/captcha_528.png
+data/captcha/images/captcha_891.png
+data/captcha/images/captcha_949.png
+data/captcha/images/captcha_615.png
+data/captcha/images/captcha_871.png
+data/captcha/images/captcha_346.png
+data/captcha/images/captcha_794.png
+data/captcha/images/captcha_533.png
+data/captcha/images/captcha_92.png
+data/captcha/images/captcha_570.png
+data/captcha/images/captcha_393.png
+data/captcha/images/captcha_680.png
+data/captcha/images/captcha_150.png
+data/captcha/images/captcha_103.png
+data/captcha/images/captcha_976.png
+data/captcha/images/captcha_745.png
+data/captcha/images/captcha_800.png
+data/captcha/images/captcha_997.png
+data/captcha/images/captcha_817.png
+data/captcha/images/captcha_649.png
+data/captcha/images/captcha_342.png
+data/captcha/images/captcha_661.png
+data/captcha/images/captcha_497.png
+data/captcha/images/captcha_463.png
+data/captcha/images/captcha_399.png
+data/captcha/images/captcha_488.png
+data/captcha/images/captcha_1.png
+data/captcha/images/captcha_811.png
+data/captcha/images/captcha_553.png
+data/captcha/images/captcha_281.png
+data/captcha/images/captcha_981.png
+data/captcha/images/captcha_576.png
+data/captcha/images/captcha_271.png
+data/captcha/images/captcha_701.png
+data/captcha/images/captcha_317.png
+data/captcha/images/captcha_173.png
+data/captcha/images/captcha_914.png
+data/captcha/images/captcha_659.png
+data/captcha/images/captcha_492.png
+data/captcha/images/captcha_594.png
+data/captcha/images/captcha_83.png
+data/captcha/images/captcha_379.png
+data/captcha/images/captcha_972.png
+data/captcha/images/captcha_647.png
+data/captcha/images/captcha_1000.png
+data/captcha/images/captcha_406.png
+data/captcha/images/captcha_717.png
+data/captcha/images/captcha_691.png
+data/captcha/images/captcha_424.png
+data/captcha/images/captcha_304.png
+data/captcha/images/captcha_481.png
+data/captcha/images/captcha_39.png
+data/captcha/images/captcha_220.png
+data/captcha/images/captcha_484.png
+data/captcha/images/captcha_280.png
+data/captcha/images/captcha_479.png
+data/captcha/images/captcha_874.png
+data/captcha/images/captcha_902.png
+data/captcha/images/captcha_137.png
+data/captcha/images/captcha_180.png
+data/captcha/images/captcha_593.png
+data/captcha/images/captcha_545.png
+data/captcha/images/captcha_802.png
+data/captcha/images/captcha_969.png
+data/captcha/images/captcha_224.png
+data/captcha/images/captcha_135.png
+data/captcha/images/captcha_873.png
+data/captcha/images/captcha_725.png
+data/captcha/images/captcha_323.png
+data/captcha/images/captcha_221.png
+data/captcha/images/captcha_692.png
+data/captcha/images/captcha_927.png
+data/captcha/images/captcha_34.png
+data/captcha/images/captcha_558.png
+data/captcha/images/captcha_741.png
+data/captcha/images/captcha_437.png
+data/captcha/images/captcha_549.png
+data/captcha/images/captcha_582.png
+data/captcha/images/captcha_724.png
+data/captcha/images/captcha_238.png
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.py
new file mode 100644
index 0000000..76346ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.py
@@ -0,0 +1,147 @@
+from __future__ import division
+
+from models import *
+from utils.utils import *
+from utils.datasets import *
+from os.path import dirname, join
+import os
+import sys
+import time
+import datetime
+import argparse
+
+from PIL import Image
+
+import torch
+from torch.utils.data import DataLoader
+from torchvision import datasets
+from torch.autograd import Variable
+
+import matplotlib.pyplot as plt
+import matplotlib.patches as patches
+from matplotlib.ticker import NullLocator
+import numpy as np
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_folder", type=str, default="data/samples", help="path to dataset")
+ parser.add_argument("--model_def", type=str, default="config/yolov3.cfg", help="path to model definition file")
+ parser.add_argument("--weights_path", type=str, default="weights/yolov3.weights", help="path to weights file")
+ parser.add_argument("--class_path", type=str, default="data/coco.names", help="path to class label file")
+ parser.add_argument("--conf_thres", type=float, default=0.7, help="object confidence threshold")
+ parser.add_argument("--nms_thres", type=float, default=0.4, help="iou thresshold for non-maximum suppression")
+ parser.add_argument("--batch_size", type=int, default=1, help="size of the batches")
+ parser.add_argument("--n_cpu", type=int, default=0, help="number of cpu threads to use during batch generation")
+ parser.add_argument("--img_size", type=int, default=416, help="size of each image dimension")
+ parser.add_argument("--checkpoint_model", type=str, help="path to checkpoint model")
+ opt = parser.parse_args()
+ print(opt)
+
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+ output_folder = join(dirname(opt.image_folder), 'result')
+
+ os.makedirs(output_folder, exist_ok=True)
+
+ # Set up model
+ model = Darknet(opt.model_def, img_size=opt.img_size).to(device)
+
+ if opt.weights_path.endswith(".weights"):
+ # Load darknet weights
+ model.load_darknet_weights(opt.weights_path)
+ else:
+ # Load checkpoint weights
+ # model.load_state_dict(torch.load(opt.weights_path))
+ model.load_state_dict(torch.load(opt.weights_path, map_location="cuda" if torch.cuda.is_available() else "cpu"))
+
+
+ model.eval() # Set in evaluation mode
+
+ dataloader = DataLoader(
+ ImageFolder(opt.image_folder, img_size=opt.img_size),
+ batch_size=opt.batch_size,
+ shuffle=False,
+ num_workers=opt.n_cpu,
+ )
+
+ classes = load_classes(opt.class_path) # Extracts class labels from file
+
+ Tensor = torch.cuda.FloatTensor if torch.cuda.is_available() else torch.FloatTensor
+
+ imgs = [] # Stores image paths
+ img_detections = [] # Stores detections for each image index
+
+ print("\nPerforming object detection:")
+ prev_time = time.time()
+ for batch_i, (img_paths, input_imgs) in enumerate(dataloader):
+ # Configure input
+ input_imgs = Variable(input_imgs.type(Tensor))
+
+ # Get detections
+ with torch.no_grad():
+ detections = model(input_imgs)
+ detections = non_max_suppression(detections, opt.conf_thres, opt.nms_thres)
+
+ # Log progress
+ current_time = time.time()
+ inference_time = datetime.timedelta(seconds=current_time - prev_time)
+ prev_time = current_time
+ print("\t+ Batch %d, Inference Time: %s" % (batch_i, inference_time))
+
+ # Save image and detections
+ imgs.extend(img_paths)
+ img_detections.extend(detections)
+
+ # Bounding-box colors
+ cmap = plt.get_cmap("tab20b")
+ colors = [cmap(i) for i in np.linspace(0, 1, 20)]
+
+ print("\nSaving images:")
+ # Iterate through images and save plot of detections
+ for img_i, (path, detections) in enumerate(zip(imgs, img_detections)):
+
+ print("(%d) Image: '%s'" % (img_i, path))
+
+ # Create plot
+ img = np.array(Image.open(path))
+ plt.figure()
+ fig, ax = plt.subplots(1)
+ ax.imshow(img)
+
+ # Draw bounding boxes and labels of detections
+ if detections is not None:
+ # Rescale boxes to original image
+ detections = rescale_boxes(detections, opt.img_size, img.shape[:2])
+ unique_labels = detections[:, -1].cpu().unique()
+ n_cls_preds = len(unique_labels)
+ bbox_colors = random.sample(colors, n_cls_preds)
+ for x1, y1, x2, y2, conf, cls_conf, cls_pred in detections:
+ print("\t+ Label: %s, Conf: %.5f" % (classes[int(cls_pred)], cls_conf.item()))
+
+ box_w = x2 - x1
+ box_h = y2 - y1
+ color = bbox_colors[int(np.where(unique_labels == int(cls_pred))[0])]
+ # Create a Rectangle patch
+ bbox = patches.Rectangle((x1 + box_w / 2, y1 + box_h / 2), box_w, box_h, linewidth=2, edgecolor=color, facecolor="none")
+ print('bbox', (x1, y1, box_w, box_h), 'offset', x1)
+ # Add the bbox to the plot
+ ax.add_patch(bbox)
+ # Add label
+ plt.text(
+ x1,
+ y1,
+ s=classes[int(cls_pred)],
+ color="white",
+ verticalalignment="top",
+ bbox={"color": color, "pad": 0},
+ )
+ # only one
+ break
+
+ # Save generated image with detections
+ plt.axis("off")
+ plt.gca().xaxis.set_major_locator(NullLocator())
+ plt.gca().yaxis.set_major_locator(NullLocator())
+ filename = path.split("/")[-1].split(".")[0]
+ plt.savefig(f"{output_folder}/{filename}.png", bbox_inches="tight", pad_inches=0.0)
+ plt.close()
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.sh b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.sh
new file mode 100644
index 0000000..0a0b94d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/detect.sh
@@ -0,0 +1 @@
+python3 detect.py --model_def config/yolov3-captcha.cfg --weights_path checkpoints/yolov3_ckpt_2.pth --image_folder data/captcha/test --class_path data/captcha/classes.names
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/models.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/models.py
new file mode 100644
index 0000000..f89ca29
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/models.py
@@ -0,0 +1,348 @@
+from __future__ import division
+
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+from torch.autograd import Variable
+import numpy as np
+
+from utils.parse_config import *
+from utils.utils import build_targets, to_cpu, non_max_suppression
+
+import matplotlib.pyplot as plt
+import matplotlib.patches as patches
+
+
+def create_modules(module_defs):
+ """
+ Constructs module list of layer blocks from module configuration in module_defs
+ """
+ hyperparams = module_defs.pop(0)
+ output_filters = [int(hyperparams["channels"])]
+ module_list = nn.ModuleList()
+ for module_i, module_def in enumerate(module_defs):
+ modules = nn.Sequential()
+
+ if module_def["type"] == "convolutional":
+ bn = int(module_def["batch_normalize"])
+ filters = int(module_def["filters"])
+ kernel_size = int(module_def["size"])
+ pad = (kernel_size - 1) // 2
+ modules.add_module(
+ f"conv_{module_i}",
+ nn.Conv2d(
+ in_channels=output_filters[-1],
+ out_channels=filters,
+ kernel_size=kernel_size,
+ stride=int(module_def["stride"]),
+ padding=pad,
+ bias=not bn,
+ ),
+ )
+ if bn:
+ modules.add_module(f"batch_norm_{module_i}", nn.BatchNorm2d(filters, momentum=0.9, eps=1e-5))
+ if module_def["activation"] == "leaky":
+ modules.add_module(f"leaky_{module_i}", nn.LeakyReLU(0.1))
+
+ elif module_def["type"] == "maxpool":
+ kernel_size = int(module_def["size"])
+ stride = int(module_def["stride"])
+ if kernel_size == 2 and stride == 1:
+ modules.add_module(f"_debug_padding_{module_i}", nn.ZeroPad2d((0, 1, 0, 1)))
+ maxpool = nn.MaxPool2d(kernel_size=kernel_size, stride=stride, padding=int((kernel_size - 1) // 2))
+ modules.add_module(f"maxpool_{module_i}", maxpool)
+
+ elif module_def["type"] == "upsample":
+ upsample = Upsample(scale_factor=int(module_def["stride"]), mode="nearest")
+ modules.add_module(f"upsample_{module_i}", upsample)
+
+ elif module_def["type"] == "route":
+ layers = [int(x) for x in module_def["layers"].split(",")]
+ filters = sum([output_filters[1:][i] for i in layers])
+ modules.add_module(f"route_{module_i}", EmptyLayer())
+
+ elif module_def["type"] == "shortcut":
+ filters = output_filters[1:][int(module_def["from"])]
+ modules.add_module(f"shortcut_{module_i}", EmptyLayer())
+
+ elif module_def["type"] == "yolo":
+ anchor_idxs = [int(x) for x in module_def["mask"].split(",")]
+ # Extract anchors
+ anchors = [int(x) for x in module_def["anchors"].split(",")]
+ anchors = [(anchors[i], anchors[i + 1]) for i in range(0, len(anchors), 2)]
+ anchors = [anchors[i] for i in anchor_idxs]
+ num_classes = int(module_def["classes"])
+ img_size = int(hyperparams["height"])
+ # Define detection layer
+ yolo_layer = YOLOLayer(anchors, num_classes, img_size)
+ modules.add_module(f"yolo_{module_i}", yolo_layer)
+ # Register module list and number of output filters
+ module_list.append(modules)
+ output_filters.append(filters)
+
+ return hyperparams, module_list
+
+
+class Upsample(nn.Module):
+ """ nn.Upsample is deprecated """
+
+ def __init__(self, scale_factor, mode="nearest"):
+ super(Upsample, self).__init__()
+ self.scale_factor = scale_factor
+ self.mode = mode
+
+ def forward(self, x):
+ x = F.interpolate(x, scale_factor=self.scale_factor, mode=self.mode)
+ return x
+
+
+class EmptyLayer(nn.Module):
+ """Placeholder for 'route' and 'shortcut' layers"""
+
+ def __init__(self):
+ super(EmptyLayer, self).__init__()
+
+
+class YOLOLayer(nn.Module):
+ """Detection layer"""
+
+ def __init__(self, anchors, num_classes, img_dim=416):
+ super(YOLOLayer, self).__init__()
+ self.anchors = anchors
+ self.num_anchors = len(anchors)
+ self.num_classes = num_classes
+ self.ignore_thres = 0.5
+ self.mse_loss = nn.MSELoss()
+ self.bce_loss = nn.BCELoss()
+ self.obj_scale = 1
+ self.noobj_scale = 100
+ self.metrics = {}
+ self.img_dim = img_dim
+ self.grid_size = 0 # grid size
+
+ def compute_grid_offsets(self, grid_size, cuda=True):
+ self.grid_size = grid_size
+ g = self.grid_size
+ FloatTensor = torch.cuda.FloatTensor if cuda else torch.FloatTensor
+ self.stride = self.img_dim / self.grid_size
+ # Calculate offsets for each grid
+ self.grid_x = torch.arange(g).repeat(g, 1).view([1, 1, g, g]).type(FloatTensor)
+ self.grid_y = torch.arange(g).repeat(g, 1).t().view([1, 1, g, g]).type(FloatTensor)
+ self.scaled_anchors = FloatTensor([(a_w / self.stride, a_h / self.stride) for a_w, a_h in self.anchors])
+ self.anchor_w = self.scaled_anchors[:, 0:1].view((1, self.num_anchors, 1, 1))
+ self.anchor_h = self.scaled_anchors[:, 1:2].view((1, self.num_anchors, 1, 1))
+
+ def forward(self, x, targets=None, img_dim=None):
+
+ # Tensors for cuda support
+ FloatTensor = torch.cuda.FloatTensor if x.is_cuda else torch.FloatTensor
+ LongTensor = torch.cuda.LongTensor if x.is_cuda else torch.LongTensor
+ ByteTensor = torch.cuda.ByteTensor if x.is_cuda else torch.ByteTensor
+
+ self.img_dim = img_dim
+ num_samples = x.size(0)
+ grid_size = x.size(2)
+
+ prediction = (
+ x.view(num_samples, self.num_anchors, self.num_classes + 5, grid_size, grid_size)
+ .permute(0, 1, 3, 4, 2)
+ .contiguous()
+ )
+
+ # Get outputs
+ x = torch.sigmoid(prediction[..., 0]) # Center x
+ y = torch.sigmoid(prediction[..., 1]) # Center y
+ w = prediction[..., 2] # Width
+ h = prediction[..., 3] # Height
+ pred_conf = torch.sigmoid(prediction[..., 4]) # Conf
+ pred_cls = torch.sigmoid(prediction[..., 5:]) # Cls pred.
+
+ # If grid size does not match current we compute new offsets
+ if grid_size != self.grid_size:
+ self.compute_grid_offsets(grid_size, cuda=x.is_cuda)
+
+ # Add offset and scale with anchors
+ pred_boxes = FloatTensor(prediction[..., :4].shape)
+ pred_boxes[..., 0] = x.data + self.grid_x
+ pred_boxes[..., 1] = y.data + self.grid_y
+ pred_boxes[..., 2] = torch.exp(w.data) * self.anchor_w
+ pred_boxes[..., 3] = torch.exp(h.data) * self.anchor_h
+
+ output = torch.cat(
+ (
+ pred_boxes.view(num_samples, -1, 4) * self.stride,
+ pred_conf.view(num_samples, -1, 1),
+ pred_cls.view(num_samples, -1, self.num_classes),
+ ),
+ -1,
+ )
+
+ if targets is None:
+ return output, 0
+ else:
+ iou_scores, class_mask, obj_mask, noobj_mask, tx, ty, tw, th, tcls, tconf = build_targets(
+ pred_boxes=pred_boxes,
+ pred_cls=pred_cls,
+ target=targets,
+ anchors=self.scaled_anchors,
+ ignore_thres=self.ignore_thres,
+ )
+
+ obj_mask = obj_mask.bool()
+ noobj_mask = noobj_mask.bool()
+
+ # Loss : Mask outputs to ignore non-existing objects (except with conf. loss)
+ loss_x = self.mse_loss(x[obj_mask], tx[obj_mask])
+ loss_y = self.mse_loss(y[obj_mask], ty[obj_mask])
+ loss_w = self.mse_loss(w[obj_mask], tw[obj_mask])
+ loss_h = self.mse_loss(h[obj_mask], th[obj_mask])
+ loss_conf_obj = self.bce_loss(pred_conf[obj_mask], tconf[obj_mask])
+ loss_conf_noobj = self.bce_loss(pred_conf[noobj_mask], tconf[noobj_mask])
+ loss_conf = self.obj_scale * loss_conf_obj + self.noobj_scale * loss_conf_noobj
+ loss_cls = self.bce_loss(pred_cls[obj_mask], tcls[obj_mask])
+ total_loss = loss_x + loss_y + loss_w + loss_h + loss_conf + loss_cls
+
+ # Metrics
+ cls_acc = 100 * class_mask[obj_mask].mean()
+ conf_obj = pred_conf[obj_mask].mean()
+ conf_noobj = pred_conf[noobj_mask].mean()
+ conf50 = (pred_conf > 0.5).float()
+ iou50 = (iou_scores > 0.5).float()
+ iou75 = (iou_scores > 0.75).float()
+ detected_mask = conf50 * class_mask * tconf
+ precision = torch.sum(iou50 * detected_mask) / (conf50.sum() + 1e-16)
+ recall50 = torch.sum(iou50 * detected_mask) / (obj_mask.sum() + 1e-16)
+ recall75 = torch.sum(iou75 * detected_mask) / (obj_mask.sum() + 1e-16)
+
+ self.metrics = {
+ "loss": to_cpu(total_loss).item(),
+ "x": to_cpu(loss_x).item(),
+ "y": to_cpu(loss_y).item(),
+ "w": to_cpu(loss_w).item(),
+ "h": to_cpu(loss_h).item(),
+ "conf": to_cpu(loss_conf).item(),
+ "cls": to_cpu(loss_cls).item(),
+ "cls_acc": to_cpu(cls_acc).item(),
+ "recall50": to_cpu(recall50).item(),
+ "recall75": to_cpu(recall75).item(),
+ "precision": to_cpu(precision).item(),
+ "conf_obj": to_cpu(conf_obj).item(),
+ "conf_noobj": to_cpu(conf_noobj).item(),
+ "grid_size": grid_size,
+ }
+
+ return output, total_loss
+
+
+class Darknet(nn.Module):
+ """YOLOv3 object detection model"""
+
+ def __init__(self, config_path, img_size=416):
+ super(Darknet, self).__init__()
+ self.module_defs = parse_model_config(config_path)
+ self.hyperparams, self.module_list = create_modules(self.module_defs)
+ self.yolo_layers = [layer[0] for layer in self.module_list if hasattr(layer[0], "metrics")]
+ self.img_size = img_size
+ self.seen = 0
+ self.header_info = np.array([0, 0, 0, self.seen, 0], dtype=np.int32)
+
+ def forward(self, x, targets=None):
+ img_dim = x.shape[2]
+ loss = 0
+ layer_outputs, yolo_outputs = [], []
+ for i, (module_def, module) in enumerate(zip(self.module_defs, self.module_list)):
+ if module_def["type"] in ["convolutional", "upsample", "maxpool"]:
+ x = module(x)
+ elif module_def["type"] == "route":
+ x = torch.cat([layer_outputs[int(layer_i)] for layer_i in module_def["layers"].split(",")], 1)
+ elif module_def["type"] == "shortcut":
+ layer_i = int(module_def["from"])
+ x = layer_outputs[-1] + layer_outputs[layer_i]
+ elif module_def["type"] == "yolo":
+ x, layer_loss = module[0](x, targets, img_dim)
+ loss += layer_loss
+ yolo_outputs.append(x)
+ layer_outputs.append(x)
+ yolo_outputs = to_cpu(torch.cat(yolo_outputs, 1))
+ return yolo_outputs if targets is None else (loss, yolo_outputs)
+
+ def load_darknet_weights(self, weights_path):
+ """Parses and loads the weights stored in 'weights_path'"""
+
+ # Open the weights file
+ with open(weights_path, "rb") as f:
+ header = np.fromfile(f, dtype=np.int32, count=5) # First five are header values
+ self.header_info = header # Needed to write header when saving weights
+ self.seen = header[3] # number of images seen during training
+ weights = np.fromfile(f, dtype=np.float32) # The rest are weights
+
+ # Establish cutoff for loading backbone weights
+ cutoff = None
+ if "darknet53.conv.74" in weights_path:
+ cutoff = 75
+
+ ptr = 0
+ for i, (module_def, module) in enumerate(zip(self.module_defs, self.module_list)):
+ if i == cutoff:
+ break
+ if module_def["type"] == "convolutional":
+ conv_layer = module[0]
+ if module_def["batch_normalize"]:
+ # Load BN bias, weights, running mean and running variance
+ bn_layer = module[1]
+ num_b = bn_layer.bias.numel() # Number of biases
+ # Bias
+ bn_b = torch.from_numpy(weights[ptr : ptr + num_b]).view_as(bn_layer.bias)
+ bn_layer.bias.data.copy_(bn_b)
+ ptr += num_b
+ # Weight
+ bn_w = torch.from_numpy(weights[ptr : ptr + num_b]).view_as(bn_layer.weight)
+ bn_layer.weight.data.copy_(bn_w)
+ ptr += num_b
+ # Running Mean
+ bn_rm = torch.from_numpy(weights[ptr : ptr + num_b]).view_as(bn_layer.running_mean)
+ bn_layer.running_mean.data.copy_(bn_rm)
+ ptr += num_b
+ # Running Var
+ bn_rv = torch.from_numpy(weights[ptr : ptr + num_b]).view_as(bn_layer.running_var)
+ bn_layer.running_var.data.copy_(bn_rv)
+ ptr += num_b
+ else:
+ # Load conv. bias
+ num_b = conv_layer.bias.numel()
+ conv_b = torch.from_numpy(weights[ptr : ptr + num_b]).view_as(conv_layer.bias)
+ conv_layer.bias.data.copy_(conv_b)
+ ptr += num_b
+ # Load conv. weights
+ num_w = conv_layer.weight.numel()
+ conv_w = torch.from_numpy(weights[ptr : ptr + num_w]).view_as(conv_layer.weight)
+ conv_layer.weight.data.copy_(conv_w)
+ ptr += num_w
+
+ def save_darknet_weights(self, path, cutoff=-1):
+ """
+ @:param path - path of the new weights file
+ @:param cutoff - save layers between 0 and cutoff (cutoff = -1 -> all are saved)
+ """
+ fp = open(path, "wb")
+ self.header_info[3] = self.seen
+ self.header_info.tofile(fp)
+
+ # Iterate through layers
+ for i, (module_def, module) in enumerate(zip(self.module_defs[:cutoff], self.module_list[:cutoff])):
+ if module_def["type"] == "convolutional":
+ conv_layer = module[0]
+ # If batch norm, load bn first
+ if module_def["batch_normalize"]:
+ bn_layer = module[1]
+ bn_layer.bias.data.cpu().numpy().tofile(fp)
+ bn_layer.weight.data.cpu().numpy().tofile(fp)
+ bn_layer.running_mean.data.cpu().numpy().tofile(fp)
+ bn_layer.running_var.data.cpu().numpy().tofile(fp)
+ # Load conv bias
+ else:
+ conv_layer.bias.data.cpu().numpy().tofile(fp)
+ # Load conv weights
+ conv_layer.weight.data.cpu().numpy().tofile(fp)
+
+ fp.close()
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/prepare.sh b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/prepare.sh
new file mode 100644
index 0000000..a6ba0ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/prepare.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+
+cd weights
+
+# Download weights for vanilla YOLOv3
+wget -c https://pjreddie.com/media/files/yolov3.weights
+# # Download weights for tiny YOLOv3
+wget -c https://pjreddie.com/media/files/yolov3-tiny.weights
+# Download weights for backbone network
+wget -c https://pjreddie.com/media/files/darknet53.conv.74
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_source.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_source.png
new file mode 100644
index 0000000..bb5a2c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_source.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_target.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_target.png
new file mode 100644
index 0000000..d14323f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/block_target.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_0.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_0.png
new file mode 100644
index 0000000..8c8dcd3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_0.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1.png
new file mode 100644
index 0000000..63718d7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_10.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_10.png
new file mode 100644
index 0000000..e9f4672
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_10.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_100.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_100.png
new file mode 100644
index 0000000..bb216ad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_100.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1000.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1000.png
new file mode 100644
index 0000000..1683ce7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_1000.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_101.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_101.png
new file mode 100644
index 0000000..005a831
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_101.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_102.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_102.png
new file mode 100644
index 0000000..8dd86a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_102.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_103.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_103.png
new file mode 100644
index 0000000..efbe795
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_103.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_104.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_104.png
new file mode 100644
index 0000000..dde90a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_104.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_105.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_105.png
new file mode 100644
index 0000000..7fc74f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_105.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_106.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_106.png
new file mode 100644
index 0000000..78d57fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_106.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_107.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_107.png
new file mode 100644
index 0000000..4a5102c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_107.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_108.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_108.png
new file mode 100644
index 0000000..d6266cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_108.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_109.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_109.png
new file mode 100644
index 0000000..90b25cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_109.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_11.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_11.png
new file mode 100644
index 0000000..6e4b9ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_11.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_110.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_110.png
new file mode 100644
index 0000000..b066399
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_110.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_111.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_111.png
new file mode 100644
index 0000000..77a3849
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_111.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_112.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_112.png
new file mode 100644
index 0000000..78167fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_112.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_113.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_113.png
new file mode 100644
index 0000000..c29b5af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_113.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_114.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_114.png
new file mode 100644
index 0000000..8241cfb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_114.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_115.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_115.png
new file mode 100644
index 0000000..a492c7c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_115.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_116.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_116.png
new file mode 100644
index 0000000..04dbd40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_116.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_117.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_117.png
new file mode 100644
index 0000000..8939762
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_117.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_118.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_118.png
new file mode 100644
index 0000000..b2dce44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_118.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_119.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_119.png
new file mode 100644
index 0000000..00429e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_119.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_12.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_12.png
new file mode 100644
index 0000000..55c198b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_12.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_120.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_120.png
new file mode 100644
index 0000000..a091ae9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_120.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_121.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_121.png
new file mode 100644
index 0000000..b477e01
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_121.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_122.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_122.png
new file mode 100644
index 0000000..b870f79
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_122.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_123.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_123.png
new file mode 100644
index 0000000..1bc07f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_123.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_124.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_124.png
new file mode 100644
index 0000000..6933fca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_124.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_125.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_125.png
new file mode 100644
index 0000000..7f0eb8f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_125.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_126.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_126.png
new file mode 100644
index 0000000..720d376
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_126.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_127.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_127.png
new file mode 100644
index 0000000..f118db5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_127.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_128.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_128.png
new file mode 100644
index 0000000..12eefd6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_128.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_129.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_129.png
new file mode 100644
index 0000000..53143d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_129.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_13.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_13.png
new file mode 100644
index 0000000..d4e7e09
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_13.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_130.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_130.png
new file mode 100644
index 0000000..e4e757f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_130.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_131.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_131.png
new file mode 100644
index 0000000..a6d0b7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_131.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_132.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_132.png
new file mode 100644
index 0000000..f836299
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_132.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_133.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_133.png
new file mode 100644
index 0000000..851cc6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_133.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_134.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_134.png
new file mode 100644
index 0000000..772321d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_134.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_135.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_135.png
new file mode 100644
index 0000000..fd5f9ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_135.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_136.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_136.png
new file mode 100644
index 0000000..447c455
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_136.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_137.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_137.png
new file mode 100644
index 0000000..69938e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_137.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_138.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_138.png
new file mode 100644
index 0000000..9858214
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_138.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_139.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_139.png
new file mode 100644
index 0000000..82f781e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_139.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_14.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_14.png
new file mode 100644
index 0000000..fddd57d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_14.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_140.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_140.png
new file mode 100644
index 0000000..b01ed26
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_140.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_141.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_141.png
new file mode 100644
index 0000000..329fdd2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_141.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_142.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_142.png
new file mode 100644
index 0000000..bd8f8a0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_142.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_143.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_143.png
new file mode 100644
index 0000000..01a5dd2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_143.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_144.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_144.png
new file mode 100644
index 0000000..e95123b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_144.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_145.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_145.png
new file mode 100644
index 0000000..1d2ea3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_145.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_146.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_146.png
new file mode 100644
index 0000000..79f9933
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_146.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_147.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_147.png
new file mode 100644
index 0000000..b8cdad3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_147.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_148.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_148.png
new file mode 100644
index 0000000..e9c6196
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_148.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_149.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_149.png
new file mode 100644
index 0000000..49e7e49
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_149.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_15.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_15.png
new file mode 100644
index 0000000..15d38d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_15.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_150.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_150.png
new file mode 100644
index 0000000..c26f554
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_150.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_151.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_151.png
new file mode 100644
index 0000000..b4c9907
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_151.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_152.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_152.png
new file mode 100644
index 0000000..ca2ec08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_152.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_153.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_153.png
new file mode 100644
index 0000000..0cc9233
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_153.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_154.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_154.png
new file mode 100644
index 0000000..7d80659
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_154.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_155.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_155.png
new file mode 100644
index 0000000..e9282bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_155.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_156.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_156.png
new file mode 100644
index 0000000..317b998
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_156.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_157.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_157.png
new file mode 100644
index 0000000..51b8d94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_157.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_158.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_158.png
new file mode 100644
index 0000000..e4b54c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_158.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_159.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_159.png
new file mode 100644
index 0000000..dd62cb4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_159.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_16.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_16.png
new file mode 100644
index 0000000..390ba94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_16.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_160.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_160.png
new file mode 100644
index 0000000..cb993ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_160.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_161.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_161.png
new file mode 100644
index 0000000..ec1994c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_161.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_162.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_162.png
new file mode 100644
index 0000000..c822a15
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_162.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_163.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_163.png
new file mode 100644
index 0000000..0f39a7e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_163.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_164.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_164.png
new file mode 100644
index 0000000..80e24e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_164.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_165.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_165.png
new file mode 100644
index 0000000..917f379
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_165.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_166.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_166.png
new file mode 100644
index 0000000..bb84a3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_166.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_167.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_167.png
new file mode 100644
index 0000000..706b497
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_167.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_168.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_168.png
new file mode 100644
index 0000000..ad1c6a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_168.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_169.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_169.png
new file mode 100644
index 0000000..82a3cb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_169.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_17.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_17.png
new file mode 100644
index 0000000..87e4ecf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_17.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_170.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_170.png
new file mode 100644
index 0000000..613b27c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_170.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_171.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_171.png
new file mode 100644
index 0000000..4686471
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_171.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_172.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_172.png
new file mode 100644
index 0000000..53c6f91
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_172.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_173.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_173.png
new file mode 100644
index 0000000..d07399d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_173.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_174.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_174.png
new file mode 100644
index 0000000..6ff09e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_174.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_175.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_175.png
new file mode 100644
index 0000000..b2c7da7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_175.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_176.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_176.png
new file mode 100644
index 0000000..cdd9db1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_176.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_177.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_177.png
new file mode 100644
index 0000000..095ed38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_177.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_178.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_178.png
new file mode 100644
index 0000000..76806f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_178.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_179.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_179.png
new file mode 100644
index 0000000..fca37ee
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_179.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_18.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_18.png
new file mode 100644
index 0000000..514edaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_18.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_180.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_180.png
new file mode 100644
index 0000000..162fb29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_180.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_181.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_181.png
new file mode 100644
index 0000000..097f58a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_181.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_182.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_182.png
new file mode 100644
index 0000000..8e9463b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_182.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_183.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_183.png
new file mode 100644
index 0000000..3ca7f60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_183.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_184.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_184.png
new file mode 100644
index 0000000..d96aa7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_184.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_185.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_185.png
new file mode 100644
index 0000000..a0c1a1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_185.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_186.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_186.png
new file mode 100644
index 0000000..e44083d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_186.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_187.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_187.png
new file mode 100644
index 0000000..be3f2ba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_187.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_188.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_188.png
new file mode 100644
index 0000000..13d80e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_188.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_189.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_189.png
new file mode 100644
index 0000000..8638f76
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_189.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_19.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_19.png
new file mode 100644
index 0000000..a56d900
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_19.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_190.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_190.png
new file mode 100644
index 0000000..45fb970
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_190.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_191.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_191.png
new file mode 100644
index 0000000..175c721
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_191.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_192.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_192.png
new file mode 100644
index 0000000..7ca2dd0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_192.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_193.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_193.png
new file mode 100644
index 0000000..62602eb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_193.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_194.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_194.png
new file mode 100644
index 0000000..3447cf7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_194.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_195.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_195.png
new file mode 100644
index 0000000..849d4e1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_195.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_196.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_196.png
new file mode 100644
index 0000000..2c86e66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_196.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_197.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_197.png
new file mode 100644
index 0000000..eab092e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_197.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_198.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_198.png
new file mode 100644
index 0000000..ea3c601
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_198.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_199.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_199.png
new file mode 100644
index 0000000..0fd8d28
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_199.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_2.png
new file mode 100644
index 0000000..cdde274
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_20.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_20.png
new file mode 100644
index 0000000..714dd47
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_20.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_200.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_200.png
new file mode 100644
index 0000000..b094e7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_200.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_201.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_201.png
new file mode 100644
index 0000000..60c0660
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_201.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_202.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_202.png
new file mode 100644
index 0000000..2db9cda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_202.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_203.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_203.png
new file mode 100644
index 0000000..388ca94
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_203.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_204.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_204.png
new file mode 100644
index 0000000..0ad0d2a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_204.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_205.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_205.png
new file mode 100644
index 0000000..0800a77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_205.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_206.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_206.png
new file mode 100644
index 0000000..5b37b4f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_206.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_207.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_207.png
new file mode 100644
index 0000000..5b8e996
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_207.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_208.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_208.png
new file mode 100644
index 0000000..745ff14
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_208.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_209.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_209.png
new file mode 100644
index 0000000..709ae63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_209.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_21.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_21.png
new file mode 100644
index 0000000..4f71111
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_21.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_210.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_210.png
new file mode 100644
index 0000000..761da54
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_210.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_211.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_211.png
new file mode 100644
index 0000000..0e7ca89
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_211.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_212.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_212.png
new file mode 100644
index 0000000..b76005d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_212.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_213.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_213.png
new file mode 100644
index 0000000..25fd6ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_213.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_214.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_214.png
new file mode 100644
index 0000000..b392767
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_214.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_215.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_215.png
new file mode 100644
index 0000000..ee1209b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_215.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_216.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_216.png
new file mode 100644
index 0000000..af35f44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_216.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_217.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_217.png
new file mode 100644
index 0000000..b7f4e9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_217.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_218.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_218.png
new file mode 100644
index 0000000..1fbfb65
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_218.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_219.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_219.png
new file mode 100644
index 0000000..a72688a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_219.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_22.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_22.png
new file mode 100644
index 0000000..62bfcac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_22.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_220.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_220.png
new file mode 100644
index 0000000..da10d48
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_220.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_221.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_221.png
new file mode 100644
index 0000000..c25486f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_221.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_222.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_222.png
new file mode 100644
index 0000000..37d0be9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_222.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_223.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_223.png
new file mode 100644
index 0000000..52742f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_223.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_224.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_224.png
new file mode 100644
index 0000000..c663473
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_224.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_225.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_225.png
new file mode 100644
index 0000000..acb8416
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_225.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_226.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_226.png
new file mode 100644
index 0000000..eb01551
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_226.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_227.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_227.png
new file mode 100644
index 0000000..8b9bcaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_227.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_228.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_228.png
new file mode 100644
index 0000000..6e08407
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_228.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_229.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_229.png
new file mode 100644
index 0000000..3f2e10e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_229.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_23.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_23.png
new file mode 100644
index 0000000..8ca1088
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_23.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_230.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_230.png
new file mode 100644
index 0000000..f0bbdac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_230.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_231.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_231.png
new file mode 100644
index 0000000..fdaeb33
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_231.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_232.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_232.png
new file mode 100644
index 0000000..7f0df40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_232.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_233.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_233.png
new file mode 100644
index 0000000..63912fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_233.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_234.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_234.png
new file mode 100644
index 0000000..422b2e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_234.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_235.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_235.png
new file mode 100644
index 0000000..bea5966
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_235.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_236.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_236.png
new file mode 100644
index 0000000..115e40a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_236.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_237.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_237.png
new file mode 100644
index 0000000..df30435
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_237.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_238.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_238.png
new file mode 100644
index 0000000..5ddf576
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_238.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_239.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_239.png
new file mode 100644
index 0000000..2f6bec3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_239.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_24.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_24.png
new file mode 100644
index 0000000..cc8a2b3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_24.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_240.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_240.png
new file mode 100644
index 0000000..b61b120
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_240.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_241.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_241.png
new file mode 100644
index 0000000..2708a71
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_241.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_242.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_242.png
new file mode 100644
index 0000000..58237ab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_242.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_243.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_243.png
new file mode 100644
index 0000000..e92bfa3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_243.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_244.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_244.png
new file mode 100644
index 0000000..32f5010
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_244.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_245.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_245.png
new file mode 100644
index 0000000..5989025
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_245.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_246.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_246.png
new file mode 100644
index 0000000..55003e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_246.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_247.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_247.png
new file mode 100644
index 0000000..90a8880
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_247.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_248.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_248.png
new file mode 100644
index 0000000..32f2447
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_248.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_249.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_249.png
new file mode 100644
index 0000000..67eb314
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_249.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_25.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_25.png
new file mode 100644
index 0000000..271b816
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_25.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_250.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_250.png
new file mode 100644
index 0000000..a216d29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_250.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_251.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_251.png
new file mode 100644
index 0000000..1f50ff1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_251.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_252.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_252.png
new file mode 100644
index 0000000..cbda673
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_252.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_253.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_253.png
new file mode 100644
index 0000000..b477457
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_253.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_254.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_254.png
new file mode 100644
index 0000000..24265a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_254.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_255.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_255.png
new file mode 100644
index 0000000..3fd75be
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_255.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_256.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_256.png
new file mode 100644
index 0000000..a23f440
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_256.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_257.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_257.png
new file mode 100644
index 0000000..c3ab7db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_257.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_258.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_258.png
new file mode 100644
index 0000000..92290ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_258.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_259.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_259.png
new file mode 100644
index 0000000..20d8ba4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_259.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_26.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_26.png
new file mode 100644
index 0000000..0f105e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_26.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_260.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_260.png
new file mode 100644
index 0000000..fcc8f98
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_260.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_261.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_261.png
new file mode 100644
index 0000000..7c4fb2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_261.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_262.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_262.png
new file mode 100644
index 0000000..22d40d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_262.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_263.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_263.png
new file mode 100644
index 0000000..8f541f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_263.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_264.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_264.png
new file mode 100644
index 0000000..d6b9b6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_264.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_265.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_265.png
new file mode 100644
index 0000000..59a182b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_265.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_266.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_266.png
new file mode 100644
index 0000000..0561f35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_266.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_267.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_267.png
new file mode 100644
index 0000000..560fde4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_267.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_268.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_268.png
new file mode 100644
index 0000000..64e4625
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_268.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_269.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_269.png
new file mode 100644
index 0000000..5564b8c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_269.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_27.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_27.png
new file mode 100644
index 0000000..4e5699e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_27.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_270.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_270.png
new file mode 100644
index 0000000..bc162a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_270.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_271.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_271.png
new file mode 100644
index 0000000..b7a1173
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_271.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_272.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_272.png
new file mode 100644
index 0000000..10c3fae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_272.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_273.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_273.png
new file mode 100644
index 0000000..240fc12
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_273.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_274.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_274.png
new file mode 100644
index 0000000..a14eb9b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_274.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_275.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_275.png
new file mode 100644
index 0000000..f19c35c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_275.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_276.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_276.png
new file mode 100644
index 0000000..1608246
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_276.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_277.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_277.png
new file mode 100644
index 0000000..f9ba2ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_277.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_278.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_278.png
new file mode 100644
index 0000000..635f080
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_278.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_279.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_279.png
new file mode 100644
index 0000000..06300ba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_279.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_28.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_28.png
new file mode 100644
index 0000000..528edb5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_28.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_280.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_280.png
new file mode 100644
index 0000000..d8d4eba
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_280.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_281.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_281.png
new file mode 100644
index 0000000..8c4c30d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_281.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_282.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_282.png
new file mode 100644
index 0000000..b81a83d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_282.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_283.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_283.png
new file mode 100644
index 0000000..c8172b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_283.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_284.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_284.png
new file mode 100644
index 0000000..0a52ace
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_284.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_285.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_285.png
new file mode 100644
index 0000000..5c703a5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_285.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_286.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_286.png
new file mode 100644
index 0000000..d8cfc6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_286.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_287.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_287.png
new file mode 100644
index 0000000..1d2ce9f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_287.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_288.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_288.png
new file mode 100644
index 0000000..e5096c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_288.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_289.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_289.png
new file mode 100644
index 0000000..d00db0a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_289.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_29.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_29.png
new file mode 100644
index 0000000..fd1be6e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_29.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_290.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_290.png
new file mode 100644
index 0000000..01ab05e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_290.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_291.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_291.png
new file mode 100644
index 0000000..fadffc9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_291.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_292.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_292.png
new file mode 100644
index 0000000..573f798
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_292.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_293.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_293.png
new file mode 100644
index 0000000..b0d8da8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_293.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_294.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_294.png
new file mode 100644
index 0000000..8fa40ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_294.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_295.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_295.png
new file mode 100644
index 0000000..cbc19ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_295.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_296.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_296.png
new file mode 100644
index 0000000..e11e20f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_296.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_297.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_297.png
new file mode 100644
index 0000000..c632a86
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_297.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_298.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_298.png
new file mode 100644
index 0000000..8b28329
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_298.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_299.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_299.png
new file mode 100644
index 0000000..b30ba5a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_299.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_3.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_3.png
new file mode 100644
index 0000000..f76fa51
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_3.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_30.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_30.png
new file mode 100644
index 0000000..29265d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_30.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_300.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_300.png
new file mode 100644
index 0000000..f23049e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_300.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_301.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_301.png
new file mode 100644
index 0000000..def18aa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_301.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_302.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_302.png
new file mode 100644
index 0000000..39bcdd9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_302.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_303.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_303.png
new file mode 100644
index 0000000..911f1ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_303.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_304.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_304.png
new file mode 100644
index 0000000..7e447ec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_304.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_305.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_305.png
new file mode 100644
index 0000000..6589a2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_305.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_306.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_306.png
new file mode 100644
index 0000000..af284c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_306.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_307.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_307.png
new file mode 100644
index 0000000..afe273c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_307.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_308.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_308.png
new file mode 100644
index 0000000..a1bc95a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_308.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_309.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_309.png
new file mode 100644
index 0000000..ec66ea3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_309.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_31.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_31.png
new file mode 100644
index 0000000..7b5d91e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_31.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_310.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_310.png
new file mode 100644
index 0000000..e7aef5d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_310.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_311.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_311.png
new file mode 100644
index 0000000..db2b454
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_311.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_312.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_312.png
new file mode 100644
index 0000000..d877e8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_312.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_313.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_313.png
new file mode 100644
index 0000000..cf05e40
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_313.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_314.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_314.png
new file mode 100644
index 0000000..98d7666
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_314.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_315.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_315.png
new file mode 100644
index 0000000..c958c52
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_315.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_316.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_316.png
new file mode 100644
index 0000000..edc6c2e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_316.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_317.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_317.png
new file mode 100644
index 0000000..f7b70aa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_317.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_318.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_318.png
new file mode 100644
index 0000000..cbdd561
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_318.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_319.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_319.png
new file mode 100644
index 0000000..347f482
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_319.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_32.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_32.png
new file mode 100644
index 0000000..a9ce79e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_32.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_320.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_320.png
new file mode 100644
index 0000000..b411b5e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_320.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_321.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_321.png
new file mode 100644
index 0000000..6cdf157
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_321.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_322.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_322.png
new file mode 100644
index 0000000..e0f2e03
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_322.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_323.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_323.png
new file mode 100644
index 0000000..6565022
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_323.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_324.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_324.png
new file mode 100644
index 0000000..202f6d0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_324.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_325.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_325.png
new file mode 100644
index 0000000..3f56f1a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_325.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_326.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_326.png
new file mode 100644
index 0000000..491be3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_326.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_327.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_327.png
new file mode 100644
index 0000000..a59b910
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_327.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_328.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_328.png
new file mode 100644
index 0000000..9e2f972
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_328.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_329.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_329.png
new file mode 100644
index 0000000..b9b101f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_329.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_33.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_33.png
new file mode 100644
index 0000000..9f3de21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_33.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_330.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_330.png
new file mode 100644
index 0000000..725ef87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_330.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_331.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_331.png
new file mode 100644
index 0000000..ad4602a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_331.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_332.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_332.png
new file mode 100644
index 0000000..07a5def
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_332.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_333.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_333.png
new file mode 100644
index 0000000..863e8b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_333.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_334.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_334.png
new file mode 100644
index 0000000..ae18767
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_334.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_335.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_335.png
new file mode 100644
index 0000000..343f210
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_335.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_336.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_336.png
new file mode 100644
index 0000000..4b16cef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_336.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_337.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_337.png
new file mode 100644
index 0000000..f5b5d7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_337.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_338.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_338.png
new file mode 100644
index 0000000..b54aec2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_338.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_339.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_339.png
new file mode 100644
index 0000000..8f283a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_339.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_34.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_34.png
new file mode 100644
index 0000000..6246bcb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_34.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_340.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_340.png
new file mode 100644
index 0000000..700f91f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_340.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_341.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_341.png
new file mode 100644
index 0000000..7595799
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_341.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_342.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_342.png
new file mode 100644
index 0000000..e849d06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_342.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_343.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_343.png
new file mode 100644
index 0000000..3ab9d45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_343.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_344.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_344.png
new file mode 100644
index 0000000..7858974
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_344.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_345.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_345.png
new file mode 100644
index 0000000..9f9caed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_345.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_346.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_346.png
new file mode 100644
index 0000000..28b5427
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_346.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_347.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_347.png
new file mode 100644
index 0000000..c9bf8e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_347.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_348.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_348.png
new file mode 100644
index 0000000..95fe6c2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_348.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_349.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_349.png
new file mode 100644
index 0000000..7b58ff0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_349.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_35.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_35.png
new file mode 100644
index 0000000..61ba6c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_35.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_350.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_350.png
new file mode 100644
index 0000000..9c4b3bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_350.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_351.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_351.png
new file mode 100644
index 0000000..c896371
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_351.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_352.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_352.png
new file mode 100644
index 0000000..08ee615
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_352.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_353.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_353.png
new file mode 100644
index 0000000..ede64f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_353.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_354.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_354.png
new file mode 100644
index 0000000..25c3b87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_354.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_355.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_355.png
new file mode 100644
index 0000000..38f6488
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_355.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_356.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_356.png
new file mode 100644
index 0000000..f8e350a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_356.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_357.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_357.png
new file mode 100644
index 0000000..e0f5268
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_357.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_358.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_358.png
new file mode 100644
index 0000000..3a976c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_358.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_359.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_359.png
new file mode 100644
index 0000000..9294113
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_359.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_36.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_36.png
new file mode 100644
index 0000000..206d6d0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_36.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_360.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_360.png
new file mode 100644
index 0000000..9f4df66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_360.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_361.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_361.png
new file mode 100644
index 0000000..db29524
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_361.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_362.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_362.png
new file mode 100644
index 0000000..18c40ca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_362.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_363.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_363.png
new file mode 100644
index 0000000..c6a0edc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_363.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_364.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_364.png
new file mode 100644
index 0000000..33e73c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_364.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_365.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_365.png
new file mode 100644
index 0000000..96ecc78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_365.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_366.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_366.png
new file mode 100644
index 0000000..2d61ed2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_366.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_367.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_367.png
new file mode 100644
index 0000000..ee16302
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_367.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_368.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_368.png
new file mode 100644
index 0000000..6ae9d9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_368.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_369.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_369.png
new file mode 100644
index 0000000..147b63d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_369.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_37.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_37.png
new file mode 100644
index 0000000..fc30754
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_37.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_370.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_370.png
new file mode 100644
index 0000000..44d0086
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_370.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_371.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_371.png
new file mode 100644
index 0000000..28ef221
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_371.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_372.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_372.png
new file mode 100644
index 0000000..e1cacfe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_372.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_373.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_373.png
new file mode 100644
index 0000000..128448a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_373.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_374.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_374.png
new file mode 100644
index 0000000..d86290a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_374.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_375.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_375.png
new file mode 100644
index 0000000..496b761
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_375.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_376.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_376.png
new file mode 100644
index 0000000..10e159a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_376.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_377.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_377.png
new file mode 100644
index 0000000..60555f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_377.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_378.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_378.png
new file mode 100644
index 0000000..19483af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_378.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_379.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_379.png
new file mode 100644
index 0000000..377ce35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_379.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_38.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_38.png
new file mode 100644
index 0000000..59f2654
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_38.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_380.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_380.png
new file mode 100644
index 0000000..a37e0a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_380.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_381.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_381.png
new file mode 100644
index 0000000..7ac8d5c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_381.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_382.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_382.png
new file mode 100644
index 0000000..57bbd0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_382.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_383.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_383.png
new file mode 100644
index 0000000..7d204fa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_383.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_384.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_384.png
new file mode 100644
index 0000000..9ca813a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_384.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_385.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_385.png
new file mode 100644
index 0000000..0028a3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_385.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_386.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_386.png
new file mode 100644
index 0000000..f567d6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_386.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_387.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_387.png
new file mode 100644
index 0000000..0edf974
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_387.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_388.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_388.png
new file mode 100644
index 0000000..f7c581e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_388.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_389.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_389.png
new file mode 100644
index 0000000..9cfd3d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_389.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_39.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_39.png
new file mode 100644
index 0000000..5dc7be5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_39.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_390.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_390.png
new file mode 100644
index 0000000..4849fb4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_390.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_391.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_391.png
new file mode 100644
index 0000000..b934f2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_391.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_392.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_392.png
new file mode 100644
index 0000000..173a35f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_392.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_393.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_393.png
new file mode 100644
index 0000000..9ff49b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_393.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_394.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_394.png
new file mode 100644
index 0000000..92aa49e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_394.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_395.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_395.png
new file mode 100644
index 0000000..f209dc2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_395.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_396.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_396.png
new file mode 100644
index 0000000..b7a80e6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_396.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_397.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_397.png
new file mode 100644
index 0000000..89aa3fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_397.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_398.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_398.png
new file mode 100644
index 0000000..730a90a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_398.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_399.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_399.png
new file mode 100644
index 0000000..44c3459
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_399.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_4.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_4.png
new file mode 100644
index 0000000..8c3b4a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_4.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_40.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_40.png
new file mode 100644
index 0000000..0a8d69a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_40.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_400.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_400.png
new file mode 100644
index 0000000..3a32f35
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_400.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_401.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_401.png
new file mode 100644
index 0000000..7a46d3b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_401.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_402.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_402.png
new file mode 100644
index 0000000..ad277cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_402.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_403.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_403.png
new file mode 100644
index 0000000..ab61ca5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_403.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_404.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_404.png
new file mode 100644
index 0000000..7da8680
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_404.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_405.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_405.png
new file mode 100644
index 0000000..5807ea4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_405.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_406.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_406.png
new file mode 100644
index 0000000..ff6b589
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_406.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_407.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_407.png
new file mode 100644
index 0000000..a846242
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_407.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_408.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_408.png
new file mode 100644
index 0000000..b74ce44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_408.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_409.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_409.png
new file mode 100644
index 0000000..d53454a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_409.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_41.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_41.png
new file mode 100644
index 0000000..4eaff8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_41.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_410.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_410.png
new file mode 100644
index 0000000..4a38b06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_410.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_411.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_411.png
new file mode 100644
index 0000000..9e4bb26
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_411.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_412.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_412.png
new file mode 100644
index 0000000..cb7a4b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_412.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_413.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_413.png
new file mode 100644
index 0000000..f4bfd53
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_413.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_414.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_414.png
new file mode 100644
index 0000000..8024259
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_414.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_415.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_415.png
new file mode 100644
index 0000000..785f2a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_415.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_416.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_416.png
new file mode 100644
index 0000000..ffb3a46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_416.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_417.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_417.png
new file mode 100644
index 0000000..52bb77f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_417.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_418.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_418.png
new file mode 100644
index 0000000..91fd206
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_418.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_419.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_419.png
new file mode 100644
index 0000000..b891804
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_419.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_42.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_42.png
new file mode 100644
index 0000000..16dc114
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_42.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_420.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_420.png
new file mode 100644
index 0000000..603b1d4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_420.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_421.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_421.png
new file mode 100644
index 0000000..a1d0daa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_421.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_422.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_422.png
new file mode 100644
index 0000000..d1199fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_422.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_423.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_423.png
new file mode 100644
index 0000000..83572ce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_423.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_424.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_424.png
new file mode 100644
index 0000000..b589e9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_424.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_425.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_425.png
new file mode 100644
index 0000000..a7533c9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_425.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_426.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_426.png
new file mode 100644
index 0000000..8583a25
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_426.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_427.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_427.png
new file mode 100644
index 0000000..194e3d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_427.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_428.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_428.png
new file mode 100644
index 0000000..d85f9df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_428.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_429.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_429.png
new file mode 100644
index 0000000..cd85fe3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_429.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_43.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_43.png
new file mode 100644
index 0000000..107aa29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_43.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_430.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_430.png
new file mode 100644
index 0000000..a3e7772
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_430.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_431.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_431.png
new file mode 100644
index 0000000..6440a60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_431.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_432.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_432.png
new file mode 100644
index 0000000..89f082c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_432.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_433.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_433.png
new file mode 100644
index 0000000..07c1098
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_433.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_434.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_434.png
new file mode 100644
index 0000000..b21b5cc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_434.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_435.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_435.png
new file mode 100644
index 0000000..794d641
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_435.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_436.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_436.png
new file mode 100644
index 0000000..9cd3269
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_436.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_437.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_437.png
new file mode 100644
index 0000000..72892e8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_437.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_438.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_438.png
new file mode 100644
index 0000000..b1e53fa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_438.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_439.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_439.png
new file mode 100644
index 0000000..9cd3da9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_439.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_44.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_44.png
new file mode 100644
index 0000000..9cbf5e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_44.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_440.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_440.png
new file mode 100644
index 0000000..edd316c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_440.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_441.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_441.png
new file mode 100644
index 0000000..82fc22a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_441.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_442.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_442.png
new file mode 100644
index 0000000..c0a7123
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_442.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_443.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_443.png
new file mode 100644
index 0000000..01bc6ff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_443.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_444.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_444.png
new file mode 100644
index 0000000..1715230
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_444.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_445.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_445.png
new file mode 100644
index 0000000..276af8d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_445.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_446.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_446.png
new file mode 100644
index 0000000..daf7e7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_446.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_447.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_447.png
new file mode 100644
index 0000000..d1e6858
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_447.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_448.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_448.png
new file mode 100644
index 0000000..cc1e355
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_448.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_449.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_449.png
new file mode 100644
index 0000000..6dc36f7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_449.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_45.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_45.png
new file mode 100644
index 0000000..d1a5dce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_45.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_450.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_450.png
new file mode 100644
index 0000000..6263ab0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_450.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_451.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_451.png
new file mode 100644
index 0000000..aa5f999
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_451.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_452.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_452.png
new file mode 100644
index 0000000..f7a3b74
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_452.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_453.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_453.png
new file mode 100644
index 0000000..79216b3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_453.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_454.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_454.png
new file mode 100644
index 0000000..74c4aa9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_454.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_455.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_455.png
new file mode 100644
index 0000000..7777af3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_455.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_456.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_456.png
new file mode 100644
index 0000000..75aee44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_456.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_457.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_457.png
new file mode 100644
index 0000000..15bbc64
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_457.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_458.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_458.png
new file mode 100644
index 0000000..a9c3a67
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_458.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_459.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_459.png
new file mode 100644
index 0000000..c9b3c1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_459.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_46.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_46.png
new file mode 100644
index 0000000..43e79f6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_46.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_460.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_460.png
new file mode 100644
index 0000000..7e52be8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_460.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_461.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_461.png
new file mode 100644
index 0000000..bf88a4a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_461.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_462.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_462.png
new file mode 100644
index 0000000..92ed52b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_462.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_463.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_463.png
new file mode 100644
index 0000000..1bab5bc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_463.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_464.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_464.png
new file mode 100644
index 0000000..c1dc992
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_464.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_465.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_465.png
new file mode 100644
index 0000000..02ee83a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_465.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_466.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_466.png
new file mode 100644
index 0000000..759ae05
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_466.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_467.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_467.png
new file mode 100644
index 0000000..730c3c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_467.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_468.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_468.png
new file mode 100644
index 0000000..ac596a9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_468.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_469.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_469.png
new file mode 100644
index 0000000..1ed940b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_469.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_47.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_47.png
new file mode 100644
index 0000000..2d3b1a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_47.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_470.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_470.png
new file mode 100644
index 0000000..d847a0f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_470.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_471.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_471.png
new file mode 100644
index 0000000..a04d79c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_471.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_472.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_472.png
new file mode 100644
index 0000000..cc6d160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_472.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_473.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_473.png
new file mode 100644
index 0000000..2af8949
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_473.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_474.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_474.png
new file mode 100644
index 0000000..e1fad41
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_474.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_475.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_475.png
new file mode 100644
index 0000000..523a192
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_475.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_476.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_476.png
new file mode 100644
index 0000000..f1c805f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_476.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_477.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_477.png
new file mode 100644
index 0000000..22bbf8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_477.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_478.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_478.png
new file mode 100644
index 0000000..25b34bb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_478.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_479.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_479.png
new file mode 100644
index 0000000..e4d96df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_479.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_48.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_48.png
new file mode 100644
index 0000000..858562f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_48.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_480.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_480.png
new file mode 100644
index 0000000..d22c43f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_480.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_481.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_481.png
new file mode 100644
index 0000000..43b4de5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_481.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_482.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_482.png
new file mode 100644
index 0000000..24dcb39
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_482.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_483.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_483.png
new file mode 100644
index 0000000..f6fb25a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_483.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_484.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_484.png
new file mode 100644
index 0000000..1bc8983
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_484.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_485.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_485.png
new file mode 100644
index 0000000..1034b12
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_485.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_486.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_486.png
new file mode 100644
index 0000000..b7da245
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_486.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_487.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_487.png
new file mode 100644
index 0000000..f0b81d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_487.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_488.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_488.png
new file mode 100644
index 0000000..128390a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_488.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_489.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_489.png
new file mode 100644
index 0000000..c111e76
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_489.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_49.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_49.png
new file mode 100644
index 0000000..8f3794f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_49.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_490.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_490.png
new file mode 100644
index 0000000..f38b750
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_490.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_491.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_491.png
new file mode 100644
index 0000000..516d5ac
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_491.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_492.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_492.png
new file mode 100644
index 0000000..8729b5b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_492.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_493.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_493.png
new file mode 100644
index 0000000..95f8237
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_493.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_494.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_494.png
new file mode 100644
index 0000000..3e7a335
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_494.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_495.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_495.png
new file mode 100644
index 0000000..473b832
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_495.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_496.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_496.png
new file mode 100644
index 0000000..224250f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_496.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_497.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_497.png
new file mode 100644
index 0000000..7b9c9b4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_497.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_498.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_498.png
new file mode 100644
index 0000000..55a0dff
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_498.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_499.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_499.png
new file mode 100644
index 0000000..8e06ac7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_499.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_5.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_5.png
new file mode 100644
index 0000000..25b7e6a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_5.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_50.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_50.png
new file mode 100644
index 0000000..395f6cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_50.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_500.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_500.png
new file mode 100644
index 0000000..5e883b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_500.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_501.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_501.png
new file mode 100644
index 0000000..bfc4d9b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_501.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_502.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_502.png
new file mode 100644
index 0000000..edc3eb8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_502.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_503.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_503.png
new file mode 100644
index 0000000..631df1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_503.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_504.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_504.png
new file mode 100644
index 0000000..4b49e7b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_504.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_505.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_505.png
new file mode 100644
index 0000000..eca3377
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_505.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_506.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_506.png
new file mode 100644
index 0000000..62f478c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_506.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_507.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_507.png
new file mode 100644
index 0000000..4299fc2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_507.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_508.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_508.png
new file mode 100644
index 0000000..847f654
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_508.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_509.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_509.png
new file mode 100644
index 0000000..41c11b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_509.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_51.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_51.png
new file mode 100644
index 0000000..c7d693d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_51.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_510.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_510.png
new file mode 100644
index 0000000..fbf259d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_510.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_511.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_511.png
new file mode 100644
index 0000000..b69cb37
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_511.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_512.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_512.png
new file mode 100644
index 0000000..bdee5c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_512.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_513.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_513.png
new file mode 100644
index 0000000..bcc710b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_513.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_514.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_514.png
new file mode 100644
index 0000000..a87926f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_514.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_515.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_515.png
new file mode 100644
index 0000000..3b430f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_515.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_516.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_516.png
new file mode 100644
index 0000000..1327e59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_516.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_517.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_517.png
new file mode 100644
index 0000000..d2ff1c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_517.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_518.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_518.png
new file mode 100644
index 0000000..2bd9953
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_518.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_519.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_519.png
new file mode 100644
index 0000000..3ff7158
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_519.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_52.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_52.png
new file mode 100644
index 0000000..1b3fc11
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_52.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_520.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_520.png
new file mode 100644
index 0000000..ba317a3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_520.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_521.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_521.png
new file mode 100644
index 0000000..0feec08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_521.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_522.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_522.png
new file mode 100644
index 0000000..417fce6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_522.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_523.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_523.png
new file mode 100644
index 0000000..0d4a1b7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_523.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_524.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_524.png
new file mode 100644
index 0000000..0ae6227
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_524.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_525.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_525.png
new file mode 100644
index 0000000..00b6bbb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_525.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_526.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_526.png
new file mode 100644
index 0000000..49ea27e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_526.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_527.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_527.png
new file mode 100644
index 0000000..e95b646
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_527.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_528.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_528.png
new file mode 100644
index 0000000..4f2be0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_528.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_529.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_529.png
new file mode 100644
index 0000000..cbffade
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_529.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_53.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_53.png
new file mode 100644
index 0000000..78c5baa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_53.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_530.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_530.png
new file mode 100644
index 0000000..8956fdb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_530.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_531.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_531.png
new file mode 100644
index 0000000..dae2f3d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_531.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_532.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_532.png
new file mode 100644
index 0000000..0f8917d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_532.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_533.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_533.png
new file mode 100644
index 0000000..53e4751
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_533.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_534.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_534.png
new file mode 100644
index 0000000..48ed6a3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_534.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_535.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_535.png
new file mode 100644
index 0000000..14eb5f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_535.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_536.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_536.png
new file mode 100644
index 0000000..f4566ca
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_536.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_537.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_537.png
new file mode 100644
index 0000000..43c42e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_537.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_538.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_538.png
new file mode 100644
index 0000000..1f34d31
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_538.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_539.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_539.png
new file mode 100644
index 0000000..006fe6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_539.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_54.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_54.png
new file mode 100644
index 0000000..87e67dd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_54.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_540.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_540.png
new file mode 100644
index 0000000..5c3788e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_540.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_541.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_541.png
new file mode 100644
index 0000000..3fbae38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_541.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_542.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_542.png
new file mode 100644
index 0000000..14a02ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_542.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_543.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_543.png
new file mode 100644
index 0000000..cd13734
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_543.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_544.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_544.png
new file mode 100644
index 0000000..598d399
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_544.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_545.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_545.png
new file mode 100644
index 0000000..ef59452
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_545.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_546.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_546.png
new file mode 100644
index 0000000..fc71e87
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_546.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_547.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_547.png
new file mode 100644
index 0000000..1fb1f9a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_547.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_548.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_548.png
new file mode 100644
index 0000000..67da888
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_548.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_549.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_549.png
new file mode 100644
index 0000000..fdc51b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_549.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_55.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_55.png
new file mode 100644
index 0000000..c086a21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_55.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_550.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_550.png
new file mode 100644
index 0000000..160574f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_550.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_551.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_551.png
new file mode 100644
index 0000000..f4f3656
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_551.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_552.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_552.png
new file mode 100644
index 0000000..5ff7c83
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_552.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_553.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_553.png
new file mode 100644
index 0000000..6377bec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_553.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_554.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_554.png
new file mode 100644
index 0000000..6f7ccb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_554.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_555.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_555.png
new file mode 100644
index 0000000..82538ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_555.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_556.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_556.png
new file mode 100644
index 0000000..cff7fe5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_556.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_557.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_557.png
new file mode 100644
index 0000000..2c295bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_557.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_558.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_558.png
new file mode 100644
index 0000000..0a88b00
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_558.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_559.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_559.png
new file mode 100644
index 0000000..9f66797
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_559.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_56.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_56.png
new file mode 100644
index 0000000..f021498
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_56.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_560.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_560.png
new file mode 100644
index 0000000..8b2f605
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_560.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_561.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_561.png
new file mode 100644
index 0000000..424dd2a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_561.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_562.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_562.png
new file mode 100644
index 0000000..c10a56c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_562.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_563.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_563.png
new file mode 100644
index 0000000..37a2833
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_563.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_564.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_564.png
new file mode 100644
index 0000000..8246212
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_564.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_565.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_565.png
new file mode 100644
index 0000000..6253362
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_565.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_566.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_566.png
new file mode 100644
index 0000000..0f26af2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_566.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_567.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_567.png
new file mode 100644
index 0000000..d678cd3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_567.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_568.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_568.png
new file mode 100644
index 0000000..eeeea05
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_568.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_569.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_569.png
new file mode 100644
index 0000000..ba2f8b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_569.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_57.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_57.png
new file mode 100644
index 0000000..4729e3f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_57.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_570.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_570.png
new file mode 100644
index 0000000..aa1817c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_570.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_571.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_571.png
new file mode 100644
index 0000000..9d03f91
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_571.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_572.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_572.png
new file mode 100644
index 0000000..53d45cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_572.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_573.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_573.png
new file mode 100644
index 0000000..9e9f718
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_573.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_574.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_574.png
new file mode 100644
index 0000000..cd19697
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_574.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_575.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_575.png
new file mode 100644
index 0000000..8a23b9c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_575.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_576.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_576.png
new file mode 100644
index 0000000..b714798
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_576.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_577.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_577.png
new file mode 100644
index 0000000..e6227df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_577.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_578.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_578.png
new file mode 100644
index 0000000..92cdb8c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_578.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_579.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_579.png
new file mode 100644
index 0000000..f7e3075
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_579.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_58.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_58.png
new file mode 100644
index 0000000..cf48f3c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_58.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_580.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_580.png
new file mode 100644
index 0000000..858337c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_580.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_581.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_581.png
new file mode 100644
index 0000000..b641d6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_581.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_582.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_582.png
new file mode 100644
index 0000000..3b71897
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_582.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_583.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_583.png
new file mode 100644
index 0000000..f7d078b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_583.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_584.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_584.png
new file mode 100644
index 0000000..3e694a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_584.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_585.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_585.png
new file mode 100644
index 0000000..fd1fde5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_585.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_586.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_586.png
new file mode 100644
index 0000000..e4f20a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_586.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_587.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_587.png
new file mode 100644
index 0000000..297a7ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_587.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_588.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_588.png
new file mode 100644
index 0000000..a66f0a2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_588.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_589.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_589.png
new file mode 100644
index 0000000..9133c81
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_589.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_59.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_59.png
new file mode 100644
index 0000000..01790fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_59.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_590.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_590.png
new file mode 100644
index 0000000..a74edaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_590.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_591.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_591.png
new file mode 100644
index 0000000..1d333c7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_591.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_592.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_592.png
new file mode 100644
index 0000000..66e79e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_592.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_593.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_593.png
new file mode 100644
index 0000000..c8da488
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_593.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_594.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_594.png
new file mode 100644
index 0000000..afadabb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_594.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_595.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_595.png
new file mode 100644
index 0000000..880d6cb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_595.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_596.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_596.png
new file mode 100644
index 0000000..cba3aaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_596.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_597.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_597.png
new file mode 100644
index 0000000..20964da
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_597.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_598.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_598.png
new file mode 100644
index 0000000..6b8435f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_598.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_599.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_599.png
new file mode 100644
index 0000000..cc6136c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_599.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_6.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_6.png
new file mode 100644
index 0000000..6fcf944
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_6.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_60.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_60.png
new file mode 100644
index 0000000..770e88c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_60.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_600.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_600.png
new file mode 100644
index 0000000..89b39b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_600.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_601.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_601.png
new file mode 100644
index 0000000..b2d5326
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_601.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_602.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_602.png
new file mode 100644
index 0000000..f2aac09
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_602.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_603.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_603.png
new file mode 100644
index 0000000..2d26f53
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_603.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_604.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_604.png
new file mode 100644
index 0000000..21fc7f1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_604.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_605.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_605.png
new file mode 100644
index 0000000..b213640
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_605.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_606.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_606.png
new file mode 100644
index 0000000..e44083a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_606.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_607.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_607.png
new file mode 100644
index 0000000..1323af6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_607.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_608.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_608.png
new file mode 100644
index 0000000..e19bb6f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_608.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_609.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_609.png
new file mode 100644
index 0000000..5ff811e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_609.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_61.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_61.png
new file mode 100644
index 0000000..27c0ec3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_61.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_610.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_610.png
new file mode 100644
index 0000000..04ec700
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_610.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_611.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_611.png
new file mode 100644
index 0000000..b1383c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_611.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_612.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_612.png
new file mode 100644
index 0000000..94743d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_612.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_613.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_613.png
new file mode 100644
index 0000000..55f7fbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_613.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_614.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_614.png
new file mode 100644
index 0000000..dff3323
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_614.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_615.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_615.png
new file mode 100644
index 0000000..d97cab3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_615.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_616.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_616.png
new file mode 100644
index 0000000..ad0e431
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_616.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_617.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_617.png
new file mode 100644
index 0000000..c4d69b2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_617.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_618.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_618.png
new file mode 100644
index 0000000..464db0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_618.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_619.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_619.png
new file mode 100644
index 0000000..d6c61d3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_619.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_62.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_62.png
new file mode 100644
index 0000000..38ff066
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_62.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_620.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_620.png
new file mode 100644
index 0000000..78e8106
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_620.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_621.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_621.png
new file mode 100644
index 0000000..5bd68e4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_621.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_622.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_622.png
new file mode 100644
index 0000000..45c2d61
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_622.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_623.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_623.png
new file mode 100644
index 0000000..d0d946a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_623.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_624.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_624.png
new file mode 100644
index 0000000..d5e972a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_624.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_625.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_625.png
new file mode 100644
index 0000000..9c69144
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_625.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_626.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_626.png
new file mode 100644
index 0000000..b3887d1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_626.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_627.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_627.png
new file mode 100644
index 0000000..11607e7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_627.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_628.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_628.png
new file mode 100644
index 0000000..5b6346d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_628.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_629.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_629.png
new file mode 100644
index 0000000..a5213b8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_629.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_63.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_63.png
new file mode 100644
index 0000000..43f7570
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_63.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_630.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_630.png
new file mode 100644
index 0000000..50932db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_630.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_631.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_631.png
new file mode 100644
index 0000000..19ee12c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_631.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_632.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_632.png
new file mode 100644
index 0000000..52b73fc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_632.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_633.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_633.png
new file mode 100644
index 0000000..5496471
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_633.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_634.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_634.png
new file mode 100644
index 0000000..b8d8d77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_634.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_635.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_635.png
new file mode 100644
index 0000000..43dc231
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_635.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_636.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_636.png
new file mode 100644
index 0000000..ae30b1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_636.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_637.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_637.png
new file mode 100644
index 0000000..f22eca6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_637.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_638.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_638.png
new file mode 100644
index 0000000..754cd2d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_638.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_639.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_639.png
new file mode 100644
index 0000000..1d69d59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_639.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_64.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_64.png
new file mode 100644
index 0000000..6661abd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_64.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_640.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_640.png
new file mode 100644
index 0000000..be6d7e9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_640.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_641.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_641.png
new file mode 100644
index 0000000..9b8b218
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_641.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_642.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_642.png
new file mode 100644
index 0000000..bcfb633
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_642.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_643.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_643.png
new file mode 100644
index 0000000..7353ca5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_643.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_644.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_644.png
new file mode 100644
index 0000000..607ee4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_644.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_645.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_645.png
new file mode 100644
index 0000000..d54665f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_645.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_646.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_646.png
new file mode 100644
index 0000000..bbb5909
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_646.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_647.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_647.png
new file mode 100644
index 0000000..182be1f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_647.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_648.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_648.png
new file mode 100644
index 0000000..8803eaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_648.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_649.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_649.png
new file mode 100644
index 0000000..e0550a5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_649.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_65.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_65.png
new file mode 100644
index 0000000..f746fe8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_65.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_650.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_650.png
new file mode 100644
index 0000000..8dd6b17
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_650.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_651.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_651.png
new file mode 100644
index 0000000..5c6b048
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_651.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_652.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_652.png
new file mode 100644
index 0000000..22efe46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_652.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_653.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_653.png
new file mode 100644
index 0000000..dbe670d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_653.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_654.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_654.png
new file mode 100644
index 0000000..ab95435
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_654.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_655.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_655.png
new file mode 100644
index 0000000..89775b0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_655.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_656.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_656.png
new file mode 100644
index 0000000..5836842
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_656.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_657.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_657.png
new file mode 100644
index 0000000..435d080
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_657.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_658.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_658.png
new file mode 100644
index 0000000..5fbf6f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_658.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_659.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_659.png
new file mode 100644
index 0000000..a2f111d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_659.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_66.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_66.png
new file mode 100644
index 0000000..571042b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_66.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_660.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_660.png
new file mode 100644
index 0000000..c8d9a43
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_660.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_661.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_661.png
new file mode 100644
index 0000000..dccc583
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_661.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_662.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_662.png
new file mode 100644
index 0000000..a1e9cc8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_662.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_663.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_663.png
new file mode 100644
index 0000000..9607f0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_663.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_664.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_664.png
new file mode 100644
index 0000000..c3496af
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_664.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_665.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_665.png
new file mode 100644
index 0000000..9456ce3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_665.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_666.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_666.png
new file mode 100644
index 0000000..66aa8ce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_666.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_667.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_667.png
new file mode 100644
index 0000000..0171cc0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_667.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_668.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_668.png
new file mode 100644
index 0000000..d500701
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_668.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_669.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_669.png
new file mode 100644
index 0000000..ee861a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_669.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_67.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_67.png
new file mode 100644
index 0000000..d608799
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_67.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_670.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_670.png
new file mode 100644
index 0000000..20c885d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_670.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_671.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_671.png
new file mode 100644
index 0000000..6ad82e6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_671.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_672.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_672.png
new file mode 100644
index 0000000..891f0bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_672.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_673.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_673.png
new file mode 100644
index 0000000..f4e21fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_673.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_674.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_674.png
new file mode 100644
index 0000000..953ecd7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_674.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_675.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_675.png
new file mode 100644
index 0000000..2afff39
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_675.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_676.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_676.png
new file mode 100644
index 0000000..3d23977
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_676.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_677.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_677.png
new file mode 100644
index 0000000..f81e62f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_677.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_678.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_678.png
new file mode 100644
index 0000000..957ec4b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_678.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_679.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_679.png
new file mode 100644
index 0000000..7892dbb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_679.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_68.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_68.png
new file mode 100644
index 0000000..62da4c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_68.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_680.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_680.png
new file mode 100644
index 0000000..c728d6e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_680.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_681.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_681.png
new file mode 100644
index 0000000..a71cf46
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_681.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_682.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_682.png
new file mode 100644
index 0000000..eabb015
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_682.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_683.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_683.png
new file mode 100644
index 0000000..8090b29
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_683.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_684.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_684.png
new file mode 100644
index 0000000..a6c9ffe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_684.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_685.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_685.png
new file mode 100644
index 0000000..f9e3f19
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_685.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_686.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_686.png
new file mode 100644
index 0000000..ab47e16
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_686.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_687.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_687.png
new file mode 100644
index 0000000..10035f9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_687.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_688.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_688.png
new file mode 100644
index 0000000..bcae4df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_688.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_689.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_689.png
new file mode 100644
index 0000000..dd5b521
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_689.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_69.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_69.png
new file mode 100644
index 0000000..6fea73d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_69.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_690.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_690.png
new file mode 100644
index 0000000..abde0c9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_690.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_691.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_691.png
new file mode 100644
index 0000000..4ac3160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_691.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_692.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_692.png
new file mode 100644
index 0000000..4ceec7a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_692.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_693.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_693.png
new file mode 100644
index 0000000..28a0377
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_693.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_694.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_694.png
new file mode 100644
index 0000000..1eb208c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_694.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_695.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_695.png
new file mode 100644
index 0000000..5171419
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_695.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_696.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_696.png
new file mode 100644
index 0000000..877d797
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_696.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_697.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_697.png
new file mode 100644
index 0000000..99ea83d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_697.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_698.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_698.png
new file mode 100644
index 0000000..7bfb160
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_698.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_699.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_699.png
new file mode 100644
index 0000000..cd3c3ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_699.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_7.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_7.png
new file mode 100644
index 0000000..603f5f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_7.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_70.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_70.png
new file mode 100644
index 0000000..7f93703
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_70.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_700.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_700.png
new file mode 100644
index 0000000..96eb34a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_700.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_701.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_701.png
new file mode 100644
index 0000000..daa8870
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_701.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_702.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_702.png
new file mode 100644
index 0000000..273ec7d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_702.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_703.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_703.png
new file mode 100644
index 0000000..a5c8828
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_703.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_704.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_704.png
new file mode 100644
index 0000000..cb96429
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_704.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_705.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_705.png
new file mode 100644
index 0000000..85ca2eb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_705.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_706.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_706.png
new file mode 100644
index 0000000..aedabf4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_706.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_707.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_707.png
new file mode 100644
index 0000000..65c0fbc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_707.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_708.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_708.png
new file mode 100644
index 0000000..4e7a93e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_708.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_709.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_709.png
new file mode 100644
index 0000000..c0826c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_709.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_71.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_71.png
new file mode 100644
index 0000000..4b1e8bb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_71.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_710.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_710.png
new file mode 100644
index 0000000..895c5c6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_710.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_711.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_711.png
new file mode 100644
index 0000000..9254952
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_711.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_712.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_712.png
new file mode 100644
index 0000000..1c1a328
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_712.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_713.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_713.png
new file mode 100644
index 0000000..ceeb401
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_713.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_714.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_714.png
new file mode 100644
index 0000000..85d9ba3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_714.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_715.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_715.png
new file mode 100644
index 0000000..b981ee5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_715.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_716.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_716.png
new file mode 100644
index 0000000..f03e458
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_716.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_717.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_717.png
new file mode 100644
index 0000000..a8d7711
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_717.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_718.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_718.png
new file mode 100644
index 0000000..f81ce6c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_718.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_719.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_719.png
new file mode 100644
index 0000000..55e5cf2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_719.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_72.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_72.png
new file mode 100644
index 0000000..242cc2e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_72.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_720.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_720.png
new file mode 100644
index 0000000..f6dbfaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_720.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_721.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_721.png
new file mode 100644
index 0000000..45eb028
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_721.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_722.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_722.png
new file mode 100644
index 0000000..f17ea70
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_722.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_723.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_723.png
new file mode 100644
index 0000000..0d1fefa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_723.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_724.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_724.png
new file mode 100644
index 0000000..a5063db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_724.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_725.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_725.png
new file mode 100644
index 0000000..ab26809
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_725.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_726.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_726.png
new file mode 100644
index 0000000..b0e8cbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_726.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_727.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_727.png
new file mode 100644
index 0000000..75b1151
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_727.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_728.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_728.png
new file mode 100644
index 0000000..6d80030
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_728.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_729.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_729.png
new file mode 100644
index 0000000..a5f0c45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_729.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_73.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_73.png
new file mode 100644
index 0000000..6dc6bad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_73.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_730.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_730.png
new file mode 100644
index 0000000..eea680f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_730.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_731.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_731.png
new file mode 100644
index 0000000..45779f9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_731.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_732.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_732.png
new file mode 100644
index 0000000..5199741
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_732.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_733.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_733.png
new file mode 100644
index 0000000..3177f9a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_733.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_734.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_734.png
new file mode 100644
index 0000000..9c6d91a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_734.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_735.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_735.png
new file mode 100644
index 0000000..422d13c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_735.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_736.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_736.png
new file mode 100644
index 0000000..41b2b4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_736.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_737.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_737.png
new file mode 100644
index 0000000..b0b2d21
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_737.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_738.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_738.png
new file mode 100644
index 0000000..56e1937
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_738.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_739.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_739.png
new file mode 100644
index 0000000..da8c293
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_739.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_74.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_74.png
new file mode 100644
index 0000000..9791d57
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_74.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_740.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_740.png
new file mode 100644
index 0000000..10747ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_740.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_741.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_741.png
new file mode 100644
index 0000000..0f5c816
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_741.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_742.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_742.png
new file mode 100644
index 0000000..894e6b4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_742.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_743.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_743.png
new file mode 100644
index 0000000..edd3f78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_743.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_744.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_744.png
new file mode 100644
index 0000000..81f2b1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_744.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_745.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_745.png
new file mode 100644
index 0000000..03c3988
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_745.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_746.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_746.png
new file mode 100644
index 0000000..52d9aad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_746.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_747.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_747.png
new file mode 100644
index 0000000..d0bc5f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_747.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_748.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_748.png
new file mode 100644
index 0000000..abe1ee2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_748.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_749.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_749.png
new file mode 100644
index 0000000..c773e7e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_749.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_75.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_75.png
new file mode 100644
index 0000000..8f4720d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_75.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_750.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_750.png
new file mode 100644
index 0000000..7a2ffb0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_750.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_751.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_751.png
new file mode 100644
index 0000000..2de08ae
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_751.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_752.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_752.png
new file mode 100644
index 0000000..af1a14a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_752.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_753.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_753.png
new file mode 100644
index 0000000..81b3d1e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_753.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_754.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_754.png
new file mode 100644
index 0000000..eb25cf9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_754.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_755.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_755.png
new file mode 100644
index 0000000..f736d14
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_755.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_756.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_756.png
new file mode 100644
index 0000000..0276779
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_756.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_757.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_757.png
new file mode 100644
index 0000000..4b24683
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_757.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_758.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_758.png
new file mode 100644
index 0000000..080e01c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_758.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_759.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_759.png
new file mode 100644
index 0000000..b581d60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_759.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_76.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_76.png
new file mode 100644
index 0000000..ba6f64c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_76.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_760.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_760.png
new file mode 100644
index 0000000..a2663d2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_760.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_761.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_761.png
new file mode 100644
index 0000000..52cfe98
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_761.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_762.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_762.png
new file mode 100644
index 0000000..cfb9664
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_762.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_763.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_763.png
new file mode 100644
index 0000000..1d5fe0d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_763.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_764.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_764.png
new file mode 100644
index 0000000..c484744
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_764.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_765.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_765.png
new file mode 100644
index 0000000..0bfaf45
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_765.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_766.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_766.png
new file mode 100644
index 0000000..d420758
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_766.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_767.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_767.png
new file mode 100644
index 0000000..5cdc6f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_767.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_768.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_768.png
new file mode 100644
index 0000000..cb076e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_768.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_769.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_769.png
new file mode 100644
index 0000000..3307fc3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_769.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_77.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_77.png
new file mode 100644
index 0000000..1a61ed3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_77.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_770.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_770.png
new file mode 100644
index 0000000..a76fb5d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_770.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_771.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_771.png
new file mode 100644
index 0000000..557c71a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_771.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_772.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_772.png
new file mode 100644
index 0000000..25659fb
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_772.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_773.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_773.png
new file mode 100644
index 0000000..8f16002
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_773.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_774.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_774.png
new file mode 100644
index 0000000..69ecae9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_774.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_775.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_775.png
new file mode 100644
index 0000000..d3be414
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_775.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_776.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_776.png
new file mode 100644
index 0000000..1fb428c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_776.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_777.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_777.png
new file mode 100644
index 0000000..c58185a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_777.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_778.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_778.png
new file mode 100644
index 0000000..805eb0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_778.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_779.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_779.png
new file mode 100644
index 0000000..d9a2136
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_779.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_78.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_78.png
new file mode 100644
index 0000000..66f9f32
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_78.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_780.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_780.png
new file mode 100644
index 0000000..cce5e31
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_780.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_781.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_781.png
new file mode 100644
index 0000000..5a6226e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_781.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_782.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_782.png
new file mode 100644
index 0000000..0d27505
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_782.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_783.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_783.png
new file mode 100644
index 0000000..0216504
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_783.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_784.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_784.png
new file mode 100644
index 0000000..bc542c4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_784.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_785.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_785.png
new file mode 100644
index 0000000..870f865
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_785.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_786.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_786.png
new file mode 100644
index 0000000..cb4c6bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_786.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_787.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_787.png
new file mode 100644
index 0000000..07c4cf7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_787.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_788.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_788.png
new file mode 100644
index 0000000..78d6924
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_788.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_789.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_789.png
new file mode 100644
index 0000000..96e1ed4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_789.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_79.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_79.png
new file mode 100644
index 0000000..32a96fc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_79.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_790.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_790.png
new file mode 100644
index 0000000..4f3e9db
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_790.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_791.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_791.png
new file mode 100644
index 0000000..07c091d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_791.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_792.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_792.png
new file mode 100644
index 0000000..0592fc8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_792.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_793.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_793.png
new file mode 100644
index 0000000..8724f90
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_793.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_794.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_794.png
new file mode 100644
index 0000000..60e7108
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_794.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_795.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_795.png
new file mode 100644
index 0000000..0cc89bd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_795.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_796.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_796.png
new file mode 100644
index 0000000..e774840
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_796.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_797.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_797.png
new file mode 100644
index 0000000..c8ec3cd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_797.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_798.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_798.png
new file mode 100644
index 0000000..f90007d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_798.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_799.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_799.png
new file mode 100644
index 0000000..ca11c5a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_799.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_8.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_8.png
new file mode 100644
index 0000000..6bbc2cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_8.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_80.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_80.png
new file mode 100644
index 0000000..29f0188
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_80.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_800.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_800.png
new file mode 100644
index 0000000..08d720e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_800.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_801.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_801.png
new file mode 100644
index 0000000..cea4fa9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_801.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_802.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_802.png
new file mode 100644
index 0000000..6dfe74a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_802.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_803.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_803.png
new file mode 100644
index 0000000..d0862f5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_803.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_804.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_804.png
new file mode 100644
index 0000000..a5dc860
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_804.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_805.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_805.png
new file mode 100644
index 0000000..ab057ea
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_805.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_806.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_806.png
new file mode 100644
index 0000000..77dd090
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_806.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_807.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_807.png
new file mode 100644
index 0000000..35da302
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_807.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_808.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_808.png
new file mode 100644
index 0000000..fd8f75c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_808.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_809.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_809.png
new file mode 100644
index 0000000..df8d315
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_809.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_81.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_81.png
new file mode 100644
index 0000000..1680b8d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_81.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_810.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_810.png
new file mode 100644
index 0000000..466b557
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_810.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_811.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_811.png
new file mode 100644
index 0000000..3138dd5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_811.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_812.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_812.png
new file mode 100644
index 0000000..89c91f6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_812.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_813.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_813.png
new file mode 100644
index 0000000..03e1990
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_813.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_814.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_814.png
new file mode 100644
index 0000000..ca93249
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_814.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_815.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_815.png
new file mode 100644
index 0000000..4dd7636
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_815.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_816.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_816.png
new file mode 100644
index 0000000..5719a83
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_816.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_817.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_817.png
new file mode 100644
index 0000000..8ff58f8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_817.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_818.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_818.png
new file mode 100644
index 0000000..f9007d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_818.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_819.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_819.png
new file mode 100644
index 0000000..a922ba4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_819.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_82.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_82.png
new file mode 100644
index 0000000..32ba2df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_82.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_820.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_820.png
new file mode 100644
index 0000000..36af458
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_820.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_821.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_821.png
new file mode 100644
index 0000000..9ff7235
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_821.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_822.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_822.png
new file mode 100644
index 0000000..504fc0f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_822.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_823.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_823.png
new file mode 100644
index 0000000..fbb5a22
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_823.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_824.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_824.png
new file mode 100644
index 0000000..a4f3948
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_824.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_825.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_825.png
new file mode 100644
index 0000000..d0f2536
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_825.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_826.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_826.png
new file mode 100644
index 0000000..94da81a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_826.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_827.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_827.png
new file mode 100644
index 0000000..f68b122
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_827.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_828.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_828.png
new file mode 100644
index 0000000..27ba67e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_828.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_829.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_829.png
new file mode 100644
index 0000000..b6d33ad
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_829.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_83.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_83.png
new file mode 100644
index 0000000..b1e2536
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_83.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_830.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_830.png
new file mode 100644
index 0000000..dd0da37
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_830.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_831.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_831.png
new file mode 100644
index 0000000..8ab10a8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_831.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_832.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_832.png
new file mode 100644
index 0000000..6803261
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_832.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_833.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_833.png
new file mode 100644
index 0000000..2299531
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_833.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_834.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_834.png
new file mode 100644
index 0000000..439b331
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_834.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_835.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_835.png
new file mode 100644
index 0000000..40c3e61
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_835.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_836.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_836.png
new file mode 100644
index 0000000..aac8f23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_836.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_837.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_837.png
new file mode 100644
index 0000000..f502f9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_837.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_838.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_838.png
new file mode 100644
index 0000000..ff9ca66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_838.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_839.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_839.png
new file mode 100644
index 0000000..bb82e77
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_839.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_84.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_84.png
new file mode 100644
index 0000000..3b62def
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_84.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_840.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_840.png
new file mode 100644
index 0000000..7e7aad4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_840.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_841.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_841.png
new file mode 100644
index 0000000..31897ed
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_841.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_842.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_842.png
new file mode 100644
index 0000000..83fa398
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_842.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_843.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_843.png
new file mode 100644
index 0000000..d7dd853
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_843.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_844.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_844.png
new file mode 100644
index 0000000..a792d95
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_844.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_845.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_845.png
new file mode 100644
index 0000000..57bbe38
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_845.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_846.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_846.png
new file mode 100644
index 0000000..5c8e7e0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_846.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_847.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_847.png
new file mode 100644
index 0000000..e7d3cab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_847.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_848.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_848.png
new file mode 100644
index 0000000..d6b0795
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_848.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_849.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_849.png
new file mode 100644
index 0000000..06381fe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_849.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_85.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_85.png
new file mode 100644
index 0000000..1256f0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_85.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_850.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_850.png
new file mode 100644
index 0000000..1ad3a08
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_850.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_851.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_851.png
new file mode 100644
index 0000000..3539469
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_851.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_852.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_852.png
new file mode 100644
index 0000000..24eafaf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_852.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_853.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_853.png
new file mode 100644
index 0000000..7b2816d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_853.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_854.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_854.png
new file mode 100644
index 0000000..d5d2d78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_854.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_855.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_855.png
new file mode 100644
index 0000000..e67f9c3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_855.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_856.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_856.png
new file mode 100644
index 0000000..d22bcbe
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_856.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_857.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_857.png
new file mode 100644
index 0000000..c45cef9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_857.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_858.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_858.png
new file mode 100644
index 0000000..84ffeb7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_858.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_859.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_859.png
new file mode 100644
index 0000000..846b4c0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_859.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_86.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_86.png
new file mode 100644
index 0000000..ae84a1b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_86.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_860.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_860.png
new file mode 100644
index 0000000..536522e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_860.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_861.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_861.png
new file mode 100644
index 0000000..f6e718a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_861.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_862.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_862.png
new file mode 100644
index 0000000..025a608
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_862.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_863.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_863.png
new file mode 100644
index 0000000..d97e970
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_863.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_864.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_864.png
new file mode 100644
index 0000000..1be2555
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_864.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_865.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_865.png
new file mode 100644
index 0000000..18efb18
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_865.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_866.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_866.png
new file mode 100644
index 0000000..16be896
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_866.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_867.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_867.png
new file mode 100644
index 0000000..2fff8f1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_867.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_868.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_868.png
new file mode 100644
index 0000000..6a2bf06
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_868.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_869.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_869.png
new file mode 100644
index 0000000..e54f5a0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_869.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_87.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_87.png
new file mode 100644
index 0000000..7d18d4e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_87.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_870.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_870.png
new file mode 100644
index 0000000..a34ba2c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_870.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_871.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_871.png
new file mode 100644
index 0000000..a262127
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_871.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_872.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_872.png
new file mode 100644
index 0000000..88d25ab
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_872.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_873.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_873.png
new file mode 100644
index 0000000..635e5c1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_873.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_874.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_874.png
new file mode 100644
index 0000000..09b296f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_874.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_875.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_875.png
new file mode 100644
index 0000000..ce83e59
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_875.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_876.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_876.png
new file mode 100644
index 0000000..1c90866
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_876.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_877.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_877.png
new file mode 100644
index 0000000..181efda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_877.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_878.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_878.png
new file mode 100644
index 0000000..c983837
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_878.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_879.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_879.png
new file mode 100644
index 0000000..ebe8514
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_879.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_88.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_88.png
new file mode 100644
index 0000000..9114eaa
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_88.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_880.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_880.png
new file mode 100644
index 0000000..b735168
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_880.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_881.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_881.png
new file mode 100644
index 0000000..f020dce
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_881.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_882.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_882.png
new file mode 100644
index 0000000..b24592f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_882.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_883.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_883.png
new file mode 100644
index 0000000..9d55038
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_883.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_884.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_884.png
new file mode 100644
index 0000000..cb09a4d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_884.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_885.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_885.png
new file mode 100644
index 0000000..be3d609
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_885.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_886.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_886.png
new file mode 100644
index 0000000..9fefff4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_886.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_887.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_887.png
new file mode 100644
index 0000000..60b8545
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_887.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_888.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_888.png
new file mode 100644
index 0000000..9eaa721
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_888.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_889.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_889.png
new file mode 100644
index 0000000..a214823
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_889.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_89.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_89.png
new file mode 100644
index 0000000..f15a2d7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_89.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_890.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_890.png
new file mode 100644
index 0000000..9aca291
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_890.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_891.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_891.png
new file mode 100644
index 0000000..1e49d4b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_891.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_892.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_892.png
new file mode 100644
index 0000000..5002d3b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_892.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_893.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_893.png
new file mode 100644
index 0000000..169c183
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_893.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_894.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_894.png
new file mode 100644
index 0000000..3e38c1b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_894.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_895.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_895.png
new file mode 100644
index 0000000..3886b23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_895.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_896.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_896.png
new file mode 100644
index 0000000..5b15b44
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_896.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_897.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_897.png
new file mode 100644
index 0000000..d45ba0c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_897.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_898.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_898.png
new file mode 100644
index 0000000..583ab23
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_898.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_899.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_899.png
new file mode 100644
index 0000000..b2bb5a4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_899.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_9.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_9.png
new file mode 100644
index 0000000..afd0166
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_9.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_90.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_90.png
new file mode 100644
index 0000000..15f27e2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_90.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_900.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_900.png
new file mode 100644
index 0000000..fa307d9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_900.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_901.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_901.png
new file mode 100644
index 0000000..ce95449
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_901.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_902.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_902.png
new file mode 100644
index 0000000..bfdb2dc
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_902.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_903.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_903.png
new file mode 100644
index 0000000..06d44f2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_903.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_904.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_904.png
new file mode 100644
index 0000000..b8eba75
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_904.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_905.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_905.png
new file mode 100644
index 0000000..f86a592
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_905.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_906.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_906.png
new file mode 100644
index 0000000..1edb4f0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_906.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_907.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_907.png
new file mode 100644
index 0000000..6696494
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_907.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_908.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_908.png
new file mode 100644
index 0000000..158a6e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_908.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_909.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_909.png
new file mode 100644
index 0000000..e0dfd63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_909.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_91.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_91.png
new file mode 100644
index 0000000..45e238a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_91.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_910.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_910.png
new file mode 100644
index 0000000..c37bbb9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_910.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_911.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_911.png
new file mode 100644
index 0000000..bb16c1c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_911.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_912.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_912.png
new file mode 100644
index 0000000..81bd3cf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_912.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_913.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_913.png
new file mode 100644
index 0000000..319c8e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_913.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_914.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_914.png
new file mode 100644
index 0000000..1d6d347
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_914.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_915.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_915.png
new file mode 100644
index 0000000..b353418
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_915.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_916.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_916.png
new file mode 100644
index 0000000..979a680
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_916.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_917.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_917.png
new file mode 100644
index 0000000..f972eee
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_917.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_918.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_918.png
new file mode 100644
index 0000000..db5a190
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_918.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_919.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_919.png
new file mode 100644
index 0000000..2dfcf2f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_919.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_92.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_92.png
new file mode 100644
index 0000000..e31dcbd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_92.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_920.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_920.png
new file mode 100644
index 0000000..b8a328e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_920.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_921.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_921.png
new file mode 100644
index 0000000..550cfc6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_921.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_922.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_922.png
new file mode 100644
index 0000000..c6e411a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_922.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_923.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_923.png
new file mode 100644
index 0000000..049a948
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_923.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_924.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_924.png
new file mode 100644
index 0000000..44324b5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_924.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_925.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_925.png
new file mode 100644
index 0000000..c307573
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_925.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_926.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_926.png
new file mode 100644
index 0000000..358706e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_926.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_927.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_927.png
new file mode 100644
index 0000000..7a62be2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_927.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_928.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_928.png
new file mode 100644
index 0000000..24ed967
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_928.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_929.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_929.png
new file mode 100644
index 0000000..d3f2c58
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_929.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_93.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_93.png
new file mode 100644
index 0000000..54d6de1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_93.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_930.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_930.png
new file mode 100644
index 0000000..53487ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_930.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_931.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_931.png
new file mode 100644
index 0000000..ebbc1c2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_931.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_932.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_932.png
new file mode 100644
index 0000000..03de80f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_932.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_933.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_933.png
new file mode 100644
index 0000000..0f1e8ec
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_933.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_934.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_934.png
new file mode 100644
index 0000000..78f2e97
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_934.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_935.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_935.png
new file mode 100644
index 0000000..d86bc0e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_935.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_936.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_936.png
new file mode 100644
index 0000000..51b2cbf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_936.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_937.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_937.png
new file mode 100644
index 0000000..9c34b25
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_937.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_938.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_938.png
new file mode 100644
index 0000000..5a0a9e9
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_938.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_939.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_939.png
new file mode 100644
index 0000000..5c547fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_939.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_94.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_94.png
new file mode 100644
index 0000000..120bb9e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_94.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_940.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_940.png
new file mode 100644
index 0000000..d2c0288
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_940.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_941.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_941.png
new file mode 100644
index 0000000..619ef13
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_941.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_942.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_942.png
new file mode 100644
index 0000000..c36271b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_942.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_943.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_943.png
new file mode 100644
index 0000000..8dc67d6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_943.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_944.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_944.png
new file mode 100644
index 0000000..531fd0d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_944.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_945.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_945.png
new file mode 100644
index 0000000..8a3dc4c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_945.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_946.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_946.png
new file mode 100644
index 0000000..2e23148
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_946.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_947.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_947.png
new file mode 100644
index 0000000..3ed8188
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_947.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_948.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_948.png
new file mode 100644
index 0000000..fad1b99
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_948.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_949.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_949.png
new file mode 100644
index 0000000..4940179
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_949.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_95.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_95.png
new file mode 100644
index 0000000..3aa82a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_95.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_950.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_950.png
new file mode 100644
index 0000000..d9698c8
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_950.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_951.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_951.png
new file mode 100644
index 0000000..149fd73
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_951.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_952.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_952.png
new file mode 100644
index 0000000..e9d6a8f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_952.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_953.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_953.png
new file mode 100644
index 0000000..3317d2d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_953.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_954.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_954.png
new file mode 100644
index 0000000..0c48fa6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_954.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_955.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_955.png
new file mode 100644
index 0000000..51fe9ea
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_955.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_956.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_956.png
new file mode 100644
index 0000000..ed6daf4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_956.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_957.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_957.png
new file mode 100644
index 0000000..de4f673
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_957.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_958.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_958.png
new file mode 100644
index 0000000..695d6bf
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_958.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_959.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_959.png
new file mode 100644
index 0000000..aa4ff17
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_959.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_96.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_96.png
new file mode 100644
index 0000000..8f165e3
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_96.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_960.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_960.png
new file mode 100644
index 0000000..cddaeda
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_960.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_961.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_961.png
new file mode 100644
index 0000000..1b82865
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_961.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_962.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_962.png
new file mode 100644
index 0000000..247bd0b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_962.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_963.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_963.png
new file mode 100644
index 0000000..ddcec8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_963.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_964.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_964.png
new file mode 100644
index 0000000..73c8156
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_964.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_965.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_965.png
new file mode 100644
index 0000000..ee21119
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_965.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_966.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_966.png
new file mode 100644
index 0000000..f6c2519
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_966.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_967.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_967.png
new file mode 100644
index 0000000..0908739
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_967.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_968.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_968.png
new file mode 100644
index 0000000..1f78f60
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_968.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_969.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_969.png
new file mode 100644
index 0000000..817d8fd
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_969.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_97.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_97.png
new file mode 100644
index 0000000..b96519e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_97.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_970.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_970.png
new file mode 100644
index 0000000..c50228e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_970.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_971.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_971.png
new file mode 100644
index 0000000..16f9c10
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_971.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_972.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_972.png
new file mode 100644
index 0000000..eee298f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_972.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_973.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_973.png
new file mode 100644
index 0000000..592fb67
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_973.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_974.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_974.png
new file mode 100644
index 0000000..36e391f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_974.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_975.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_975.png
new file mode 100644
index 0000000..68ecc78
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_975.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_976.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_976.png
new file mode 100644
index 0000000..0eb8493
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_976.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_977.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_977.png
new file mode 100644
index 0000000..95334a1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_977.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_978.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_978.png
new file mode 100644
index 0000000..517df69
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_978.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_979.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_979.png
new file mode 100644
index 0000000..49eef41
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_979.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_98.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_98.png
new file mode 100644
index 0000000..7b9e70e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_98.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_980.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_980.png
new file mode 100644
index 0000000..47e7b3a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_980.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_981.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_981.png
new file mode 100644
index 0000000..ccd829d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_981.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_982.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_982.png
new file mode 100644
index 0000000..adf0ef2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_982.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_983.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_983.png
new file mode 100644
index 0000000..61283f4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_983.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_984.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_984.png
new file mode 100644
index 0000000..b73751c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_984.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_985.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_985.png
new file mode 100644
index 0000000..75ba1ef
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_985.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_986.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_986.png
new file mode 100644
index 0000000..d64a309
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_986.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_987.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_987.png
new file mode 100644
index 0000000..5581516
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_987.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_988.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_988.png
new file mode 100644
index 0000000..65b6eb6
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_988.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_989.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_989.png
new file mode 100644
index 0000000..b5969d5
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_989.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_99.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_99.png
new file mode 100644
index 0000000..2735848
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_99.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_990.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_990.png
new file mode 100644
index 0000000..ce80e8e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_990.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_991.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_991.png
new file mode 100644
index 0000000..0db3ec1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_991.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_992.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_992.png
new file mode 100644
index 0000000..5228b49
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_992.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_993.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_993.png
new file mode 100644
index 0000000..f76ab63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_993.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_994.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_994.png
new file mode 100644
index 0000000..e415c1d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_994.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_995.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_995.png
new file mode 100644
index 0000000..46af11f
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_995.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_996.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_996.png
new file mode 100644
index 0000000..1ff7ab0
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_996.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_997.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_997.png
new file mode 100644
index 0000000..c1b5c84
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_997.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_998.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_998.png
new file mode 100644
index 0000000..ced9d6d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_998.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_999.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_999.png
new file mode 100644
index 0000000..1012640
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/images/captcha_999.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_0.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_0.txt
new file mode 100644
index 0000000..12beefe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_0.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1.txt
new file mode 100644
index 0000000..c054805
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_10.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_10.txt
new file mode 100644
index 0000000..54b2eaa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_10.txt
@@ -0,0 +1 @@
+0 0.35 0.271875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_100.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_100.txt
new file mode 100644
index 0000000..699eba8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_100.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1000.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1000.txt
new file mode 100644
index 0000000..5c61787
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_1000.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_101.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_101.txt
new file mode 100644
index 0000000..ae5cb85
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_101.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_102.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_102.txt
new file mode 100644
index 0000000..11a1663
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_102.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_103.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_103.txt
new file mode 100644
index 0000000..2ed7cb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_103.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_104.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_104.txt
new file mode 100644
index 0000000..5c0b4f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_104.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_105.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_105.txt
new file mode 100644
index 0000000..46b1b89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_105.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_106.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_106.txt
new file mode 100644
index 0000000..9d0be29
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_106.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_107.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_107.txt
new file mode 100644
index 0000000..51db49a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_107.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_108.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_108.txt
new file mode 100644
index 0000000..6bbd89c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_108.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_109.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_109.txt
new file mode 100644
index 0000000..8355674
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_109.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_11.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_11.txt
new file mode 100644
index 0000000..3613a4f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_11.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_110.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_110.txt
new file mode 100644
index 0000000..f4ecef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_110.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_111.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_111.txt
new file mode 100644
index 0000000..8bc2bf0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_111.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_112.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_112.txt
new file mode 100644
index 0000000..60fb234
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_112.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.628125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_113.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_113.txt
new file mode 100644
index 0000000..4a5718d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_113.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_114.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_114.txt
new file mode 100644
index 0000000..50ff5f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_114.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_115.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_115.txt
new file mode 100644
index 0000000..520e716
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_115.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_116.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_116.txt
new file mode 100644
index 0000000..3f9ca4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_116.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_117.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_117.txt
new file mode 100644
index 0000000..1f0b3f6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_117.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.18125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_118.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_118.txt
new file mode 100644
index 0000000..a3154e5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_118.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_119.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_119.txt
new file mode 100644
index 0000000..050a301
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_119.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_12.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_12.txt
new file mode 100644
index 0000000..14a88cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_12.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_120.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_120.txt
new file mode 100644
index 0000000..c37f55a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_120.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_121.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_121.txt
new file mode 100644
index 0000000..7d5e10d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_121.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_122.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_122.txt
new file mode 100644
index 0000000..2022da2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_122.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_123.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_123.txt
new file mode 100644
index 0000000..cd07f11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_123.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_124.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_124.txt
new file mode 100644
index 0000000..2971de1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_124.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_125.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_125.txt
new file mode 100644
index 0000000..1f98d09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_125.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_126.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_126.txt
new file mode 100644
index 0000000..427dad6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_126.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_127.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_127.txt
new file mode 100644
index 0000000..0653eb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_127.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_128.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_128.txt
new file mode 100644
index 0000000..c5a3689
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_128.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_129.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_129.txt
new file mode 100644
index 0000000..5a07582
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_129.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_13.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_13.txt
new file mode 100644
index 0000000..b870c20
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_13.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_130.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_130.txt
new file mode 100644
index 0000000..4d930bf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_130.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_131.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_131.txt
new file mode 100644
index 0000000..77dc521
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_131.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_132.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_132.txt
new file mode 100644
index 0000000..75a88ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_132.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_133.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_133.txt
new file mode 100644
index 0000000..e8968e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_133.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_134.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_134.txt
new file mode 100644
index 0000000..4971157
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_134.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_135.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_135.txt
new file mode 100644
index 0000000..2744d7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_135.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_136.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_136.txt
new file mode 100644
index 0000000..faa5585
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_136.txt
@@ -0,0 +1 @@
+0 0.4115384615384615 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_137.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_137.txt
new file mode 100644
index 0000000..122fada
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_137.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_138.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_138.txt
new file mode 100644
index 0000000..8efd0c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_138.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_139.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_139.txt
new file mode 100644
index 0000000..9ce12c0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_139.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_14.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_14.txt
new file mode 100644
index 0000000..844bd09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_14.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_140.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_140.txt
new file mode 100644
index 0000000..b1bf29d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_140.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_141.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_141.txt
new file mode 100644
index 0000000..d14803d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_141.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_142.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_142.txt
new file mode 100644
index 0000000..ecfa39a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_142.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_143.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_143.txt
new file mode 100644
index 0000000..e595503
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_143.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_144.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_144.txt
new file mode 100644
index 0000000..1a905d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_144.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_145.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_145.txt
new file mode 100644
index 0000000..7d11c71
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_145.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_146.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_146.txt
new file mode 100644
index 0000000..08fe145
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_146.txt
@@ -0,0 +1 @@
+0 0.325 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_147.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_147.txt
new file mode 100644
index 0000000..aeb53ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_147.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_148.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_148.txt
new file mode 100644
index 0000000..a95127e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_148.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_149.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_149.txt
new file mode 100644
index 0000000..9ed089f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_149.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_15.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_15.txt
new file mode 100644
index 0000000..1e93e01
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_15.txt
@@ -0,0 +1 @@
+0 0.325 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_150.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_150.txt
new file mode 100644
index 0000000..d591ff2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_150.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_151.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_151.txt
new file mode 100644
index 0000000..cac71f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_151.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_152.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_152.txt
new file mode 100644
index 0000000..7088c08
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_152.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_153.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_153.txt
new file mode 100644
index 0000000..db33103
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_153.txt
@@ -0,0 +1 @@
+0 0.425 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_154.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_154.txt
new file mode 100644
index 0000000..4fe5d65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_154.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_155.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_155.txt
new file mode 100644
index 0000000..39860fa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_155.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_156.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_156.txt
new file mode 100644
index 0000000..ab94693
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_156.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_157.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_157.txt
new file mode 100644
index 0000000..6771b35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_157.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_158.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_158.txt
new file mode 100644
index 0000000..0cf2e81
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_158.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_159.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_159.txt
new file mode 100644
index 0000000..3547ada
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_159.txt
@@ -0,0 +1 @@
+0 0.5346153846153846 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_16.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_16.txt
new file mode 100644
index 0000000..9df1347
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_16.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_160.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_160.txt
new file mode 100644
index 0000000..7061df8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_160.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.078125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_161.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_161.txt
new file mode 100644
index 0000000..a702321
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_161.txt
@@ -0,0 +1 @@
+0 0.625 0.190625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_162.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_162.txt
new file mode 100644
index 0000000..dfab0d5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_162.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_163.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_163.txt
new file mode 100644
index 0000000..93df56c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_163.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_164.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_164.txt
new file mode 100644
index 0000000..9a3fe89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_164.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_165.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_165.txt
new file mode 100644
index 0000000..4beae6e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_165.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_166.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_166.txt
new file mode 100644
index 0000000..4bae9f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_166.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_167.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_167.txt
new file mode 100644
index 0000000..152de20
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_167.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_168.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_168.txt
new file mode 100644
index 0000000..dcee446
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_168.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_169.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_169.txt
new file mode 100644
index 0000000..5aa92c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_169.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_17.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_17.txt
new file mode 100644
index 0000000..f76dd9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_17.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_170.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_170.txt
new file mode 100644
index 0000000..2f188b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_170.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_171.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_171.txt
new file mode 100644
index 0000000..9c17619
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_171.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_172.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_172.txt
new file mode 100644
index 0000000..eb4b9a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_172.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_173.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_173.txt
new file mode 100644
index 0000000..5f0919b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_173.txt
@@ -0,0 +1 @@
+0 0.3096153846153846 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_174.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_174.txt
new file mode 100644
index 0000000..e035bd7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_174.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_175.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_175.txt
new file mode 100644
index 0000000..c464d2e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_175.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_176.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_176.txt
new file mode 100644
index 0000000..75367c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_176.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_177.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_177.txt
new file mode 100644
index 0000000..59c5a49
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_177.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_178.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_178.txt
new file mode 100644
index 0000000..6fbed4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_178.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_179.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_179.txt
new file mode 100644
index 0000000..8443f60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_179.txt
@@ -0,0 +1 @@
+0 0.4 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_18.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_18.txt
new file mode 100644
index 0000000..5aaf59f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_18.txt
@@ -0,0 +1 @@
+0 0.575 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_180.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_180.txt
new file mode 100644
index 0000000..b716af3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_180.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_181.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_181.txt
new file mode 100644
index 0000000..4ab791b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_181.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_182.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_182.txt
new file mode 100644
index 0000000..a9180c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_182.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_183.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_183.txt
new file mode 100644
index 0000000..6f874ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_183.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_184.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_184.txt
new file mode 100644
index 0000000..dc5a7e7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_184.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_185.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_185.txt
new file mode 100644
index 0000000..9f6e987
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_185.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_186.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_186.txt
new file mode 100644
index 0000000..b55734a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_186.txt
@@ -0,0 +1 @@
+0 0.45 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_187.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_187.txt
new file mode 100644
index 0000000..e51ecb0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_187.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_188.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_188.txt
new file mode 100644
index 0000000..8cc3dce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_188.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_189.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_189.txt
new file mode 100644
index 0000000..56e8dc2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_189.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_19.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_19.txt
new file mode 100644
index 0000000..a85467f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_19.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_190.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_190.txt
new file mode 100644
index 0000000..c0c85e2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_190.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_191.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_191.txt
new file mode 100644
index 0000000..8a1a386
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_191.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_192.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_192.txt
new file mode 100644
index 0000000..f90e6a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_192.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_193.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_193.txt
new file mode 100644
index 0000000..36072de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_193.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_194.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_194.txt
new file mode 100644
index 0000000..118684c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_194.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_195.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_195.txt
new file mode 100644
index 0000000..83ff8b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_195.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_196.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_196.txt
new file mode 100644
index 0000000..44e1f21
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_196.txt
@@ -0,0 +1 @@
+0 0.49230769230769234 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_197.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_197.txt
new file mode 100644
index 0000000..868004d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_197.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_198.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_198.txt
new file mode 100644
index 0000000..96665d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_198.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_199.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_199.txt
new file mode 100644
index 0000000..61463f4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_199.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_2.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_2.txt
new file mode 100644
index 0000000..c2672a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_2.txt
@@ -0,0 +1 @@
+0 0.4115384615384615 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_20.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_20.txt
new file mode 100644
index 0000000..05deb62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_20.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_200.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_200.txt
new file mode 100644
index 0000000..7f61fb4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_200.txt
@@ -0,0 +1 @@
+0 0.575 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_201.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_201.txt
new file mode 100644
index 0000000..95da5a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_201.txt
@@ -0,0 +1 @@
+0 0.6807692307692308 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_202.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_202.txt
new file mode 100644
index 0000000..98257f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_202.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_203.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_203.txt
new file mode 100644
index 0000000..4bef2cd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_203.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_204.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_204.txt
new file mode 100644
index 0000000..9ea86c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_204.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_205.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_205.txt
new file mode 100644
index 0000000..5019a1a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_205.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_206.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_206.txt
new file mode 100644
index 0000000..fc19620
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_206.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_207.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_207.txt
new file mode 100644
index 0000000..24dad37
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_207.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_208.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_208.txt
new file mode 100644
index 0000000..b8b464e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_208.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_209.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_209.txt
new file mode 100644
index 0000000..f6733dc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_209.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.659375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_21.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_21.txt
new file mode 100644
index 0000000..accb7df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_21.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_210.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_210.txt
new file mode 100644
index 0000000..98e710c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_210.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_211.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_211.txt
new file mode 100644
index 0000000..b7ae955
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_211.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_212.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_212.txt
new file mode 100644
index 0000000..434702e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_212.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_213.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_213.txt
new file mode 100644
index 0000000..fb9f9a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_213.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_214.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_214.txt
new file mode 100644
index 0000000..f1a17ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_214.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.40625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_215.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_215.txt
new file mode 100644
index 0000000..11b77ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_215.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_216.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_216.txt
new file mode 100644
index 0000000..11e83ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_216.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_217.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_217.txt
new file mode 100644
index 0000000..ab6b152
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_217.txt
@@ -0,0 +1 @@
+0 0.40384615384615385 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_218.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_218.txt
new file mode 100644
index 0000000..73368e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_218.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_219.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_219.txt
new file mode 100644
index 0000000..f810725
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_219.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_22.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_22.txt
new file mode 100644
index 0000000..f7f3030
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_22.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_220.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_220.txt
new file mode 100644
index 0000000..d73a539
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_220.txt
@@ -0,0 +1 @@
+0 0.65 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_221.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_221.txt
new file mode 100644
index 0000000..6a4c868
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_221.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_222.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_222.txt
new file mode 100644
index 0000000..537f6da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_222.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_223.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_223.txt
new file mode 100644
index 0000000..9ed9a1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_223.txt
@@ -0,0 +1 @@
+0 0.3096153846153846 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_224.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_224.txt
new file mode 100644
index 0000000..72e2c2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_224.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_225.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_225.txt
new file mode 100644
index 0000000..4955961
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_225.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_226.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_226.txt
new file mode 100644
index 0000000..c219f6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_226.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_227.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_227.txt
new file mode 100644
index 0000000..7a7709d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_227.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_228.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_228.txt
new file mode 100644
index 0000000..8d6008a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_228.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.45 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_229.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_229.txt
new file mode 100644
index 0000000..52aeab9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_229.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_23.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_23.txt
new file mode 100644
index 0000000..37854fb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_23.txt
@@ -0,0 +1 @@
+0 0.3730769230769231 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_230.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_230.txt
new file mode 100644
index 0000000..b411f81
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_230.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_231.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_231.txt
new file mode 100644
index 0000000..a8b1476
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_231.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_232.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_232.txt
new file mode 100644
index 0000000..2b5782d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_232.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_233.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_233.txt
new file mode 100644
index 0000000..0f490c0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_233.txt
@@ -0,0 +1 @@
+0 0.55 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_234.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_234.txt
new file mode 100644
index 0000000..03e5f54
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_234.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_235.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_235.txt
new file mode 100644
index 0000000..d1f70cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_235.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_236.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_236.txt
new file mode 100644
index 0000000..41b038b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_236.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_237.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_237.txt
new file mode 100644
index 0000000..53681a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_237.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_238.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_238.txt
new file mode 100644
index 0000000..1de0029
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_238.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_239.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_239.txt
new file mode 100644
index 0000000..b9de947
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_239.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_24.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_24.txt
new file mode 100644
index 0000000..711358c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_24.txt
@@ -0,0 +1 @@
+0 0.35 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_240.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_240.txt
new file mode 100644
index 0000000..76501ca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_240.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_241.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_241.txt
new file mode 100644
index 0000000..98744ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_241.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_242.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_242.txt
new file mode 100644
index 0000000..7f7231b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_242.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_243.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_243.txt
new file mode 100644
index 0000000..4ffddce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_243.txt
@@ -0,0 +1 @@
+0 0.525 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_244.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_244.txt
new file mode 100644
index 0000000..79542f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_244.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_245.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_245.txt
new file mode 100644
index 0000000..0df73ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_245.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_246.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_246.txt
new file mode 100644
index 0000000..f637261
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_246.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_247.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_247.txt
new file mode 100644
index 0000000..b8224ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_247.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_248.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_248.txt
new file mode 100644
index 0000000..63e21b9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_248.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_249.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_249.txt
new file mode 100644
index 0000000..fa22cdd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_249.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_25.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_25.txt
new file mode 100644
index 0000000..c5deaca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_25.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_250.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_250.txt
new file mode 100644
index 0000000..ae714ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_250.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_251.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_251.txt
new file mode 100644
index 0000000..6ce886d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_251.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_252.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_252.txt
new file mode 100644
index 0000000..8346e57
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_252.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_253.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_253.txt
new file mode 100644
index 0000000..0bba845
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_253.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_254.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_254.txt
new file mode 100644
index 0000000..e6f1b0b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_254.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_255.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_255.txt
new file mode 100644
index 0000000..5f27c7f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_255.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_256.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_256.txt
new file mode 100644
index 0000000..d28c02b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_256.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_257.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_257.txt
new file mode 100644
index 0000000..5b9fff2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_257.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_258.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_258.txt
new file mode 100644
index 0000000..5cca452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_258.txt
@@ -0,0 +1 @@
+0 0.475 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_259.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_259.txt
new file mode 100644
index 0000000..c422330
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_259.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_26.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_26.txt
new file mode 100644
index 0000000..4cd4185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_26.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_260.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_260.txt
new file mode 100644
index 0000000..5159af0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_260.txt
@@ -0,0 +1 @@
+0 0.4673076923076923 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_261.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_261.txt
new file mode 100644
index 0000000..92da60b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_261.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_262.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_262.txt
new file mode 100644
index 0000000..02d55c7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_262.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_263.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_263.txt
new file mode 100644
index 0000000..0c9f164
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_263.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_264.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_264.txt
new file mode 100644
index 0000000..b9e6952
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_264.txt
@@ -0,0 +1 @@
+0 0.475 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_265.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_265.txt
new file mode 100644
index 0000000..10215ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_265.txt
@@ -0,0 +1 @@
+0 0.45 0.525 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_266.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_266.txt
new file mode 100644
index 0000000..7ab2a6b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_266.txt
@@ -0,0 +1 @@
+0 0.6673076923076923 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_267.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_267.txt
new file mode 100644
index 0000000..ba9a152
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_267.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_268.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_268.txt
new file mode 100644
index 0000000..c139e9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_268.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_269.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_269.txt
new file mode 100644
index 0000000..b54bc69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_269.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.24375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_27.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_27.txt
new file mode 100644
index 0000000..e45d28a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_27.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.628125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_270.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_270.txt
new file mode 100644
index 0000000..7368fb8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_270.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_271.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_271.txt
new file mode 100644
index 0000000..c4f80f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_271.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_272.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_272.txt
new file mode 100644
index 0000000..657b5c6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_272.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.48125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_273.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_273.txt
new file mode 100644
index 0000000..04eae6c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_273.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_274.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_274.txt
new file mode 100644
index 0000000..1bf6af4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_274.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_275.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_275.txt
new file mode 100644
index 0000000..e3b2a02
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_275.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_276.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_276.txt
new file mode 100644
index 0000000..eab8ec0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_276.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_277.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_277.txt
new file mode 100644
index 0000000..82c1143
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_277.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_278.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_278.txt
new file mode 100644
index 0000000..0439508
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_278.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_279.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_279.txt
new file mode 100644
index 0000000..7643b0d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_279.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_28.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_28.txt
new file mode 100644
index 0000000..3ad369c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_28.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_280.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_280.txt
new file mode 100644
index 0000000..4c8d4a9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_280.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_281.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_281.txt
new file mode 100644
index 0000000..9b487aa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_281.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_282.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_282.txt
new file mode 100644
index 0000000..4531e11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_282.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_283.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_283.txt
new file mode 100644
index 0000000..37c3ede
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_283.txt
@@ -0,0 +1 @@
+0 0.575 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_284.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_284.txt
new file mode 100644
index 0000000..7772f65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_284.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_285.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_285.txt
new file mode 100644
index 0000000..ef548be
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_285.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_286.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_286.txt
new file mode 100644
index 0000000..3fde522
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_286.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_287.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_287.txt
new file mode 100644
index 0000000..aff8654
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_287.txt
@@ -0,0 +1 @@
+0 0.625 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_288.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_288.txt
new file mode 100644
index 0000000..673e13b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_288.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_289.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_289.txt
new file mode 100644
index 0000000..03cb0f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_289.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_29.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_29.txt
new file mode 100644
index 0000000..a6466b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_29.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_290.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_290.txt
new file mode 100644
index 0000000..90d82a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_290.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_291.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_291.txt
new file mode 100644
index 0000000..ae1182f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_291.txt
@@ -0,0 +1 @@
+0 0.3153846153846154 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_292.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_292.txt
new file mode 100644
index 0000000..506aa6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_292.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_293.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_293.txt
new file mode 100644
index 0000000..141195f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_293.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_294.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_294.txt
new file mode 100644
index 0000000..9f989c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_294.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_295.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_295.txt
new file mode 100644
index 0000000..002800a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_295.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_296.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_296.txt
new file mode 100644
index 0000000..300e61c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_296.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_297.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_297.txt
new file mode 100644
index 0000000..81b79e0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_297.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_298.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_298.txt
new file mode 100644
index 0000000..e826550
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_298.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_299.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_299.txt
new file mode 100644
index 0000000..e2aca35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_299.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_3.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_3.txt
new file mode 100644
index 0000000..d470c30
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_3.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_30.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_30.txt
new file mode 100644
index 0000000..da706ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_30.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_300.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_300.txt
new file mode 100644
index 0000000..a5b17d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_300.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_301.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_301.txt
new file mode 100644
index 0000000..1079851
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_301.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_302.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_302.txt
new file mode 100644
index 0000000..ee77bfc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_302.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_303.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_303.txt
new file mode 100644
index 0000000..b92df26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_303.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_304.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_304.txt
new file mode 100644
index 0000000..70813a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_304.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_305.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_305.txt
new file mode 100644
index 0000000..1cc8b3f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_305.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.165625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_306.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_306.txt
new file mode 100644
index 0000000..37c3ede
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_306.txt
@@ -0,0 +1 @@
+0 0.575 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_307.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_307.txt
new file mode 100644
index 0000000..9e212d7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_307.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_308.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_308.txt
new file mode 100644
index 0000000..1550373
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_308.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_309.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_309.txt
new file mode 100644
index 0000000..0c1f148
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_309.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_31.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_31.txt
new file mode 100644
index 0000000..79792f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_31.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_310.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_310.txt
new file mode 100644
index 0000000..f79a7af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_310.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_311.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_311.txt
new file mode 100644
index 0000000..25bd653
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_311.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_312.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_312.txt
new file mode 100644
index 0000000..73bb1d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_312.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_313.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_313.txt
new file mode 100644
index 0000000..32ecaab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_313.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_314.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_314.txt
new file mode 100644
index 0000000..ed3461b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_314.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_315.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_315.txt
new file mode 100644
index 0000000..f9616fa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_315.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_316.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_316.txt
new file mode 100644
index 0000000..d57d0a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_316.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_317.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_317.txt
new file mode 100644
index 0000000..5d12d3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_317.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_318.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_318.txt
new file mode 100644
index 0000000..844bd09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_318.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_319.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_319.txt
new file mode 100644
index 0000000..4b368ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_319.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_32.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_32.txt
new file mode 100644
index 0000000..df9db74
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_32.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_320.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_320.txt
new file mode 100644
index 0000000..eb95c53
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_320.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.271875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_321.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_321.txt
new file mode 100644
index 0000000..70b066b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_321.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_322.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_322.txt
new file mode 100644
index 0000000..4ef9fe9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_322.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_323.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_323.txt
new file mode 100644
index 0000000..dab9016
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_323.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_324.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_324.txt
new file mode 100644
index 0000000..3e25071
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_324.txt
@@ -0,0 +1 @@
+0 0.6923076923076923 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_325.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_325.txt
new file mode 100644
index 0000000..b83dde7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_325.txt
@@ -0,0 +1 @@
+0 0.6 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_326.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_326.txt
new file mode 100644
index 0000000..1d7c7b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_326.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_327.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_327.txt
new file mode 100644
index 0000000..41ff8df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_327.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_328.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_328.txt
new file mode 100644
index 0000000..309b42c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_328.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_329.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_329.txt
new file mode 100644
index 0000000..f12421b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_329.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_33.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_33.txt
new file mode 100644
index 0000000..c5deaca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_33.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_330.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_330.txt
new file mode 100644
index 0000000..d786bc2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_330.txt
@@ -0,0 +1 @@
+0 0.325 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_331.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_331.txt
new file mode 100644
index 0000000..5ddfd65
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_331.txt
@@ -0,0 +1 @@
+0 0.5 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_332.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_332.txt
new file mode 100644
index 0000000..c924c58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_332.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_333.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_333.txt
new file mode 100644
index 0000000..d260eab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_333.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_334.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_334.txt
new file mode 100644
index 0000000..a8f7cb6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_334.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_335.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_335.txt
new file mode 100644
index 0000000..4c55d96
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_335.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_336.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_336.txt
new file mode 100644
index 0000000..46b56a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_336.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_337.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_337.txt
new file mode 100644
index 0000000..189a66f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_337.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_338.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_338.txt
new file mode 100644
index 0000000..9875178
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_338.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_339.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_339.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_339.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_34.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_34.txt
new file mode 100644
index 0000000..565236e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_34.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_340.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_340.txt
new file mode 100644
index 0000000..cb0d0e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_340.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_341.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_341.txt
new file mode 100644
index 0000000..98b99c8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_341.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_342.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_342.txt
new file mode 100644
index 0000000..2a3bba7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_342.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_343.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_343.txt
new file mode 100644
index 0000000..f3467f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_343.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_344.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_344.txt
new file mode 100644
index 0000000..bf174da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_344.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_345.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_345.txt
new file mode 100644
index 0000000..84d80c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_345.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_346.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_346.txt
new file mode 100644
index 0000000..969e9bd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_346.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_347.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_347.txt
new file mode 100644
index 0000000..ecdf74a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_347.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_348.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_348.txt
new file mode 100644
index 0000000..c104351
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_348.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_349.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_349.txt
new file mode 100644
index 0000000..875d657
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_349.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_35.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_35.txt
new file mode 100644
index 0000000..0eaaff7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_35.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_350.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_350.txt
new file mode 100644
index 0000000..06ddc7e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_350.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_351.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_351.txt
new file mode 100644
index 0000000..00d5e31
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_351.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_352.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_352.txt
new file mode 100644
index 0000000..eed5531
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_352.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_353.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_353.txt
new file mode 100644
index 0000000..2a5df5e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_353.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_354.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_354.txt
new file mode 100644
index 0000000..019b6f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_354.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_355.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_355.txt
new file mode 100644
index 0000000..871056a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_355.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_356.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_356.txt
new file mode 100644
index 0000000..73fb54a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_356.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_357.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_357.txt
new file mode 100644
index 0000000..efa98ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_357.txt
@@ -0,0 +1 @@
+0 0.5 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_358.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_358.txt
new file mode 100644
index 0000000..55d13fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_358.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_359.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_359.txt
new file mode 100644
index 0000000..fca2498
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_359.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_36.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_36.txt
new file mode 100644
index 0000000..fd36b9d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_36.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.340625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_360.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_360.txt
new file mode 100644
index 0000000..d824628
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_360.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_361.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_361.txt
new file mode 100644
index 0000000..bcf6fda
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_361.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_362.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_362.txt
new file mode 100644
index 0000000..1f19eaf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_362.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_363.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_363.txt
new file mode 100644
index 0000000..6ace519
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_363.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_364.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_364.txt
new file mode 100644
index 0000000..0698cf8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_364.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_365.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_365.txt
new file mode 100644
index 0000000..af6d2a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_365.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.521875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_366.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_366.txt
new file mode 100644
index 0000000..e547b79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_366.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_367.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_367.txt
new file mode 100644
index 0000000..0bf34fd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_367.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_368.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_368.txt
new file mode 100644
index 0000000..076ada7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_368.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_369.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_369.txt
new file mode 100644
index 0000000..187efd2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_369.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_37.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_37.txt
new file mode 100644
index 0000000..e192d16
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_37.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_370.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_370.txt
new file mode 100644
index 0000000..52b43b0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_370.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_371.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_371.txt
new file mode 100644
index 0000000..4420e9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_371.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_372.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_372.txt
new file mode 100644
index 0000000..3791163
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_372.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_373.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_373.txt
new file mode 100644
index 0000000..146e650
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_373.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_374.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_374.txt
new file mode 100644
index 0000000..276c682
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_374.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_375.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_375.txt
new file mode 100644
index 0000000..29b2b97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_375.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_376.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_376.txt
new file mode 100644
index 0000000..67f7282
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_376.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_377.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_377.txt
new file mode 100644
index 0000000..9332c77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_377.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_378.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_378.txt
new file mode 100644
index 0000000..7ff2a1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_378.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_379.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_379.txt
new file mode 100644
index 0000000..87e53f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_379.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_38.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_38.txt
new file mode 100644
index 0000000..bace8b1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_38.txt
@@ -0,0 +1 @@
+0 0.425 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_380.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_380.txt
new file mode 100644
index 0000000..2f2ec60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_380.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_381.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_381.txt
new file mode 100644
index 0000000..1a4205f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_381.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_382.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_382.txt
new file mode 100644
index 0000000..c386580
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_382.txt
@@ -0,0 +1 @@
+0 0.575 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_383.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_383.txt
new file mode 100644
index 0000000..c36959f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_383.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_384.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_384.txt
new file mode 100644
index 0000000..1a7c094
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_384.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_385.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_385.txt
new file mode 100644
index 0000000..b5f76e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_385.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_386.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_386.txt
new file mode 100644
index 0000000..f12421b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_386.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_387.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_387.txt
new file mode 100644
index 0000000..3526530
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_387.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_388.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_388.txt
new file mode 100644
index 0000000..f4c8eab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_388.txt
@@ -0,0 +1 @@
+0 0.4673076923076923 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_389.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_389.txt
new file mode 100644
index 0000000..9aea70c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_389.txt
@@ -0,0 +1 @@
+0 0.575 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_39.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_39.txt
new file mode 100644
index 0000000..0faaa15
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_39.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_390.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_390.txt
new file mode 100644
index 0000000..2fcdc63
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_390.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_391.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_391.txt
new file mode 100644
index 0000000..22ccd77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_391.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_392.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_392.txt
new file mode 100644
index 0000000..dae9650
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_392.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_393.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_393.txt
new file mode 100644
index 0000000..18e23f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_393.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_394.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_394.txt
new file mode 100644
index 0000000..06b8366
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_394.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_395.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_395.txt
new file mode 100644
index 0000000..a8adc08
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_395.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_396.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_396.txt
new file mode 100644
index 0000000..ae187e8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_396.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_397.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_397.txt
new file mode 100644
index 0000000..ae2ed44
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_397.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_398.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_398.txt
new file mode 100644
index 0000000..a8dd6b6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_398.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_399.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_399.txt
new file mode 100644
index 0000000..56b31b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_399.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_4.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_4.txt
new file mode 100644
index 0000000..416b5cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_4.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.390625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_40.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_40.txt
new file mode 100644
index 0000000..334f385
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_40.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_400.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_400.txt
new file mode 100644
index 0000000..05bc6fe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_400.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_401.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_401.txt
new file mode 100644
index 0000000..1c512ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_401.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_402.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_402.txt
new file mode 100644
index 0000000..d53205d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_402.txt
@@ -0,0 +1 @@
+0 0.325 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_403.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_403.txt
new file mode 100644
index 0000000..f033e7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_403.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_404.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_404.txt
new file mode 100644
index 0000000..cd7addf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_404.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_405.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_405.txt
new file mode 100644
index 0000000..34ce950
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_405.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_406.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_406.txt
new file mode 100644
index 0000000..5e33568
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_406.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_407.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_407.txt
new file mode 100644
index 0000000..3a3ed5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_407.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_408.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_408.txt
new file mode 100644
index 0000000..e81880e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_408.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_409.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_409.txt
new file mode 100644
index 0000000..af5eaa4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_409.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_41.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_41.txt
new file mode 100644
index 0000000..e5619b6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_41.txt
@@ -0,0 +1 @@
+0 0.5461538461538461 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_410.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_410.txt
new file mode 100644
index 0000000..f24dcec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_410.txt
@@ -0,0 +1 @@
+0 0.6346153846153846 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_411.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_411.txt
new file mode 100644
index 0000000..71d06c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_411.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_412.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_412.txt
new file mode 100644
index 0000000..7af0ef9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_412.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_413.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_413.txt
new file mode 100644
index 0000000..d8fb839
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_413.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_414.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_414.txt
new file mode 100644
index 0000000..1ad44a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_414.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_415.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_415.txt
new file mode 100644
index 0000000..6b042de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_415.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_416.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_416.txt
new file mode 100644
index 0000000..fa3285d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_416.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_417.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_417.txt
new file mode 100644
index 0000000..409cf73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_417.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_418.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_418.txt
new file mode 100644
index 0000000..a03149f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_418.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_419.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_419.txt
new file mode 100644
index 0000000..bb1d337
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_419.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_42.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_42.txt
new file mode 100644
index 0000000..fe23d41
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_42.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_420.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_420.txt
new file mode 100644
index 0000000..8432eb0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_420.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_421.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_421.txt
new file mode 100644
index 0000000..a87bf60
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_421.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_422.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_422.txt
new file mode 100644
index 0000000..abffae2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_422.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_423.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_423.txt
new file mode 100644
index 0000000..dc5afa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_423.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_424.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_424.txt
new file mode 100644
index 0000000..a5838ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_424.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_425.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_425.txt
new file mode 100644
index 0000000..3bfd9eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_425.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_426.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_426.txt
new file mode 100644
index 0000000..5a37dfc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_426.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.234375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_427.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_427.txt
new file mode 100644
index 0000000..0dcbe78
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_427.txt
@@ -0,0 +1 @@
+0 0.6 0.496875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_428.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_428.txt
new file mode 100644
index 0000000..3ec7e33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_428.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_429.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_429.txt
new file mode 100644
index 0000000..b3ec0c3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_429.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_43.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_43.txt
new file mode 100644
index 0000000..ef9e295
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_43.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_430.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_430.txt
new file mode 100644
index 0000000..572a01a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_430.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_431.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_431.txt
new file mode 100644
index 0000000..fec7a36
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_431.txt
@@ -0,0 +1 @@
+0 0.475 0.434375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_432.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_432.txt
new file mode 100644
index 0000000..789240f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_432.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_433.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_433.txt
new file mode 100644
index 0000000..43b8aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_433.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_434.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_434.txt
new file mode 100644
index 0000000..82e07fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_434.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_435.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_435.txt
new file mode 100644
index 0000000..1361397
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_435.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_436.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_436.txt
new file mode 100644
index 0000000..1bec417
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_436.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_437.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_437.txt
new file mode 100644
index 0000000..66529c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_437.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_438.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_438.txt
new file mode 100644
index 0000000..a90d501
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_438.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_439.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_439.txt
new file mode 100644
index 0000000..1cca387
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_439.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_44.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_44.txt
new file mode 100644
index 0000000..fe9127a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_44.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_440.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_440.txt
new file mode 100644
index 0000000..5647dfe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_440.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_441.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_441.txt
new file mode 100644
index 0000000..69264eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_441.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_442.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_442.txt
new file mode 100644
index 0000000..9f796f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_442.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_443.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_443.txt
new file mode 100644
index 0000000..cd1ed8c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_443.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_444.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_444.txt
new file mode 100644
index 0000000..b92f51d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_444.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_445.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_445.txt
new file mode 100644
index 0000000..a7122a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_445.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.371875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_446.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_446.txt
new file mode 100644
index 0000000..3056f8d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_446.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_447.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_447.txt
new file mode 100644
index 0000000..c8fd7c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_447.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_448.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_448.txt
new file mode 100644
index 0000000..42e7566
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_448.txt
@@ -0,0 +1 @@
+0 0.5 0.340625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_449.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_449.txt
new file mode 100644
index 0000000..d5f6e18
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_449.txt
@@ -0,0 +1 @@
+0 0.6557692307692308 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_45.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_45.txt
new file mode 100644
index 0000000..be27224
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_45.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_450.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_450.txt
new file mode 100644
index 0000000..254b0fe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_450.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_451.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_451.txt
new file mode 100644
index 0000000..3438ed1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_451.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_452.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_452.txt
new file mode 100644
index 0000000..0f7caab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_452.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.578125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_453.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_453.txt
new file mode 100644
index 0000000..64ce159
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_453.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_454.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_454.txt
new file mode 100644
index 0000000..df14c97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_454.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_455.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_455.txt
new file mode 100644
index 0000000..20e81a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_455.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_456.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_456.txt
new file mode 100644
index 0000000..c40cd35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_456.txt
@@ -0,0 +1 @@
+0 0.375 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_457.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_457.txt
new file mode 100644
index 0000000..60d09f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_457.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_458.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_458.txt
new file mode 100644
index 0000000..33131a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_458.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_459.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_459.txt
new file mode 100644
index 0000000..7c7b268
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_459.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_46.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_46.txt
new file mode 100644
index 0000000..b135db0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_46.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_460.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_460.txt
new file mode 100644
index 0000000..41a354f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_460.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_461.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_461.txt
new file mode 100644
index 0000000..ff05970
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_461.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_462.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_462.txt
new file mode 100644
index 0000000..f6f2bfa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_462.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_463.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_463.txt
new file mode 100644
index 0000000..8b7f7ec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_463.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.459375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_464.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_464.txt
new file mode 100644
index 0000000..1dc6654
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_464.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_465.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_465.txt
new file mode 100644
index 0000000..2b351fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_465.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.165625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_466.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_466.txt
new file mode 100644
index 0000000..3eee44a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_466.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_467.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_467.txt
new file mode 100644
index 0000000..30708d5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_467.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_468.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_468.txt
new file mode 100644
index 0000000..f77b38c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_468.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_469.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_469.txt
new file mode 100644
index 0000000..1867d9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_469.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_47.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_47.txt
new file mode 100644
index 0000000..5fcdbce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_47.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_470.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_470.txt
new file mode 100644
index 0000000..84c8011
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_470.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_471.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_471.txt
new file mode 100644
index 0000000..2770aa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_471.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_472.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_472.txt
new file mode 100644
index 0000000..cb91346
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_472.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_473.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_473.txt
new file mode 100644
index 0000000..7341d02
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_473.txt
@@ -0,0 +1 @@
+0 0.625 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_474.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_474.txt
new file mode 100644
index 0000000..78894a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_474.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_475.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_475.txt
new file mode 100644
index 0000000..961e3bd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_475.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_476.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_476.txt
new file mode 100644
index 0000000..51cdb5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_476.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_477.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_477.txt
new file mode 100644
index 0000000..a73edef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_477.txt
@@ -0,0 +1 @@
+0 0.525 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_478.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_478.txt
new file mode 100644
index 0000000..0bc673d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_478.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_479.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_479.txt
new file mode 100644
index 0000000..7e9910a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_479.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_48.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_48.txt
new file mode 100644
index 0000000..b1d93f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_48.txt
@@ -0,0 +1 @@
+0 0.45 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_480.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_480.txt
new file mode 100644
index 0000000..1ece177
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_480.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_481.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_481.txt
new file mode 100644
index 0000000..87e147f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_481.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_482.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_482.txt
new file mode 100644
index 0000000..aee9ecf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_482.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_483.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_483.txt
new file mode 100644
index 0000000..8d850af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_483.txt
@@ -0,0 +1 @@
+0 0.40384615384615385 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_484.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_484.txt
new file mode 100644
index 0000000..55c0f3c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_484.txt
@@ -0,0 +1 @@
+0 0.4 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_485.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_485.txt
new file mode 100644
index 0000000..abdd3ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_485.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_486.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_486.txt
new file mode 100644
index 0000000..093ac52
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_486.txt
@@ -0,0 +1 @@
+0 0.4 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_487.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_487.txt
new file mode 100644
index 0000000..b7286ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_487.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_488.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_488.txt
new file mode 100644
index 0000000..6c03d22
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_488.txt
@@ -0,0 +1 @@
+0 0.4346153846153846 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_489.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_489.txt
new file mode 100644
index 0000000..d48661f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_489.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_49.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_49.txt
new file mode 100644
index 0000000..7bf9900
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_49.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_490.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_490.txt
new file mode 100644
index 0000000..1837efd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_490.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_491.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_491.txt
new file mode 100644
index 0000000..e8cb6cb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_491.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_492.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_492.txt
new file mode 100644
index 0000000..6190a04
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_492.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_493.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_493.txt
new file mode 100644
index 0000000..7843909
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_493.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_494.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_494.txt
new file mode 100644
index 0000000..fa1e00f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_494.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_495.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_495.txt
new file mode 100644
index 0000000..8d6d7be
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_495.txt
@@ -0,0 +1 @@
+0 0.3730769230769231 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_496.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_496.txt
new file mode 100644
index 0000000..fd0eb1d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_496.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_497.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_497.txt
new file mode 100644
index 0000000..df1813a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_497.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.3 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_498.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_498.txt
new file mode 100644
index 0000000..0942858
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_498.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_499.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_499.txt
new file mode 100644
index 0000000..161ae00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_499.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_5.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_5.txt
new file mode 100644
index 0000000..3a8ae19
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_5.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_50.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_50.txt
new file mode 100644
index 0000000..9d82f33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_50.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_500.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_500.txt
new file mode 100644
index 0000000..ecf503d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_500.txt
@@ -0,0 +1 @@
+0 0.46923076923076923 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_501.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_501.txt
new file mode 100644
index 0000000..8515f89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_501.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_502.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_502.txt
new file mode 100644
index 0000000..b4466ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_502.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_503.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_503.txt
new file mode 100644
index 0000000..90bd624
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_503.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_504.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_504.txt
new file mode 100644
index 0000000..239b697
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_504.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_505.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_505.txt
new file mode 100644
index 0000000..135e324
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_505.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.44375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_506.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_506.txt
new file mode 100644
index 0000000..6cc4b69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_506.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_507.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_507.txt
new file mode 100644
index 0000000..77913c8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_507.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_508.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_508.txt
new file mode 100644
index 0000000..ea9741d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_508.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_509.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_509.txt
new file mode 100644
index 0000000..c1c46ab
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_509.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_51.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_51.txt
new file mode 100644
index 0000000..bae483b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_51.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_510.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_510.txt
new file mode 100644
index 0000000..f580129
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_510.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_511.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_511.txt
new file mode 100644
index 0000000..226409f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_511.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_512.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_512.txt
new file mode 100644
index 0000000..979a15e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_512.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.1375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_513.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_513.txt
new file mode 100644
index 0000000..09c6c41
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_513.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_514.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_514.txt
new file mode 100644
index 0000000..4e00b1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_514.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_515.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_515.txt
new file mode 100644
index 0000000..1347cf2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_515.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_516.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_516.txt
new file mode 100644
index 0000000..0d45ab4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_516.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_517.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_517.txt
new file mode 100644
index 0000000..6a16ad1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_517.txt
@@ -0,0 +1 @@
+0 0.325 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_518.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_518.txt
new file mode 100644
index 0000000..009b920
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_518.txt
@@ -0,0 +1 @@
+0 0.41346153846153844 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_519.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_519.txt
new file mode 100644
index 0000000..4cbcc33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_519.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_52.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_52.txt
new file mode 100644
index 0000000..04c2ed3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_52.txt
@@ -0,0 +1 @@
+0 0.4096153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_520.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_520.txt
new file mode 100644
index 0000000..1a14550
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_520.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_521.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_521.txt
new file mode 100644
index 0000000..1281d69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_521.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_522.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_522.txt
new file mode 100644
index 0000000..9feb54d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_522.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_523.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_523.txt
new file mode 100644
index 0000000..fb21c9a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_523.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_524.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_524.txt
new file mode 100644
index 0000000..9625840
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_524.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_525.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_525.txt
new file mode 100644
index 0000000..4be5e1b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_525.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_526.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_526.txt
new file mode 100644
index 0000000..8ca6701
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_526.txt
@@ -0,0 +1 @@
+0 0.675 0.565625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_527.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_527.txt
new file mode 100644
index 0000000..8b9953d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_527.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_528.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_528.txt
new file mode 100644
index 0000000..b18bc56
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_528.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.546875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_529.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_529.txt
new file mode 100644
index 0000000..37ca185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_529.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_53.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_53.txt
new file mode 100644
index 0000000..bf3b4b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_53.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.084375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_530.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_530.txt
new file mode 100644
index 0000000..f498815
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_530.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_531.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_531.txt
new file mode 100644
index 0000000..93b2b5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_531.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_532.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_532.txt
new file mode 100644
index 0000000..fc2f1f4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_532.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_533.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_533.txt
new file mode 100644
index 0000000..a99f9f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_533.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_534.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_534.txt
new file mode 100644
index 0000000..95eb91c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_534.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_535.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_535.txt
new file mode 100644
index 0000000..e6d6911
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_535.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_536.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_536.txt
new file mode 100644
index 0000000..ae5fff5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_536.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_537.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_537.txt
new file mode 100644
index 0000000..e7efa9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_537.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_538.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_538.txt
new file mode 100644
index 0000000..8f2edd0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_538.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.646875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_539.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_539.txt
new file mode 100644
index 0000000..97ee822
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_539.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_54.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_54.txt
new file mode 100644
index 0000000..7c940dc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_54.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_540.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_540.txt
new file mode 100644
index 0000000..c74b068
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_540.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_541.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_541.txt
new file mode 100644
index 0000000..57cddcc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_541.txt
@@ -0,0 +1 @@
+0 0.5461538461538461 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_542.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_542.txt
new file mode 100644
index 0000000..3e30cd7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_542.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_543.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_543.txt
new file mode 100644
index 0000000..6059bc1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_543.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_544.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_544.txt
new file mode 100644
index 0000000..cc9d46b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_544.txt
@@ -0,0 +1 @@
+0 0.375 0.084375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_545.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_545.txt
new file mode 100644
index 0000000..f2641c2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_545.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_546.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_546.txt
new file mode 100644
index 0000000..a5bd0d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_546.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_547.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_547.txt
new file mode 100644
index 0000000..1fd915a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_547.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_548.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_548.txt
new file mode 100644
index 0000000..60d65b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_548.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_549.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_549.txt
new file mode 100644
index 0000000..9b17ba9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_549.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_55.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_55.txt
new file mode 100644
index 0000000..b8159d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_55.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.10625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_550.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_550.txt
new file mode 100644
index 0000000..3a70233
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_550.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_551.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_551.txt
new file mode 100644
index 0000000..c076861
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_551.txt
@@ -0,0 +1 @@
+0 0.6673076923076923 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_552.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_552.txt
new file mode 100644
index 0000000..702b490
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_552.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_553.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_553.txt
new file mode 100644
index 0000000..87c6aec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_553.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_554.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_554.txt
new file mode 100644
index 0000000..4361932
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_554.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_555.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_555.txt
new file mode 100644
index 0000000..b52465a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_555.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_556.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_556.txt
new file mode 100644
index 0000000..e63fe04
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_556.txt
@@ -0,0 +1 @@
+0 0.325 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_557.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_557.txt
new file mode 100644
index 0000000..bdb2066
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_557.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_558.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_558.txt
new file mode 100644
index 0000000..5722c59
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_558.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_559.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_559.txt
new file mode 100644
index 0000000..7bc9e40
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_559.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_56.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_56.txt
new file mode 100644
index 0000000..59e6b3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_56.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_560.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_560.txt
new file mode 100644
index 0000000..715aabe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_560.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_561.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_561.txt
new file mode 100644
index 0000000..e196846
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_561.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_562.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_562.txt
new file mode 100644
index 0000000..1bc81bb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_562.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_563.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_563.txt
new file mode 100644
index 0000000..44bba2d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_563.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_564.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_564.txt
new file mode 100644
index 0000000..87a7643
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_564.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_565.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_565.txt
new file mode 100644
index 0000000..9fec86b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_565.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_566.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_566.txt
new file mode 100644
index 0000000..2ae336b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_566.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_567.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_567.txt
new file mode 100644
index 0000000..48f9cfa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_567.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.234375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_568.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_568.txt
new file mode 100644
index 0000000..3b252ec
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_568.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_569.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_569.txt
new file mode 100644
index 0000000..417a777
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_569.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_57.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_57.txt
new file mode 100644
index 0000000..9daab33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_57.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.365625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_570.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_570.txt
new file mode 100644
index 0000000..1651e6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_570.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_571.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_571.txt
new file mode 100644
index 0000000..8806452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_571.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_572.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_572.txt
new file mode 100644
index 0000000..f0f2cc4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_572.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_573.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_573.txt
new file mode 100644
index 0000000..194fa16
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_573.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_574.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_574.txt
new file mode 100644
index 0000000..0d1627f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_574.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_575.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_575.txt
new file mode 100644
index 0000000..1991135
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_575.txt
@@ -0,0 +1 @@
+0 0.4076923076923077 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_576.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_576.txt
new file mode 100644
index 0000000..ad609ac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_576.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_577.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_577.txt
new file mode 100644
index 0000000..8e2ea9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_577.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_578.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_578.txt
new file mode 100644
index 0000000..eb892d9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_578.txt
@@ -0,0 +1 @@
+0 0.41923076923076924 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_579.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_579.txt
new file mode 100644
index 0000000..bf9bec7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_579.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_58.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_58.txt
new file mode 100644
index 0000000..5044287
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_58.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_580.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_580.txt
new file mode 100644
index 0000000..01ca7e7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_580.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_581.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_581.txt
new file mode 100644
index 0000000..f85437f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_581.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_582.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_582.txt
new file mode 100644
index 0000000..f6a1836
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_582.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_583.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_583.txt
new file mode 100644
index 0000000..52ed8ca
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_583.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_584.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_584.txt
new file mode 100644
index 0000000..0546360
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_584.txt
@@ -0,0 +1 @@
+0 0.6115384615384616 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_585.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_585.txt
new file mode 100644
index 0000000..8fb557d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_585.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_586.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_586.txt
new file mode 100644
index 0000000..5022d3a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_586.txt
@@ -0,0 +1 @@
+0 0.4576923076923077 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_587.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_587.txt
new file mode 100644
index 0000000..bc32b2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_587.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_588.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_588.txt
new file mode 100644
index 0000000..b31a3ee
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_588.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_589.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_589.txt
new file mode 100644
index 0000000..5313457
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_589.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_59.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_59.txt
new file mode 100644
index 0000000..25dc4df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_59.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_590.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_590.txt
new file mode 100644
index 0000000..7a6fb82
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_590.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_591.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_591.txt
new file mode 100644
index 0000000..72dd2ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_591.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_592.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_592.txt
new file mode 100644
index 0000000..494e283
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_592.txt
@@ -0,0 +1 @@
+0 0.6807692307692308 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_593.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_593.txt
new file mode 100644
index 0000000..23055f1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_593.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_594.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_594.txt
new file mode 100644
index 0000000..db8d99f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_594.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_595.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_595.txt
new file mode 100644
index 0000000..d6383f2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_595.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_596.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_596.txt
new file mode 100644
index 0000000..9afbacc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_596.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_597.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_597.txt
new file mode 100644
index 0000000..941f6f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_597.txt
@@ -0,0 +1 @@
+0 0.3423076923076923 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_598.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_598.txt
new file mode 100644
index 0000000..9325358
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_598.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_599.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_599.txt
new file mode 100644
index 0000000..fad5383
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_599.txt
@@ -0,0 +1 @@
+0 0.5153846153846153 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_6.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_6.txt
new file mode 100644
index 0000000..1bc9c5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_6.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_60.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_60.txt
new file mode 100644
index 0000000..1ce4452
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_60.txt
@@ -0,0 +1 @@
+0 0.35 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_600.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_600.txt
new file mode 100644
index 0000000..f00f3eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_600.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_601.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_601.txt
new file mode 100644
index 0000000..1e7ceda
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_601.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_602.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_602.txt
new file mode 100644
index 0000000..7277950
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_602.txt
@@ -0,0 +1 @@
+0 0.425 0.65 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_603.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_603.txt
new file mode 100644
index 0000000..e98bbb5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_603.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.34375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_604.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_604.txt
new file mode 100644
index 0000000..37fbe35
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_604.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.146875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_605.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_605.txt
new file mode 100644
index 0000000..1d22910
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_605.txt
@@ -0,0 +1 @@
+0 0.5615384615384615 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_606.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_606.txt
new file mode 100644
index 0000000..6af410c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_606.txt
@@ -0,0 +1 @@
+0 0.6788461538461539 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_607.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_607.txt
new file mode 100644
index 0000000..779cba3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_607.txt
@@ -0,0 +1 @@
+0 0.6038461538461538 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_608.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_608.txt
new file mode 100644
index 0000000..6f6ac6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_608.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_609.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_609.txt
new file mode 100644
index 0000000..e0bc4e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_609.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_61.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_61.txt
new file mode 100644
index 0000000..a4ea8a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_61.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_610.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_610.txt
new file mode 100644
index 0000000..c513175
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_610.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_611.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_611.txt
new file mode 100644
index 0000000..2959c58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_611.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_612.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_612.txt
new file mode 100644
index 0000000..182f227
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_612.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_613.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_613.txt
new file mode 100644
index 0000000..d540b76
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_613.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_614.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_614.txt
new file mode 100644
index 0000000..a70d39b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_614.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_615.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_615.txt
new file mode 100644
index 0000000..53c1c15
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_615.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_616.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_616.txt
new file mode 100644
index 0000000..5456c39
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_616.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_617.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_617.txt
new file mode 100644
index 0000000..263feb9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_617.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_618.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_618.txt
new file mode 100644
index 0000000..30d9d0c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_618.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.646875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_619.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_619.txt
new file mode 100644
index 0000000..117a6db
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_619.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_62.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_62.txt
new file mode 100644
index 0000000..beae879
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_62.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_620.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_620.txt
new file mode 100644
index 0000000..769dfb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_620.txt
@@ -0,0 +1 @@
+0 0.36923076923076925 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_621.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_621.txt
new file mode 100644
index 0000000..1fc0e75
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_621.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_622.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_622.txt
new file mode 100644
index 0000000..8e992d4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_622.txt
@@ -0,0 +1 @@
+0 0.575 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_623.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_623.txt
new file mode 100644
index 0000000..b16cf00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_623.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_624.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_624.txt
new file mode 100644
index 0000000..71cd109
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_624.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_625.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_625.txt
new file mode 100644
index 0000000..aa9a21c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_625.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.396875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_626.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_626.txt
new file mode 100644
index 0000000..ca9365a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_626.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.371875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_627.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_627.txt
new file mode 100644
index 0000000..6b8ef12
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_627.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_628.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_628.txt
new file mode 100644
index 0000000..8412441
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_628.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_629.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_629.txt
new file mode 100644
index 0000000..4469a47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_629.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_63.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_63.txt
new file mode 100644
index 0000000..644542e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_63.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_630.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_630.txt
new file mode 100644
index 0000000..ae2804e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_630.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_631.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_631.txt
new file mode 100644
index 0000000..a5d6e96
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_631.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_632.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_632.txt
new file mode 100644
index 0000000..5f7f7c2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_632.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_633.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_633.txt
new file mode 100644
index 0000000..09e8348
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_633.txt
@@ -0,0 +1 @@
+0 0.5923076923076923 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_634.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_634.txt
new file mode 100644
index 0000000..681116c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_634.txt
@@ -0,0 +1 @@
+0 0.48846153846153845 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_635.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_635.txt
new file mode 100644
index 0000000..eab5110
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_635.txt
@@ -0,0 +1 @@
+0 0.5153846153846153 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_636.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_636.txt
new file mode 100644
index 0000000..9af966a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_636.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_637.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_637.txt
new file mode 100644
index 0000000..9e5da93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_637.txt
@@ -0,0 +1 @@
+0 0.6711538461538461 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_638.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_638.txt
new file mode 100644
index 0000000..55fa9a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_638.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_639.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_639.txt
new file mode 100644
index 0000000..9dbdd55
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_639.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.178125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_64.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_64.txt
new file mode 100644
index 0000000..2af9dae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_64.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_640.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_640.txt
new file mode 100644
index 0000000..b32aa7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_640.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_641.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_641.txt
new file mode 100644
index 0000000..aea91df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_641.txt
@@ -0,0 +1 @@
+0 0.6692307692307692 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_642.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_642.txt
new file mode 100644
index 0000000..35993d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_642.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_643.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_643.txt
new file mode 100644
index 0000000..3828a85
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_643.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_644.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_644.txt
new file mode 100644
index 0000000..e983517
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_644.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_645.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_645.txt
new file mode 100644
index 0000000..2a5f9a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_645.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_646.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_646.txt
new file mode 100644
index 0000000..8cefa9b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_646.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_647.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_647.txt
new file mode 100644
index 0000000..77ca2ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_647.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.45 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_648.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_648.txt
new file mode 100644
index 0000000..00aef56
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_648.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_649.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_649.txt
new file mode 100644
index 0000000..ca38b72
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_649.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_65.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_65.txt
new file mode 100644
index 0000000..751a9e9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_65.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_650.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_650.txt
new file mode 100644
index 0000000..2936051
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_650.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_651.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_651.txt
new file mode 100644
index 0000000..6a5dc26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_651.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_652.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_652.txt
new file mode 100644
index 0000000..4d18f33
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_652.txt
@@ -0,0 +1 @@
+0 0.676923076923077 0.446875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_653.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_653.txt
new file mode 100644
index 0000000..e3d499f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_653.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_654.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_654.txt
new file mode 100644
index 0000000..d1b66b2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_654.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_655.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_655.txt
new file mode 100644
index 0000000..8be6668
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_655.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_656.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_656.txt
new file mode 100644
index 0000000..af7775d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_656.txt
@@ -0,0 +1 @@
+0 0.6826923076923077 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_657.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_657.txt
new file mode 100644
index 0000000..03a934f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_657.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_658.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_658.txt
new file mode 100644
index 0000000..0dfc4bb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_658.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_659.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_659.txt
new file mode 100644
index 0000000..fa3285d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_659.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_66.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_66.txt
new file mode 100644
index 0000000..a049d58
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_66.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_660.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_660.txt
new file mode 100644
index 0000000..c7a4551
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_660.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.665625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_661.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_661.txt
new file mode 100644
index 0000000..75d5d77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_661.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_662.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_662.txt
new file mode 100644
index 0000000..cc6da53
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_662.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_663.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_663.txt
new file mode 100644
index 0000000..6860283
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_663.txt
@@ -0,0 +1 @@
+0 0.6365384615384615 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_664.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_664.txt
new file mode 100644
index 0000000..cf3e1f7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_664.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_665.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_665.txt
new file mode 100644
index 0000000..87c433b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_665.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_666.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_666.txt
new file mode 100644
index 0000000..c991a7c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_666.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_667.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_667.txt
new file mode 100644
index 0000000..1e28f48
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_667.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_668.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_668.txt
new file mode 100644
index 0000000..3b2fd34
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_668.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_669.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_669.txt
new file mode 100644
index 0000000..e00f00e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_669.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_67.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_67.txt
new file mode 100644
index 0000000..380aaa5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_67.txt
@@ -0,0 +1 @@
+0 0.35 0.596875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_670.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_670.txt
new file mode 100644
index 0000000..c2d412c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_670.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_671.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_671.txt
new file mode 100644
index 0000000..0346b11
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_671.txt
@@ -0,0 +1 @@
+0 0.5 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_672.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_672.txt
new file mode 100644
index 0000000..acfa65e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_672.txt
@@ -0,0 +1 @@
+0 0.6038461538461538 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_673.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_673.txt
new file mode 100644
index 0000000..bc7ab5f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_673.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_674.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_674.txt
new file mode 100644
index 0000000..d4e666b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_674.txt
@@ -0,0 +1 @@
+0 0.5134615384615384 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_675.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_675.txt
new file mode 100644
index 0000000..9ec5c69
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_675.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.15 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_676.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_676.txt
new file mode 100644
index 0000000..9332c77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_676.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_677.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_677.txt
new file mode 100644
index 0000000..c5c908b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_677.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_678.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_678.txt
new file mode 100644
index 0000000..690a984
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_678.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_679.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_679.txt
new file mode 100644
index 0000000..7ff63f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_679.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_68.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_68.txt
new file mode 100644
index 0000000..e49d5ee
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_68.txt
@@ -0,0 +1 @@
+0 0.5115384615384615 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_680.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_680.txt
new file mode 100644
index 0000000..050d22e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_680.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_681.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_681.txt
new file mode 100644
index 0000000..64dc952
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_681.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_682.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_682.txt
new file mode 100644
index 0000000..fa99e5e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_682.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_683.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_683.txt
new file mode 100644
index 0000000..07ba98c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_683.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.33125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_684.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_684.txt
new file mode 100644
index 0000000..b75f04d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_684.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.5375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_685.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_685.txt
new file mode 100644
index 0000000..53dd16a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_685.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_686.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_686.txt
new file mode 100644
index 0000000..dd3d623
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_686.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_687.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_687.txt
new file mode 100644
index 0000000..93711d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_687.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_688.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_688.txt
new file mode 100644
index 0000000..5b9c6b5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_688.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_689.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_689.txt
new file mode 100644
index 0000000..42f057a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_689.txt
@@ -0,0 +1 @@
+0 0.35 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_69.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_69.txt
new file mode 100644
index 0000000..b8dea74
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_69.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.4125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_690.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_690.txt
new file mode 100644
index 0000000..1420fdc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_690.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_691.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_691.txt
new file mode 100644
index 0000000..85cdb8d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_691.txt
@@ -0,0 +1 @@
+0 0.3942307692307692 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_692.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_692.txt
new file mode 100644
index 0000000..354e8c3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_692.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_693.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_693.txt
new file mode 100644
index 0000000..90905cd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_693.txt
@@ -0,0 +1 @@
+0 0.36923076923076925 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_694.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_694.txt
new file mode 100644
index 0000000..4fd98ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_694.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_695.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_695.txt
new file mode 100644
index 0000000..f799b68
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_695.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.1375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_696.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_696.txt
new file mode 100644
index 0000000..7590d4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_696.txt
@@ -0,0 +1 @@
+0 0.47884615384615387 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_697.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_697.txt
new file mode 100644
index 0000000..74e8554
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_697.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.40625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_698.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_698.txt
new file mode 100644
index 0000000..62b35f9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_698.txt
@@ -0,0 +1 @@
+0 0.425 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_699.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_699.txt
new file mode 100644
index 0000000..dbf2e34
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_699.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_7.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_7.txt
new file mode 100644
index 0000000..403b1ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_7.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.31875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_70.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_70.txt
new file mode 100644
index 0000000..fb2ed00
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_70.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_700.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_700.txt
new file mode 100644
index 0000000..d077071
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_700.txt
@@ -0,0 +1 @@
+0 0.575 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_701.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_701.txt
new file mode 100644
index 0000000..37ca185
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_701.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_702.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_702.txt
new file mode 100644
index 0000000..e2d73c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_702.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.228125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_703.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_703.txt
new file mode 100644
index 0000000..8b1497b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_703.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.221875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_704.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_704.txt
new file mode 100644
index 0000000..ed6a265
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_704.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.55625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_705.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_705.txt
new file mode 100644
index 0000000..c172b52
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_705.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_706.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_706.txt
new file mode 100644
index 0000000..8556242
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_706.txt
@@ -0,0 +1 @@
+0 0.6884615384615385 0.0625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_707.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_707.txt
new file mode 100644
index 0000000..eb39e9c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_707.txt
@@ -0,0 +1 @@
+0 0.6538461538461539 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_708.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_708.txt
new file mode 100644
index 0000000..34e2920
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_708.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_709.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_709.txt
new file mode 100644
index 0000000..286debd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_709.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_71.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_71.txt
new file mode 100644
index 0000000..be6e1ce
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_71.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_710.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_710.txt
new file mode 100644
index 0000000..81439bc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_710.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.278125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_711.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_711.txt
new file mode 100644
index 0000000..04c0ae9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_711.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_712.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_712.txt
new file mode 100644
index 0000000..924a037
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_712.txt
@@ -0,0 +1 @@
+0 0.6192307692307693 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_713.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_713.txt
new file mode 100644
index 0000000..00c39d7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_713.txt
@@ -0,0 +1 @@
+0 0.4230769230769231 0.60625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_714.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_714.txt
new file mode 100644
index 0000000..cc16757
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_714.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_715.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_715.txt
new file mode 100644
index 0000000..064bab6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_715.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.6 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_716.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_716.txt
new file mode 100644
index 0000000..7ab2770
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_716.txt
@@ -0,0 +1 @@
+0 0.6519230769230769 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_717.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_717.txt
new file mode 100644
index 0000000..f7bb6de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_717.txt
@@ -0,0 +1 @@
+0 0.4826923076923077 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_718.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_718.txt
new file mode 100644
index 0000000..c4b40ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_718.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.071875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_719.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_719.txt
new file mode 100644
index 0000000..4d0122a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_719.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_72.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_72.txt
new file mode 100644
index 0000000..8cbe82a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_72.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_720.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_720.txt
new file mode 100644
index 0000000..8d54a42
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_720.txt
@@ -0,0 +1 @@
+0 0.5884615384615385 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_721.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_721.txt
new file mode 100644
index 0000000..526ef6e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_721.txt
@@ -0,0 +1 @@
+0 0.4442307692307692 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_722.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_722.txt
new file mode 100644
index 0000000..9196bb5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_722.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_723.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_723.txt
new file mode 100644
index 0000000..fadf546
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_723.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_724.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_724.txt
new file mode 100644
index 0000000..7f6ffbe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_724.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_725.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_725.txt
new file mode 100644
index 0000000..86c2f4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_725.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_726.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_726.txt
new file mode 100644
index 0000000..f8f0b37
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_726.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.078125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_727.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_727.txt
new file mode 100644
index 0000000..1721f4a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_727.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.515625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_728.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_728.txt
new file mode 100644
index 0000000..560fdfe
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_728.txt
@@ -0,0 +1 @@
+0 0.3269230769230769 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_729.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_729.txt
new file mode 100644
index 0000000..d612fb2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_729.txt
@@ -0,0 +1 @@
+0 0.375 0.096875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_73.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_73.txt
new file mode 100644
index 0000000..946ca93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_73.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_730.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_730.txt
new file mode 100644
index 0000000..c836be8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_730.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.65625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_731.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_731.txt
new file mode 100644
index 0000000..c386580
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_731.txt
@@ -0,0 +1 @@
+0 0.575 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_732.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_732.txt
new file mode 100644
index 0000000..5151bd4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_732.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_733.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_733.txt
new file mode 100644
index 0000000..469abf0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_733.txt
@@ -0,0 +1 @@
+0 0.5653846153846154 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_734.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_734.txt
new file mode 100644
index 0000000..e914a92
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_734.txt
@@ -0,0 +1 @@
+0 0.6442307692307693 0.11875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_735.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_735.txt
new file mode 100644
index 0000000..770057e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_735.txt
@@ -0,0 +1 @@
+0 0.5 0.19375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_736.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_736.txt
new file mode 100644
index 0000000..b581e62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_736.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_737.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_737.txt
new file mode 100644
index 0000000..86baa6f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_737.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.190625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_738.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_738.txt
new file mode 100644
index 0000000..33eef5b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_738.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.39375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_739.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_739.txt
new file mode 100644
index 0000000..4ab4aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_739.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_74.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_74.txt
new file mode 100644
index 0000000..68708f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_74.txt
@@ -0,0 +1 @@
+0 0.6403846153846153 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_740.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_740.txt
new file mode 100644
index 0000000..abdd3ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_740.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.653125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_741.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_741.txt
new file mode 100644
index 0000000..3a0258d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_741.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.478125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_742.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_742.txt
new file mode 100644
index 0000000..8b3caaa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_742.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_743.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_743.txt
new file mode 100644
index 0000000..f8946a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_743.txt
@@ -0,0 +1 @@
+0 0.5 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_744.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_744.txt
new file mode 100644
index 0000000..65a47a0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_744.txt
@@ -0,0 +1 @@
+0 0.45 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_745.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_745.txt
new file mode 100644
index 0000000..6c11ca8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_745.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_746.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_746.txt
new file mode 100644
index 0000000..af09141
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_746.txt
@@ -0,0 +1 @@
+0 0.3769230769230769 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_747.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_747.txt
new file mode 100644
index 0000000..2e0c7a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_747.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.64375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_748.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_748.txt
new file mode 100644
index 0000000..388d2e2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_748.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_749.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_749.txt
new file mode 100644
index 0000000..0b5aca9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_749.txt
@@ -0,0 +1 @@
+0 0.6384615384615384 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_75.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_75.txt
new file mode 100644
index 0000000..84b9a22
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_75.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.1125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_750.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_750.txt
new file mode 100644
index 0000000..b6aa83c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_750.txt
@@ -0,0 +1 @@
+0 0.525 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_751.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_751.txt
new file mode 100644
index 0000000..2f5d45e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_751.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_752.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_752.txt
new file mode 100644
index 0000000..13bd218
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_752.txt
@@ -0,0 +1 @@
+0 0.33653846153846156 0.540625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_753.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_753.txt
new file mode 100644
index 0000000..cafc3d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_753.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_754.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_754.txt
new file mode 100644
index 0000000..7d56260
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_754.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_755.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_755.txt
new file mode 100644
index 0000000..0246ef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_755.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_756.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_756.txt
new file mode 100644
index 0000000..f30ae71
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_756.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_757.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_757.txt
new file mode 100644
index 0000000..1c535c9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_757.txt
@@ -0,0 +1 @@
+0 0.4423076923076923 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_758.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_758.txt
new file mode 100644
index 0000000..250ddd0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_758.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_759.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_759.txt
new file mode 100644
index 0000000..ea1db6a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_759.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.265625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_76.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_76.txt
new file mode 100644
index 0000000..d47d26e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_76.txt
@@ -0,0 +1 @@
+0 0.3923076923076923 0.15625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_760.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_760.txt
new file mode 100644
index 0000000..7f35054
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_760.txt
@@ -0,0 +1 @@
+0 0.6 0.140625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_761.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_761.txt
new file mode 100644
index 0000000..5014e26
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_761.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.3 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_762.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_762.txt
new file mode 100644
index 0000000..dab120a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_762.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_763.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_763.txt
new file mode 100644
index 0000000..f80aab1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_763.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.184375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_764.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_764.txt
new file mode 100644
index 0000000..d98d49b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_764.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.684375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_765.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_765.txt
new file mode 100644
index 0000000..cb9e7a7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_765.txt
@@ -0,0 +1 @@
+0 0.3076923076923077 0.58125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_766.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_766.txt
new file mode 100644
index 0000000..ee87e75
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_766.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_767.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_767.txt
new file mode 100644
index 0000000..3809a7f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_767.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_768.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_768.txt
new file mode 100644
index 0000000..c236265
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_768.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_769.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_769.txt
new file mode 100644
index 0000000..422c571
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_769.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.6625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_77.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_77.txt
new file mode 100644
index 0000000..657791b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_77.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_770.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_770.txt
new file mode 100644
index 0000000..43e1f7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_770.txt
@@ -0,0 +1 @@
+0 0.36538461538461536 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_771.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_771.txt
new file mode 100644
index 0000000..b9f8996
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_771.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_772.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_772.txt
new file mode 100644
index 0000000..df20c94
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_772.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.659375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_773.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_773.txt
new file mode 100644
index 0000000..03d1630
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_773.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.2125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_774.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_774.txt
new file mode 100644
index 0000000..0d4dcc1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_774.txt
@@ -0,0 +1 @@
+0 0.36730769230769234 0.6375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_775.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_775.txt
new file mode 100644
index 0000000..c3c8fd3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_775.txt
@@ -0,0 +1 @@
+0 0.38846153846153847 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_776.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_776.txt
new file mode 100644
index 0000000..368cac0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_776.txt
@@ -0,0 +1 @@
+0 0.4269230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_777.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_777.txt
new file mode 100644
index 0000000..2fcc412
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_777.txt
@@ -0,0 +1 @@
+0 0.3903846153846154 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_778.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_778.txt
new file mode 100644
index 0000000..56397ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_778.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_779.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_779.txt
new file mode 100644
index 0000000..61b80a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_779.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.43125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_78.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_78.txt
new file mode 100644
index 0000000..99284ae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_78.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.20625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_780.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_780.txt
new file mode 100644
index 0000000..86c2748
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_780.txt
@@ -0,0 +1 @@
+0 0.3230769230769231 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_781.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_781.txt
new file mode 100644
index 0000000..4044a1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_781.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_782.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_782.txt
new file mode 100644
index 0000000..a932ca1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_782.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_783.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_783.txt
new file mode 100644
index 0000000..b47f917
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_783.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.621875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_784.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_784.txt
new file mode 100644
index 0000000..4a8976b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_784.txt
@@ -0,0 +1 @@
+0 0.5403846153846154 0.3125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_785.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_785.txt
new file mode 100644
index 0000000..93148fc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_785.txt
@@ -0,0 +1 @@
+0 0.65 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_786.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_786.txt
new file mode 100644
index 0000000..3502ea0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_786.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_787.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_787.txt
new file mode 100644
index 0000000..fd7c418
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_787.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_788.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_788.txt
new file mode 100644
index 0000000..9b18d23
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_788.txt
@@ -0,0 +1 @@
+0 0.5269230769230769 0.384375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_789.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_789.txt
new file mode 100644
index 0000000..053cb0a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_789.txt
@@ -0,0 +1 @@
+0 0.5961538461538461 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_79.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_79.txt
new file mode 100644
index 0000000..6348780
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_79.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_790.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_790.txt
new file mode 100644
index 0000000..4cf9122
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_790.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.171875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_791.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_791.txt
new file mode 100644
index 0000000..20cacd9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_791.txt
@@ -0,0 +1 @@
+0 0.5 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_792.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_792.txt
new file mode 100644
index 0000000..3ea952f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_792.txt
@@ -0,0 +1 @@
+0 0.425 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_793.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_793.txt
new file mode 100644
index 0000000..b5a1671
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_793.txt
@@ -0,0 +1 @@
+0 0.4403846153846154 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_794.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_794.txt
new file mode 100644
index 0000000..8c3e2ff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_794.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_795.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_795.txt
new file mode 100644
index 0000000..d03f43e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_795.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_796.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_796.txt
new file mode 100644
index 0000000..7b76a32
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_796.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.6 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_797.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_797.txt
new file mode 100644
index 0000000..9035b73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_797.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_798.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_798.txt
new file mode 100644
index 0000000..1619297
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_798.txt
@@ -0,0 +1 @@
+0 0.40192307692307694 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_799.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_799.txt
new file mode 100644
index 0000000..6f337d3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_799.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_8.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_8.txt
new file mode 100644
index 0000000..500dc77
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_8.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.290625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_80.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_80.txt
new file mode 100644
index 0000000..0b2922a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_80.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_800.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_800.txt
new file mode 100644
index 0000000..cea322f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_800.txt
@@ -0,0 +1 @@
+0 0.31153846153846154 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_801.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_801.txt
new file mode 100644
index 0000000..0246ef8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_801.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.41875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_802.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_802.txt
new file mode 100644
index 0000000..1459da5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_802.txt
@@ -0,0 +1 @@
+0 0.5038461538461538 0.309375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_803.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_803.txt
new file mode 100644
index 0000000..5b1deb1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_803.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_804.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_804.txt
new file mode 100644
index 0000000..97d51d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_804.txt
@@ -0,0 +1 @@
+0 0.36153846153846153 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_805.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_805.txt
new file mode 100644
index 0000000..3a87724
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_805.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.4625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_806.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_806.txt
new file mode 100644
index 0000000..799de13
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_806.txt
@@ -0,0 +1 @@
+0 0.35192307692307695 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_807.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_807.txt
new file mode 100644
index 0000000..d49e705
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_807.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_808.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_808.txt
new file mode 100644
index 0000000..76fac5d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_808.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_809.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_809.txt
new file mode 100644
index 0000000..fa1255a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_809.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.103125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_81.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_81.txt
new file mode 100644
index 0000000..b8da217
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_81.txt
@@ -0,0 +1 @@
+0 0.6211538461538462 0.553125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_810.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_810.txt
new file mode 100644
index 0000000..ccf6ee9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_810.txt
@@ -0,0 +1 @@
+0 0.46153846153846156 0.328125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_811.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_811.txt
new file mode 100644
index 0000000..d6bc6a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_811.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_812.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_812.txt
new file mode 100644
index 0000000..88e37df
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_812.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_813.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_813.txt
new file mode 100644
index 0000000..990de50
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_813.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_814.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_814.txt
new file mode 100644
index 0000000..0492f2c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_814.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_815.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_815.txt
new file mode 100644
index 0000000..21c0b8b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_815.txt
@@ -0,0 +1 @@
+0 0.33076923076923076 0.571875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_816.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_816.txt
new file mode 100644
index 0000000..648e148
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_816.txt
@@ -0,0 +1 @@
+0 0.5326923076923077 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_817.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_817.txt
new file mode 100644
index 0000000..4398fe1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_817.txt
@@ -0,0 +1 @@
+0 0.65 0.409375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_818.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_818.txt
new file mode 100644
index 0000000..fef25bc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_818.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_819.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_819.txt
new file mode 100644
index 0000000..cf87658
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_819.txt
@@ -0,0 +1 @@
+0 0.45384615384615384 0.509375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_82.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_82.txt
new file mode 100644
index 0000000..b4a3d92
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_82.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_820.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_820.txt
new file mode 100644
index 0000000..ab0988f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_820.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.453125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_821.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_821.txt
new file mode 100644
index 0000000..25a5167
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_821.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.153125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_822.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_822.txt
new file mode 100644
index 0000000..f4c7869
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_822.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_823.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_823.txt
new file mode 100644
index 0000000..2236925
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_823.txt
@@ -0,0 +1 @@
+0 0.575 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_824.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_824.txt
new file mode 100644
index 0000000..57370bf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_824.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_825.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_825.txt
new file mode 100644
index 0000000..9f8e9af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_825.txt
@@ -0,0 +1 @@
+0 0.6846153846153846 0.3375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_826.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_826.txt
new file mode 100644
index 0000000..22ba662
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_826.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_827.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_827.txt
new file mode 100644
index 0000000..053f612
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_827.txt
@@ -0,0 +1 @@
+0 0.35 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_828.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_828.txt
new file mode 100644
index 0000000..f9c67f8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_828.txt
@@ -0,0 +1 @@
+0 0.43653846153846154 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_829.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_829.txt
new file mode 100644
index 0000000..87e6bd2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_829.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_83.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_83.txt
new file mode 100644
index 0000000..4a7a367
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_83.txt
@@ -0,0 +1 @@
+0 0.5192307692307693 0.38125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_830.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_830.txt
new file mode 100644
index 0000000..00c7e3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_830.txt
@@ -0,0 +1 @@
+0 0.6480769230769231 0.203125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_831.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_831.txt
new file mode 100644
index 0000000..4d49b97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_831.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.6125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_832.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_832.txt
new file mode 100644
index 0000000..c46e4f6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_832.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_833.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_833.txt
new file mode 100644
index 0000000..252635b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_833.txt
@@ -0,0 +1 @@
+0 0.6634615384615384 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_834.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_834.txt
new file mode 100644
index 0000000..7a54855
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_834.txt
@@ -0,0 +1 @@
+0 0.573076923076923 0.63125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_835.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_835.txt
new file mode 100644
index 0000000..f48109b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_835.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_836.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_836.txt
new file mode 100644
index 0000000..eba80a5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_836.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.246875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_837.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_837.txt
new file mode 100644
index 0000000..2c3c638
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_837.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_838.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_838.txt
new file mode 100644
index 0000000..4ce380e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_838.txt
@@ -0,0 +1 @@
+0 0.3403846153846154 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_839.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_839.txt
new file mode 100644
index 0000000..a2fbe1c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_839.txt
@@ -0,0 +1 @@
+0 0.5769230769230769 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_84.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_84.txt
new file mode 100644
index 0000000..182d059
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_84.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_840.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_840.txt
new file mode 100644
index 0000000..23f5fbc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_840.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_841.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_841.txt
new file mode 100644
index 0000000..26df00f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_841.txt
@@ -0,0 +1 @@
+0 0.35384615384615387 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_842.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_842.txt
new file mode 100644
index 0000000..66529c4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_842.txt
@@ -0,0 +1 @@
+0 0.6903846153846154 0.296875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_843.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_843.txt
new file mode 100644
index 0000000..b7fb5c5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_843.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_844.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_844.txt
new file mode 100644
index 0000000..8a49f4d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_844.txt
@@ -0,0 +1 @@
+0 0.3173076923076923 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_845.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_845.txt
new file mode 100644
index 0000000..3001658
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_845.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.128125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_846.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_846.txt
new file mode 100644
index 0000000..9da2efd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_846.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_847.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_847.txt
new file mode 100644
index 0000000..0dc930b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_847.txt
@@ -0,0 +1 @@
+0 0.40576923076923077 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_848.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_848.txt
new file mode 100644
index 0000000..9f2acb3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_848.txt
@@ -0,0 +1 @@
+0 0.6865384615384615 0.503125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_849.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_849.txt
new file mode 100644
index 0000000..8d0a686
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_849.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_85.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_85.txt
new file mode 100644
index 0000000..e469e68
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_85.txt
@@ -0,0 +1 @@
+0 0.4 0.2875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_850.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_850.txt
new file mode 100644
index 0000000..c1674e6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_850.txt
@@ -0,0 +1 @@
+0 0.3384615384615385 0.13125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_851.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_851.txt
new file mode 100644
index 0000000..03bacef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_851.txt
@@ -0,0 +1 @@
+0 0.6615384615384615 0.675 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_852.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_852.txt
new file mode 100644
index 0000000..532b7ed
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_852.txt
@@ -0,0 +1 @@
+0 0.6269230769230769 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_853.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_853.txt
new file mode 100644
index 0000000..655c38d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_853.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_854.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_854.txt
new file mode 100644
index 0000000..ca57efc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_854.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.50625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_855.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_855.txt
new file mode 100644
index 0000000..0ebe589
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_855.txt
@@ -0,0 +1 @@
+0 0.3576923076923077 0.56875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_856.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_856.txt
new file mode 100644
index 0000000..b310ce8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_856.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_857.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_857.txt
new file mode 100644
index 0000000..31ce9a8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_857.txt
@@ -0,0 +1 @@
+0 0.5538461538461539 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_858.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_858.txt
new file mode 100644
index 0000000..b2a796d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_858.txt
@@ -0,0 +1 @@
+0 0.34615384615384615 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_859.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_859.txt
new file mode 100644
index 0000000..73dc958
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_859.txt
@@ -0,0 +1 @@
+0 0.6307692307692307 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_86.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_86.txt
new file mode 100644
index 0000000..b62a51a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_86.txt
@@ -0,0 +1 @@
+0 0.4326923076923077 0.66875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_860.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_860.txt
new file mode 100644
index 0000000..3f05bb1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_860.txt
@@ -0,0 +1 @@
+0 0.5942307692307692 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_861.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_861.txt
new file mode 100644
index 0000000..b11cfb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_861.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.55 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_862.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_862.txt
new file mode 100644
index 0000000..d6cb984
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_862.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_863.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_863.txt
new file mode 100644
index 0000000..6c1805c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_863.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_864.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_864.txt
new file mode 100644
index 0000000..79c88b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_864.txt
@@ -0,0 +1 @@
+0 0.5826923076923077 0.1 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_865.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_865.txt
new file mode 100644
index 0000000..af6d5d6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_865.txt
@@ -0,0 +1 @@
+0 0.4634615384615385 0.671875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_866.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_866.txt
new file mode 100644
index 0000000..8c64abf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_866.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.29375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_867.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_867.txt
new file mode 100644
index 0000000..ebda7b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_867.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_868.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_868.txt
new file mode 100644
index 0000000..b3c0102
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_868.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.196875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_869.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_869.txt
new file mode 100644
index 0000000..1db1c89
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_869.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.18125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_87.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_87.txt
new file mode 100644
index 0000000..00e2b1f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_87.txt
@@ -0,0 +1 @@
+0 0.4307692307692308 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_870.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_870.txt
new file mode 100644
index 0000000..d431e9a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_870.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_871.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_871.txt
new file mode 100644
index 0000000..7fadbdd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_871.txt
@@ -0,0 +1 @@
+0 0.6076923076923076 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_872.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_872.txt
new file mode 100644
index 0000000..621c704
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_872.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_873.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_873.txt
new file mode 100644
index 0000000..0b8928c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_873.txt
@@ -0,0 +1 @@
+0 0.6730769230769231 0.48125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_874.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_874.txt
new file mode 100644
index 0000000..6012cf3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_874.txt
@@ -0,0 +1 @@
+0 0.5673076923076923 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_875.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_875.txt
new file mode 100644
index 0000000..b799c4e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_875.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_876.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_876.txt
new file mode 100644
index 0000000..e939c1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_876.txt
@@ -0,0 +1 @@
+0 0.5596153846153846 0.134375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_877.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_877.txt
new file mode 100644
index 0000000..54a92db
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_877.txt
@@ -0,0 +1 @@
+0 0.5423076923076923 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_878.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_878.txt
new file mode 100644
index 0000000..25c0ea4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_878.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.5125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_879.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_879.txt
new file mode 100644
index 0000000..d129ed8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_879.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_88.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_88.txt
new file mode 100644
index 0000000..88ebfac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_88.txt
@@ -0,0 +1 @@
+0 0.34807692307692306 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_880.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_880.txt
new file mode 100644
index 0000000..bbb3034
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_880.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_881.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_881.txt
new file mode 100644
index 0000000..b41cf7a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_881.txt
@@ -0,0 +1 @@
+0 0.4 0.678125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_882.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_882.txt
new file mode 100644
index 0000000..9f6dddf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_882.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.6875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_883.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_883.txt
new file mode 100644
index 0000000..3fabb09
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_883.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_884.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_884.txt
new file mode 100644
index 0000000..788869d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_884.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.5 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_885.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_885.txt
new file mode 100644
index 0000000..d11bc6d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_885.txt
@@ -0,0 +1 @@
+0 0.4461538461538462 0.265625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_886.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_886.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_886.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_887.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_887.txt
new file mode 100644
index 0000000..e956178
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_887.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.284375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_888.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_888.txt
new file mode 100644
index 0000000..26a8a6d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_888.txt
@@ -0,0 +1 @@
+0 0.5807692307692308 0.428125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_889.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_889.txt
new file mode 100644
index 0000000..7a9a449
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_889.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_89.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_89.txt
new file mode 100644
index 0000000..edb1725
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_89.txt
@@ -0,0 +1 @@
+0 0.48653846153846153 0.28125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_890.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_890.txt
new file mode 100644
index 0000000..6133eb8
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_890.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_891.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_891.txt
new file mode 100644
index 0000000..89694af
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_891.txt
@@ -0,0 +1 @@
+0 0.65 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_892.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_892.txt
new file mode 100644
index 0000000..23dad62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_892.txt
@@ -0,0 +1 @@
+0 0.5211538461538462 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_893.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_893.txt
new file mode 100644
index 0000000..7ed814b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_893.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_894.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_894.txt
new file mode 100644
index 0000000..733dd93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_894.txt
@@ -0,0 +1 @@
+0 0.6384615384615384 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_895.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_895.txt
new file mode 100644
index 0000000..388155f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_895.txt
@@ -0,0 +1 @@
+0 0.3557692307692308 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_896.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_896.txt
new file mode 100644
index 0000000..2632d3b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_896.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_897.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_897.txt
new file mode 100644
index 0000000..f065af9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_897.txt
@@ -0,0 +1 @@
+0 0.3596153846153846 0.51875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_898.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_898.txt
new file mode 100644
index 0000000..e24b894
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_898.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.346875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_899.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_899.txt
new file mode 100644
index 0000000..7d5f97c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_899.txt
@@ -0,0 +1 @@
+0 0.5980769230769231 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_9.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_9.txt
new file mode 100644
index 0000000..0227e94
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_9.txt
@@ -0,0 +1 @@
+0 0.4980769230769231 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_90.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_90.txt
new file mode 100644
index 0000000..8428034
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_90.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.4375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_900.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_900.txt
new file mode 100644
index 0000000..d3fe802
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_900.txt
@@ -0,0 +1 @@
+0 0.325 0.425 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_901.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_901.txt
new file mode 100644
index 0000000..8755512
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_901.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_902.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_902.txt
new file mode 100644
index 0000000..375cb97
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_902.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_903.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_903.txt
new file mode 100644
index 0000000..adf3beb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_903.txt
@@ -0,0 +1 @@
+0 0.3326923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_904.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_904.txt
new file mode 100644
index 0000000..e3521eb
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_904.txt
@@ -0,0 +1 @@
+0 0.6557692307692308 0.1625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_905.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_905.txt
new file mode 100644
index 0000000..fde0ee3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_905.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_906.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_906.txt
new file mode 100644
index 0000000..e42640b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_906.txt
@@ -0,0 +1 @@
+0 0.6596153846153846 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_907.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_907.txt
new file mode 100644
index 0000000..62b5c4c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_907.txt
@@ -0,0 +1 @@
+0 0.45576923076923076 0.3875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_908.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_908.txt
new file mode 100644
index 0000000..d5e76ae
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_908.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_909.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_909.txt
new file mode 100644
index 0000000..41d37ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_909.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_91.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_91.txt
new file mode 100644
index 0000000..7f3c8aa
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_91.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_910.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_910.txt
new file mode 100644
index 0000000..80d17ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_910.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_911.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_911.txt
new file mode 100644
index 0000000..536f488
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_911.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_912.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_912.txt
new file mode 100644
index 0000000..63836e5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_912.txt
@@ -0,0 +1 @@
+0 0.5288461538461539 0.321875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_913.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_913.txt
new file mode 100644
index 0000000..3140f2e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_913.txt
@@ -0,0 +1 @@
+0 0.6173076923076923 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_914.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_914.txt
new file mode 100644
index 0000000..87629a3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_914.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_915.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_915.txt
new file mode 100644
index 0000000..49829a6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_915.txt
@@ -0,0 +1 @@
+0 0.5307692307692308 0.109375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_916.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_916.txt
new file mode 100644
index 0000000..b4bda47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_916.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.46875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_917.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_917.txt
new file mode 100644
index 0000000..0b4a5b4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_917.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.403125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_918.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_918.txt
new file mode 100644
index 0000000..83e0a93
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_918.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.353125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_919.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_919.txt
new file mode 100644
index 0000000..acd3c1e
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_919.txt
@@ -0,0 +1 @@
+0 0.35192307692307695 0.590625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_92.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_92.txt
new file mode 100644
index 0000000..154c688
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_92.txt
@@ -0,0 +1 @@
+0 0.39807692307692305 0.465625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_920.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_920.txt
new file mode 100644
index 0000000..cbdafcd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_920.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.5625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_921.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_921.txt
new file mode 100644
index 0000000..7107c5f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_921.txt
@@ -0,0 +1 @@
+0 0.4480769230769231 0.609375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_922.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_922.txt
new file mode 100644
index 0000000..52a0aff
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_922.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.4 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_923.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_923.txt
new file mode 100644
index 0000000..033e420
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_923.txt
@@ -0,0 +1 @@
+0 0.38269230769230766 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_924.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_924.txt
new file mode 100644
index 0000000..99ee2f9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_924.txt
@@ -0,0 +1 @@
+0 0.41346153846153844 0.584375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_925.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_925.txt
new file mode 100644
index 0000000..2f4bea6
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_925.txt
@@ -0,0 +1 @@
+0 0.5788461538461539 0.115625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_926.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_926.txt
new file mode 100644
index 0000000..38e9525
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_926.txt
@@ -0,0 +1 @@
+0 0.37115384615384617 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_927.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_927.txt
new file mode 100644
index 0000000..531b6fd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_927.txt
@@ -0,0 +1 @@
+0 0.5442307692307692 0.253125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_928.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_928.txt
new file mode 100644
index 0000000..56ce869
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_928.txt
@@ -0,0 +1 @@
+0 0.475 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_929.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_929.txt
new file mode 100644
index 0000000..d66a768
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_929.txt
@@ -0,0 +1 @@
+0 0.5846153846153846 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_93.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_93.txt
new file mode 100644
index 0000000..b877faf
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_93.txt
@@ -0,0 +1 @@
+0 0.5384615384615384 0.35 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_930.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_930.txt
new file mode 100644
index 0000000..d068ef2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_930.txt
@@ -0,0 +1 @@
+0 0.6288461538461538 0.325 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_931.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_931.txt
new file mode 100644
index 0000000..607ab10
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_931.txt
@@ -0,0 +1 @@
+0 0.6576923076923077 0.2375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_932.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_932.txt
new file mode 100644
index 0000000..ff21521
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_932.txt
@@ -0,0 +1 @@
+0 0.5903846153846154 0.275 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_933.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_933.txt
new file mode 100644
index 0000000..b107b38
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_933.txt
@@ -0,0 +1 @@
+0 0.6 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_934.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_934.txt
new file mode 100644
index 0000000..7729c73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_934.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_935.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_935.txt
new file mode 100644
index 0000000..875d61c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_935.txt
@@ -0,0 +1 @@
+0 0.37884615384615383 0.534375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_936.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_936.txt
new file mode 100644
index 0000000..a3b2810
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_936.txt
@@ -0,0 +1 @@
+0 0.6153846153846154 0.68125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_937.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_937.txt
new file mode 100644
index 0000000..00ec6d0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_937.txt
@@ -0,0 +1 @@
+0 0.47307692307692306 0.61875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_938.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_938.txt
new file mode 100644
index 0000000..c401031
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_938.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.075 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_939.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_939.txt
new file mode 100644
index 0000000..a377249
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_939.txt
@@ -0,0 +1 @@
+0 0.4153846153846154 0.240625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_94.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_94.txt
new file mode 100644
index 0000000..1106651
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_94.txt
@@ -0,0 +1 @@
+0 0.5230769230769231 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_940.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_940.txt
new file mode 100644
index 0000000..0c8f6c1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_940.txt
@@ -0,0 +1 @@
+0 0.675 0.209375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_941.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_941.txt
new file mode 100644
index 0000000..a32f1a2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_941.txt
@@ -0,0 +1 @@
+0 0.5557692307692308 0.1875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_942.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_942.txt
new file mode 100644
index 0000000..1146691
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_942.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.334375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_943.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_943.txt
new file mode 100644
index 0000000..8f6b61b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_943.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_944.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_944.txt
new file mode 100644
index 0000000..1cbf797
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_944.txt
@@ -0,0 +1 @@
+0 0.4173076923076923 0.16875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_945.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_945.txt
new file mode 100644
index 0000000..e2fe276
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_945.txt
@@ -0,0 +1 @@
+0 0.5692307692307692 0.625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_946.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_946.txt
new file mode 100644
index 0000000..f547cb7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_946.txt
@@ -0,0 +1 @@
+0 0.5480769230769231 0.49375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_947.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_947.txt
new file mode 100644
index 0000000..c7d8886
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_947.txt
@@ -0,0 +1 @@
+0 0.49423076923076925 0.2625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_948.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_948.txt
new file mode 100644
index 0000000..4bb71a4
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_948.txt
@@ -0,0 +1 @@
+0 0.5019230769230769 0.603125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_949.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_949.txt
new file mode 100644
index 0000000..7d98220
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_949.txt
@@ -0,0 +1 @@
+0 0.6653846153846154 0.23125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_95.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_95.txt
new file mode 100644
index 0000000..ec3b8e9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_95.txt
@@ -0,0 +1 @@
+0 0.39615384615384613 0.121875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_950.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_950.txt
new file mode 100644
index 0000000..6ce886d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_950.txt
@@ -0,0 +1 @@
+0 0.43846153846153846 0.378125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_951.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_951.txt
new file mode 100644
index 0000000..07d8620
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_951.txt
@@ -0,0 +1 @@
+0 0.3346153846153846 0.4875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_952.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_952.txt
new file mode 100644
index 0000000..3a1fb0b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_952.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.621875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_953.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_953.txt
new file mode 100644
index 0000000..3677870
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_953.txt
@@ -0,0 +1 @@
+0 0.6423076923076924 0.175 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_954.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_954.txt
new file mode 100644
index 0000000..b16f0a9
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_954.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.06875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_955.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_955.txt
new file mode 100644
index 0000000..d4bf5f3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_955.txt
@@ -0,0 +1 @@
+0 0.5057692307692307 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_956.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_956.txt
new file mode 100644
index 0000000..c4648f0
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_956.txt
@@ -0,0 +1 @@
+0 0.47692307692307695 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_957.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_957.txt
new file mode 100644
index 0000000..e101403
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_957.txt
@@ -0,0 +1 @@
+0 0.3192307692307692 0.09375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_958.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_958.txt
new file mode 100644
index 0000000..fe76793
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_958.txt
@@ -0,0 +1 @@
+0 0.575 0.54375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_959.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_959.txt
new file mode 100644
index 0000000..2fbb838
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_959.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.59375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_96.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_96.txt
new file mode 100644
index 0000000..cda155c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_96.txt
@@ -0,0 +1 @@
+0 0.34423076923076923 0.25625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_960.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_960.txt
new file mode 100644
index 0000000..b3e95e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_960.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_961.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_961.txt
new file mode 100644
index 0000000..425641f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_961.txt
@@ -0,0 +1 @@
+0 0.47115384615384615 0.090625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_962.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_962.txt
new file mode 100644
index 0000000..afd1e99
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_962.txt
@@ -0,0 +1 @@
+0 0.4519230769230769 0.640625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_963.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_963.txt
new file mode 100644
index 0000000..51567e1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_963.txt
@@ -0,0 +1 @@
+0 0.5365384615384615 0.36875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_964.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_964.txt
new file mode 100644
index 0000000..6a61333
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_964.txt
@@ -0,0 +1 @@
+0 0.5173076923076924 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_965.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_965.txt
new file mode 100644
index 0000000..c6d2205
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_965.txt
@@ -0,0 +1 @@
+0 0.6057692307692307 0.315625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_966.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_966.txt
new file mode 100644
index 0000000..f2bd385
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_966.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_967.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_967.txt
new file mode 100644
index 0000000..e0e8758
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_967.txt
@@ -0,0 +1 @@
+0 0.5096153846153846 0.359375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_968.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_968.txt
new file mode 100644
index 0000000..b196b47
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_968.txt
@@ -0,0 +1 @@
+0 0.6134615384615385 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_969.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_969.txt
new file mode 100644
index 0000000..4eb9d42
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_969.txt
@@ -0,0 +1 @@
+0 0.551923076923077 0.259375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_97.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_97.txt
new file mode 100644
index 0000000..d23f68f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_97.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.215625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_970.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_970.txt
new file mode 100644
index 0000000..c37d3ea
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_970.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.559375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_971.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_971.txt
new file mode 100644
index 0000000..93f4dcd
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_971.txt
@@ -0,0 +1 @@
+0 0.475 0.634375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_972.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_972.txt
new file mode 100644
index 0000000..1360b57
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_972.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.471875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_973.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_973.txt
new file mode 100644
index 0000000..bd36157
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_973.txt
@@ -0,0 +1 @@
+0 0.49615384615384617 0.2 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_974.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_974.txt
new file mode 100644
index 0000000..791f0ac
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_974.txt
@@ -0,0 +1 @@
+0 0.38653846153846155 0.26875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_975.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_975.txt
new file mode 100644
index 0000000..be69d91
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_975.txt
@@ -0,0 +1 @@
+0 0.49038461538461536 0.421875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_976.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_976.txt
new file mode 100644
index 0000000..f161a05
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_976.txt
@@ -0,0 +1 @@
+0 0.4807692307692308 0.415625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_977.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_977.txt
new file mode 100644
index 0000000..379d5ef
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_977.txt
@@ -0,0 +1 @@
+0 0.6461538461538462 0.25 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_978.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_978.txt
new file mode 100644
index 0000000..d8181b7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_978.txt
@@ -0,0 +1 @@
+0 0.5 0.575 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_979.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_979.txt
new file mode 100644
index 0000000..f2605ad
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_979.txt
@@ -0,0 +1 @@
+0 0.42115384615384616 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_98.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_98.txt
new file mode 100644
index 0000000..85c03ba
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_98.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.53125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_980.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_980.txt
new file mode 100644
index 0000000..194ff9f
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_980.txt
@@ -0,0 +1 @@
+0 0.4846153846153846 0.45625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_981.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_981.txt
new file mode 100644
index 0000000..bfa7e45
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_981.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_982.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_982.txt
new file mode 100644
index 0000000..292d0a1
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_982.txt
@@ -0,0 +1 @@
+0 0.6019230769230769 0.21875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_983.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_983.txt
new file mode 100644
index 0000000..b943b98
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_983.txt
@@ -0,0 +1 @@
+0 0.6326923076923077 0.30625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_984.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_984.txt
new file mode 100644
index 0000000..92cafe3
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_984.txt
@@ -0,0 +1 @@
+0 0.4288461538461538 0.484375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_985.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_985.txt
new file mode 100644
index 0000000..2a9c762
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_985.txt
@@ -0,0 +1 @@
+0 0.5076923076923077 0.3625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_986.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_986.txt
new file mode 100644
index 0000000..b614353
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_986.txt
@@ -0,0 +1 @@
+0 0.38076923076923075 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_987.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_987.txt
new file mode 100644
index 0000000..4038842
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_987.txt
@@ -0,0 +1 @@
+0 0.3211538461538462 0.490625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_988.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_988.txt
new file mode 100644
index 0000000..9702c79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_988.txt
@@ -0,0 +1 @@
+0 0.36346153846153845 0.08125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_989.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_989.txt
new file mode 100644
index 0000000..23f9b8a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_989.txt
@@ -0,0 +1 @@
+0 0.5865384615384616 0.5875 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_99.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_99.txt
new file mode 100644
index 0000000..c92021c
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_99.txt
@@ -0,0 +1 @@
+0 0.4596153846153846 0.475 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_990.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_990.txt
new file mode 100644
index 0000000..feb6772
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_990.txt
@@ -0,0 +1 @@
+0 0.45 0.615625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_991.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_991.txt
new file mode 100644
index 0000000..5256bcc
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_991.txt
@@ -0,0 +1 @@
+0 0.5634615384615385 0.14375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_992.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_992.txt
new file mode 100644
index 0000000..7491b79
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_992.txt
@@ -0,0 +1 @@
+0 0.6096153846153847 0.440625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_993.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_993.txt
new file mode 100644
index 0000000..1f3ca2a
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_993.txt
@@ -0,0 +1 @@
+0 0.32884615384615384 0.065625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_994.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_994.txt
new file mode 100644
index 0000000..9871909
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_994.txt
@@ -0,0 +1 @@
+0 0.4653846153846154 0.528125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_995.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_995.txt
new file mode 100644
index 0000000..d5bdbc7
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_995.txt
@@ -0,0 +1 @@
+0 0.5576923076923077 0.375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_996.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_996.txt
new file mode 100644
index 0000000..6d53084
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_996.txt
@@ -0,0 +1 @@
+0 0.6 0.303125 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_997.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_997.txt
new file mode 100644
index 0000000..f6d139b
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_997.txt
@@ -0,0 +1 @@
+0 0.31346153846153846 0.35625 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_998.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_998.txt
new file mode 100644
index 0000000..27007d2
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_998.txt
@@ -0,0 +1 @@
+0 0.38461538461538464 0.159375 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_999.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_999.txt
new file mode 100644
index 0000000..9f9f1da
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/captcha/labels/captcha_999.txt
@@ -0,0 +1 @@
+0 0.6230769230769231 0.225 0.16596774 0.24170968
\ No newline at end of file
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/compare.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/compare.py
new file mode 100644
index 0000000..492af75
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/compare.py
@@ -0,0 +1,9 @@
+import cv2
+import numpy as np
+
+image1 = cv2.imread('image1.png')
+image2 = cv2.imread('image2.png')
+sub = image1 - image2
+affine_arr = np.float32([[1, 0, 0], [0, 1, 0]])
+res = cv2.warpAffine(image2, affine_arr, (image2.shape[1], image2.shape[0]))
+cv2.imwrite('sub.png', sub)
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/construct.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/construct.py
new file mode 100644
index 0000000..08e6909
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/construct.py
@@ -0,0 +1,31 @@
+import cv2
+import os
+import numpy as np
+from loguru import logger
+
+CAPTCHA_WIDTH = 520
+CAPTCHA_HEIGHT = 320
+
+for root, dirs, files in os.walk('input'):
+ for file in files:
+ image_path = os.path.join(root, file)
+ logger.debug(f'image path {image_path}')
+ image = cv2.imread(image_path, cv2.IMREAD_UNCHANGED)
+ image_height, image_width, image_dim = image.shape
+
+ if image_dim == 3:
+ b_channel, g_channel, r_channel = cv2.split(image)
+ alpha_channel = np.ones(b_channel.shape, dtype=b_channel.dtype) * 255
+ image = cv2.merge((b_channel, g_channel, r_channel, alpha_channel))
+
+ if image_width / image_height > CAPTCHA_WIDTH / CAPTCHA_HEIGHT:
+ image = cv2.resize(image, (int(CAPTCHA_HEIGHT * image_width / image_height), CAPTCHA_HEIGHT))
+ image_height, image_width, _ = image.shape
+ image = image[:, int(image_width / 2 - CAPTCHA_WIDTH / 2): int(image_width / 2 + CAPTCHA_WIDTH / 2)]
+ else:
+ image = cv2.resize(image, (CAPTCHA_WIDTH, int(CAPTCHA_WIDTH * image_height / image_width)))
+ image_height, image_width, _ = image.shape
+ image = image[int(image_height / 2 - CAPTCHA_HEIGHT / 2): int(image_height / 2 + CAPTCHA_HEIGHT / 2), :]
+
+ cv2.imwrite(f'output/{file}', image)
+ logger.debug(f'finish output/{file}')
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image1.png
new file mode 100644
index 0000000..ca89110
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image2.png
new file mode 100644
index 0000000..34ff494
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/image2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/1.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/1.png
new file mode 100644
index 0000000..b36d97e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/1.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/10.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/10.png
new file mode 100644
index 0000000..67e10a7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/10.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/11.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/11.png
new file mode 100644
index 0000000..2ebc65a
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/11.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/13.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/13.png
new file mode 100644
index 0000000..92ce600
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/13.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/14.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/14.png
new file mode 100644
index 0000000..336f610
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/14.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/15.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/15.png
new file mode 100644
index 0000000..30d3c66
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/15.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/16.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/16.png
new file mode 100644
index 0000000..a679071
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/16.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/18.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/18.png
new file mode 100644
index 0000000..0b01ec4
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/18.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/19.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/19.png
new file mode 100644
index 0000000..73e5a3e
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/19.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/2.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/2.png
new file mode 100644
index 0000000..eaf1668
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/2.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/20.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/20.png
new file mode 100644
index 0000000..1b84175
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/20.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/21.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/21.png
new file mode 100644
index 0000000..5d3ea02
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/21.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/22.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/22.png
new file mode 100644
index 0000000..a055b65
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/22.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/23.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/23.png
new file mode 100644
index 0000000..8098c63
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/23.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/24.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/24.png
new file mode 100644
index 0000000..7560316
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/24.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/26.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/26.png
new file mode 100644
index 0000000..0089e10
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/26.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/27.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/27.png
new file mode 100644
index 0000000..9bcb03b
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/27.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/28.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/28.png
new file mode 100644
index 0000000..744df9d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/28.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/3.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/3.png
new file mode 100644
index 0000000..9062377
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/3.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/30.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/30.png
new file mode 100644
index 0000000..9fdf143
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/30.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/31.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/31.png
new file mode 100644
index 0000000..3901058
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/31.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/32.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/32.png
new file mode 100644
index 0000000..396a892
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/32.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/33.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/33.png
new file mode 100644
index 0000000..5493e69
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/33.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/34.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/34.png
new file mode 100644
index 0000000..67ebeb2
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/34.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/35.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/35.png
new file mode 100644
index 0000000..1dbc03c
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/35.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/36.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/36.png
new file mode 100644
index 0000000..cf533ea
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/36.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/37.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/37.png
new file mode 100644
index 0000000..86f0130
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/37.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/38.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/38.png
new file mode 100644
index 0000000..d140024
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/38.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/39.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/39.png
new file mode 100644
index 0000000..ad57336
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/39.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/5.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/5.png
new file mode 100644
index 0000000..854587d
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/5.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/6.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/6.png
new file mode 100644
index 0000000..7bc5845
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/6.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/7.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/7.png
new file mode 100644
index 0000000..b26d9df
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/7.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/8.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/8.png
new file mode 100644
index 0000000..938eba7
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/8.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/9.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/9.png
new file mode 100644
index 0000000..d7b1319
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/input/9.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/paste.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/paste.py
new file mode 100644
index 0000000..ea44add
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/paste.py
@@ -0,0 +1,43 @@
+import os
+from PIL import Image
+import random
+import glob
+from loguru import logger
+
+CAPTCHA_WIDTH = 520
+CAPTCHA_HEIGHT = 320
+
+image_source = Image.open('block_source.png')
+image_target = Image.open('block_target.png')
+
+label_offset_x_base = 260
+label_offset_y_base = 120
+
+count = 0
+total = 1000
+root_dir = 'output'
+file_paths = glob.glob(f'{root_dir}/*.png')
+
+while True:
+ file_path = random.choice(file_paths)
+
+ offset_y = random.randint(-100, 100)
+ offset_x = random.randint(-100, 100)
+
+ label_offset_x = label_offset_x_base + offset_x
+ label_offset_y = label_offset_y_base + offset_y
+
+ image_path = os.path.join(file_path)
+ image = Image.open(image_path)
+ image.paste(image_target, (offset_x, offset_y), image_target)
+ image.paste(image_source, (0, offset_y), image_source)
+ label = f'0 {label_offset_x / CAPTCHA_WIDTH} {label_offset_y / CAPTCHA_HEIGHT} 0.16596774 0.24170968'
+ image.save(f'captcha/images/captcha_{count}.png')
+ logger.debug(f'generated captcha file captcha_{count}.png')
+ with open(f'captcha/labels/captcha_{count}.txt', 'w') as f:
+ f.write(label)
+ logger.debug(f'generated label file captcha_{count}.txt')
+ count += 1
+ if count > total:
+ logger.debug('finished')
+ break
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/prepare.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/prepare.py
new file mode 100644
index 0000000..912e4f5
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/prepare.py
@@ -0,0 +1,15 @@
+import glob
+from sklearn.model_selection import train_test_split
+
+file_paths = glob.glob('captcha/images/*.png')
+print('file_paths', file_paths)
+
+train, valid = train_test_split(file_paths, test_size=0.2)
+
+with open('train.txt', 'w', encoding='utf-8') as f:
+ for item in train:
+ f.write(f'data/{item}\n')
+
+with open('valid.txt', 'w', encoding='utf-8') as f:
+ for item in valid:
+ f.write(f'data/{item}\n')
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/sub.png b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/sub.png
new file mode 100644
index 0000000..31a57f1
Binary files /dev/null and b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/preprocess/sub.png differ
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/process.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/process.py
new file mode 100644
index 0000000..d71de62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/process.py
@@ -0,0 +1,19 @@
+import xmltodict
+import json
+
+
+def parse_xml(file):
+ xml_str = open(file, encoding='utf-8').read()
+ data = xmltodict.parse(xml_str)
+ data = json.loads(json.dumps(data))
+ annoatation = data.get('annotation')
+ width = int(annoatation.get('size').get('width'))
+ height = int(annoatation.get('size').get('height'))
+ bndbox = annoatation.get('object').get('bndbox')
+ box_xmin = int(bndbox.get('xmin'))
+ box_xmax = int(bndbox.get('xmax'))
+ box_ymin = int(bndbox.get('ymin'))
+ box_ymax = int(bndbox.get('ymax'))
+ box_width = (box_xmax - box_xmin) / width
+ box_height = (box_ymax - box_ymin) / height
+ return box_xmin / width, box_ymax / height, box_width / width, box_height / height
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/requirements.txt b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/requirements.txt
new file mode 100644
index 0000000..08f8190
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/requirements.txt
@@ -0,0 +1,9 @@
+numpy
+torch>=1.0
+torchvision
+matplotlib
+tensorflow==2.4.0
+tensorboard
+terminaltables
+pillow
+tqdm
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/test.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/test.py
new file mode 100644
index 0000000..59e9c73
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/test.py
@@ -0,0 +1,109 @@
+from __future__ import division
+
+from models import *
+from utils.utils import *
+from utils.datasets import *
+from utils.parse_config import *
+
+import os
+import sys
+import time
+import datetime
+import argparse
+import tqdm
+
+import torch
+from torch.utils.data import DataLoader
+from torchvision import datasets
+from torchvision import transforms
+from torch.autograd import Variable
+import torch.optim as optim
+
+
+def evaluate(model, path, iou_thres, conf_thres, nms_thres, img_size, batch_size):
+ model.eval()
+
+ # Get dataloader
+ dataset = ListDataset(path, img_size=img_size, augment=False, multiscale=False)
+ dataloader = torch.utils.data.DataLoader(
+ dataset, batch_size=batch_size, shuffle=False, num_workers=1, collate_fn=dataset.collate_fn
+ )
+
+ Tensor = torch.cuda.FloatTensor if torch.cuda.is_available() else torch.FloatTensor
+
+ labels = []
+ sample_metrics = [] # List of tuples (TP, confs, pred)
+ for batch_i, (_, imgs, targets) in enumerate(tqdm.tqdm(dataloader, desc="Detecting objects")):
+
+ # Extract labels
+ labels += targets[:, 1].tolist()
+ # Rescale target
+ targets[:, 2:] = xywh2xyxy(targets[:, 2:])
+ targets[:, 2:] *= img_size
+
+ imgs = Variable(imgs.type(Tensor), requires_grad=False)
+
+ with torch.no_grad():
+ outputs = model(imgs)
+ outputs = non_max_suppression(outputs, conf_thres=conf_thres, nms_thres=nms_thres)
+
+ sample_metrics += get_batch_statistics(outputs, targets, iou_threshold=iou_thres)
+
+ if not sample_metrics:
+ print('no eval result')
+ return None
+
+ # Concatenate sample statistics
+ true_positives, pred_scores, pred_labels = [np.concatenate(x, 0) for x in list(zip(*sample_metrics))]
+ precision, recall, AP, f1, ap_class = ap_per_class(true_positives, pred_scores, pred_labels, labels)
+
+ return precision, recall, AP, f1, ap_class
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--batch_size", type=int, default=8, help="size of each image batch")
+ parser.add_argument("--model_def", type=str, default="config/yolov3.cfg", help="path to model definition file")
+ parser.add_argument("--data_config", type=str, default="config/coco.data", help="path to data config file")
+ parser.add_argument("--weights_path", type=str, default="weights/yolov3.weights", help="path to weights file")
+ parser.add_argument("--class_path", type=str, default="data/coco.names", help="path to class label file")
+ parser.add_argument("--iou_thres", type=float, default=0.5, help="iou threshold required to qualify as detected")
+ parser.add_argument("--conf_thres", type=float, default=0.001, help="object confidence threshold")
+ parser.add_argument("--nms_thres", type=float, default=0.5, help="iou thresshold for non-maximum suppression")
+ parser.add_argument("--n_cpu", type=int, default=8, help="number of cpu threads to use during batch generation")
+ parser.add_argument("--img_size", type=int, default=416, help="size of each image dimension")
+ opt = parser.parse_args()
+ print(opt)
+
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+ data_config = parse_data_config(opt.data_config)
+ valid_path = data_config["valid"]
+ class_names = load_classes(data_config["names"])
+
+ # Initiate model
+ model = Darknet(opt.model_def).to(device)
+ if opt.weights_path.endswith(".weights"):
+ # Load darknet weights
+ model.load_darknet_weights(opt.weights_path)
+ else:
+ # Load checkpoint weights
+ model.load_state_dict(torch.load(opt.weights_path))
+
+ print("Compute mAP...")
+
+ precision, recall, AP, f1, ap_class = evaluate(
+ model,
+ path=valid_path,
+ iou_thres=opt.iou_thres,
+ conf_thres=opt.conf_thres,
+ nms_thres=opt.nms_thres,
+ img_size=opt.img_size,
+ batch_size=8,
+ )
+
+ print("Average Precisions:")
+ for i, c in enumerate(ap_class):
+ print(f"+ Class '{c}' ({class_names[c]}) - AP: {AP[i]}")
+
+ print(f"mAP: {AP.mean()}")
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.py
new file mode 100644
index 0000000..a7652de
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.py
@@ -0,0 +1,202 @@
+from __future__ import division
+import sys
+
+if not sys.warnoptions:
+ import warnings
+
+ warnings.simplefilter("ignore")
+
+import warnings
+
+
+def fxn():
+ warnings.warn("deprecated", DeprecationWarning)
+
+
+with warnings.catch_warnings():
+ warnings.simplefilter("ignore")
+ fxn()
+
+warnings.filterwarnings("ignore")
+
+from models import *
+from utils.logger import *
+from utils.utils import *
+from utils.datasets import *
+from utils.parse_config import *
+from test import evaluate
+
+from terminaltables import AsciiTable
+
+import os
+import sys
+import time
+import datetime
+import argparse
+
+import torch
+from torch.utils.data import DataLoader
+from torchvision import datasets
+from torchvision import transforms
+from torch.autograd import Variable
+import torch.optim as optim
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--epochs", type=int, default=100, help="number of epochs")
+ parser.add_argument("--batch_size", type=int, default=8, help="size of each image batch")
+ parser.add_argument("--gradient_accumulations", type=int, default=2, help="number of gradient accums before step")
+ parser.add_argument("--model_def", type=str, default="config/yolov3.cfg", help="path to model definition file")
+ parser.add_argument("--data_config", type=str, default="config/coco.data", help="path to data config file")
+ parser.add_argument("--pretrained_weights", type=str, help="if specified starts from checkpoint model")
+ parser.add_argument("--n_cpu", type=int, default=8, help="number of cpu threads to use during batch generation")
+ parser.add_argument("--img_size", type=int, default=416, help="size of each image dimension")
+ parser.add_argument("--checkpoint_interval", type=int, default=1, help="interval between saving model weights")
+ parser.add_argument("--evaluation_interval", type=int, default=1, help="interval evaluations on validation set")
+ parser.add_argument("--compute_map", default=False, help="if True computes mAP every tenth batch")
+ parser.add_argument("--multiscale_training", default=True, help="allow for multi-scale training")
+ opt = parser.parse_args()
+ print(opt)
+
+ logger = Logger("logs")
+
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+ os.makedirs("output", exist_ok=True)
+ os.makedirs("checkpoints", exist_ok=True)
+
+ # Get data configuration
+ data_config = parse_data_config(opt.data_config)
+ train_path = data_config["train"]
+ valid_path = data_config["valid"]
+ class_names = load_classes(data_config["names"])
+
+ # Initiate model
+ model = Darknet(opt.model_def).to(device)
+ model.apply(weights_init_normal)
+
+ # If specified we start from checkpoint
+ if opt.pretrained_weights:
+ if opt.pretrained_weights.endswith(".pth"):
+ model.load_state_dict(torch.load(opt.pretrained_weights))
+ else:
+ model.load_darknet_weights(opt.pretrained_weights)
+
+ # Get dataloader
+ dataset = ListDataset(train_path, augment=True, multiscale=opt.multiscale_training)
+ dataloader = torch.utils.data.DataLoader(
+ dataset,
+ batch_size=opt.batch_size,
+ shuffle=True,
+ num_workers=opt.n_cpu,
+ pin_memory=True,
+ collate_fn=dataset.collate_fn,
+ )
+
+ optimizer = torch.optim.Adam(model.parameters())
+
+ metrics = [
+ "grid_size",
+ "loss",
+ "x",
+ "y",
+ "w",
+ "h",
+ "conf",
+ "cls",
+ "cls_acc",
+ "recall50",
+ "recall75",
+ "precision",
+ "conf_obj",
+ "conf_noobj",
+ ]
+
+ for epoch in range(opt.epochs):
+ model.train()
+ start_time = time.time()
+ for batch_i, (_, imgs, targets) in enumerate(dataloader):
+ batches_done = len(dataloader) * epoch + batch_i
+
+ imgs = Variable(imgs.to(device))
+ targets = Variable(targets.to(device), requires_grad=False)
+
+ loss, outputs = model(imgs, targets)
+ loss.backward()
+
+ if batches_done % opt.gradient_accumulations:
+ # Accumulates gradient before each step
+ optimizer.step()
+ optimizer.zero_grad()
+
+ # ----------------
+ # Log progress
+ # ----------------
+
+ log_str = "\n---- [Epoch %d/%d, Batch %d/%d] ----\n" % (epoch, opt.epochs, batch_i, len(dataloader))
+
+ metric_table = [["Metrics", *[f"YOLO Layer {i}" for i in range(len(model.yolo_layers))]]]
+
+ # Log metrics at each YOLO layer
+ for i, metric in enumerate(metrics):
+ formats = {m: "%.6f" for m in metrics}
+ formats["grid_size"] = "%2d"
+ formats["cls_acc"] = "%.2f%%"
+ row_metrics = [formats[metric] % yolo.metrics.get(metric, 0) for yolo in model.yolo_layers]
+ metric_table += [[metric, *row_metrics]]
+
+ # Tensorboard logging
+ tensorboard_log = []
+ for j, yolo in enumerate(model.yolo_layers):
+ for name, metric in yolo.metrics.items():
+ if name != "grid_size":
+ tensorboard_log += [(f"{name}_{j + 1}", metric)]
+ tensorboard_log += [("loss", loss.item())]
+ logger.list_of_scalars_summary(tensorboard_log, batches_done)
+
+ log_str += AsciiTable(metric_table).table
+ log_str += f"\nTotal loss {loss.item()}"
+
+ # Determine approximate time left for epoch
+ epoch_batches_left = len(dataloader) - (batch_i + 1)
+ time_left = datetime.timedelta(seconds=epoch_batches_left * (time.time() - start_time) / (batch_i + 1))
+ log_str += f"\n---- ETA {time_left}"
+
+ print(log_str)
+
+ model.seen += imgs.size(0)
+
+ print('Epoch', epoch, opt.evaluation_interval)
+
+ if epoch % opt.evaluation_interval == 0:
+ print("\n---- Evaluating Model ----")
+ # Evaluate the model on the validation set
+ result = evaluate(
+ model,
+ path=valid_path,
+ iou_thres=0.5,
+ conf_thres=0.5,
+ nms_thres=0.5,
+ img_size=opt.img_size,
+ batch_size=8,
+ )
+ if result:
+ print('result', result)
+ precision, recall, AP, f1, ap_class = result
+ evaluation_metrics = [
+ ("val_precision", precision.mean()),
+ ("val_recall", recall.mean()),
+ ("val_mAP", AP.mean()),
+ ("val_f1", f1.mean()),
+ ]
+ logger.list_of_scalars_summary(evaluation_metrics, epoch)
+
+ # Print class APs and mAP
+ ap_table = [["Index", "Class name", "AP"]]
+ for i, c in enumerate(ap_class):
+ ap_table += [[c, class_names[c], "%.5f" % AP[i]]]
+ print(AsciiTable(ap_table).table)
+ print(f"---- mAP {AP.mean()}")
+
+ if epoch % opt.checkpoint_interval == 0:
+ torch.save(model.state_dict(), f"checkpoints/yolov3_ckpt_%d.pth" % epoch)
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.sh b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.sh
new file mode 100644
index 0000000..cdf7914
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/train.sh
@@ -0,0 +1 @@
+python3 train.py --model_def config/yolov3-captcha.cfg --data_config config/captcha.data --pretrained_weights weights/darknet53.conv.74
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/__init__.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/augmentations.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/augmentations.py
new file mode 100644
index 0000000..b1aed5d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/augmentations.py
@@ -0,0 +1,9 @@
+import torch
+import torch.nn.functional as F
+import numpy as np
+
+
+def horisontal_flip(images, targets):
+ images = torch.flip(images, [-1])
+ targets[:, 2] = 1 - targets[:, 2]
+ return images, targets
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/datasets.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/datasets.py
new file mode 100644
index 0000000..8cdba62
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/datasets.py
@@ -0,0 +1,154 @@
+import glob
+import random
+import os
+import sys
+import numpy as np
+from PIL import Image
+import torch
+import torch.nn.functional as F
+
+from utils.augmentations import horisontal_flip
+from torch.utils.data import Dataset
+import torchvision.transforms as transforms
+
+
+def pad_to_square(img, pad_value):
+ c, h, w = img.shape
+ dim_diff = np.abs(h - w)
+ # (upper / left) padding and (lower / right) padding
+ pad1, pad2 = dim_diff // 2, dim_diff - dim_diff // 2
+ # Determine padding
+ pad = (0, 0, pad1, pad2) if h <= w else (pad1, pad2, 0, 0)
+ # Add padding
+ img = F.pad(img, pad, "constant", value=pad_value)
+
+ return img, pad
+
+
+def resize(image, size):
+ image = F.interpolate(image.unsqueeze(0), size=size, mode="nearest").squeeze(0)
+ return image
+
+
+def random_resize(images, min_size=288, max_size=448):
+ new_size = random.sample(list(range(min_size, max_size + 1, 32)), 1)[0]
+ images = F.interpolate(images, size=new_size, mode="nearest")
+ return images
+
+
+class ImageFolder(Dataset):
+ def __init__(self, folder_path, img_size=416):
+ self.files = sorted(glob.glob("%s/*.*" % folder_path))
+ self.img_size = img_size
+
+ def __getitem__(self, index):
+ img_path = self.files[index % len(self.files)]
+ # Extract image as PyTorch tensor
+ # img = transforms.ToTensor()(Image.open(img_path))
+
+ img = transforms.ToTensor()(Image.open(img_path).convert('RGB'))
+
+ # Pad to square resolution
+ img, _ = pad_to_square(img, 0)
+ # Resize
+ img = resize(img, self.img_size)
+
+ return img_path, img
+
+ def __len__(self):
+ return len(self.files)
+
+
+class ListDataset(Dataset):
+ def __init__(self, list_path, img_size=416, augment=True, multiscale=True, normalized_labels=True):
+ with open(list_path, "r") as file:
+ self.img_files = file.readlines()
+
+ self.label_files = [
+ path.replace("images", "labels").replace(".png", ".txt").replace(".jpg", ".txt")
+ for path in self.img_files
+ ]
+ self.img_size = img_size
+ self.max_objects = 100
+ self.augment = augment
+ self.multiscale = multiscale
+ self.normalized_labels = normalized_labels
+ self.min_size = self.img_size - 3 * 32
+ self.max_size = self.img_size + 3 * 32
+ self.batch_count = 0
+
+ def __getitem__(self, index):
+
+ # ---------
+ # Image
+ # ---------
+
+ img_path = self.img_files[index % len(self.img_files)].rstrip()
+
+ # Extract image as PyTorch tensor
+ img = transforms.ToTensor()(Image.open(img_path).convert('RGB'))
+
+ # Handle images with less than three channels
+ if len(img.shape) != 3:
+ img = img.unsqueeze(0)
+ img = img.expand((3, img.shape[1:]))
+
+ _, h, w = img.shape
+ h_factor, w_factor = (h, w) if self.normalized_labels else (1, 1)
+ # Pad to square resolution
+ img, pad = pad_to_square(img, 0)
+ _, padded_h, padded_w = img.shape
+
+ # ---------
+ # Label
+ # ---------
+
+ label_path = self.label_files[index % len(self.img_files)].rstrip()
+
+ targets = None
+ if os.path.exists(label_path):
+ boxes = torch.from_numpy(np.loadtxt(label_path).reshape(-1, 5))
+ # Extract coordinates for unpadded + unscaled image
+ x1 = w_factor * (boxes[:, 1] - boxes[:, 3] / 2)
+ y1 = h_factor * (boxes[:, 2] - boxes[:, 4] / 2)
+ x2 = w_factor * (boxes[:, 1] + boxes[:, 3] / 2)
+ y2 = h_factor * (boxes[:, 2] + boxes[:, 4] / 2)
+ # Adjust for added padding
+ x1 += pad[0]
+ y1 += pad[2]
+ x2 += pad[1]
+ y2 += pad[3]
+ # Returns (x, y, w, h)
+ boxes[:, 1] = ((x1 + x2) / 2) / padded_w
+ boxes[:, 2] = ((y1 + y2) / 2) / padded_h
+ boxes[:, 3] *= w_factor / padded_w
+ boxes[:, 4] *= h_factor / padded_h
+
+ targets = torch.zeros((len(boxes), 6))
+ targets[:, 1:] = boxes
+
+ # Apply augmentations
+ if self.augment:
+ if np.random.random() < 0.5:
+ img, targets = horisontal_flip(img, targets)
+
+ return img_path, img, targets
+
+ def collate_fn(self, batch):
+ paths, imgs, targets = list(zip(*batch))
+ # Remove empty placeholder targets
+ targets = [boxes for boxes in targets if boxes is not None]
+ # Add sample index to targets
+ for i, boxes in enumerate(targets):
+ boxes[:, 0] = i
+ targets = torch.cat(targets, 0)
+ # Selects new image size every tenth batch
+ if self.multiscale and self.batch_count % 10 == 0:
+ self.img_size = random.choice(range(self.min_size, self.max_size + 1, 32))
+ # Resize images to input shape
+ imgs = torch.stack([resize(img, self.img_size) for img in imgs])
+ self.batch_count += 1
+ return paths, imgs, targets
+
+ def __len__(self):
+ return len(self.img_files)
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/logger.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/logger.py
new file mode 100644
index 0000000..9d7f820
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/logger.py
@@ -0,0 +1,24 @@
+import tensorflow as tf
+
+
+class Logger(object):
+ def __init__(self, log_dir):
+ """Create a summary writer logging to log_dir."""
+ self.writer = tf.summary.create_file_writer(log_dir)
+
+ def scalar_summary(self, tag, value, step):
+ """Log a scalar variable."""
+ # summary = tf.Summary(value=[tf.Summary.Value(tag=tag, simple_value=value)])
+ # self.writer.add_summary(summary, step)
+
+ with self.writer.as_default():
+ tf.summary.scalar(tag, value, step=step)
+
+ def list_of_scalars_summary(self, tag_value_pairs, step):
+ """Log scalar variables."""
+ # summary = tf.Summary(value=[tf.Summary.Value(tag=tag, simple_value=value) for tag, value in tag_value_pairs])
+ # self.writer.add_summary(summary, step)
+
+ with self.writer.as_default():
+ for tag, value in tag_value_pairs:
+ tf.summary.scalar(tag, value, step=step)
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/parse_config.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/parse_config.py
new file mode 100644
index 0000000..9dc0358
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/parse_config.py
@@ -0,0 +1,36 @@
+
+
+def parse_model_config(path):
+ """Parses the yolo-v3 layer configuration file and returns module definitions"""
+ file = open(path, 'r')
+ lines = file.read().split('\n')
+ lines = [x for x in lines if x and not x.startswith('#')]
+ lines = [x.rstrip().lstrip() for x in lines] # get rid of fringe whitespaces
+ module_defs = []
+ for line in lines:
+ if line.startswith('['): # This marks the start of a new block
+ module_defs.append({})
+ module_defs[-1]['type'] = line[1:-1].rstrip()
+ if module_defs[-1]['type'] == 'convolutional':
+ module_defs[-1]['batch_normalize'] = 0
+ else:
+ key, value = line.split("=")
+ value = value.strip()
+ module_defs[-1][key.rstrip()] = value.strip()
+
+ return module_defs
+
+def parse_data_config(path):
+ """Parses the data configuration file"""
+ options = dict()
+ options['gpus'] = '0,1,2,3'
+ options['num_workers'] = '10'
+ with open(path, 'r') as fp:
+ lines = fp.readlines()
+ for line in lines:
+ line = line.strip()
+ if line == '' or line.startswith('#'):
+ continue
+ key, value = line.split('=')
+ options[key.strip()] = value.strip()
+ return options
diff --git a/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/utils.py b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/utils.py
new file mode 100644
index 0000000..5eb2a1d
--- /dev/null
+++ b/Spider/Chapter08_验证码的识别/深度学习识别滑动验证码/utils/utils.py
@@ -0,0 +1,321 @@
+from __future__ import division
+import math
+import time
+import tqdm
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+from torch.autograd import Variable
+import numpy as np
+import matplotlib.pyplot as plt
+import matplotlib.patches as patches
+
+
+def to_cpu(tensor):
+ return tensor.detach().cpu()
+
+
+def load_classes(path):
+ """
+ Loads class labels at 'path'
+ """
+ fp = open(path, "r")
+ names = fp.read().split("\n")[:-1]
+ return names
+
+
+def weights_init_normal(m):
+ classname = m.__class__.__name__
+ if classname.find("Conv") != -1:
+ torch.nn.init.normal_(m.weight.data, 0.0, 0.02)
+ elif classname.find("BatchNorm2d") != -1:
+ torch.nn.init.normal_(m.weight.data, 1.0, 0.02)
+ torch.nn.init.constant_(m.bias.data, 0.0)
+
+
+def rescale_boxes(boxes, current_dim, original_shape):
+ """ Rescales bounding boxes to the original shape """
+ orig_h, orig_w = original_shape
+ # The amount of padding that was added
+ pad_x = max(orig_h - orig_w, 0) * (current_dim / max(original_shape))
+ pad_y = max(orig_w - orig_h, 0) * (current_dim / max(original_shape))
+ # Image height and width after padding is removed
+ unpad_h = current_dim - pad_y
+ unpad_w = current_dim - pad_x
+ # Rescale bounding boxes to dimension of original image
+ boxes[:, 0] = ((boxes[:, 0] - pad_x // 2) / unpad_w) * orig_w
+ boxes[:, 1] = ((boxes[:, 1] - pad_y // 2) / unpad_h) * orig_h
+ boxes[:, 2] = ((boxes[:, 2] - pad_x // 2) / unpad_w) * orig_w
+ boxes[:, 3] = ((boxes[:, 3] - pad_y // 2) / unpad_h) * orig_h
+ return boxes
+
+
+def xywh2xyxy(x):
+ y = x.new(x.shape)
+ y[..., 0] = x[..., 0] - x[..., 2] / 2
+ y[..., 1] = x[..., 1] - x[..., 3] / 2
+ y[..., 2] = x[..., 0] + x[..., 2] / 2
+ y[..., 3] = x[..., 1] + x[..., 3] / 2
+ return y
+
+
+def ap_per_class(tp, conf, pred_cls, target_cls):
+ """ Compute the average precision, given the recall and precision curves.
+ Source: https://github.com/rafaelpadilla/Object-Detection-Metrics.
+ # Arguments
+ tp: True positives (list).
+ conf: Objectness value from 0-1 (list).
+ pred_cls: Predicted object classes (list).
+ target_cls: True object classes (list).
+ # Returns
+ The average precision as computed in py-faster-rcnn.
+ """
+
+ # Sort by objectness
+ i = np.argsort(-conf)
+ tp, conf, pred_cls = tp[i], conf[i], pred_cls[i]
+
+ # Find unique classes
+ unique_classes = np.unique(target_cls)
+
+ # Create Precision-Recall curve and compute AP for each class
+ ap, p, r = [], [], []
+ for c in tqdm.tqdm(unique_classes, desc="Computing AP"):
+ i = pred_cls == c
+ n_gt = (target_cls == c).sum() # Number of ground truth objects
+ n_p = i.sum() # Number of predicted objects
+
+ if n_p == 0 and n_gt == 0:
+ continue
+ elif n_p == 0 or n_gt == 0:
+ ap.append(0)
+ r.append(0)
+ p.append(0)
+ else:
+ # Accumulate FPs and TPs
+ fpc = (1 - tp[i]).cumsum()
+ tpc = (tp[i]).cumsum()
+
+ # Recall
+ recall_curve = tpc / (n_gt + 1e-16)
+ r.append(recall_curve[-1])
+
+ # Precision
+ precision_curve = tpc / (tpc + fpc)
+ p.append(precision_curve[-1])
+
+ # AP from recall-precision curve
+ ap.append(compute_ap(recall_curve, precision_curve))
+
+ # Compute F1 score (harmonic mean of precision and recall)
+ p, r, ap = np.array(p), np.array(r), np.array(ap)
+ f1 = 2 * p * r / (p + r + 1e-16)
+
+ return p, r, ap, f1, unique_classes.astype("int32")
+
+
+def compute_ap(recall, precision):
+ """ Compute the average precision, given the recall and precision curves.
+ Code originally from https://github.com/rbgirshick/py-faster-rcnn.
+
+ # Arguments
+ recall: The recall curve (list).
+ precision: The precision curve (list).
+ # Returns
+ The average precision as computed in py-faster-rcnn.
+ """
+ # correct AP calculation
+ # first append sentinel values at the end
+ mrec = np.concatenate(([0.0], recall, [1.0]))
+ mpre = np.concatenate(([0.0], precision, [0.0]))
+
+ # compute the precision envelope
+ for i in range(mpre.size - 1, 0, -1):
+ mpre[i - 1] = np.maximum(mpre[i - 1], mpre[i])
+
+ # to calculate area under PR curve, look for points
+ # where X axis (recall) changes value
+ i = np.where(mrec[1:] != mrec[:-1])[0]
+
+ # and sum (\Delta recall) * prec
+ ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1])
+ return ap
+
+
+def get_batch_statistics(outputs, targets, iou_threshold):
+ """ Compute true positives, predicted scores and predicted labels per sample """
+ batch_metrics = []
+ for sample_i in range(len(outputs)):
+
+ if outputs[sample_i] is None:
+ continue
+
+ output = outputs[sample_i]
+ pred_boxes = output[:, :4]
+ pred_scores = output[:, 4]
+ pred_labels = output[:, -1]
+
+ true_positives = np.zeros(pred_boxes.shape[0])
+
+ annotations = targets[targets[:, 0] == sample_i][:, 1:]
+ target_labels = annotations[:, 0] if len(annotations) else []
+ if len(annotations):
+ detected_boxes = []
+ target_boxes = annotations[:, 1:]
+
+ for pred_i, (pred_box, pred_label) in enumerate(zip(pred_boxes, pred_labels)):
+
+ # If targets are found break
+ if len(detected_boxes) == len(annotations):
+ break
+
+ # Ignore if label is not one of the target labels
+ if pred_label not in target_labels:
+ continue
+
+ iou, box_index = bbox_iou(pred_box.unsqueeze(0), target_boxes).max(0)
+ if iou >= iou_threshold and box_index not in detected_boxes:
+ true_positives[pred_i] = 1
+ detected_boxes += [box_index]
+ batch_metrics.append([true_positives, pred_scores, pred_labels])
+ return batch_metrics
+
+
+def bbox_wh_iou(wh1, wh2):
+ wh2 = wh2.t()
+ w1, h1 = wh1[0], wh1[1]
+ w2, h2 = wh2[0], wh2[1]
+ inter_area = torch.min(w1, w2) * torch.min(h1, h2)
+ union_area = (w1 * h1 + 1e-16) + w2 * h2 - inter_area
+ return inter_area / union_area
+
+
+def bbox_iou(box1, box2, x1y1x2y2=True):
+ """
+ Returns the IoU of two bounding boxes
+ """
+ if not x1y1x2y2:
+ # Transform from center and width to exact coordinates
+ b1_x1, b1_x2 = box1[:, 0] - box1[:, 2] / 2, box1[:, 0] + box1[:, 2] / 2
+ b1_y1, b1_y2 = box1[:, 1] - box1[:, 3] / 2, box1[:, 1] + box1[:, 3] / 2
+ b2_x1, b2_x2 = box2[:, 0] - box2[:, 2] / 2, box2[:, 0] + box2[:, 2] / 2
+ b2_y1, b2_y2 = box2[:, 1] - box2[:, 3] / 2, box2[:, 1] + box2[:, 3] / 2
+ else:
+ # Get the coordinates of bounding boxes
+ b1_x1, b1_y1, b1_x2, b1_y2 = box1[:, 0], box1[:, 1], box1[:, 2], box1[:, 3]
+ b2_x1, b2_y1, b2_x2, b2_y2 = box2[:, 0], box2[:, 1], box2[:, 2], box2[:, 3]
+
+ # get the corrdinates of the intersection rectangle
+ inter_rect_x1 = torch.max(b1_x1, b2_x1)
+ inter_rect_y1 = torch.max(b1_y1, b2_y1)
+ inter_rect_x2 = torch.min(b1_x2, b2_x2)
+ inter_rect_y2 = torch.min(b1_y2, b2_y2)
+ # Intersection area
+ inter_area = torch.clamp(inter_rect_x2 - inter_rect_x1 + 1, min=0) * torch.clamp(
+ inter_rect_y2 - inter_rect_y1 + 1, min=0
+ )
+ # Union Area
+ b1_area = (b1_x2 - b1_x1 + 1) * (b1_y2 - b1_y1 + 1)
+ b2_area = (b2_x2 - b2_x1 + 1) * (b2_y2 - b2_y1 + 1)
+
+ iou = inter_area / (b1_area + b2_area - inter_area + 1e-16)
+
+ return iou
+
+
+def non_max_suppression(prediction, conf_thres=0.5, nms_thres=0.4):
+ """
+ Removes detections with lower object confidence score than 'conf_thres' and performs
+ Non-Maximum Suppression to further filter detections.
+ Returns detections with shape:
+ (x1, y1, x2, y2, object_conf, class_score, class_pred)
+ """
+
+ # From (center x, center y, width, height) to (x1, y1, x2, y2)
+ prediction[..., :4] = xywh2xyxy(prediction[..., :4])
+ output = [None for _ in range(len(prediction))]
+ for image_i, image_pred in enumerate(prediction):
+ # Filter out confidence scores below threshold
+ image_pred = image_pred[image_pred[:, 4] >= conf_thres]
+ # If none are remaining => process next image
+ if not image_pred.size(0):
+ continue
+ # Object confidence times class confidence
+ score = image_pred[:, 4] * image_pred[:, 5:].max(1)[0]
+ # Sort by it
+ image_pred = image_pred[(-score).argsort()]
+ class_confs, class_preds = image_pred[:, 5:].max(1, keepdim=True)
+ detections = torch.cat((image_pred[:, :5], class_confs.float(), class_preds.float()), 1)
+ # Perform non-maximum suppression
+ keep_boxes = []
+ while detections.size(0):
+ large_overlap = bbox_iou(detections[0, :4].unsqueeze(0), detections[:, :4]) > nms_thres
+ label_match = detections[0, -1] == detections[:, -1]
+ # Indices of boxes with lower confidence scores, large IOUs and matching labels
+ invalid = large_overlap & label_match
+ weights = detections[invalid, 4:5]
+ # Merge overlapping bboxes by order of confidence
+ detections[0, :4] = (weights * detections[invalid, :4]).sum(0) / weights.sum()
+ keep_boxes += [detections[0]]
+ detections = detections[~invalid]
+ if keep_boxes:
+ output[image_i] = torch.stack(keep_boxes)
+
+ return output
+
+
+def build_targets(pred_boxes, pred_cls, target, anchors, ignore_thres):
+
+ ByteTensor = torch.cuda.ByteTensor if pred_boxes.is_cuda else torch.ByteTensor
+ FloatTensor = torch.cuda.FloatTensor if pred_boxes.is_cuda else torch.FloatTensor
+
+ nB = pred_boxes.size(0)
+ nA = pred_boxes.size(1)
+ nC = pred_cls.size(-1)
+ nG = pred_boxes.size(2)
+
+ # Output tensors
+ obj_mask = ByteTensor(nB, nA, nG, nG).fill_(0)
+ noobj_mask = ByteTensor(nB, nA, nG, nG).fill_(1)
+ class_mask = FloatTensor(nB, nA, nG, nG).fill_(0)
+ iou_scores = FloatTensor(nB, nA, nG, nG).fill_(0)
+ tx = FloatTensor(nB, nA, nG, nG).fill_(0)
+ ty = FloatTensor(nB, nA, nG, nG).fill_(0)
+ tw = FloatTensor(nB, nA, nG, nG).fill_(0)
+ th = FloatTensor(nB, nA, nG, nG).fill_(0)
+ tcls = FloatTensor(nB, nA, nG, nG, nC).fill_(0)
+
+ # Convert to position relative to box
+ target_boxes = target[:, 2:6] * nG
+ gxy = target_boxes[:, :2]
+ gwh = target_boxes[:, 2:]
+ # Get anchors with best iou
+ ious = torch.stack([bbox_wh_iou(anchor, gwh) for anchor in anchors])
+ best_ious, best_n = ious.max(0)
+ # Separate target values
+ b, target_labels = target[:, :2].long().t()
+ gx, gy = gxy.t()
+ gw, gh = gwh.t()
+ gi, gj = gxy.long().t()
+ # Set masks
+ obj_mask[b, best_n, gj, gi] = 1
+ noobj_mask[b, best_n, gj, gi] = 0
+
+ # Set noobj mask to zero where iou exceeds ignore threshold
+ for i, anchor_ious in enumerate(ious.t()):
+ noobj_mask[b[i], anchor_ious > ignore_thres, gj[i], gi[i]] = 0
+
+ # Coordinates
+ tx[b, best_n, gj, gi] = gx - gx.floor()
+ ty[b, best_n, gj, gi] = gy - gy.floor()
+ # Width and height
+ tw[b, best_n, gj, gi] = torch.log(gw / anchors[best_n][:, 0] + 1e-16)
+ th[b, best_n, gj, gi] = torch.log(gh / anchors[best_n][:, 1] + 1e-16)
+ # One-hot encoding of label
+ tcls[b, best_n, gj, gi, target_labels] = 1
+ # Compute label correctness and iou at best anchor
+ class_mask[b, best_n, gj, gi] = (pred_cls[b, best_n, gj, gi].argmax(-1) == target_labels).float()
+ iou_scores[b, best_n, gj, gi] = bbox_iou(pred_boxes[b, best_n, gj, gi], target_boxes, x1y1x2y2=False)
+
+ tconf = obj_mask.float()
+ return iou_scores, class_mask, obj_mask, noobj_mask, tx, ty, tw, th, tcls, tconf
diff --git a/Spider/Chapter09_代理的使用/__init__.py b/Spider/Chapter09_代理的使用/__init__.py
new file mode 100644
index 0000000..3c90a3a
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:12
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter09_代理的使用/代理的设置/__init__.py b/Spider/Chapter09_代理的使用/代理的设置/__init__.py
new file mode 100644
index 0000000..3c90a3a
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/__init__.py
@@ -0,0 +1,8 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:12
+@Usage :
+@Desc :
+'''
\ No newline at end of file
diff --git a/Spider/Chapter09_代理的使用/代理的设置/aiohttpDemo.py b/Spider/Chapter09_代理的使用/代理的设置/aiohttpDemo.py
new file mode 100644
index 0000000..e067db2
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/aiohttpDemo.py
@@ -0,0 +1,26 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:54
+@Usage :
+@Desc :
+'''
+
+import asyncio
+import aiohttp
+
+# 普通http
+proxy = 'http://127.0.0.1:7890'
+# http_auth
+proxy = 'http://username:password@127.0.0.1:7890'
+
+
+async def main():
+ async with aiohttp.ClientSession() as session:
+ async with session.get('https://httpbin.org/get', proxy=proxy) as response:
+ print(await response.text())
+
+
+if __name__ == '__main__':
+ asyncio.get_event_loop().run_until_complete(main())
diff --git a/Spider/Chapter09_代理的使用/代理的设置/httpxDemo.py b/Spider/Chapter09_代理的使用/代理的设置/httpxDemo.py
new file mode 100644
index 0000000..d078fca
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/httpxDemo.py
@@ -0,0 +1,64 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:42
+@Usage :
+@Desc :
+'''
+
+
+
+import httpx
+
+def http():
+ proxy = '127.0.0.1:7890'
+ proxies = {
+ 'http://': 'http://' + proxy,
+ 'https://': 'http://' + proxy,
+ }
+
+ with httpx.Client(proxies=proxies) as client:
+ response = client.get('https://httpbin.org/get')
+ print(response.text)
+
+def http_auth():
+ proxy = 'username:password@127.0.0.1:7890'
+ proxies = {
+ 'http://': 'http://' + proxy,
+ 'https://': 'http://' + proxy,
+ }
+
+ with httpx.Client(proxies=proxies) as client:
+ response = client.get('https://httpbin.org/get')
+ print(response.text)
+
+#socks方式需要额外安装pip install httpx-socks[asyncio]
+def socks():
+ from httpx_socks import SyncProxyTransport
+
+
+ # 同步的方式
+ transport = SyncProxyTransport.from_url(
+ 'socks5://127.0.0.1:7891')
+
+ with httpx.Client(transport=transport) as client:
+ response = client.get('https://httpbin.org/get')
+ print(response.text)
+
+
+
+
+# 异步socks
+async def main():
+ from httpx_socks import AsyncProxyTransport
+ transport = AsyncProxyTransport.from_url(
+ 'socks5://127.0.0.1:7891')
+ async with httpx.AsyncClient(transport=transport) as client:
+ response = await client.get('https://httpbin.org/get')
+ print(response.text)
+
+
+if __name__ == '__main__':
+ import asyncio
+ asyncio.get_event_loop().run_until_complete(main())
\ No newline at end of file
diff --git a/Spider/Chapter09_代理的使用/代理的设置/requestDemo.py b/Spider/Chapter09_代理的使用/代理的设置/requestDemo.py
new file mode 100644
index 0000000..4116e4b
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/requestDemo.py
@@ -0,0 +1,65 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:13
+@Usage :
+@Desc : request相关代理的设置
+'''
+
+import requests
+
+
+def http_demo():
+ proxy = '127.0.0.1:7890'
+ proxies = {
+ 'http': 'http://' + proxy,
+ 'https': 'http://' + proxy,
+ }
+ try:
+ # 传入proxies参数即可
+ response = requests.get('https://httpbin.org/get', proxies=proxies)
+ print(response.text)
+ except requests.exceptions.ConnectionError as e:
+ print('Error', e.args)
+
+
+def http_auth_demo():
+ proxy = 'username:password@127.0.0.1:7890'
+ proxies = {
+ 'http': 'http://' + proxy,
+ 'https': 'http://' + proxy,
+ }
+ try:
+ # 传入proxies参数即可
+ response = requests.get('https://httpbin.org/get', proxies=proxies)
+ print(response.text)
+ except requests.exceptions.ConnectionError as e:
+ print('Error', e.args)
+
+
+# 如果代理模式是socks:需要额外安装pip install requests[socks]
+def socks():
+ proxy = '127.0.0.1:7891'
+ proxies = {
+ 'http': 'socks5://' + proxy,
+ 'https': 'socks5://' + proxy
+ }
+ try:
+ response = requests.get('https://httpbin.org/get', proxies=proxies)
+ print(response.text)
+ except requests.exceptions.ConnectionError as e:
+ print('Error', e.args)
+
+
+# 另一种socks方式,此方法属于全局配置
+def socks2():
+ import socks
+ import socket
+ socks.set_default_proxy(socks.SOCKS5, '127.0.0.1', 7891)
+ socket.socket = socks.socksocket
+ try:
+ response = requests.get('https://httpbin.org/get')
+ print(response.text)
+ except requests.exceptions.ConnectionError as e:
+ print('Error', e.args)
diff --git a/Spider/Chapter09_代理的使用/代理的设置/seleniumDemo.py b/Spider/Chapter09_代理的使用/代理的设置/seleniumDemo.py
new file mode 100644
index 0000000..e1c1ae7
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/seleniumDemo.py
@@ -0,0 +1,92 @@
+#-*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:49
+@Usage :
+@Desc :
+'''
+
+from selenium import webdriver
+
+
+def http():
+ proxy = '127.0.0.1:7890'
+ options = webdriver.ChromeOptions()
+ options.add_argument('--proxy-server=http://' + proxy)
+ browser = webdriver.Chrome(options=options)
+ browser.get('https://httpbin.org/get')
+ print(browser.page_source)
+ browser.close()
+
+def http_auth():
+ from selenium import webdriver
+ from selenium.webdriver.chrome.options import Options
+ import zipfile
+
+ ip = '127.0.0.1'
+ port = 7890
+ username = 'foo'
+ password = 'bar'
+
+ manifest_json = """
+ {
+ "version":"1.0.0",
+ "manifest_version": 2,
+ "name":"Chrome Proxy",
+ "permissions": ["proxy","tabs","unlimitedStorage","storage","","webRequest","webRequestBlocking"],
+ "background": {
+ "scripts": ["background.js"]
+ }
+ }
+ """
+ background_js = """
+ var config = {
+ mode: "fixed_servers",
+ rules: {
+ singleProxy: {
+ scheme: "http",
+ host: "%(ip) s",
+ port: %(port) s
+ }
+ }
+ }
+
+ chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
+
+ function callbackFn(details) {
+ return {
+ authCredentials: {username: "%(username) s",
+ password: "%(password) s"
+ }
+ }
+ }
+
+ chrome.webRequest.onAuthRequired.addListener(
+ callbackFn,
+ {urls: [""]},
+ ['blocking']
+ )
+ """ % {'ip': ip, 'port': port, 'username': username, 'password': password}
+
+ plugin_file = 'proxy_auth_plugin.zip'
+ with zipfile.ZipFile(plugin_file, 'w') as zp:
+ zp.writestr("manifest.json", manifest_json)
+ zp.writestr("background.js", background_js)
+ options = Options()
+ options.add_argument("--start-maximized")
+ options.add_extension(plugin_file)
+ browser = webdriver.Chrome(options=options)
+ browser.get('https://httpbin.org/get')
+ print(browser.page_source)
+ browser.close()
+
+
+def socks():
+ proxy = '127.0.0.1:7891'
+ options = webdriver.ChromeOptions()
+ options.add_argument('--proxy-server=socks5://' + proxy)
+ browser = webdriver.Chrome(options=options)
+ browser.get('https://httpbin.org/get')
+ print(browser.page_source)
+ browser.close()
\ No newline at end of file
diff --git a/Spider/Chapter09_代理的使用/代理的设置/urllibDemo.py b/Spider/Chapter09_代理的使用/代理的设置/urllibDemo.py
new file mode 100644
index 0000000..644c8b5
--- /dev/null
+++ b/Spider/Chapter09_代理的使用/代理的设置/urllibDemo.py
@@ -0,0 +1,41 @@
+# -*- encoding:utf-8 -*-
+
+'''
+@Author : dingjiawen
+@Date : 2023/12/13 19:14
+@Usage :
+@Desc :
+'''
+
+from urllib.error import URLError
+from urllib.request import ProxyHandler, build_opener
+
+
+# 不带权限验证的http
+def http_demo():
+ proxy = '127.0.0.1:7890'
+ proxy_handler = ProxyHandler({
+ 'http': 'http://' + proxy,
+ 'https': 'https://' + proxy
+ })
+ opener = build_opener(proxy_handler)
+ try:
+ response = opener.open('https://httpbin.org/get')
+ print(response.read().decode('utf-8'))
+ except URLError as e:
+ print(e.reason)
+
+
+# 带权限验证的http
+def http_auth_demo():
+ proxy = 'username:password@127.0.0.1:7890'
+ proxy_handler = ProxyHandler({
+ 'http': 'http://' + proxy,
+ 'https': 'http://' + proxy
+ })
+ opener = build_opener(proxy_handler)
+ try:
+ response = opener.open('https://httpbin.org/get')
+ print(response.read().decode('utf-8'))
+ except URLError as e:
+ print(e.reason)