Commit 6b6f40f3 authored by liukaiwen's avatar liukaiwen
Browse files

Merge branch 'master' of github.com:papayalove/Magic-PDF

parents 851d191d b7710723
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: PDF
on:
push:
branches:
- "master"
paths-ignore:
- "cmds/**"
- "**.md"
pull_request:
branches:
- "master"
paths-ignore:
- "cmds/**"
- "**.md"
workflow_dispatch:
jobs:
cli-test:
runs-on: pdf
timeout-minutes: 40
strategy:
fail-fast: true
steps:
- name: config-net
run: |
export http_proxy=http://bigdata_open_proxy:H89k5qwQRDYfz@10.140.90.20:10811
export https_proxy=http://bigdata_open_proxy:H89k5qwQRDYfz@10.140.90.20:10811
- name: PDF cli
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: check-requirements
run: |
changed_files=$(git diff --name-only -r HEAD~1 HEAD)
echo $changed_files
if [[ $changed_files =~ "requirements.txt" ]]; then
pip install -r requirements.txt
fi
- name: config-net-reset
run: |
export http_proxy=""
export https_proxy=""
- name: test_cli
run: |
echo $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE && pytest -s -v tests/test_cli/test_cli.py
notify_to_feishu:
if: ${{ always() && !cancelled() && contains(needs.*.result, 'failure') && (github.ref_name == 'master') }}
needs: [cli-test]
runs-on: pdf
steps:
- name: get_actor
run: |
metion_list="quyuan"
echo $GITHUB_ACTOR
if [[ $GITHUB_ACTOR == "drunkpig" ]]; then
metion_list="xuchao"
elif [[ $GITHUB_ACTOR == "myhloli" ]]; then
metion_list="zhaoxiaomeng"
elif [[ $GITHUB_ACTOR == "icecraft" ]]; then
metion_list="xurui1"
fi
echo $metion_list
echo "METIONS=$metion_list" >> "$GITHUB_ENV"
echo ${{ env.METIONS }}
- name: notify
run: |
curl ${{ secrets.WEBHOOK_URL }} -H 'Content-Type: application/json' -d '{
"msgtype": "text",
"text": {
"mentioned_list": ["${{ env.METIONS }}"] , "content": "'${{ github.repository }}' GitHubAction Failed!\n 细节请查看:https://github.com/'${{ github.repository }}'/actions/runs/'${GITHUB_RUN_ID}'"
}
}'
\ No newline at end of file
...@@ -95,7 +95,7 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""): ...@@ -95,7 +95,7 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""):
page_markdown = [] page_markdown = []
for para_block in paras_of_layout: for para_block in paras_of_layout:
para_text = '' para_text = ''
para_type = para_block.get('type') para_type = para_block['type']
if para_type == BlockType.Text: if para_type == BlockType.Text:
para_text = merge_para_with_text(para_block) para_text = merge_para_with_text(para_block)
elif para_type == BlockType.Title: elif para_type == BlockType.Title:
...@@ -106,32 +106,30 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""): ...@@ -106,32 +106,30 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""):
if mode == 'nlp': if mode == 'nlp':
continue continue
elif mode == 'mm': elif mode == 'mm':
img_blocks = para_block.get('blocks') for block in para_block['blocks']:
for img_block in img_blocks: if block['type'] == BlockType.ImageBody:
if img_block.get('type') == BlockType.ImageBody: for line in block['lines']:
for line in img_block.get('lines'):
for span in line['spans']: for span in line['spans']:
if span.get('type') == ContentType.Image: if span['type'] == ContentType.Image:
para_text = f"\n![]({join_path(img_buket_path, span['image_path'])})\n" para_text = f"\n![]({join_path(img_buket_path, span['image_path'])})\n"
for img_block in img_blocks: for block in para_block['blocks']:
if img_block.get('type') == BlockType.ImageCaption: if block['type'] == BlockType.ImageCaption:
para_text += merge_para_with_text(img_block) para_text += merge_para_with_text(block)
elif para_type == BlockType.Table: elif para_type == BlockType.Table:
if mode == 'nlp': if mode == 'nlp':
continue continue
elif mode == 'mm': elif mode == 'mm':
table_blocks = para_block.get('blocks') for block in para_block['blocks']:
for table_block in table_blocks: if block['type'] == BlockType.TableBody:
if table_block.get('type') == BlockType.TableBody: for line in block['lines']:
for line in table_block.get('lines'):
for span in line['spans']: for span in line['spans']:
if span.get('type') == ContentType.Table: if span['type'] == ContentType.Table:
para_text = f"\n![]({join_path(img_buket_path, span['image_path'])})\n" para_text = f"\n![]({join_path(img_buket_path, span['image_path'])})\n"
for table_block in table_blocks: for block in para_block['blocks']:
if table_block.get('type') == BlockType.TableCaption: if block['type'] == BlockType.TableCaption:
para_text += merge_para_with_text(table_block) para_text += merge_para_with_text(block)
elif table_block.get('type') == BlockType.TableFootnote: elif block['type'] == BlockType.TableFootnote:
para_text += merge_para_with_text(table_block) para_text += merge_para_with_text(block)
if para_text.strip() == '': if para_text.strip() == '':
continue continue
...@@ -141,11 +139,11 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""): ...@@ -141,11 +139,11 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""):
return page_markdown return page_markdown
def merge_para_with_text(para): def merge_para_with_text(para_block):
para_text = '' para_text = ''
for line in para['lines']: for line in para_block['lines']:
for span in line['spans']: for span in line['spans']:
span_type = span.get('type') span_type = span['type']
content = '' content = ''
language = '' language = ''
if span_type == ContentType.Text: if span_type == ContentType.Text:
...@@ -159,6 +157,7 @@ def merge_para_with_text(para): ...@@ -159,6 +157,7 @@ def merge_para_with_text(para):
content = f"${span['content']}$" content = f"${span['content']}$"
elif span_type == ContentType.InterlineEquation: elif span_type == ContentType.InterlineEquation:
content = f"\n$$\n{span['content']}\n$$\n" content = f"\n$$\n{span['content']}\n$$\n"
if content != '': if content != '':
if language == 'en': # 英文语境下 content间需要空格分隔 if language == 'en': # 英文语境下 content间需要空格分隔
para_text += content + ' ' para_text += content + ' '
......
...@@ -132,7 +132,7 @@ def draw_layout_bbox(pdf_info, pdf_bytes, out_path): ...@@ -132,7 +132,7 @@ def draw_layout_bbox(pdf_info, pdf_bytes, out_path):
pdf_docs = fitz.open("pdf", pdf_bytes) pdf_docs = fitz.open("pdf", pdf_bytes)
for i, page in enumerate(pdf_docs): for i, page in enumerate(pdf_docs):
draw_bbox_with_number(i, layout_bbox_list, page, [255, 0, 0], False) draw_bbox_with_number(i, layout_bbox_list, page, [255, 0, 0], False)
draw_bbox_without_number(i, dropped_bbox_list, page, [0, 255, 0], True) draw_bbox_without_number(i, dropped_bbox_list, page, [158, 158, 158], True)
draw_bbox_without_number(i, tables_list, page, [153, 153, 0], True) # color ! draw_bbox_without_number(i, tables_list, page, [153, 153, 0], True) # color !
draw_bbox_without_number(i, tables_body_list, page, [204, 204, 0], True) draw_bbox_without_number(i, tables_body_list, page, [204, 204, 0], True)
draw_bbox_without_number(i, tables_caption_list, page, [255, 255, 102], True) draw_bbox_without_number(i, tables_caption_list, page, [255, 255, 102], True)
...@@ -142,7 +142,7 @@ def draw_layout_bbox(pdf_info, pdf_bytes, out_path): ...@@ -142,7 +142,7 @@ def draw_layout_bbox(pdf_info, pdf_bytes, out_path):
draw_bbox_without_number(i, imgs_caption_list, page, [102, 178, 255], True) draw_bbox_without_number(i, imgs_caption_list, page, [102, 178, 255], True)
draw_bbox_without_number(i, titles_list, page, [102, 102, 255], True) draw_bbox_without_number(i, titles_list, page, [102, 102, 255], True)
draw_bbox_without_number(i, texts_list, page, [153, 0, 76], True) draw_bbox_without_number(i, texts_list, page, [153, 0, 76], True)
draw_bbox_without_number(i, interequations_list, page, [160, 160, 160], True) draw_bbox_without_number(i, interequations_list, page, [0, 255, 0], True)
# Save the PDF # Save the PDF
pdf_docs.save(f"{out_path}/layout.pdf") pdf_docs.save(f"{out_path}/layout.pdf")
......
...@@ -61,7 +61,7 @@ def parse_pdf_by_ocr(pdf_bytes, ...@@ -61,7 +61,7 @@ def parse_pdf_by_ocr(pdf_bytes,
'''将所有区块的bbox整理到一起''' '''将所有区块的bbox整理到一起'''
all_bboxes = ocr_prepare_bboxes_for_layout_split( all_bboxes = ocr_prepare_bboxes_for_layout_split(
img_blocks, table_blocks, discarded_blocks, text_blocks, title_blocks, img_blocks, table_blocks, discarded_blocks, text_blocks, title_blocks,
interline_equation_blocks, page_w, page_h) interline_equations, page_w, page_h)
'''根据区块信息计算layout''' '''根据区块信息计算layout'''
page_boundry = [0, 0, page_w, page_h] page_boundry = [0, 0, page_w, page_h]
......
...@@ -57,8 +57,8 @@ def fix_text_overlap_title_blocks(all_bboxes): ...@@ -57,8 +57,8 @@ def fix_text_overlap_title_blocks(all_bboxes):
for text_block in text_blocks: for text_block in text_blocks:
for title_block in title_blocks: for title_block in title_blocks:
text_block_bbox = text_block[0], text_block[1], text_block[2], text_block[3] text_block_bbox = text_block[:4]
title_block_bbox = title_block[0], title_block[1], title_block[2], title_block[3] title_block_bbox = title_block[:4]
if calculate_iou(text_block_bbox, title_block_bbox) > 0.8: if calculate_iou(text_block_bbox, title_block_bbox) > 0.8:
all_bboxes.remove(title_block) all_bboxes.remove(title_block)
...@@ -66,27 +66,37 @@ def fix_text_overlap_title_blocks(all_bboxes): ...@@ -66,27 +66,37 @@ def fix_text_overlap_title_blocks(all_bboxes):
def remove_need_drop_blocks(all_bboxes, discarded_blocks): def remove_need_drop_blocks(all_bboxes, discarded_blocks):
for block in all_bboxes.copy(): need_remove = []
for block in all_bboxes:
for discarded_block in discarded_blocks: for discarded_block in discarded_blocks:
block_bbox = block[0], block[1], block[2], block[3] block_bbox = block[:4]
if calculate_overlap_area_in_bbox1_area_ratio(block_bbox, discarded_block['bbox']) > 0.6: if calculate_overlap_area_in_bbox1_area_ratio(block_bbox, discarded_block['bbox']) > 0.6:
if block not in need_remove:
need_remove.append(block)
break
if len(need_remove) > 0:
for block in need_remove:
all_bboxes.remove(block) all_bboxes.remove(block)
return all_bboxes return all_bboxes
def remove_overlaps_min_blocks(all_bboxes): def remove_overlaps_min_blocks(all_bboxes):
# 删除重叠blocks中较小的那些 # 删除重叠blocks中较小的那些
for block1 in all_bboxes.copy(): need_remove = []
for block2 in all_bboxes.copy(): for block1 in all_bboxes:
for block2 in all_bboxes:
if block1 != block2: if block1 != block2:
block1_bbox = [block1[0], block1[1], block1[2], block1[3]] block1_bbox = block1[:4]
block2_bbox = [block2[0], block2[1], block2[2], block2[3]] block2_bbox = block2[:4]
overlap_box = get_minbox_if_overlap_by_ratio(block1_bbox, block2_bbox, 0.8) overlap_box = get_minbox_if_overlap_by_ratio(block1_bbox, block2_bbox, 0.8)
if overlap_box is not None: if overlap_box is not None:
bbox_to_remove = next( bbox_to_remove = next((block for block in all_bboxes if block[:4] == overlap_box), None)
(block for block in all_bboxes if [block[0], block[1], block[2], block[3]] == overlap_box), if bbox_to_remove is not None and bbox_to_remove not in need_remove:
None) need_remove.append(bbox_to_remove)
if bbox_to_remove is not None:
all_bboxes.remove(bbox_to_remove) if len(need_remove) > 0:
for block in need_remove:
all_bboxes.remove(block)
return all_bboxes return all_bboxes
...@@ -9,16 +9,20 @@ from magic_pdf.libs.ocr_content_type import ContentType, BlockType ...@@ -9,16 +9,20 @@ from magic_pdf.libs.ocr_content_type import ContentType, BlockType
def remove_overlaps_min_spans(spans): def remove_overlaps_min_spans(spans):
dropped_spans = [] dropped_spans = []
# 删除重叠spans中较小的那些 # 删除重叠spans中较小的那些
for span1 in spans.copy(): for span1 in spans:
for span2 in spans.copy(): for span2 in spans:
if span1 != span2: if span1 != span2:
overlap_box = get_minbox_if_overlap_by_ratio(span1['bbox'], span2['bbox'], 0.65) overlap_box = get_minbox_if_overlap_by_ratio(span1['bbox'], span2['bbox'], 0.65)
if overlap_box is not None: if overlap_box is not None:
bbox_to_remove = next((span for span in spans if span['bbox'] == overlap_box), None) span_need_remove = next((span for span in spans if span['bbox'] == overlap_box), None)
if bbox_to_remove is not None: if span_need_remove is not None and span_need_remove not in dropped_spans:
spans.remove(bbox_to_remove) dropped_spans.append(span_need_remove)
bbox_to_remove['tag'] = DropTag.SPAN_OVERLAP
dropped_spans.append(bbox_to_remove) if len(dropped_spans) > 0:
for span_need_remove in dropped_spans:
spans.remove(span_need_remove)
span_need_remove['tag'] = DropTag.SPAN_OVERLAP
return spans, dropped_spans return spans, dropped_spans
...@@ -29,9 +33,11 @@ def remove_spans_by_bboxes(spans, need_remove_spans_bboxes): ...@@ -29,9 +33,11 @@ def remove_spans_by_bboxes(spans, need_remove_spans_bboxes):
for span in spans: for span in spans:
for removed_bbox in need_remove_spans_bboxes: for removed_bbox in need_remove_spans_bboxes:
if calculate_overlap_area_in_bbox1_area_ratio(span['bbox'], removed_bbox) > 0.5: if calculate_overlap_area_in_bbox1_area_ratio(span['bbox'], removed_bbox) > 0.5:
if span not in need_remove_spans:
need_remove_spans.append(span) need_remove_spans.append(span)
break break
if len(need_remove_spans) > 0:
for span in need_remove_spans: for span in need_remove_spans:
spans.remove(span) spans.remove(span)
......
...@@ -74,7 +74,7 @@ def parse_union_pdf(pdf_bytes: bytes, pdf_models: list, imageWriter: AbsReaderWr ...@@ -74,7 +74,7 @@ def parse_union_pdf(pdf_bytes: bytes, pdf_models: list, imageWriter: AbsReaderWr
debug_mode=is_debug, debug_mode=is_debug,
) )
except Exception as e: except Exception as e:
logger.error(f"{method.__name__} error: {e}") logger.exception(e)
return None return None
pdf_info_dict = parse_pdf(parse_pdf_by_txt) pdf_info_dict = parse_pdf(parse_pdf_by_txt)
......
...@@ -17,4 +17,6 @@ zh_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/zh_ ...@@ -17,4 +17,6 @@ zh_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/zh_
scikit-learn>=1.0.2 scikit-learn>=1.0.2
nltk==3.8.1 nltk==3.8.1
s3pathlib>=2.1.1 s3pathlib>=2.1.1
pytest
subprocess
import os
conf = {
"code_path": os.environ.get('GITHUB_WORKSPACE'),
"pdf_dev_path" : os.environ.get('GITHUB_WORKSPACE') + "/tests/test_cli/pdf_dev",
"pdf_res_path": "/home/quyuan/code/Magic-PDF/Magic-PDF/Magic-PDF/data"
}
import subprocess
def check_shell(cmd):
res = subprocess.check_output(cmd, shell=True)
assert res == 0
def count_folders_and_check_contents(directory):
# 获取目录下的所有文件和文件夹
contents = os.listdir(directory)
folder_count = 0
for item in contents:
# 检查是否为文件夹
if os.path.isdir(os.path.join(directory, item)):
folder_count += 1
# 检查文件夹是否为空
folder_path = os.path.join(directory, item)
assert os.listdir(folder_path) is not None
assert folder_count == 3
[{"layout_dets": [{"category_id": 1, "poly": [89.961181640625, 2073.461669921875, 239.52061462402344, 2073.461669921875, 239.52061462402344, 2100.894775390625, 89.961181640625, 2100.894775390625], "score": 0.9999998807907104}, {"category_id": 2, "poly": [87.26616668701172, 74.82184600830078, 198.9960174560547, 74.82184600830078, 198.9960174560547, 186.6465301513672, 87.26616668701172, 186.6465301513672], "score": 0.9999980926513672}, {"category_id": 1, "poly": [85.48170471191406, 1983.3211669921875, 640.0853271484375, 1983.3211669921875, 640.0853271484375, 2057.33544921875, 85.48170471191406, 2057.33544921875], "score": 0.9999932050704956}, {"category_id": 1, "poly": [116.85928344726562, 1038.5179443359375, 403.7896423339844, 1038.5179443359375, 403.7896423339844, 1968.594970703125, 116.85928344726562, 1968.594970703125], "score": 0.9999915361404419}, {"category_id": 1, "poly": [118.67247009277344, 409.9633483886719, 246.474365234375, 409.9633483886719, 246.474365234375, 497.0032043457031, 118.67247009277344, 497.0032043457031], "score": 0.9999160766601562}, {"category_id": 1, "poly": [530.4315795898438, 991.8529052734375, 656.2960205078125, 991.8529052734375, 656.2960205078125, 1020.6166381835938, 530.4315795898438, 1020.6166381835938], "score": 0.9999150037765503}, {"category_id": 3, "poly": [88.1304702758789, 515.3963623046875, 1570.892333984375, 515.3963623046875, 1570.892333984375, 770.7802734375, 88.1304702758789, 770.7802734375], "score": 0.9945680499076843}, {"category_id": 1, "poly": [86.13500213623047, 2196.494140625, 709.7125244140625, 2196.494140625, 709.7125244140625, 2233.120361328125, 86.13500213623047, 2233.120361328125], "score": 0.9834498167037964}, {"category_id": 4, "poly": [89.66381072998047, 769.3086547851562, 604.8513793945312, 769.3086547851562, 604.8513793945312, 797.379638671875, 89.66381072998047, 797.379638671875], "score": 0.9638957977294922}, {"category_id": 1, "poly": [89.76014709472656, 355.5078125, 375.1806335449219, 355.5078125, 375.1806335449219, 385.1385803222656, 89.76014709472656, 385.1385803222656], "score": 0.9307346343994141}, {"category_id": 1, "poly": [88.51095581054688, 2130.6494140625, 1437.851806640625, 2130.6494140625, 1437.851806640625, 2170.198974609375, 88.51095581054688, 2170.198974609375], "score": 0.9123905897140503}, {"category_id": 2, "poly": [85.1264419555664, 2130.3125, 1436.6295166015625, 2130.3125, 1436.6295166015625, 2170.202880859375, 85.1264419555664, 2170.202880859375], "score": 0.40837574005126953}, {"category_id": 0, "poly": [84.86500549316406, 2130.254150390625, 1435.5068359375, 2130.254150390625, 1435.5068359375, 2170.0830078125, 84.86500549316406, 2170.0830078125], "score": 0.29840898513793945}, {"category_id": 2, "poly": [89.92295837402344, 355.66754150390625, 373.9532775878906, 355.66754150390625, 373.9532775878906, 385.2264099121094, 89.92295837402344, 385.2264099121094], "score": 0.27608123421669006}, {"category_id": 15, "poly": [349.0, 319.0, 376.0, 319.0, 376.0, 339.0, 349.0, 339.0], "score": 0.99, "text": "Go"}, {"category_id": 15, "poly": [143.0, 412.0, 207.0, 412.0, 207.0, 439.0, 143.0, 439.0], "score": 1.0, "text": "Home"}, {"category_id": 15, "poly": [140.0, 436.0, 226.0, 436.0, 226.0, 470.0, 140.0, 470.0], "score": 0.89, "text": " Journals"}, {"category_id": 15, "poly": [138.0, 465.0, 239.0, 465.0, 239.0, 499.0, 138.0, 499.0], "score": 1.0, "text": "About Us"}, {"category_id": 15, "poly": [529.0, 994.0, 654.0, 994.0, 654.0, 1021.0, 529.0, 1021.0], "score": 1.0, "text": "Journal Menu"}, {"category_id": 15, "poly": [140.0, 1045.0, 320.0, 1045.0, 320.0, 1072.0, 140.0, 1072.0], "score": 0.95, "text": " About this Journal \u00b7"}, {"category_id": 15, "poly": [138.0, 1069.0, 382.0, 1075.0, 381.0, 1109.0, 137.0, 1103.0], "score": 0.99, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [143.0, 1106.0, 310.0, 1106.0, 310.0, 1133.0, 143.0, 1133.0], "score": 0.99, "text": "Advance Access \u00b7"}, {"category_id": 15, "poly": [139.0, 1125.0, 308.0, 1131.0, 307.0, 1165.0, 137.0, 1159.0], "score": 0.98, "text": "Aims and Scope \u00b7"}, {"category_id": 15, "poly": [119.0, 1145.0, 133.0, 1136.0, 141.0, 1148.0, 127.0, 1157.0], "score": 0.59, "text": "\u00b7"}, {"category_id": 15, "poly": [143.0, 1162.0, 283.0, 1162.0, 283.0, 1189.0, 143.0, 1189.0], "score": 0.99, "text": "Annual Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1186.0, 399.0, 1189.0, 398.0, 1223.0, 140.0, 1221.0], "score": 0.95, "text": "Article Processing Charges :"}, {"category_id": 15, "poly": [145.0, 1221.0, 298.0, 1221.0, 298.0, 1247.0, 145.0, 1247.0], "score": 0.99, "text": "Articles in Press"}, {"category_id": 15, "poly": [138.0, 1240.0, 313.0, 1245.0, 312.0, 1280.0, 137.0, 1274.0], "score": 0.97, "text": "Author Guidelines"}, {"category_id": 15, "poly": [138.0, 1272.0, 379.0, 1274.0, 379.0, 1309.0, 138.0, 1306.0], "score": 0.93, "text": "Bibliographic Information "}, {"category_id": 15, "poly": [138.0, 1301.0, 369.0, 1304.0, 369.0, 1338.0, 138.0, 1335.0], "score": 0.96, "text": "Citations to this Journal ."}, {"category_id": 15, "poly": [141.0, 1330.0, 340.0, 1333.0, 339.0, 1367.0, 140.0, 1364.0], "score": 0.95, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [143.0, 1364.0, 298.0, 1364.0, 298.0, 1391.0, 143.0, 1391.0], "score": 0.96, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [138.0, 1389.0, 330.0, 1391.0, 329.0, 1426.0, 138.0, 1423.0], "score": 0.96, "text": " Editorial Workflow \u00b7"}, {"category_id": 15, "poly": [138.0, 1415.0, 320.0, 1421.0, 319.0, 1455.0, 137.0, 1449.0], "score": 0.99, "text": "Free eTOC Alerts "}, {"category_id": 15, "poly": [143.0, 1452.0, 312.0, 1452.0, 312.0, 1479.0, 143.0, 1479.0], "score": 0.99, "text": "Publication Ethics"}, {"category_id": 15, "poly": [140.0, 1476.0, 406.0, 1476.0, 406.0, 1508.0, 140.0, 1508.0], "score": 1.0, "text": "Reviewers Acknowledgment"}, {"category_id": 15, "poly": [138.0, 1503.0, 345.0, 1508.0, 344.0, 1543.0, 137.0, 1537.0], "score": 0.98, "text": "Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1532.0, 376.0, 1535.0, 376.0, 1569.0, 138.0, 1567.0], "score": 0.99, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [138.0, 1559.0, 313.0, 1565.0, 312.0, 1599.0, 137.0, 1593.0], "score": 0.99, "text": "Table ofContents"}, {"category_id": 15, "poly": [138.0, 1618.0, 342.0, 1618.0, 342.0, 1649.0, 138.0, 1649.0], "score": 0.97, "text": " Open Special Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1645.0, 374.0, 1645.0, 374.0, 1676.0, 140.0, 1676.0], "score": 0.96, "text": " Published Special Issues :"}, {"category_id": 15, "poly": [140.0, 1676.0, 367.0, 1676.0, 367.0, 1708.0, 140.0, 1708.0], "score": 0.97, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [140.0, 1727.0, 234.0, 1727.0, 234.0, 1762.0, 140.0, 1762.0], "score": 0.99, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1757.0, 283.0, 1757.0, 283.0, 1783.0, 143.0, 1783.0], "score": 0.98, "text": "Full-Text PDF"}, {"category_id": 15, "poly": [143.0, 1788.0, 298.0, 1788.0, 298.0, 1815.0, 143.0, 1815.0], "score": 0.98, "text": "Full- Text HTML"}, {"category_id": 15, "poly": [143.0, 1818.0, 293.0, 1818.0, 293.0, 1844.0, 143.0, 1844.0], "score": 0.97, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1847.0, 288.0, 1847.0, 288.0, 1874.0, 143.0, 1874.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [145.0, 1876.0, 320.0, 1876.0, 320.0, 1903.0, 145.0, 1903.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [140.0, 1903.0, 364.0, 1903.0, 364.0, 1935.0, 140.0, 1935.0], "score": 1.0, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [140.0, 1932.0, 362.0, 1932.0, 362.0, 1964.0, 140.0, 1964.0], "score": 0.99, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [86.0, 1981.0, 435.0, 1981.0, 435.0, 2013.0, 86.0, 2013.0], "score": 1.0, "text": "Abstract and Applied Analysis"}, {"category_id": 15, "poly": [86.0, 2003.0, 640.0, 2003.0, 640.0, 2034.0, 86.0, 2034.0], "score": 0.98, "text": "Volume 2013 (2013), Article ID 927873, 15 pages"}, {"category_id": 15, "poly": [86.0, 2030.0, 529.0, 2030.0, 529.0, 2061.0, 86.0, 2061.0], "score": 0.98, "text": "http: //dx.doi.0rg/10.1155/2013/927873"}, {"category_id": 15, "poly": [86.0, 2071.0, 244.0, 2071.0, 244.0, 2105.0, 86.0, 2105.0], "score": 0.98, "text": " Research Article"}, {"category_id": 15, "poly": [86.0, 2198.0, 706.0, 2198.0, 706.0, 2232.0, 86.0, 2232.0], "score": 0.96, "text": "Hung- Tsai Huang,4 Ming-Gong Lee,2 Z-Cai Li,3 and John Y. Chiang"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [88.01161193847656, 339.3336181640625, 1533.6959228515625, 339.3336181640625, 1533.6959228515625, 399.3067932128906, 88.01161193847656, 399.3067932128906], "score": 0.9999936819076538}, {"category_id": 0, "poly": [91.38117218017578, 427.7727966308594, 276.68011474609375, 427.7727966308594, 276.68011474609375, 455.814453125, 91.38117218017578, 455.814453125], "score": 0.9999935030937195}, {"category_id": 1, "poly": [99.50051879882812, 487.447998046875, 1569.2957763671875, 487.447998046875, 1569.2957763671875, 2260.36181640625, 99.50051879882812, 2260.36181640625], "score": 0.9999899864196777}, {"category_id": 1, "poly": [87.17127990722656, 235.06826782226562, 777.0225219726562, 235.06826782226562, 777.0225219726562, 264.7597351074219, 87.17127990722656, 264.7597351074219], "score": 0.9999785423278809}, {"category_id": 1, "poly": [89.411865234375, 286.6355285644531, 445.455078125, 286.6355285644531, 445.455078125, 317.29150390625, 89.411865234375, 317.29150390625], "score": 0.9999527931213379}, {"category_id": 1, "poly": [90.76082611083984, 82.83507537841797, 1327.5167236328125, 82.83507537841797, 1327.5167236328125, 213.64988708496094, 90.76082611083984, 213.64988708496094], "score": 0.9743028879165649}, {"category_id": 13, "poly": [181, 341, 204, 341, 204, 365, 181, 365], "score": 0.71, "latex": "\\copyright"}, {"category_id": 13, "poly": [1425, 1190, 1439, 1190, 1439, 1205, 1425, 1205], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [305, 814, 319, 814, 319, 828, 305, 828], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [1125, 1596, 1139, 1596, 1139, 1612, 1125, 1612], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [1277, 524, 1290, 524, 1290, 539, 1277, 539], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [1053, 1770, 1066, 1770, 1066, 1787, 1053, 1787], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [1192, 2177, 1206, 2177, 1206, 2192, 1192, 2192], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [288, 1219, 301, 1219, 301, 1235, 288, 1235], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [534, 813, 548, 813, 548, 829, 534, 829], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [834, 1655, 847, 1655, 847, 1671, 834, 1671], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [605, 1654, 619, 1654, 619, 1671, 605, 1671], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [89.0, 80.0, 834.0, 85.0, 834.0, 119.0, 88.0, 114.0], "score": 0.98, "text": "IDepartment of Applied Mathematics, I-Shou University, Kaohsiung 84001, Taiwan"}, {"category_id": 15, "poly": [84.0, 112.0, 1326.0, 115.0, 1326.0, 156.0, 84.0, 153.0], "score": 0.97, "text": "2Department ofLeisure and Recreation Management, PhD. Program in Engineering Science, Chung Hua University, Hsinchu 30012, Taiwan"}, {"category_id": 15, "poly": [86.0, 149.0, 962.0, 154.0, 962.0, 188.0, 86.0, 183.0], "score": 0.98, "text": "3Department of Applied Mathematics, National Sun Yat-sen University, Kaohsiung 80424, Taiwan "}, {"category_id": 15, "poly": [91.0, 185.0, 1080.0, 185.0, 1080.0, 219.0, 91.0, 219.0], "score": 0.99, "text": "4Department of Computer Science and Engineering, National Sun Yat-sen University, Kaohsiung 80424, Taiwan"}, {"category_id": 15, "poly": [89.0, 239.0, 777.0, 239.0, 777.0, 270.0, 89.0, 270.0], "score": 1.0, "text": "Received 18 May 2013; Revised 26 August 2013; Accepted 29 August 2013"}, {"category_id": 15, "poly": [89.0, 287.0, 445.0, 290.0, 445.0, 324.0, 88.0, 322.0], "score": 0.98, "text": "Academic Editor: Rodrigo Lopez Pouso"}, {"category_id": 15, "poly": [89.0, 373.0, 876.0, 373.0, 876.0, 404.0, 89.0, 404.0], "score": 0.99, "text": "distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [91.0, 434.0, 280.0, 434.0, 280.0, 463.0, 91.0, 463.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [116.0, 490.0, 1513.0, 490.0, 1513.0, 524.0, 116.0, 524.0], "score": 0.98, "text": "1. M. R. Barone and D. A. Caulk, \u201cSpecial boundary integral equations for approximate solution ofLaplace's equation in two-dimensional regions with circular"}, {"category_id": 15, "poly": [148.0, 551.0, 332.0, 551.0, 332.0, 577.0, 148.0, 577.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [113.0, 577.0, 1520.0, 577.0, 1520.0, 612.0, 113.0, 612.0], "score": 0.97, "text": " 2. M. R. Barone and D. A. Caulk, \u201cSpecial boundary integral equations for approximate soution ofpotential problems in three-dimensional regions with slender"}, {"category_id": 15, "poly": [148.0, 607.0, 1513.0, 607.0, 1513.0, 641.0, 148.0, 641.0], "score": 0.98, "text": "cavities ofcircular cross-section,\" IMA Journal of Applied Mathematics, vol. 35, no. 3, pp. 311-325, 1985. View at Publisher \u00b7 View at Google Scholar "}, {"category_id": 15, "poly": [150.0, 638.0, 332.0, 638.0, 332.0, 665.0, 150.0, 665.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [111.0, 660.0, 1542.0, 663.0, 1542.0, 697.0, 111.0, 694.0], "score": 0.97, "text": " 3. D. A. Caulk, \u201cAnalysis of steady heat conduction in regions with circular holes by a special boundary-integral method,\u201d IMA Journal of Applied Mathematics,"}, {"category_id": 15, "poly": [148.0, 694.0, 620.0, 694.0, 620.0, 726.0, 148.0, 726.0], "score": 0.97, "text": "vol. 30, pp. 231-246, 1983. View at Go0gle Scholar"}, {"category_id": 15, "poly": [111.0, 719.0, 1560.0, 724.0, 1559.0, 758.0, 111.0, 753.0], "score": 0.98, "text": "4. M. D. Bird and C. R. Steele, \u201cA solution procedure for Laplace's equation on mutiply connected circular domains,\u201d Journal of Applied Mechanics, vol. 59, pp."}, {"category_id": 15, "poly": [145.0, 750.0, 524.0, 750.0, 524.0, 782.0, 145.0, 782.0], "score": 0.99, "text": "398-3404, 1992. View at Go0gle Scholar"}, {"category_id": 15, "poly": [113.0, 780.0, 1537.0, 780.0, 1537.0, 811.0, 113.0, 811.0], "score": 0.99, "text": "5. Z. C. Li, Combined Methods for Elliptic Equations with Singularities, Interfaces and Infinities, Kluwer Academic Publishers, Boston, Mass, USA, 1998."}, {"category_id": 15, "poly": [138.0, 833.0, 1459.0, 836.0, 1459.0, 870.0, 138.0, 867.0], "score": 0.98, "text": "Z.-C. Li, T.-T. Lu, H-Y. Hu, and A. H-D. Cheng, Trefftz and Collocation Methods, WIT Press, Boston, Mass, USA, 2008. View at MathSciNet"}, {"category_id": 15, "poly": [118.0, 843.0, 150.0, 843.0, 150.0, 863.0, 118.0, 863.0], "score": 1.0, "text": "6."}, {"category_id": 15, "poly": [111.0, 862.0, 1525.0, 865.0, 1525.0, 899.0, 111.0, 897.0], "score": 0.96, "text": "7. W. T. Ang and I. Kang, \u201cA complex variable boundary element method for eliptic partial differential equations in a multiple-connected region,\" International"}, {"category_id": 15, "poly": [145.0, 897.0, 1382.0, 897.0, 1382.0, 928.0, 145.0, 928.0], "score": 0.99, "text": "Journal of Computer Mathematics, vol. 75, no. 4, pp. 515-525, 2000. View at Publisher \u00b7 View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [108.0, 921.0, 1491.0, 923.0, 1491.0, 958.0, 108.0, 955.0], "score": 0.98, "text": "8. J. T. Chen, S. R. Kuo, and J. H. Lin, \u201cAnalytical study and numerical experiments for degenerate scale problems in the boundary element method for two-"}, {"category_id": 15, "poly": [145.0, 955.0, 1488.0, 955.0, 1488.0, 987.0, 145.0, 987.0], "score": 0.98, "text": "dimensional elasticity,\" International Journal for Numerical Methods in Engineering, vol. 54, no. 12, pp. 1669-1681, 2002. View at Go0gle Scholar"}, {"category_id": 15, "poly": [111.0, 979.0, 1557.0, 982.0, 1557.0, 1016.0, 111.0, 1014.0], "score": 0.98, "text": " 9. J. T. Chen, C. F. Lee, J. L. Chen, and J. H. Lin,\u201cAn alternative method for degenerate scale problem in boundary element methods for two-dimensional Laplace"}, {"category_id": 15, "poly": [145.0, 1011.0, 1156.0, 1011.0, 1156.0, 1045.0, 145.0, 1045.0], "score": 0.98, "text": "equation,\" Engineering Analysis with Boundary Elements, vol. 26, pp. 559-569, 2002. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 1040.0, 1540.0, 1040.0, 1540.0, 1074.0, 103.0, 1074.0], "score": 0.98, "text": "10. J-T. Chen and W.-C. Shen, Degenerate scale for multiply connected Laplace problems,\u201d\" Mechanics Research Communications, vol. 34, no. 1, pp. 69-77,"}, {"category_id": 15, "poly": [143.0, 1065.0, 795.0, 1067.0, 794.0, 1101.0, 143.0, 1099.0], "score": 0.96, "text": " 2007. View at Publisher : View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1094.0, 1520.0, 1096.0, 1520.0, 1131.0, 101.0, 1128.0], "score": 0.97, "text": "11. J.-T. Chen and W.-C. Shen, *Null-field approach for Laplace problems with circular boundaries using degenerate kermels,\" Numerical Methods for Partial"}, {"category_id": 15, "poly": [145.0, 1123.0, 1245.0, 1126.0, 1245.0, 1160.0, 145.0, 1157.0], "score": 0.97, "text": "Differential Equations, vol. 25, no. 1, pp. 63-86, 2009. View at Publisher \u00b7 View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [98.0, 1150.0, 1560.0, 1152.0, 1559.0, 1194.0, 98.0, 1191.0], "score": 0.85, "text": "12. J. T. Chen, H C. Shh, Y. T. L, and J W.Lee, Bpolar coordat, ge mthd and thmthd offdamtal sotios forGrens fctions ofLae"}, {"category_id": 15, "poly": [101.0, 1240.0, 1560.0, 1243.0, 1559.0, 1277.0, 101.0, 1274.0], "score": 0.98, "text": "13. J. T. Chen, C. S. Wu, and K. H. Chen,\u201cA study of fee terms for plate problems in the dual boundary integral equations,\u201d Engineering Analysis with Boundary"}, {"category_id": 15, "poly": [145.0, 1272.0, 718.0, 1272.0, 718.0, 1306.0, 145.0, 1306.0], "score": 0.97, "text": "Elements, vol. 29, pp. 435-446, 2005. View at Go0gle Scholar"}, {"category_id": 15, "poly": [103.0, 1301.0, 1476.0, 1301.0, 1476.0, 1335.0, 103.0, 1335.0], "score": 0.97, "text": "14. S. R. Kuo, J. T. Chen, and S. K. Kao, \u03bcLinkage between the unit logarithmic capacity in the theory of complex variables and the degenerate scale in the"}, {"category_id": 15, "poly": [148.0, 1330.0, 1038.0, 1330.0, 1038.0, 1364.0, 148.0, 1364.0], "score": 0.97, "text": "BEM/BIEMs,\u201d\" Applied Mathematics Letters, vol. 29, pp. 929-938, 2013. View at Go0gle Scholar"}, {"category_id": 15, "poly": [98.0, 1352.0, 1535.0, 1355.0, 1535.0, 1396.0, 98.0, 1394.0], "score": 0.87, "text": "15. M-G. Le, Z-C. L, H-T. Hang, and J. Y. Chang \u201cConservative schemes and degenerate scale problens in the nullfeld methd for Dirichet probems of"}, {"category_id": 15, "poly": [148.0, 1386.0, 1560.0, 1386.0, 1560.0, 1420.0, 148.0, 1420.0], "score": 0.98, "text": "Laplace's equation in circular domains with circular holes,\u201d Engineering Analysis with Boundary Elements, vol 37, no. 1, pp. 95-106, 2013. View at Publisher"}, {"category_id": 15, "poly": [153.0, 1418.0, 576.0, 1418.0, 576.0, 1450.0, 153.0, 1450.0], "score": 0.98, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1445.0, 1545.0, 1445.0, 1545.0, 1479.0, 103.0, 1479.0], "score": 0.97, "text": "16. M-G. Lee, Z.-C. Li, L. P. Zhang, H-T. Huang, and J. Y. Chiang, \u201cAlgorithm singularity of the nul-field method for Dirichlet problems ofLaplace's equation in"}, {"category_id": 15, "poly": [145.0, 1472.0, 972.0, 1474.0, 972.0, 1508.0, 145.0, 1506.0], "score": 0.97, "text": "annular and circular domains,\u2019 submitted to. Engineering Analysis with Boundary Elements."}, {"category_id": 15, "poly": [103.0, 1503.0, 1540.0, 1503.0, 1540.0, 1537.0, 103.0, 1537.0], "score": 0.97, "text": "17. Z.-C. Li, H-T. Huang, C.-P. Liaw, and M.-G. Lee, \u201cThe null-field method of Dirichlet problems of Laplace's equation on circular domains with circular holes,\""}, {"category_id": 15, "poly": [145.0, 1530.0, 1491.0, 1533.0, 1491.0, 1567.0, 145.0, 1564.0], "score": 0.97, "text": "Engineering Analysis with Boundary Elements, vol. 36, no. 3, pp. 477-491, 2012. View at Publisher View at Go0gle Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1562.0, 1451.0, 1562.0, 1451.0, 1596.0, 103.0, 1596.0], "score": 0.97, "text": "18. V. D. Kupradze and M A. Aleksidze, The method of functional equations for the approximate soution of certain boundary-value problems,\" USSR"}, {"category_id": 15, "poly": [103.0, 1620.0, 1540.0, 1620.0, 1540.0, 1654.0, 103.0, 1654.0], "score": 0.98, "text": "19. G. Fairweather and A. Karageorghis, \u201cThe method of fundamental solutions for ellptic boundary value problems,\u201d Advances in Computational Mathematics,"}, {"category_id": 15, "poly": [98.0, 1671.0, 1520.0, 1674.0, 1520.0, 1715.0, 98.0, 1713.0], "score": 0.93, "text": "20. C. S. Chen, Y. C. Hon, and R A.Schaback, Scientific computing with radial basis functions [Ph.D. thesis], Department of Mathematis, Universityof"}, {"category_id": 15, "poly": [145.0, 1708.0, 615.0, 1708.0, 615.0, 1740.0, 145.0, 1740.0], "score": 0.98, "text": "Southern Mississippi Hattiesburg, Miss, USA, 2005."}, {"category_id": 15, "poly": [101.0, 1730.0, 1552.0, 1735.0, 1552.0, 1774.0, 101.0, 1769.0], "score": 0.95, "text": "21. Z-C. Li H-T. Huang, M-G. Lee, and J. Y. Chiang, \u201cError analysis ofthe method of fundamental soutions for linear elastostatics,\" Journal of Computational"}, {"category_id": 15, "poly": [106.0, 1796.0, 153.0, 1796.0, 153.0, 1822.0, 106.0, 1822.0], "score": 1.0, "text": "22."}, {"category_id": 15, "poly": [138.0, 1791.0, 1464.0, 1793.0, 1464.0, 1827.0, 138.0, 1825.0], "score": 0.98, "text": "Z.-C. Li, J. Huang, and H.-T. Huang, \u201cStability analysis of method of fundamental solutions for mixed boundary value problems of Laplace's equation,\""}, {"category_id": 15, "poly": [148.0, 1825.0, 1154.0, 1825.0, 1154.0, 1857.0, 148.0, 1857.0], "score": 0.97, "text": "Computing, vol. 88, no. 1-2, pp. 1-29, 2010. View at Publisher View at Go0gle Scholar View at MathSciNet"}, {"category_id": 15, "poly": [96.0, 1847.0, 1518.0, 1849.0, 1518.0, 1891.0, 96.0, 1888.0], "score": 0.87, "text": "23. T.Wridt, Reviewofthe mulfe methd with discrete souce,Joural of Quatitative Spectroscopy and Raditive Transfer, vol 106, p 534545,"}, {"category_id": 15, "poly": [143.0, 1878.0, 423.0, 1881.0, 423.0, 1915.0, 143.0, 1913.0], "score": 0.99, "text": " 2007. View at Google Scholar"}, {"category_id": 15, "poly": [101.0, 1908.0, 1545.0, 1913.0, 1545.0, 1947.0, 101.0, 1942.0], "score": 0.97, "text": " 24. A. Doicu and T. Wried, \u201cCalculation ofthe T matrix in the null-field method with discret sources,\u201d\" The Journal of the Optical Society of America, vol. 16, pp."}, {"category_id": 15, "poly": [145.0, 1934.0, 536.0, 1940.0, 536.0, 1974.0, 145.0, 1969.0], "score": 0.99, "text": "2539-2544, 1999. View at Google Scholar"}, {"category_id": 15, "poly": [101.0, 1964.0, 1540.0, 1966.0, 1540.0, 2000.0, 101.0, 1998.0], "score": 0.98, "text": " 25. J. Hellmers, V. Schmidt, and T. Wriedt, \u201cImproving the numerical instabilty of T-matrix light scattering calculations for extreme articles shapes using the nulfeld"}, {"category_id": 15, "poly": [143.0, 1991.0, 1513.0, 1993.0, 1513.0, 2034.0, 143.0, 2032.0], "score": 0.9, "text": "method with discrete sources, Journal of Quantitative Spectroscopy and Radiative Transfer, vol. 112, pp. 1679-1686, 2011. VwatGoogle Scholr"}, {"category_id": 15, "poly": [98.0, 2020.0, 1555.0, 2022.0, 1555.0, 2064.0, 98.0, 2061.0], "score": 0.85, "text": "26. D. Palaniapan, \u201cEctrostatics ofto intersectin conucting cynders,\u201d Mathematical and Comuter Mdelling, vol 36, no. 7-8, pp. 8230, 2002.Vw"}, {"category_id": 15, "poly": [148.0, 2054.0, 681.0, 2054.0, 681.0, 2088.0, 148.0, 2088.0], "score": 0.98, "text": "at Publisher View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [106.0, 2086.0, 153.0, 2086.0, 153.0, 2112.0, 106.0, 2112.0], "score": 1.0, "text": "27."}, {"category_id": 15, "poly": [140.0, 2081.0, 1562.0, 2083.0, 1562.0, 2117.0, 140.0, 2115.0], "score": 0.98, "text": "M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions with Formulas, Graphs and Mathematical Tables, Dover Publications, New York,"}, {"category_id": 15, "poly": [148.0, 2115.0, 303.0, 2115.0, 303.0, 2142.0, 148.0, 2142.0], "score": 1.0, "text": "NY, USA, 1964."}, {"category_id": 15, "poly": [101.0, 2139.0, 1555.0, 2142.0, 1555.0, 2176.0, 101.0, 2173.0], "score": 0.99, "text": "28. K. E. Atkinson, A Survey of Numerical Methods for the Solutions of Fredholm Integral Equations of the Second Kind, Cambridge University Press, 1997."}, {"category_id": 15, "poly": [106.0, 2173.0, 153.0, 2173.0, 153.0, 2200.0, 106.0, 2200.0], "score": 1.0, "text": "29."}, {"category_id": 15, "poly": [148.0, 2200.0, 258.0, 2200.0, 258.0, 2234.0, 148.0, 2234.0], "score": 1.0, "text": "MathSciNet"}, {"category_id": 15, "poly": [101.0, 2227.0, 1299.0, 2229.0, 1299.0, 2263.0, 101.0, 2261.0], "score": 0.98, "text": " 30. C. B. Liem, T. Li, and T. M. Shih, The Splitting Extrapolation Method, World Scientific, Singapore, 1995. View at MathSciNet"}, {"category_id": 15, "poly": [89.0, 339.0, 180.0, 339.0, 180.0, 373.0, 89.0, 373.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 339.0, 1528.0, 339.0, 1528.0, 373.0, 205.0, 373.0], "score": 0.97, "text": "2013 Hung- Tsai Huang et al. This is an open access article distributed under the Creative Commons Atribution License, which permits umrestricted use,"}, {"category_id": 15, "poly": [148.0, 1187.0, 1424.0, 1187.0, 1424.0, 1221.0, 148.0, 1221.0], "score": 0.98, "text": "problems containing circular boundaries,\u201d\" Engineering Analysis with Boundary Elements, vol. 35, no. 2, pp. 236-243, 2011. View at Publisher"}, {"category_id": 15, "poly": [1440.0, 1187.0, 1515.0, 1187.0, 1515.0, 1221.0, 1440.0, 1221.0], "score": 0.97, "text": "View at"}, {"category_id": 15, "poly": [148.0, 809.0, 304.0, 809.0, 304.0, 841.0, 148.0, 841.0], "score": 1.0, "text": "View at Publisher"}, {"category_id": 15, "poly": [148.0, 1589.0, 1124.0, 1589.0, 1124.0, 1623.0, 148.0, 1623.0], "score": 0.97, "text": "Computational Mathematics and Mathematical Physics, vol. 4, pp. 82-126, 1964. View at Google Scholar"}, {"category_id": 15, "poly": [1140.0, 1589.0, 1323.0, 1589.0, 1323.0, 1623.0, 1140.0, 1623.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 519.0, 1276.0, 519.0, 1276.0, 553.0, 145.0, 553.0], "score": 0.98, "text": "holes,\" The Quarterly Journal of Mechanics and Applied Mathematics, vol. 34, no. 3, pp. 265-286, 1981. View at Publisher"}, {"category_id": 15, "poly": [1291.0, 519.0, 1515.0, 519.0, 1515.0, 553.0, 1291.0, 553.0], "score": 0.94, "text": "View at Google Scholar -"}, {"category_id": 15, "poly": [148.0, 1766.0, 1052.0, 1766.0, 1052.0, 1798.0, 148.0, 1798.0], "score": 0.98, "text": "and Applied Mathematics, vol. 251, pp. 133-153, 2013. View at Publisher View at Go0gle Scholar"}, {"category_id": 15, "poly": [1067.0, 1766.0, 1255.0, 1766.0, 1255.0, 1798.0, 1067.0, 1798.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [135.0, 2166.0, 1191.0, 2168.0, 1191.0, 2210.0, 135.0, 2207.0], "score": 0.96, "text": "G. C. Hsiao and W. L. Wendand, Boundary Integral Equations, Springer, Berln, Germany, 2008. View at Publisher"}, {"category_id": 15, "poly": [1207.0, 2166.0, 1510.0, 2168.0, 1510.0, 2210.0, 1207.0, 2207.0], "score": 0.99, "text": "Vew at Google Scholar View at"}, {"category_id": 15, "poly": [148.0, 1213.0, 287.0, 1213.0, 287.0, 1245.0, 148.0, 1245.0], "score": 0.99, "text": "Google Scholar"}, {"category_id": 15, "poly": [302.0, 1213.0, 490.0, 1213.0, 490.0, 1245.0, 302.0, 1245.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [320.0, 809.0, 533.0, 809.0, 533.0, 841.0, 320.0, 841.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [549.0, 809.0, 733.0, 809.0, 733.0, 841.0, 549.0, 841.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [848.0, 1649.0, 1036.0, 1649.0, 1036.0, 1684.0, 848.0, 1684.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1649.0, 604.0, 1649.0, 604.0, 1684.0, 148.0, 1684.0], "score": 0.97, "text": "vol. 9, no. 1-2, pp. 69-95, 1998. View at Publisher"}, {"category_id": 15, "poly": [620.0, 1649.0, 833.0, 1649.0, 833.0, 1684.0, 620.0, 1684.0], "score": 0.97, "text": "View at Google Scholar"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [105.59308624267578, 75.29589080810547, 1552.5455322265625, 75.29589080810547, 1552.5455322265625, 368.9474182128906, 105.59308624267578, 368.9474182128906], "score": 0.9942938089370728}, {"category_id": 13, "poly": [231, 173, 245, 173, 245, 188, 231, 188], "score": 0.28, "latex": "\\cdot"}, {"category_id": 15, "poly": [96.0, 73.0, 1523.0, 76.0, 1523.0, 117.0, 96.0, 114.0], "score": 0.96, "text": " 31. H-O. Kreiss and J. Oliger, \u201cStability ofthe Fourier method,\" SIAM Journal on Numerical Analysis, vol 16, no. 3, pp. 421-433, 1979. View at Publisher "}, {"category_id": 15, "poly": [145.0, 110.0, 563.0, 110.0, 563.0, 141.0, 145.0, 141.0], "score": 0.98, "text": "View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 139.0, 148.0, 139.0, 148.0, 166.0, 103.0, 166.0], "score": 1.0, "text": "32."}, {"category_id": 15, "poly": [140.0, 134.0, 1560.0, 136.0, 1559.0, 171.0, 140.0, 168.0], "score": 0.98, "text": " J. E. Pasciak, \u201cSpectral and pseudospectral methods for advection equations,\u201d\" Mathematics of Computation, vol. 35, no. 152, pp. 1081-1092, 1980. View at"}, {"category_id": 15, "poly": [98.0, 192.0, 1547.0, 195.0, 1547.0, 229.0, 98.0, 227.0], "score": 0.98, "text": " 33. C. Canuto and A. Quarteroni, \u201cApproximation results for orthogonal polynomials in Sobolev spaces,\" Mathematics of Computation, vol. 38, no. 157, pp. 67-"}, {"category_id": 15, "poly": [140.0, 222.0, 829.0, 224.0, 829.0, 258.0, 140.0, 256.0], "score": 0.98, "text": " 86, 1982. View at Publisher View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 253.0, 1515.0, 253.0, 1515.0, 288.0, 101.0, 288.0], "score": 0.98, "text": " 34. C. Canuto, M. Y. Hussaini, A. Quarteroni and T. A. Zang, Spectral Methods, Fundamentals in Single Domains, Springer, New York, NY, USA, 2006."}, {"category_id": 15, "poly": [148.0, 285.0, 337.0, 285.0, 337.0, 314.0, 148.0, 314.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 314.0, 148.0, 314.0, 148.0, 341.0, 103.0, 341.0], "score": 1.0, "text": "35."}, {"category_id": 15, "poly": [138.0, 307.0, 1523.0, 309.0, 1523.0, 351.0, 138.0, 348.0], "score": 0.96, "text": "Z-C. Li, H-T. Huang, Y. Wei, and A. H-D. Cheng, Effective Condition Number for Numerical Partial Differential Equations, Science Press, Bejing."}, {"category_id": 15, "poly": [148.0, 344.0, 263.0, 344.0, 263.0, 370.0, 148.0, 370.0], "score": 0.99, "text": "China, 2013."}, {"category_id": 15, "poly": [145.0, 168.0, 230.0, 168.0, 230.0, 200.0, 145.0, 200.0], "score": 0.99, "text": "Publisher"}, {"category_id": 15, "poly": [246.0, 168.0, 662.0, 168.0, 662.0, 200.0, 246.0, 200.0], "score": 0.96, "text": "View at Google Scholar : View at MathSciNet"}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.20602416992188, 74.71974182128906, 199.11016845703125, 74.71974182128906, 199.11016845703125, 186.71868896484375, 87.20602416992188, 186.71868896484375], "score": 0.999997615814209}, {"category_id": 1, "poly": [88.9511489868164, 2102.3251953125, 239.1959686279297, 2102.3251953125, 239.1959686279297, 2129.5693359375, 88.9511489868164, 2129.5693359375], "score": 0.9999799728393555}, {"category_id": 1, "poly": [116.55731964111328, 1038.072509765625, 404.0063781738281, 1038.072509765625, 404.0063781738281, 1999.6717529296875, 116.55731964111328, 1999.6717529296875], "score": 0.9999767541885376}, {"category_id": 1, "poly": [118.98762512207031, 409.9966735839844, 241.70457458496094, 409.9966735839844, 241.70457458496094, 497.07415771484375, 118.98762512207031, 497.07415771484375], "score": 0.999961256980896}, {"category_id": 1, "poly": [530.2610473632812, 991.6522827148438, 656.4911499023438, 991.6522827148438, 656.4911499023438, 1020.6025390625, 530.2610473632812, 1020.6025390625], "score": 0.9999524354934692}, {"category_id": 1, "poly": [85.32998657226562, 2012.22607421875, 629.1658325195312, 2012.22607421875, 629.1658325195312, 2086.741943359375, 85.32998657226562, 2086.741943359375], "score": 0.9961878657341003}, {"category_id": 3, "poly": [88.28943634033203, 515.3642578125, 1571.0567626953125, 515.3642578125, 1571.0567626953125, 770.622314453125, 88.28943634033203, 770.622314453125], "score": 0.9950484037399292}, {"category_id": 1, "poly": [89.6951675415039, 355.63616943359375, 375.6934814453125, 355.63616943359375, 375.6934814453125, 385.2062072753906, 89.6951675415039, 385.2062072753906], "score": 0.968115508556366}, {"category_id": 4, "poly": [89.67754364013672, 769.5524291992188, 604.6519165039062, 769.5524291992188, 604.6519165039062, 797.0578002929688, 89.67754364013672, 797.0578002929688], "score": 0.9242470264434814}, {"category_id": 1, "poly": [88.6801986694336, 2160.639892578125, 1512.985595703125, 2160.639892578125, 1512.985595703125, 2237.59375, 88.6801986694336, 2237.59375], "score": 0.7926853895187378}, {"category_id": 2, "poly": [88.54387664794922, 2160.384521484375, 1513.3607177734375, 2160.384521484375, 1513.3607177734375, 2237.283935546875, 88.54387664794922, 2237.283935546875], "score": 0.31747689843177795}, {"category_id": 2, "poly": [89.85008239746094, 355.71478271484375, 374.5365295410156, 355.71478271484375, 374.5365295410156, 385.2820129394531, 89.85008239746094, 385.2820129394531], "score": 0.2773781418800354}, {"category_id": 15, "poly": [349.0, 319.0, 376.0, 319.0, 376.0, 339.0, 349.0, 339.0], "score": 0.99, "text": "Go"}, {"category_id": 15, "poly": [143.0, 412.0, 207.0, 412.0, 207.0, 439.0, 143.0, 439.0], "score": 1.0, "text": "Home"}, {"category_id": 15, "poly": [140.0, 436.0, 229.0, 436.0, 229.0, 470.0, 140.0, 470.0], "score": 0.88, "text": " Journals"}, {"category_id": 15, "poly": [138.0, 465.0, 239.0, 465.0, 239.0, 499.0, 138.0, 499.0], "score": 1.0, "text": "About Us"}, {"category_id": 15, "poly": [529.0, 994.0, 654.0, 994.0, 654.0, 1021.0, 529.0, 1021.0], "score": 1.0, "text": "Journal Menu"}, {"category_id": 15, "poly": [140.0, 1045.0, 320.0, 1045.0, 320.0, 1072.0, 140.0, 1072.0], "score": 0.96, "text": " About this Journal \u00b7"}, {"category_id": 15, "poly": [138.0, 1069.0, 382.0, 1075.0, 381.0, 1109.0, 137.0, 1103.0], "score": 0.98, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [143.0, 1106.0, 310.0, 1106.0, 310.0, 1133.0, 143.0, 1133.0], "score": 0.99, "text": "Advance Access \u00b7"}, {"category_id": 15, "poly": [139.0, 1125.0, 308.0, 1131.0, 307.0, 1165.0, 137.0, 1159.0], "score": 0.98, "text": "Aims and Scope \u00b7"}, {"category_id": 15, "poly": [143.0, 1162.0, 285.0, 1162.0, 285.0, 1189.0, 143.0, 1189.0], "score": 0.99, "text": "Annual Issues \u00b7"}, {"category_id": 15, "poly": [119.0, 1175.0, 132.0, 1166.0, 140.0, 1178.0, 127.0, 1186.0], "score": 0.52, "text": "\u00b7"}, {"category_id": 15, "poly": [140.0, 1186.0, 399.0, 1189.0, 398.0, 1223.0, 140.0, 1221.0], "score": 0.95, "text": "Article Processing Charges :"}, {"category_id": 15, "poly": [145.0, 1221.0, 298.0, 1221.0, 298.0, 1247.0, 145.0, 1247.0], "score": 0.99, "text": "Articles in Press"}, {"category_id": 15, "poly": [141.0, 1240.0, 313.0, 1245.0, 312.0, 1280.0, 140.0, 1274.0], "score": 0.99, "text": "Author Guidelines"}, {"category_id": 15, "poly": [140.0, 1274.0, 379.0, 1274.0, 379.0, 1308.0, 140.0, 1308.0], "score": 0.98, "text": "Bibliographic Information "}, {"category_id": 15, "poly": [140.0, 1304.0, 369.0, 1304.0, 369.0, 1338.0, 140.0, 1338.0], "score": 0.97, "text": "Citations to this Jounal ."}, {"category_id": 15, "poly": [141.0, 1330.0, 340.0, 1333.0, 339.0, 1367.0, 140.0, 1364.0], "score": 0.95, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [143.0, 1364.0, 298.0, 1364.0, 298.0, 1391.0, 143.0, 1391.0], "score": 0.96, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [138.0, 1389.0, 330.0, 1391.0, 329.0, 1426.0, 138.0, 1423.0], "score": 0.96, "text": " Editorial Workflow \u00b7"}, {"category_id": 15, "poly": [138.0, 1415.0, 323.0, 1421.0, 322.0, 1455.0, 137.0, 1449.0], "score": 0.95, "text": "Free eTOC Alerts \u00b7"}, {"category_id": 15, "poly": [143.0, 1452.0, 312.0, 1452.0, 312.0, 1479.0, 143.0, 1479.0], "score": 0.99, "text": "Publication Ethics"}, {"category_id": 15, "poly": [140.0, 1479.0, 408.0, 1479.0, 408.0, 1511.0, 140.0, 1511.0], "score": 0.99, "text": "Reviewers Acknowledgment "}, {"category_id": 15, "poly": [138.0, 1503.0, 345.0, 1508.0, 344.0, 1543.0, 137.0, 1537.0], "score": 0.98, "text": "Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1532.0, 376.0, 1535.0, 376.0, 1569.0, 138.0, 1567.0], "score": 0.99, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [138.0, 1559.0, 313.0, 1565.0, 312.0, 1599.0, 137.0, 1593.0], "score": 0.99, "text": "Table ofContents"}, {"category_id": 15, "poly": [138.0, 1618.0, 342.0, 1618.0, 342.0, 1649.0, 138.0, 1649.0], "score": 0.96, "text": " Open Special Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1645.0, 374.0, 1645.0, 374.0, 1676.0, 140.0, 1676.0], "score": 0.96, "text": " Published Special Issues :"}, {"category_id": 15, "poly": [140.0, 1676.0, 367.0, 1676.0, 367.0, 1708.0, 140.0, 1708.0], "score": 0.98, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [139.0, 1722.0, 234.0, 1728.0, 232.0, 1762.0, 137.0, 1756.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1759.0, 283.0, 1759.0, 283.0, 1786.0, 143.0, 1786.0], "score": 0.98, "text": "Full- Text PDF"}, {"category_id": 15, "poly": [143.0, 1788.0, 298.0, 1788.0, 298.0, 1815.0, 143.0, 1815.0], "score": 0.98, "text": "Full- Text HTML"}, {"category_id": 15, "poly": [143.0, 1818.0, 293.0, 1818.0, 293.0, 1844.0, 143.0, 1844.0], "score": 0.97, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1847.0, 288.0, 1847.0, 288.0, 1874.0, 143.0, 1874.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [145.0, 1876.0, 320.0, 1876.0, 320.0, 1903.0, 145.0, 1903.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [138.0, 1898.0, 357.0, 1903.0, 356.0, 1937.0, 137.0, 1932.0], "score": 0.97, "text": "Citations to this Article"}, {"category_id": 15, "poly": [140.0, 1932.0, 362.0, 1932.0, 362.0, 1964.0, 140.0, 1964.0], "score": 0.97, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [140.0, 1961.0, 362.0, 1961.0, 362.0, 1993.0, 140.0, 1993.0], "score": 0.99, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [86.0, 2010.0, 438.0, 2010.0, 438.0, 2042.0, 86.0, 2042.0], "score": 0.99, "text": "Abstract and Applied Analysis"}, {"category_id": 15, "poly": [86.0, 2030.0, 627.0, 2032.0, 627.0, 2066.0, 86.0, 2064.0], "score": 0.98, "text": "Volume 2013 (2013), Article ID 259470, 7 pages"}, {"category_id": 15, "poly": [81.0, 2056.0, 526.0, 2054.0, 526.0, 2088.0, 81.0, 2091.0], "score": 0.96, "text": "http: //dx.doi. org/10.1155/2013/259470"}, {"category_id": 15, "poly": [89.0, 2103.0, 241.0, 2103.0, 241.0, 2129.0, 89.0, 2129.0], "score": 1.0, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [88.79041290283203, 223.1548614501953, 596.5608520507812, 223.1548614501953, 596.5608520507812, 253.82266235351562, 88.79041290283203, 253.82266235351562], "score": 0.9999997019767761}, {"category_id": 1, "poly": [91.42396545410156, 476.6983947753906, 760.12841796875, 476.6983947753906, 760.12841796875, 507.5973815917969, 91.42396545410156, 507.5973815917969], "score": 0.9999997019767761}, {"category_id": 1, "poly": [90.55570220947266, 277.474609375, 378.6082458496094, 277.474609375, 378.6082458496094, 307.3374938964844, 90.55570220947266, 307.3374938964844], "score": 0.9999987483024597}, {"category_id": 1, "poly": [89.56867218017578, 327.1041259765625, 1510.0347900390625, 327.1041259765625, 1510.0347900390625, 389.6576232910156, 89.56867218017578, 389.6576232910156], "score": 0.9999944567680359}, {"category_id": 1, "poly": [119.38919067382812, 526.0288696289062, 1547.9219970703125, 526.0288696289062, 1547.9219970703125, 704.6207275390625, 119.38919067382812, 704.6207275390625], "score": 0.9999933242797852}, {"category_id": 1, "poly": [90.37564849853516, 139.7214813232422, 819.9425048828125, 139.7214813232422, 819.9425048828125, 201.7053985595703, 90.37564849853516, 201.7053985595703], "score": 0.9999151229858398}, {"category_id": 2, "poly": [89.54802703857422, 83.24105834960938, 424.4089050292969, 83.24105834960938, 424.4089050292969, 114.5113525390625, 89.54802703857422, 114.5113525390625], "score": 0.9983628988265991}, {"category_id": 1, "poly": [90.10054779052734, 417.296142578125, 437.4447021484375, 417.296142578125, 437.4447021484375, 447.23638916015625, 90.10054779052734, 447.23638916015625], "score": 0.8091702461242676}, {"category_id": 0, "poly": [89.9825210571289, 417.32232666015625, 437.4376525878906, 417.32232666015625, 437.4376525878906, 447.24578857421875, 89.9825210571289, 447.24578857421875], "score": 0.23477844893932343}, {"category_id": 13, "poly": [181, 332, 204, 332, 204, 355, 181, 355], "score": 0.73, "latex": "\\copyright"}, {"category_id": 13, "poly": [1167, 530, 1275, 530, 1275, 559, 1167, 559], "score": 0.68, "latex": "\\S\\S\\mathfrak{p h i}\\S\\S\\phi"}, {"category_id": 13, "poly": [803, 624, 817, 624, 817, 640, 803, 640], "score": 0.37, "latex": "\\cdot"}, {"category_id": 13, "poly": [824, 566, 838, 566, 838, 582, 824, 582], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [1228, 530, 1274, 530, 1274, 559, 1228, 559], "score": 0.32, "latex": "\\S\\S\\phi"}, {"category_id": 13, "poly": [705, 681, 718, 681, 718, 698, 705, 698], "score": 0.32, "latex": "\\cdot"}, {"category_id": 15, "poly": [89.0, 136.0, 824.0, 141.0, 824.0, 176.0, 88.0, 170.0], "score": 0.99, "text": "Department of Mathematics, Zhejang Normal University, Zhejiang 321004, China"}, {"category_id": 15, "poly": [86.0, 168.0, 740.0, 171.0, 740.0, 212.0, 86.0, 209.0], "score": 0.98, "text": "2Department of Mathematics, Nanjing University, Nanjing 210093, China"}, {"category_id": 15, "poly": [89.0, 227.0, 595.0, 227.0, 595.0, 261.0, 89.0, 261.0], "score": 0.99, "text": "Received 15 January 2013; Accepted 18 February 2013"}, {"category_id": 15, "poly": [89.0, 275.0, 377.0, 280.0, 376.0, 315.0, 88.0, 309.0], "score": 1.0, "text": "Academic Editor: Yisheng Song"}, {"category_id": 15, "poly": [91.0, 358.0, 1018.0, 358.0, 1018.0, 392.0, 91.0, 392.0], "score": 0.98, "text": "unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [89.0, 422.0, 440.0, 422.0, 440.0, 453.0, 89.0, 453.0], "score": 0.99, "text": "Citations to this Article [3 citations]"}, {"category_id": 15, "poly": [89.0, 480.0, 765.0, 480.0, 765.0, 512.0, 89.0, 512.0], "score": 0.98, "text": "The following is the list of published articles that have cited the current article."}, {"category_id": 15, "poly": [140.0, 587.0, 1550.0, 587.0, 1550.0, 621.0, 140.0, 621.0], "score": 0.99, "text": "Yuanheng Wang, and Humin Shi, \u201cA Modified Mixed Ishikawa Iteration for Common Fixed Points of Two Asymptotically Quasi Pseudocontractive Type Non-"}, {"category_id": 15, "poly": [140.0, 646.0, 1525.0, 646.0, 1525.0, 680.0, 140.0, 680.0], "score": 0.98, "text": "Yuanheng Wang, \u201cStrong Convergence Theorems for Common Fixed Points of an Infinite Family of Asymptotically Nonexpansive Mappings,\u201d Abstract and"}, {"category_id": 15, "poly": [89.0, 329.0, 180.0, 329.0, 180.0, 363.0, 89.0, 363.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 329.0, 1500.0, 329.0, 1500.0, 363.0, 205.0, 363.0], "score": 0.99, "text": "2013 Yuanheng Wang and Weifeng Xuan. This is an open access article distributed under the Creative Commons Attribution License, which permits"}, {"category_id": 15, "poly": [118.0, 531.0, 1166.0, 531.0, 1166.0, 565.0, 118.0, 565.0], "score": 0.97, "text": "\u25cf Pham Ky Anh, and Dang Van Hieu, Parallel and sequential hybrid methods for a finite family of asymptotically quasi"}, {"category_id": 15, "poly": [1276.0, 531.0, 1508.0, 531.0, 1508.0, 565.0, 1276.0, 565.0], "score": 0.94, "text": "-nonexpansive mappings,*\""}, {"category_id": 15, "poly": [145.0, 619.0, 802.0, 619.0, 802.0, 653.0, 145.0, 653.0], "score": 0.98, "text": "Self- Mappings,\" Abstract and Applied Analysis, 2014. View at Publisher"}, {"category_id": 15, "poly": [818.0, 619.0, 1036.0, 619.0, 1036.0, 653.0, 818.0, 653.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 560.0, 823.0, 560.0, 823.0, 592.0, 145.0, 592.0], "score": 0.98, "text": "Journal of AppliedMathematics and Computing, 2014.View at Publisher"}, {"category_id": 15, "poly": [839.0, 560.0, 1058.0, 560.0, 1058.0, 592.0, 839.0, 592.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 677.0, 704.0, 672.0, 704.0, 707.0, 145.0, 712.0], "score": 0.97, "text": "Applied Analysis, vol. 2014, pp. 1-6, 2014. View at Publisher"}, {"category_id": 15, "poly": [719.0, 677.0, 935.0, 672.0, 935.0, 707.0, 719.0, 712.0], "score": 1.0, "text": "View at Google Scholar"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.20368957519531, 74.7794189453125, 199.11451721191406, 74.7794189453125, 199.11451721191406, 186.70196533203125, 87.20368957519531, 186.70196533203125], "score": 0.9999977946281433}, {"category_id": 1, "poly": [89.08074951171875, 2102.330810546875, 239.05447387695312, 2102.330810546875, 239.05447387695312, 2129.5869140625, 89.08074951171875, 2129.5869140625], "score": 0.9999843835830688}, {"category_id": 1, "poly": [116.68872833251953, 1038.1700439453125, 403.8194580078125, 1038.1700439453125, 403.8194580078125, 1999.501708984375, 116.68872833251953, 1999.501708984375], "score": 0.9999822378158569}, {"category_id": 1, "poly": [118.99623107910156, 410.0064392089844, 241.72189331054688, 410.0064392089844, 241.72189331054688, 497.093994140625, 118.99623107910156, 497.093994140625], "score": 0.9999616146087646}, {"category_id": 1, "poly": [530.1950073242188, 991.6991577148438, 656.3809204101562, 991.6991577148438, 656.3809204101562, 1020.6365356445312, 530.1950073242188, 1020.6365356445312], "score": 0.9999446272850037}, {"category_id": 3, "poly": [88.30961608886719, 515.392333984375, 1570.88623046875, 515.392333984375, 1570.88623046875, 770.5790405273438, 88.30961608886719, 770.5790405273438], "score": 0.9948575496673584}, {"category_id": 1, "poly": [85.5987319946289, 2012.323974609375, 639.5345458984375, 2012.323974609375, 639.5345458984375, 2086.625244140625, 85.5987319946289, 2086.625244140625], "score": 0.9947013854980469}, {"category_id": 1, "poly": [89.70946502685547, 355.6231384277344, 375.6254577636719, 355.6231384277344, 375.6254577636719, 385.217529296875, 89.70946502685547, 385.217529296875], "score": 0.9742090702056885}, {"category_id": 4, "poly": [89.71548461914062, 769.54638671875, 604.588623046875, 769.54638671875, 604.588623046875, 797.0294189453125, 89.71548461914062, 797.0294189453125], "score": 0.9196386337280273}, {"category_id": 1, "poly": [90.1552963256836, 2160.518310546875, 1460.9501953125, 2160.518310546875, 1460.9501953125, 2236.83056640625, 90.1552963256836, 2236.83056640625], "score": 0.8422626256942749}, {"category_id": 2, "poly": [90.14520263671875, 2160.610107421875, 1461.1287841796875, 2160.610107421875, 1461.1287841796875, 2236.67724609375, 90.14520263671875, 2236.67724609375], "score": 0.29548224806785583}, {"category_id": 2, "poly": [89.84288024902344, 355.70159912109375, 374.4806823730469, 355.70159912109375, 374.4806823730469, 385.29095458984375, 89.84288024902344, 385.29095458984375], "score": 0.269012987613678}, {"category_id": 15, "poly": [349.0, 319.0, 376.0, 319.0, 376.0, 339.0, 349.0, 339.0], "score": 0.99, "text": "Go"}, {"category_id": 15, "poly": [143.0, 412.0, 207.0, 412.0, 207.0, 439.0, 143.0, 439.0], "score": 1.0, "text": "Home"}, {"category_id": 15, "poly": [140.0, 436.0, 229.0, 436.0, 229.0, 470.0, 140.0, 470.0], "score": 0.88, "text": " Journals"}, {"category_id": 15, "poly": [138.0, 465.0, 239.0, 465.0, 239.0, 499.0, 138.0, 499.0], "score": 1.0, "text": "About Us"}, {"category_id": 15, "poly": [529.0, 994.0, 654.0, 994.0, 654.0, 1021.0, 529.0, 1021.0], "score": 1.0, "text": "Journal Menu"}, {"category_id": 15, "poly": [140.0, 1045.0, 320.0, 1045.0, 320.0, 1072.0, 140.0, 1072.0], "score": 0.96, "text": " About this Journal \u00b7"}, {"category_id": 15, "poly": [138.0, 1069.0, 382.0, 1075.0, 381.0, 1109.0, 137.0, 1103.0], "score": 0.99, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [143.0, 1106.0, 310.0, 1106.0, 310.0, 1133.0, 143.0, 1133.0], "score": 0.99, "text": "Advance Access \u00b7"}, {"category_id": 15, "poly": [139.0, 1125.0, 308.0, 1131.0, 307.0, 1165.0, 137.0, 1159.0], "score": 0.98, "text": "Aims and Scope \u00b7"}, {"category_id": 15, "poly": [143.0, 1162.0, 285.0, 1162.0, 285.0, 1189.0, 143.0, 1189.0], "score": 0.99, "text": "Annual Issues \u00b7"}, {"category_id": 15, "poly": [119.0, 1175.0, 132.0, 1166.0, 140.0, 1178.0, 127.0, 1186.0], "score": 0.52, "text": "\u00b7"}, {"category_id": 15, "poly": [140.0, 1186.0, 399.0, 1189.0, 398.0, 1223.0, 140.0, 1221.0], "score": 0.94, "text": "Article Processing Charges :"}, {"category_id": 15, "poly": [145.0, 1221.0, 298.0, 1221.0, 298.0, 1247.0, 145.0, 1247.0], "score": 0.99, "text": "Articles in Press"}, {"category_id": 15, "poly": [138.0, 1240.0, 313.0, 1245.0, 312.0, 1280.0, 137.0, 1274.0], "score": 0.97, "text": "Author Guidelines"}, {"category_id": 15, "poly": [138.0, 1272.0, 379.0, 1274.0, 379.0, 1309.0, 138.0, 1306.0], "score": 0.94, "text": "Bibliographic Information"}, {"category_id": 15, "poly": [140.0, 1304.0, 369.0, 1304.0, 369.0, 1338.0, 140.0, 1338.0], "score": 0.97, "text": "Citations to this Jounal ."}, {"category_id": 15, "poly": [141.0, 1330.0, 340.0, 1333.0, 339.0, 1367.0, 140.0, 1364.0], "score": 0.95, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [143.0, 1364.0, 298.0, 1364.0, 298.0, 1391.0, 143.0, 1391.0], "score": 0.96, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [138.0, 1389.0, 330.0, 1391.0, 329.0, 1426.0, 138.0, 1423.0], "score": 0.96, "text": " Editorial Workflow \u00b7"}, {"category_id": 15, "poly": [138.0, 1415.0, 323.0, 1421.0, 322.0, 1455.0, 137.0, 1449.0], "score": 0.95, "text": "Free eTOC Alerts \u00b7"}, {"category_id": 15, "poly": [143.0, 1452.0, 312.0, 1452.0, 312.0, 1479.0, 143.0, 1479.0], "score": 0.99, "text": "Publication Ethics"}, {"category_id": 15, "poly": [140.0, 1479.0, 408.0, 1479.0, 408.0, 1511.0, 140.0, 1511.0], "score": 1.0, "text": "Reviewers Acknowledgment"}, {"category_id": 15, "poly": [138.0, 1503.0, 345.0, 1508.0, 344.0, 1543.0, 137.0, 1537.0], "score": 0.98, "text": "Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1532.0, 376.0, 1535.0, 376.0, 1569.0, 138.0, 1567.0], "score": 0.99, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [138.0, 1559.0, 313.0, 1565.0, 312.0, 1599.0, 137.0, 1593.0], "score": 0.99, "text": "Table ofContents"}, {"category_id": 15, "poly": [138.0, 1618.0, 342.0, 1618.0, 342.0, 1649.0, 138.0, 1649.0], "score": 0.97, "text": " Open Special Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1645.0, 374.0, 1645.0, 374.0, 1676.0, 140.0, 1676.0], "score": 0.96, "text": " Published Special Issues :"}, {"category_id": 15, "poly": [140.0, 1676.0, 367.0, 1676.0, 367.0, 1708.0, 140.0, 1708.0], "score": 0.97, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [139.0, 1722.0, 234.0, 1728.0, 232.0, 1762.0, 137.0, 1756.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1759.0, 283.0, 1759.0, 283.0, 1786.0, 143.0, 1786.0], "score": 0.98, "text": "Full- Text PDF"}, {"category_id": 15, "poly": [143.0, 1788.0, 300.0, 1788.0, 300.0, 1815.0, 143.0, 1815.0], "score": 0.98, "text": "Full- Text HTML"}, {"category_id": 15, "poly": [143.0, 1818.0, 293.0, 1818.0, 293.0, 1844.0, 143.0, 1844.0], "score": 0.97, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1847.0, 288.0, 1847.0, 288.0, 1874.0, 143.0, 1874.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [145.0, 1876.0, 320.0, 1876.0, 320.0, 1903.0, 145.0, 1903.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [138.0, 1898.0, 357.0, 1903.0, 356.0, 1937.0, 137.0, 1932.0], "score": 0.97, "text": "Citations to this Article"}, {"category_id": 15, "poly": [140.0, 1932.0, 362.0, 1932.0, 362.0, 1964.0, 140.0, 1964.0], "score": 0.97, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [140.0, 1961.0, 362.0, 1961.0, 362.0, 1993.0, 140.0, 1993.0], "score": 0.99, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [86.0, 2010.0, 438.0, 2010.0, 438.0, 2042.0, 86.0, 2042.0], "score": 1.0, "text": "Abstract and Applied Analysis"}, {"category_id": 15, "poly": [89.0, 2032.0, 642.0, 2032.0, 642.0, 2064.0, 89.0, 2064.0], "score": 0.98, "text": "Volume 2013 (2013), Article ID 131836, 10 pages"}, {"category_id": 15, "poly": [81.0, 2056.0, 526.0, 2054.0, 526.0, 2088.0, 81.0, 2091.0], "score": 0.97, "text": "http: //dx.doi.org/10.1155/2013/131836"}, {"category_id": 15, "poly": [89.0, 2103.0, 241.0, 2103.0, 241.0, 2129.0, 89.0, 2129.0], "score": 1.0, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [86.44273376464844, 182.38677978515625, 610.0236206054688, 182.38677978515625, 610.0236206054688, 212.37814331054688, 86.44273376464844, 212.37814331054688], "score": 0.9999982714653015}, {"category_id": 2, "poly": [89.92184448242188, 80.73162078857422, 388.8988037109375, 80.73162078857422, 388.8988037109375, 110.89981842041016, 89.92184448242188, 110.89981842041016], "score": 0.9999930262565613}, {"category_id": 0, "poly": [90.62764739990234, 375.62396240234375, 276.96221923828125, 375.62396240234375, 276.96221923828125, 403.4543151855469, 90.62764739990234, 403.4543151855469], "score": 0.9999922513961792}, {"category_id": 1, "poly": [90.9168930053711, 287.07122802734375, 1485.459716796875, 287.07122802734375, 1485.459716796875, 347.6216735839844, 90.9168930053711, 347.6216735839844], "score": 0.9999916553497314}, {"category_id": 1, "poly": [98.11553955078125, 432.3541564941406, 1570.4930419921875, 432.3541564941406, 1570.4930419921875, 2239.505859375, 98.11553955078125, 2239.505859375], "score": 0.9999890327453613}, {"category_id": 1, "poly": [89.80126953125, 235.73715209960938, 316.9229736328125, 235.73715209960938, 316.9229736328125, 264.6117858886719, 89.80126953125, 264.6117858886719], "score": 0.9999608397483826}, {"category_id": 1, "poly": [89.5570068359375, 131.85556030273438, 1146.3531494140625, 131.85556030273438, 1146.3531494140625, 160.61367797851562, 89.5570068359375, 160.61367797851562], "score": 0.9997129440307617}, {"category_id": 13, "poly": [181, 289, 204, 289, 204, 312, 181, 312], "score": 0.73, "latex": "\\copyright"}, {"category_id": 13, "poly": [231, 471, 245, 471, 245, 487, 231, 487], "score": 0.38, "latex": "\\cdot"}, {"category_id": 13, "poly": [747, 2096, 761, 2096, 761, 2111, 747, 2111], "score": 0.37, "latex": "\\cdot"}, {"category_id": 13, "poly": [409, 588, 422, 588, 422, 604, 409, 604], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [685, 2037, 699, 2037, 699, 2053, 685, 2053], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [1406, 1719, 1419, 1719, 1419, 1734, 1406, 1734], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [456, 2037, 469, 2037, 469, 2053, 456, 2053], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [766, 1139, 779, 1139, 779, 1155, 766, 1155], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [879, 2211, 893, 2211, 893, 2226, 879, 2226], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [638, 587, 652, 587, 652, 603, 638, 603], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [985, 819, 999, 819, 999, 835, 985, 835], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [657, 1602, 671, 1602, 671, 1619, 657, 1619], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [756, 818, 769, 818, 769, 836, 756, 836], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [1123, 1225, 1136, 1225, 1136, 1242, 1123, 1242], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [1108, 2211, 1122, 2211, 1122, 2226, 1108, 2226], "score": 0.27, "latex": "\\cdot"}, {"category_id": 15, "poly": [86.0, 129.0, 1146.0, 132.0, 1146.0, 166.0, 86.0, 163.0], "score": 0.98, "text": "School of Economics & Management, Nanjing University of Information Science & Technology, Nanjing 210044, China"}, {"category_id": 15, "poly": [89.0, 185.0, 610.0, 185.0, 610.0, 217.0, 89.0, 217.0], "score": 0.99, "text": "Received 15 November 2012; Accepted 8 February 2013"}, {"category_id": 15, "poly": [86.0, 234.0, 315.0, 236.0, 315.0, 271.0, 86.0, 268.0], "score": 0.97, "text": " Academic Editor: Qi Luo"}, {"category_id": 15, "poly": [91.0, 317.0, 1018.0, 317.0, 1018.0, 351.0, 91.0, 351.0], "score": 0.98, "text": "unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [91.0, 380.0, 280.0, 380.0, 280.0, 409.0, 91.0, 409.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [116.0, 436.0, 1515.0, 436.0, 1515.0, 468.0, 116.0, 468.0], "score": 0.97, "text": "1. L. O. Chua and L. Yang, \u201cCelular neural networks: theory,\u201d\" IEEE Transactions on Circuits and Systems, vol. 35, no. 10, pp. 1257-1272, 1988. View at"}, {"category_id": 15, "poly": [111.0, 492.0, 1547.0, 495.0, 1547.0, 529.0, 111.0, 526.0], "score": 0.97, "text": " 2. L. O. Chua and L. Yang, \u201cCellular neural networks: applications,\" IEEE Transactions on Circuits and Systems, vol 35, no. 10, pp. 1273-1290, 1988. View"}, {"category_id": 15, "poly": [148.0, 526.0, 684.0, 526.0, 684.0, 558.0, 148.0, 558.0], "score": 0.96, "text": "at Publisher : View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [108.0, 548.0, 1547.0, 551.0, 1547.0, 592.0, 108.0, 590.0], "score": 0.92, "text": "3. J. Cao, Newresultsconceming exponental stabityand periodic solutions of delayed celular neral networks,\u201d Pysics Letters A, vol 307, no. 2-3, pp. 136"}, {"category_id": 15, "poly": [113.0, 612.0, 1505.0, 612.0, 1505.0, 646.0, 113.0, 646.0], "score": 0.97, "text": "4. J. Cao, \u201cOn stability ofcelular neural networks with delay,\" IEEE Transactions on Circuits and Systems I, vol. 40, pp. 157-165, 1993. View at Google"}, {"category_id": 15, "poly": [145.0, 638.0, 219.0, 638.0, 219.0, 672.0, 145.0, 672.0], "score": 1.0, "text": "Scholar"}, {"category_id": 15, "poly": [111.0, 665.0, 1508.0, 668.0, 1508.0, 702.0, 111.0, 699.0], "score": 0.97, "text": " 5. P. P. Civalleri and M. Gili, \u201cA set of stability criteria for delayed celular neural networks, IEEE Transactions on Circuits and Systems. I. Fundamental"}, {"category_id": 15, "poly": [150.0, 699.0, 1291.0, 699.0, 1291.0, 731.0, 150.0, 731.0], "score": 0.98, "text": "Theory and Applications, vol. 48, no. 4, pp. 494 498, 2001. View at Publisher \u00b7 View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [111.0, 724.0, 1560.0, 726.0, 1559.0, 760.0, 111.0, 758.0], "score": 0.97, "text": "6. J. J. Hopfield, *Neurons with graded response have collctive computational properties like those oftwo-state neurons,\u201d Proceedings of the National Academy"}, {"category_id": 15, "poly": [145.0, 758.0, 1058.0, 758.0, 1058.0, 789.0, 145.0, 789.0], "score": 0.97, "text": "of Sciences of the United States of America, vol. 81, pp. 3088-3092, 1984. View at Go0gle Scholar"}, {"category_id": 15, "poly": [111.0, 782.0, 1525.0, 785.0, 1525.0, 819.0, 111.0, 816.0], "score": 0.97, "text": "7. J. Yan and J. Shen, \u201cImpulsive stabilization of functionaldiferential equations by Lyapunov-Razumikhin functions,\" Nonlinear Analysis. Theory, Methods &"}, {"category_id": 15, "poly": [113.0, 843.0, 1471.0, 843.0, 1471.0, 877.0, 113.0, 877.0], "score": 0.96, "text": "8. X. Z. Liu and Q. Wang,\u03bcImpulsive stabilization ofhigh-order Hopfield-type neural networks with time- varying delays,\u201d IEEE Transactions on Neural"}, {"category_id": 15, "poly": [145.0, 872.0, 699.0, 872.0, 699.0, 906.0, 145.0, 906.0], "score": 0.97, "text": "Networks, vol. 19, pp. 71-79, 2008. View at Google Scholar"}, {"category_id": 15, "poly": [106.0, 894.0, 1540.0, 897.0, 1540.0, 938.0, 106.0, 936.0], "score": 0.81, "text": "9.X Z Lu, \u201cStabiltyresultsforulsivediferenial systes wihapplicatios to ppuaton growth md,yamics ad Stbilty ofSystms, vol 9, n. 2,"}, {"category_id": 15, "poly": [138.0, 926.0, 750.0, 923.0, 750.0, 965.0, 138.0, 967.0], "score": 0.95, "text": "pp. 163174, 1994. Vw at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [106.0, 958.0, 1454.0, 958.0, 1454.0, 992.0, 106.0, 992.0], "score": 0.98, "text": "10. S. Arik and V. Tavsanogu, \u201cOn the global asymptotic stabilty ofdelayed celular neural networks,\u201d IEEE Transactions on Circuits and Systems. I."}, {"category_id": 15, "poly": [145.0, 984.0, 1419.0, 987.0, 1419.0, 1021.0, 145.0, 1018.0], "score": 0.98, "text": "Fundamental Theory and Applications, vol. 47, no. 4, pp. 571-574, 2000. View at Publisher \u00b7 View at Go0gle Scholar View at MathSciNet"}, {"category_id": 15, "poly": [98.0, 1009.0, 1532.0, 1011.0, 1532.0, 1053.0, 98.0, 1050.0], "score": 0.89, "text": "11.L. O. Cha and T. Roska, Stabity fa class ofnonreciprocalceluar neual networks, EE Transactions onCircuits and Systems I vol 37, pp. 1520"}, {"category_id": 15, "poly": [148.0, 1045.0, 475.0, 1045.0, 475.0, 1077.0, 148.0, 1077.0], "score": 0.98, "text": "1527, 1990. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 1074.0, 1454.0, 1074.0, 1454.0, 1109.0, 103.0, 1109.0], "score": 0.98, "text": "12. Z. H. Guan and G. Chen, \u201cOn delayed impulsive Hopfield neural networks,\" Neural Network, vol. 12, pp. 273-280, 1999. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 1104.0, 1471.0, 1104.0, 1471.0, 1138.0, 103.0, 1138.0], "score": 0.97, "text": "13. Q. Zhang, X. Wei, and J. Xu, \u201cOn global exponential stability of delayed celular neural networks with time-varying delays,\u201d Applied Mathematics and"}, {"category_id": 15, "poly": [101.0, 1160.0, 1262.0, 1162.0, 1262.0, 1196.0, 101.0, 1194.0], "score": 0.98, "text": " 14. D. D. Bainov and P. S. Simeonov, Systems with Impulse Effect, Elis Horwood, Chichester, UK, 1989. View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1191.0, 1279.0, 1191.0, 1279.0, 1226.0, 103.0, 1226.0], "score": 0.97, "text": "15. 1. M. Stamova, Stability Analysis of Impulsive Functional Differential Equations, Walter de Gruyter, Berin, Germany, 2009."}, {"category_id": 15, "poly": [103.0, 1245.0, 1149.0, 1247.0, 1149.0, 1282.0, 103.0, 1279.0], "score": 0.98, "text": "17. S. Haykin, Neural Networks: A Comprehensive Foundation, Prentice-Hall, Englewood Clifs, NJ, USA, 1998."}, {"category_id": 15, "poly": [98.0, 1272.0, 1515.0, 1274.0, 1515.0, 1316.0, 98.0, 1313.0], "score": 0.89, "text": "18. H. Akca, R Alassar, V. Covachev, Z Covacheva, and E. AlZarani Contuus-tm additive Hpiel-type neral networks with ipulses,\" Jual of"}, {"category_id": 15, "poly": [145.0, 1303.0, 1449.0, 1306.0, 1449.0, 1340.0, 145.0, 1338.0], "score": 0.97, "text": "Mathematical Analysis and Applications, vol. 290, no. 2, pp. 436 451, 2004. View at Publisher \u00b7 View at Go0gle Scholar View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1330.0, 1562.0, 1333.0, 1562.0, 1374.0, 101.0, 1372.0], "score": 0.95, "text": "19. G. T. Stamov, \u201cAlost periodic models ofinpulsive Hopfield neual networks, Journal of Mathematics of Kyoto University, vol 49, no. 1, pp. 5767, 2009."}, {"category_id": 15, "poly": [148.0, 1364.0, 563.0, 1364.0, 563.0, 1399.0, 148.0, 1399.0], "score": 0.98, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [98.0, 1391.0, 1537.0, 1394.0, 1537.0, 1428.0, 98.0, 1425.0], "score": 0.97, "text": " 20. G. T. Stamov and I. M. Stamova, \u201cAlmost periodic solutions for impulsive neural networks with delay,\u201d Applied Mathematical Modelling, vol. 31, pp. 1263-"}, {"category_id": 15, "poly": [148.0, 1423.0, 480.0, 1423.0, 480.0, 1457.0, 148.0, 1457.0], "score": 0.96, "text": "1270, 2007. View at Google Scholar"}, {"category_id": 15, "poly": [98.0, 1450.0, 1486.0, 1455.0, 1486.0, 1486.0, 98.0, 1481.0], "score": 0.97, "text": " 21. S. Ahmad and I. M. Stamova, \u201cGlobal exponential stability for impulsive cellular neural networks with time-varying delays,\" Nonlinear Analysis. Theory,"}, {"category_id": 15, "poly": [148.0, 1481.0, 1289.0, 1481.0, 1289.0, 1515.0, 148.0, 1515.0], "score": 0.96, "text": "Methods & Applications, vol. 69, no. 3, pp. 786-795, 2008. View at Publisher \u00b7 View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [98.0, 1503.0, 1525.0, 1506.0, 1525.0, 1547.0, 98.0, 1545.0], "score": 0.84, "text": "22. X Lu and K. Teo, \u201cExponentalstabiltyofimpusive hig-order Hpfeld-tye neuraletworks wih tm-varyng delays, IEE Transactions on Nel"}, {"category_id": 15, "poly": [145.0, 1540.0, 745.0, 1540.0, 745.0, 1572.0, 145.0, 1572.0], "score": 0.98, "text": "Networks, vol. 16, pp. 1329-1339, 2005. View at Go0gle Scholar"}, {"category_id": 15, "poly": [101.0, 1564.0, 1557.0, 1569.0, 1557.0, 1603.0, 101.0, 1598.0], "score": 0.96, "text": " 23. Y. Zhang and Q. Luo, \u201cGlobal exponential stability of impulsive celular neural networks with time-varying delays via fixed point theory,\u201d Advances in Difference"}, {"category_id": 15, "poly": [101.0, 1623.0, 1520.0, 1628.0, 1520.0, 1662.0, 101.0, 1657.0], "score": 0.97, "text": " 24. Y. Zhang and M. Zhang, \u201cStability analysis for impulsive reaction-difusion Cohen-Grossberg neural networks with time-varying delays,\u201d\" Journal of Nanjing"}, {"category_id": 15, "poly": [145.0, 1652.0, 1146.0, 1657.0, 1146.0, 1691.0, 145.0, 1686.0], "score": 0.99, "text": "University of Information Science and Technology, vol. 4, no. 3, pp. 213-219, 2012. View at Google Scholar"}, {"category_id": 15, "poly": [101.0, 1681.0, 1508.0, 1686.0, 1508.0, 1720.0, 101.0, 1715.0], "score": 0.98, "text": " 25. X. Zhang, S. Wu, and K. Li, \u201cDelay-dependent exponential stabilty for impulsive Cohen-Grossberg neural networks with time-varying delays and reaction-"}, {"category_id": 15, "poly": [148.0, 1742.0, 416.0, 1742.0, 416.0, 1776.0, 148.0, 1776.0], "score": 0.98, "text": "Scholar View at MathSciNet"}, {"category_id": 15, "poly": [108.0, 1776.0, 150.0, 1776.0, 150.0, 1796.0, 108.0, 1796.0], "score": 1.0, "text": "26."}, {"category_id": 15, "poly": [143.0, 1771.0, 1540.0, 1771.0, 1540.0, 1805.0, 143.0, 1805.0], "score": 0.97, "text": " J. Pan and S. Zhong, \u201cDynamical behaviors of impulsive reaction-difusion Cohen-Grossberg neural network with delay,\u201d\" Neurocomputing, vol. 73, pp. 1344"}, {"category_id": 15, "poly": [148.0, 1796.0, 477.0, 1798.0, 477.0, 1832.0, 147.0, 1830.0], "score": 0.98, "text": "1351, 2010. View at Google Scholar"}, {"category_id": 15, "poly": [98.0, 1822.0, 1407.0, 1825.0, 1407.0, 1866.0, 98.0, 1864.0], "score": 0.86, "text": "27. K. Liand Q. ong, \u201cExonentalstabityfiulsive Cohen-Grsberg neuraletworks with tm-varyng delays and reaction-difusion te"}, {"category_id": 15, "poly": [143.0, 1854.0, 787.0, 1854.0, 787.0, 1896.0, 143.0, 1896.0], "score": 0.96, "text": "Neurocomputing, vol 72, pp. 231240, 2008. View at Google Scholar"}, {"category_id": 15, "poly": [101.0, 1883.0, 1520.0, 1886.0, 1520.0, 1920.0, 101.0, 1917.0], "score": 0.97, "text": " 28. J. Qiu, \u201cExponential stability of impulsive neural networks with time-varying delays and reaction-diffusion terms,\" Neurocomputing, vol. 70, pp. 1102-1108,"}, {"category_id": 15, "poly": [145.0, 1915.0, 418.0, 1915.0, 418.0, 1949.0, 145.0, 1949.0], "score": 0.98, "text": " 2007. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 1944.0, 1552.0, 1944.0, 1552.0, 1978.0, 103.0, 1978.0], "score": 0.97, "text": "29. X. Wang and D. Xu, \u201cGlobal exponential stability of impulsive fuzzy celular neural networks with mixed delays and reaction-difusion terms,' Chaos, Solitons &"}, {"category_id": 15, "poly": [145.0, 1974.0, 1166.0, 1974.0, 1166.0, 2008.0, 145.0, 2008.0], "score": 0.98, "text": "Fractals, vol. 42, no. 5, pp. 2713-2721, 2009. View at Publisher View at Go0gle Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 2000.0, 1560.0, 2005.0, 1559.0, 2039.0, 101.0, 2034.0], "score": 0.96, "text": " 30. W. Zhu, \u201cGlobal exponential stabity of impulsive reaction-diffusion equation with variable delays,\u201d\" Applied Mathematics and Computation, vol. 205, no. 1, pp."}, {"category_id": 15, "poly": [103.0, 2061.0, 1540.0, 2061.0, 1540.0, 2095.0, 103.0, 2095.0], "score": 0.98, "text": "31. Z. Li and K. Li \u201cStabilty analysis of impulsive Cohen-Grossberg neural networks with distributed delays and reaction-difusion terms,\u201d\" Applied Mathematical"}, {"category_id": 15, "poly": [101.0, 2115.0, 1560.0, 2117.0, 1559.0, 2151.0, 101.0, 2149.0], "score": 0.97, "text": " 32. Z. Li and K. Li, \u201cStability analysis of impulsive fuzzy cellular neural networks with distributed delays and reaction-difusion terms,' Chaos, Solitons and Fractals,"}, {"category_id": 15, "poly": [143.0, 2144.0, 1053.0, 2142.0, 1053.0, 2183.0, 143.0, 2186.0], "score": 0.96, "text": "vol 42, no. 1, p. 492-499, 2009. View at Publisher View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [98.0, 2171.0, 1547.0, 2173.0, 1547.0, 2215.0, 98.0, 2212.0], "score": 0.87, "text": "33. J Pan, X. Liu, and S. Zhong \u201cStabilty critera forimulsiv reaction-difson Cohen-Grossberg neral networks with tme-varying delays,\u201d Mathematical ad"}, {"category_id": 15, "poly": [89.0, 290.0, 180.0, 290.0, 180.0, 324.0, 89.0, 324.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 290.0, 1481.0, 290.0, 1481.0, 324.0, 205.0, 324.0], "score": 0.98, "text": "2013 Xianghong Lai and Tianxiang Yao. This is an open access article distributed under the Creative Commons Attribution License, which permits"}, {"category_id": 15, "poly": [145.0, 468.0, 230.0, 468.0, 230.0, 499.0, 145.0, 499.0], "score": 0.97, "text": "Publisher"}, {"category_id": 15, "poly": [246.0, 468.0, 659.0, 468.0, 659.0, 499.0, 246.0, 499.0], "score": 0.99, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [143.0, 2086.0, 746.0, 2083.0, 746.0, 2125.0, 143.0, 2127.0], "score": 0.91, "text": "Modelling, vol 33, no. 3, pp. 13371348 2009. Vw at Pubiser"}, {"category_id": 15, "poly": [762.0, 2086.0, 1181.0, 2083.0, 1181.0, 2125.0, 762.0, 2127.0], "score": 0.96, "text": "View at Google Scholar : Vew at MathSciNet"}, {"category_id": 15, "poly": [145.0, 580.0, 408.0, 582.0, 408.0, 616.0, 145.0, 614.0], "score": 1.0, "text": "147, 2003. View at Publisher"}, {"category_id": 15, "poly": [700.0, 2032.0, 888.0, 2032.0, 888.0, 2066.0, 700.0, 2066.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1713.0, 1405.0, 1713.0, 1405.0, 1747.0, 148.0, 1747.0], "score": 0.97, "text": "difusion terms,\" Communications in Nonlinear Science and Numerical Simulation, vol 16, no. 3, pp. 15241532, 2011. View at Publisher"}, {"category_id": 15, "poly": [1420.0, 1713.0, 1562.0, 1713.0, 1562.0, 1747.0, 1420.0, 1747.0], "score": 0.97, "text": "View at Google"}, {"category_id": 15, "poly": [145.0, 2032.0, 455.0, 2032.0, 455.0, 2066.0, 145.0, 2066.0], "score": 0.97, "text": "362-369, 2008. View at Publisher"}, {"category_id": 15, "poly": [470.0, 2032.0, 684.0, 2032.0, 684.0, 2066.0, 470.0, 2066.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [148.0, 1133.0, 765.0, 1133.0, 765.0, 1167.0, 148.0, 1167.0], "score": 0.97, "text": "Computation, vol. 162, no. 2, pp. 679-686, 2005. View at Publisher"}, {"category_id": 15, "poly": [780.0, 1133.0, 1198.0, 1133.0, 1198.0, 1167.0, 780.0, 1167.0], "score": 0.99, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 2205.0, 878.0, 2205.0, 878.0, 2239.0, 148.0, 2239.0], "score": 0.98, "text": "Computer Modelling, vol. 51, no. 9-10, pp. 1037-1050, 2010. View at Publisher"}, {"category_id": 15, "poly": [423.0, 580.0, 637.0, 582.0, 637.0, 616.0, 423.0, 614.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [653.0, 580.0, 839.0, 582.0, 839.0, 616.0, 653.0, 614.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [1000.0, 814.0, 1186.0, 814.0, 1186.0, 848.0, 1000.0, 848.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1596.0, 656.0, 1596.0, 656.0, 1630.0, 148.0, 1630.0], "score": 0.97, "text": "Equations, vol. 2013, article 23, 2013. View at Publisher"}, {"category_id": 15, "poly": [672.0, 1596.0, 888.0, 1596.0, 888.0, 1630.0, 672.0, 1630.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [148.0, 814.0, 755.0, 814.0, 755.0, 848.0, 148.0, 848.0], "score": 0.97, "text": "Applicationss, vol. 37, no. 2, pp. 245-255, 1999. Viw at Publisher"}, {"category_id": 15, "poly": [770.0, 814.0, 984.0, 814.0, 984.0, 848.0, 770.0, 848.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [106.0, 1221.0, 1122.0, 1221.0, 1122.0, 1255.0, 106.0, 1255.0], "score": 0.99, "text": "16. M. A. Arbib, Brains, Machines, and Mathematics, Springer, New York, NY, USA, 1987. View at Publisher"}, {"category_id": 15, "poly": [1137.0, 1221.0, 1552.0, 1221.0, 1552.0, 1255.0, 1137.0, 1255.0], "score": 0.97, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [894.0, 2205.0, 1107.0, 2205.0, 1107.0, 2239.0, 894.0, 2239.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1123.0, 2205.0, 1309.0, 2205.0, 1309.0, 2239.0, 1123.0, 2239.0], "score": 0.99, "text": "View at MathSciNet"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [104.89239501953125, 75.31392669677734, 1562.1026611328125, 75.31392669677734, 1562.1026611328125, 343.7308654785156, 104.89239501953125, 343.7308654785156], "score": 0.9985737204551697}, {"category_id": 13, "poly": [836, 114, 849, 114, 849, 131, 836, 131], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [1064, 115, 1078, 115, 1078, 130, 1064, 130], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [628, 231, 642, 231, 642, 246, 628, 246], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [374, 318, 388, 318, 388, 333, 374, 333], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [103.0, 80.0, 1555.0, 80.0, 1555.0, 112.0, 103.0, 112.0], "score": 0.98, "text": "34. Y. Zhang and Q. Luo, \u201cNovel stability criteria for impulsive delayed reaction-difusion Cohen-Grossberg neural networks via Hardy-Poincare inequality,\u201d\u2019 Chaos,"}, {"category_id": 15, "poly": [98.0, 132.0, 1532.0, 134.0, 1532.0, 175.0, 98.0, 173.0], "score": 0.96, "text": " 35. Y. Zhang and Q. Luo, \u201cGlobal exponential stabityofimpulsive delayed reaction-difusion neural networks va Hardy-Poincare Inequality, Neurocomputing,"}, {"category_id": 15, "poly": [145.0, 166.0, 622.0, 166.0, 622.0, 200.0, 145.0, 200.0], "score": 0.97, "text": "vol. 83, pp. 198-204, 2012. View at Go0gle Scholar"}, {"category_id": 15, "poly": [103.0, 195.0, 1540.0, 195.0, 1540.0, 229.0, 103.0, 229.0], "score": 0.97, "text": "36. Y. Zhang \u201cAsymptotic stabilty of impulsive reaction-difusion cellular neural networks with time-varying delays,\" Journal of Applied Mathematics, vol. 2012,"}, {"category_id": 15, "poly": [103.0, 253.0, 1557.0, 253.0, 1557.0, 288.0, 103.0, 288.0], "score": 0.99, "text": "37. V. Lakshmikantham, D. D. Banov, and P. S. Simeonov, Theory of Impulsive Differential Equations, World Scientific, Singapore, 1989. View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 283.0, 1564.0, 283.0, 1564.0, 317.0, 103.0, 317.0], "score": 0.98, "text": "38. W.-S. Cheung, \u201cSome new Poincare-type inequalities,\u201d Bulletin of the Australian Mathematical Society, vol. 63, no. 2, pp. 321-327, 2001. View at Publisher"}, {"category_id": 15, "poly": [140.0, 102.0, 835.0, 105.0, 835.0, 146.0, 140.0, 144.0], "score": 0.94, "text": "Solitons & Fractals, vol. 45, no. 8, pp. 1033-1040, 2012. View at Publsher"}, {"category_id": 15, "poly": [850.0, 102.0, 1063.0, 105.0, 1063.0, 146.0, 850.0, 144.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1079.0, 102.0, 1272.0, 105.0, 1272.0, 146.0, 1079.0, 144.0], "score": 0.98, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 224.0, 627.0, 224.0, 627.0, 258.0, 148.0, 258.0], "score": 0.96, "text": "Article ID 501891, 17 pages, 2012. View at Publisher"}, {"category_id": 15, "poly": [643.0, 224.0, 1058.0, 224.0, 1058.0, 258.0, 643.0, 258.0], "score": 0.97, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [150.0, 309.0, 373.0, 309.0, 373.0, 344.0, 150.0, 344.0], "score": 0.98, "text": "\u00b7 View at Google Scholar"}, {"category_id": 15, "poly": [389.0, 309.0, 576.0, 309.0, 576.0, 344.0, 389.0, 344.0], "score": 1.0, "text": "View at MathSciNet"}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [86.99946594238281, 74.84599304199219, 199.00831604003906, 74.84599304199219, 199.00831604003906, 186.671142578125, 86.99946594238281, 186.671142578125], "score": 0.9999982714653015}, {"category_id": 1, "poly": [117.57978820800781, 1113.845458984375, 405.54559326171875, 1113.845458984375, 405.54559326171875, 2072.436767578125, 117.57978820800781, 2072.436767578125], "score": 0.999994158744812}, {"category_id": 1, "poly": [119.07624053955078, 410.12469482421875, 241.01780700683594, 410.12469482421875, 241.01780700683594, 497.11041259765625, 119.07624053955078, 497.11041259765625], "score": 0.9999909400939941}, {"category_id": 1, "poly": [89.84915161132812, 842.6392822265625, 603.6964111328125, 842.6392822265625, 603.6964111328125, 872.7025756835938, 89.84915161132812, 872.7025756835938], "score": 0.9999823570251465}, {"category_id": 3, "poly": [89.05734252929688, 516.268310546875, 1569.1195068359375, 516.268310546875, 1569.1195068359375, 820.4707641601562, 89.05734252929688, 820.4707641601562], "score": 0.9997913837432861}, {"category_id": 1, "poly": [87.72050476074219, 2087.265869140625, 672.3448486328125, 2087.265869140625, 672.3448486328125, 2161.1494140625, 87.72050476074219, 2161.1494140625], "score": 0.9997605681419373}, {"category_id": 1, "poly": [531.0581665039062, 1067.981201171875, 656.1240844726562, 1067.981201171875, 656.1240844726562, 1095.9288330078125, 531.0581665039062, 1095.9288330078125], "score": 0.8666405081748962}, {"category_id": 2, "poly": [89.7431411743164, 356.1824035644531, 374.9415283203125, 356.1824035644531, 374.9415283203125, 385.1812744140625, 89.7431411743164, 385.1812744140625], "score": 0.6866707801818848}, {"category_id": 1, "poly": [89.72633361816406, 356.1830139160156, 374.9095764160156, 356.1830139160156, 374.9095764160156, 385.20458984375, 89.72633361816406, 385.20458984375], "score": 0.6378282308578491}, {"category_id": 1, "poly": [89.41246032714844, 2178.7998046875, 240.87417602539062, 2178.7998046875, 240.87417602539062, 2204.007568359375, 89.41246032714844, 2204.007568359375], "score": 0.5787616968154907}, {"category_id": 2, "poly": [89.32496643066406, 2178.546875, 240.72756958007812, 2178.546875, 240.72756958007812, 2203.833251953125, 89.32496643066406, 2203.833251953125], "score": 0.5444856882095337}, {"category_id": 0, "poly": [531.0205688476562, 1068.0189208984375, 655.9173583984375, 1068.0189208984375, 655.9173583984375, 1095.8397216796875, 531.0205688476562, 1095.8397216796875], "score": 0.34582453966140747}, {"category_id": 15, "poly": [349.0, 319.0, 376.0, 319.0, 376.0, 339.0, 349.0, 339.0], "score": 0.99, "text": "Go"}, {"category_id": 15, "poly": [143.0, 412.0, 207.0, 412.0, 207.0, 439.0, 143.0, 439.0], "score": 1.0, "text": "Home"}, {"category_id": 15, "poly": [140.0, 436.0, 226.0, 436.0, 226.0, 470.0, 140.0, 470.0], "score": 0.89, "text": " Journals"}, {"category_id": 15, "poly": [138.0, 465.0, 239.0, 465.0, 239.0, 499.0, 138.0, 499.0], "score": 1.0, "text": "About Us"}, {"category_id": 15, "poly": [89.0, 843.0, 603.0, 843.0, 603.0, 875.0, 89.0, 875.0], "score": 0.97, "text": "About this Journal Submit a Manuscript Table of Contents"}, {"category_id": 15, "poly": [529.0, 1070.0, 657.0, 1070.0, 657.0, 1096.0, 529.0, 1096.0], "score": 0.98, "text": "Journal Menu"}, {"category_id": 15, "poly": [138.0, 1118.0, 320.0, 1118.0, 320.0, 1152.0, 138.0, 1152.0], "score": 0.97, "text": "About this Journal -"}, {"category_id": 15, "poly": [123.0, 1157.0, 140.0, 1157.0, 140.0, 1174.0, 123.0, 1174.0], "score": 0.61, "text": "\u00b7"}, {"category_id": 15, "poly": [140.0, 1148.0, 379.0, 1148.0, 379.0, 1182.0, 140.0, 1182.0], "score": 0.96, "text": "Abstracting and Indexing \u00b7:"}, {"category_id": 15, "poly": [140.0, 1177.0, 312.0, 1177.0, 312.0, 1211.0, 140.0, 1211.0], "score": 0.98, "text": "Advance Access \u00b7"}, {"category_id": 15, "poly": [140.0, 1206.0, 305.0, 1206.0, 305.0, 1240.0, 140.0, 1240.0], "score": 0.99, "text": "Aims and Scope "}, {"category_id": 15, "poly": [140.0, 1235.0, 285.0, 1235.0, 285.0, 1269.0, 140.0, 1269.0], "score": 0.95, "text": "Annual Issues "}, {"category_id": 15, "poly": [140.0, 1262.0, 396.0, 1262.0, 396.0, 1296.0, 140.0, 1296.0], "score": 0.97, "text": "Article Processing Charges "}, {"category_id": 15, "poly": [143.0, 1296.0, 298.0, 1296.0, 298.0, 1323.0, 143.0, 1323.0], "score": 1.0, "text": "Articles in Press"}, {"category_id": 15, "poly": [140.0, 1321.0, 312.0, 1321.0, 312.0, 1355.0, 140.0, 1355.0], "score": 0.98, "text": "Author Guidelines"}, {"category_id": 15, "poly": [136.0, 1345.0, 384.0, 1350.0, 383.0, 1392.0, 135.0, 1386.0], "score": 0.98, "text": "Bibliographic Information "}, {"category_id": 15, "poly": [138.0, 1376.0, 367.0, 1379.0, 366.0, 1413.0, 138.0, 1411.0], "score": 0.95, "text": "Citations to this Journal ."}, {"category_id": 15, "poly": [138.0, 1406.0, 340.0, 1408.0, 339.0, 1443.0, 138.0, 1440.0], "score": 0.93, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [140.0, 1438.0, 298.0, 1438.0, 298.0, 1464.0, 140.0, 1464.0], "score": 0.95, "text": " Editorial Board \u00b7"}, {"category_id": 15, "poly": [140.0, 1469.0, 330.0, 1469.0, 330.0, 1498.0, 140.0, 1498.0], "score": 0.95, "text": "Editorial Workfow \u00b7-"}, {"category_id": 15, "poly": [143.0, 1496.0, 320.0, 1496.0, 320.0, 1523.0, 143.0, 1523.0], "score": 0.96, "text": "Free eTOC Alerts -"}, {"category_id": 15, "poly": [143.0, 1528.0, 315.0, 1528.0, 315.0, 1554.0, 143.0, 1554.0], "score": 0.98, "text": "Publication Ethics \u00b7"}, {"category_id": 15, "poly": [140.0, 1554.0, 411.0, 1554.0, 411.0, 1586.0, 140.0, 1586.0], "score": 0.97, "text": "Reviewers Acknowledgment \u00b7"}, {"category_id": 15, "poly": [138.0, 1579.0, 345.0, 1584.0, 344.0, 1618.0, 137.0, 1613.0], "score": 0.97, "text": " Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1608.0, 377.0, 1613.0, 376.0, 1645.0, 137.0, 1640.0], "score": 0.95, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [138.0, 1634.0, 310.0, 1640.0, 309.0, 1674.0, 137.0, 1669.0], "score": 0.97, "text": "Table of Contents"}, {"category_id": 15, "poly": [140.0, 1693.0, 342.0, 1693.0, 342.0, 1725.0, 140.0, 1725.0], "score": 0.97, "text": "Open Special Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1723.0, 374.0, 1723.0, 374.0, 1757.0, 140.0, 1757.0], "score": 0.97, "text": "Published Special Issues :"}, {"category_id": 15, "poly": [138.0, 1749.0, 367.0, 1752.0, 366.0, 1786.0, 138.0, 1783.0], "score": 0.99, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [140.0, 1805.0, 231.0, 1805.0, 231.0, 1832.0, 140.0, 1832.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1835.0, 280.0, 1835.0, 280.0, 1861.0, 143.0, 1861.0], "score": 0.99, "text": "Full-Text PDF"}, {"category_id": 15, "poly": [143.0, 1864.0, 298.0, 1864.0, 298.0, 1891.0, 143.0, 1891.0], "score": 0.98, "text": "Full- Text HTML"}, {"category_id": 15, "poly": [143.0, 1893.0, 293.0, 1893.0, 293.0, 1920.0, 143.0, 1920.0], "score": 0.96, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1922.0, 288.0, 1922.0, 288.0, 1949.0, 143.0, 1949.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [143.0, 1952.0, 317.0, 1952.0, 317.0, 1978.0, 143.0, 1978.0], "score": 0.96, "text": " Linked References"}, {"category_id": 15, "poly": [143.0, 1976.0, 354.0, 1976.0, 354.0, 2010.0, 143.0, 2010.0], "score": 0.98, "text": "Citations to this Article"}, {"category_id": 15, "poly": [140.0, 2003.0, 359.0, 2005.0, 359.0, 2039.0, 140.0, 2037.0], "score": 0.97, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [143.0, 2034.0, 362.0, 2034.0, 362.0, 2069.0, 143.0, 2069.0], "score": 0.97, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [86.0, 2083.0, 674.0, 2083.0, 674.0, 2115.0, 86.0, 2115.0], "score": 1.0, "text": "Computational and Mathematical Methods in Medicine"}, {"category_id": 15, "poly": [84.0, 2105.0, 630.0, 2108.0, 630.0, 2142.0, 84.0, 2139.0], "score": 1.0, "text": "Volume 2013 (2013), Article ID 572530, 7 pages"}, {"category_id": 15, "poly": [86.0, 2132.0, 526.0, 2132.0, 526.0, 2164.0, 86.0, 2164.0], "score": 0.98, "text": "http: //dx.doi.0rg/10.1155/2013/572530"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [92.8329086303711, 205.0286865234375, 876.422607421875, 205.0286865234375, 876.422607421875, 270.2810974121094, 92.8329086303711, 270.2810974121094], "score": 0.9999999403953552}, {"category_id": 1, "poly": [90.11329650878906, 147.43792724609375, 667.5969848632812, 147.43792724609375, 667.5969848632812, 181.32080078125, 90.11329650878906, 181.32080078125], "score": 0.9999999403953552}, {"category_id": 1, "poly": [91.63457489013672, 343.32781982421875, 397.1063232421875, 343.32781982421875, 397.1063232421875, 373.218505859375, 91.63457489013672, 373.218505859375], "score": 0.9999998807907104}, {"category_id": 1, "poly": [91.40591430664062, 291.0876159667969, 566.4261474609375, 291.0876159667969, 566.4261474609375, 319.8731689453125, 91.40591430664062, 319.8731689453125], "score": 0.9999997019767761}, {"category_id": 1, "poly": [91.00473022460938, 864.2133178710938, 1533.5321044921875, 864.2133178710938, 1533.5321044921875, 980.6873779296875, 91.00473022460938, 980.6873779296875], "score": 0.9999994039535522}, {"category_id": 0, "poly": [91.953857421875, 807.28173828125, 236.45977783203125, 807.28173828125, 236.45977783203125, 835.1835327148438, 91.953857421875, 835.1835327148438], "score": 0.9999992251396179}, {"category_id": 1, "poly": [90.32321166992188, 544.8843994140625, 1567.18310546875, 544.8843994140625, 1567.18310546875, 775.1893310546875, 90.32321166992188, 775.1893310546875], "score": 0.9999992251396179}, {"category_id": 1, "poly": [91.1826171875, 1002.5018920898438, 1562.3262939453125, 1002.5018920898438, 1562.3262939453125, 1237.629638671875, 91.1826171875, 1237.629638671875], "score": 0.9999992251396179}, {"category_id": 1, "poly": [89.73773193359375, 1719.4683837890625, 1556.97119140625, 1719.4683837890625, 1556.97119140625, 1835.7568359375, 89.73773193359375, 1835.7568359375], "score": 0.9999989867210388}, {"category_id": 1, "poly": [90.09166717529297, 1260.236572265625, 1563.0150146484375, 1260.236572265625, 1563.0150146484375, 1463.1588134765625, 90.09166717529297, 1463.1588134765625], "score": 0.9999985694885254}, {"category_id": 1, "poly": [89.81270599365234, 396.79229736328125, 1537.3016357421875, 396.79229736328125, 1537.3016357421875, 455.1769104003906, 89.81270599365234, 455.1769104003906], "score": 0.9999970197677612}, {"category_id": 1, "poly": [91.4673843383789, 1485.8076171875, 1557.6279296875, 1485.8076171875, 1557.6279296875, 1573.3870849609375, 91.4673843383789, 1573.3870849609375], "score": 0.999996542930603}, {"category_id": 1, "poly": [91.30797576904297, 2038.5128173828125, 1565.19677734375, 2038.5128173828125, 1565.19677734375, 2183.784912109375, 91.30797576904297, 2183.784912109375], "score": 0.9999935030937195}, {"category_id": 0, "poly": [92.07746887207031, 1604.437744140625, 345.94171142578125, 1604.437744140625, 345.94171142578125, 1632.818115234375, 92.07746887207031, 1632.818115234375], "score": 0.9999516010284424}, {"category_id": 1, "poly": [89.539794921875, 1893.490234375, 1558.5516357421875, 1893.490234375, 1558.5516357421875, 1952.74853515625, 89.539794921875, 1952.74853515625], "score": 0.9999281167984009}, {"category_id": 0, "poly": [89.15299987792969, 80.66609191894531, 1322.0487060546875, 80.66609191894531, 1322.0487060546875, 118.62686157226562, 89.15299987792969, 118.62686157226562], "score": 0.9998010993003845}, {"category_id": 0, "poly": [90.65776062011719, 486.2028503417969, 178.3577117919922, 486.2028503417969, 178.3577117919922, 512.5704345703125, 90.65776062011719, 512.5704345703125], "score": 0.9988529086112976}, {"category_id": 0, "poly": [91.7943115234375, 1983.4736328125, 278.8189392089844, 1983.4736328125, 278.8189392089844, 2009.0052490234375, 91.7943115234375, 2009.0052490234375], "score": 0.9986532926559448}, {"category_id": 0, "poly": [91.40169525146484, 1664.4754638671875, 257.74542236328125, 1664.4754638671875, 257.74542236328125, 1690.342041015625, 91.40169525146484, 1690.342041015625], "score": 0.6913888454437256}, {"category_id": 1, "poly": [91.37128448486328, 1664.5625, 257.80419921875, 1664.5625, 257.80419921875, 1690.0653076171875, 91.37128448486328, 1690.0653076171875], "score": 0.6011142134666443}, {"category_id": 13, "poly": [1038, 1751, 1101, 1751, 1101, 1779, 1038, 1779], "score": 0.88, "latex": "60\\,\\mu\\mathrm m"}, {"category_id": 13, "poly": [1108, 1808, 1192, 1808, 1192, 1834, 1108, 1834], "score": 0.87, "latex": "816^{*}553"}, {"category_id": 13, "poly": [185, 1808, 232, 1808, 232, 1833, 185, 1833], "score": 0.83, "latex": "180^{\\circ}"}, {"category_id": 13, "poly": [732, 1750, 792, 1750, 792, 1778, 732, 1778], "score": 0.83, "latex": "18\\,\\mu\\mathrm m"}, {"category_id": 13, "poly": [371, 1808, 405, 1808, 405, 1833, 371, 1833], "score": 0.77, "latex": "15^{\\circ}"}, {"category_id": 13, "poly": [181, 398, 204, 398, 204, 421, 181, 421], "score": 0.69, "latex": "\\copyright"}, {"category_id": 13, "poly": [591, 1779, 648, 1779, 648, 1807, 591, 1807], "score": 0.64, "latex": "{30}\\,\\mathrm{Hz}"}, {"category_id": 13, "poly": [134, 1809, 159, 1809, 159, 1832, 134, 1832], "score": 0.5, "latex": "0^{\\circ}"}, {"category_id": 13, "poly": [967, 1897, 985, 1897, 985, 1920, 967, 1920], "score": 0.37, "latex": "\\mathrm{P}"}, {"category_id": 15, "poly": [86.0, 80.0, 1326.0, 83.0, 1326.0, 124.0, 86.0, 122.0], "score": 0.99, "text": "Research on Calculation of the IOL Tilt and Decentration Based on Surface Fitting"}, {"category_id": 15, "poly": [91.0, 149.0, 662.0, 149.0, 662.0, 180.0, 91.0, 180.0], "score": 0.94, "text": "Lin Li 1 Ke Wang,1 Yan Yan,1 Xudong Song.2 and Zhicheng Liu!"}, {"category_id": 15, "poly": [91.0, 205.0, 849.0, 207.0, 849.0, 241.0, 91.0, 239.0], "score": 0.98, "text": "1School of Biomedical Engineering, Capital Medical University, Beijing 100069, China"}, {"category_id": 15, "poly": [86.0, 239.0, 871.0, 241.0, 871.0, 275.0, 86.0, 273.0], "score": 0.97, "text": "2Beijing Tongren Hospital Afflated to Capital Medical University, Bejing 100730, China"}, {"category_id": 15, "poly": [89.0, 295.0, 566.0, 295.0, 566.0, 326.0, 89.0, 326.0], "score": 1.0, "text": "Received 21 December 2012; Accepted 2 June 2013"}, {"category_id": 15, "poly": [89.0, 343.0, 396.0, 346.0, 396.0, 380.0, 88.0, 378.0], "score": 1.0, "text": "Academic Editor: Wenxiang Cong"}, {"category_id": 15, "poly": [89.0, 429.0, 765.0, 429.0, 765.0, 460.0, 89.0, 460.0], "score": 0.99, "text": "and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [93.0, 490.0, 180.0, 490.0, 180.0, 517.0, 93.0, 517.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [89.0, 546.0, 1500.0, 546.0, 1500.0, 577.0, 89.0, 577.0], "score": 0.98, "text": "The tilt and decentration of intraocular lens (IOL) result in defocussing, astigmatism, and wavefront aberration after operation. The objective is to give a method to"}, {"category_id": 15, "poly": [89.0, 575.0, 1518.0, 575.0, 1518.0, 607.0, 89.0, 607.0], "score": 0.97, "text": "estimate the tit and decentration ofIOL more accurately. Based on AS-OCT images of twelve eyes fromeight cases with subluxation lens afer operation, we fitted"}, {"category_id": 15, "poly": [89.0, 604.0, 1552.0, 604.0, 1552.0, 636.0, 89.0, 636.0], "score": 0.98, "text": "spherical equation to the data obtained from the images of the anterior and posterior surfaces ofthe IOL. By the established relationship between IOL tit (decentration)"}, {"category_id": 15, "poly": [89.0, 633.0, 1557.0, 633.0, 1557.0, 665.0, 89.0, 665.0], "score": 0.98, "text": "and the scanned angle, at which a piece ofAS-OCT image was taken by the instrument, the IOL tilt and decentration were calculated. IOL tilt angle and decentration of"}, {"category_id": 15, "poly": [89.0, 663.0, 1550.0, 663.0, 1550.0, 694.0, 89.0, 694.0], "score": 0.97, "text": "each subject were given. Moreover, the horizontal and vertical tit was also obtained. Accordingly, the possible errors of IOL tilt and decentration existed in the method"}, {"category_id": 15, "poly": [89.0, 692.0, 1562.0, 692.0, 1562.0, 724.0, 89.0, 724.0], "score": 0.98, "text": "employed by AS-OCT instrument. Based on 6-12 pieces of AS-OCT images at different directions, the tilt angle and decentration values were shown, respectively. The"}, {"category_id": 15, "poly": [86.0, 719.0, 1530.0, 721.0, 1530.0, 755.0, 86.0, 753.0], "score": 0.97, "text": "method ofthe surface fitting to the IOL surface can accurately analyze the IOL's location, and six pieces of AS-OCT images at three pairs symmetrical directions are"}, {"category_id": 15, "poly": [89.0, 750.0, 694.0, 750.0, 694.0, 782.0, 89.0, 782.0], "score": 0.99, "text": "enough to get tilt angle and decentration value ofIOL more precisely."}, {"category_id": 15, "poly": [91.0, 811.0, 234.0, 811.0, 234.0, 838.0, 91.0, 838.0], "score": 1.0, "text": "1. Introduction"}, {"category_id": 15, "poly": [89.0, 867.0, 1528.0, 867.0, 1528.0, 899.0, 89.0, 899.0], "score": 0.99, "text": "The operations of congenital lens subluxation have mostly implanted posterior chamber intraocular lens (IOL) through scleral suture fixation or capsular tension ring to"}, {"category_id": 15, "poly": [89.0, 897.0, 1520.0, 897.0, 1520.0, 928.0, 89.0, 928.0], "score": 0.97, "text": "combine with the capsular bag Serious IOL dislocation has been controlled, but it is dificult to avoid the tilt and decentration ofIOL [1-3]. Therefore, to obtain the"}, {"category_id": 15, "poly": [89.0, 926.0, 1446.0, 926.0, 1446.0, 960.0, 89.0, 960.0], "score": 0.98, "text": "reliable tilt and decentration of IOL could play an important role in the evaluation of the diferent operation schemes and effective treatment of postoperative"}, {"category_id": 15, "poly": [91.0, 958.0, 216.0, 958.0, 216.0, 984.0, 91.0, 984.0], "score": 0.96, "text": "complications."}, {"category_id": 15, "poly": [86.0, 1004.0, 1503.0, 1006.0, 1503.0, 1040.0, 86.0, 1038.0], "score": 0.99, "text": " Utrasound biomicroscopy (UBM), Purkinje imaging system, anterior segment optical coherence tomography (AS-OCT), and Scheimpfug imaging system are the"}, {"category_id": 15, "poly": [91.0, 1038.0, 1540.0, 1038.0, 1540.0, 1072.0, 91.0, 1072.0], "score": 0.97, "text": "methods used for measurements ofthe IOL tit and decentration in clinical practice. The Purkinje imaging system is simple, but it depends on the radius of curvature of"}, {"category_id": 15, "poly": [89.0, 1067.0, 1557.0, 1067.0, 1557.0, 1099.0, 89.0, 1099.0], "score": 0.98, "text": "the IOL surfaces. The MI image by Purkinje meter can only show parts ofthe IOL anterior and posterior surfaces. This can have an efect on the radius of curvature and"}, {"category_id": 15, "poly": [89.0, 1094.0, 1505.0, 1094.0, 1505.0, 1128.0, 89.0, 1128.0], "score": 0.97, "text": "the results of IOL tilt and decentration [4Z]. By UBM, operators can clearly see whether the IOL has tit and decentration, but the tit and decentration cannot be"}, {"category_id": 15, "poly": [89.0, 1123.0, 1545.0, 1123.0, 1545.0, 1157.0, 89.0, 1157.0], "score": 0.97, "text": "directly measured. Moreover, it is a contact inspection method and the deformation ofthe eyeballextruded by water in bath cup may affect the measured results [8. 9]."}, {"category_id": 15, "poly": [86.0, 1150.0, 1557.0, 1150.0, 1557.0, 1191.0, 86.0, 1191.0], "score": 0.86, "text": "Scheinpfug ging system can rapidly btan the IL tit and deentraton vaes, but it require pupil dlation, which can case the deviation of th pupil cente. So, th"}, {"category_id": 15, "poly": [91.0, 1182.0, 1505.0, 1182.0, 1505.0, 1216.0, 91.0, 1216.0], "score": 0.98, "text": "IOL decentration measured by the system should be a distance between the IOL center and the nonreal pupil axis, thus the resut measured is not accurate and the"}, {"category_id": 15, "poly": [89.0, 1211.0, 394.0, 1211.0, 394.0, 1243.0, 89.0, 1243.0], "score": 0.95, "text": "method has limitations [6, 10-12]."}, {"category_id": 15, "poly": [91.0, 1262.0, 1550.0, 1262.0, 1550.0, 1296.0, 91.0, 1296.0], "score": 0.99, "text": "AS-OCT is a noninvasive and noncontact imaging method of measuring the IOL tit and decentration and has been widely used in clinical practice. AS-OCT instrument "}, {"category_id": 15, "poly": [89.0, 1291.0, 1518.0, 1291.0, 1518.0, 1325.0, 89.0, 1325.0], "score": 0.97, "text": "can scan the eyeballat the rotated axis which is the ine (called a baseline) passed through the anterior cornea center and the pupil center, and a lot of images canbe"}, {"category_id": 15, "poly": [89.0, 1321.0, 1555.0, 1321.0, 1555.0, 1355.0, 89.0, 1355.0], "score": 0.98, "text": "scanned by AS-OCT at every scanned angle [13, 14]. According to each piece of scanned images, the IOL tilt and decentration are given by AS-OCT instrument. The "}, {"category_id": 15, "poly": [91.0, 1350.0, 1560.0, 1350.0, 1560.0, 1384.0, 91.0, 1384.0], "score": 0.96, "text": "maximum value ofIOL tits and decentrations obtained from al the images are taken as the IOL tlt and decentration, respectively. In clinical practice, the IOL tit degree"}, {"category_id": 15, "poly": [89.0, 1379.0, 1483.0, 1379.0, 1483.0, 1411.0, 89.0, 1411.0], "score": 0.98, "text": "is an angle between the IOL optical axis and the baseline, and the IOL decentration value is the vertical distance from the IOL center to the baseline [6, 11, 15]."}, {"category_id": 15, "poly": [89.0, 1408.0, 1525.0, 1408.0, 1525.0, 1442.0, 89.0, 1442.0], "score": 0.98, "text": "Geometrically, the IOL tit and decentration are two values independent with images. However, we have found that the IOL tit and decentration values measured on"}, {"category_id": 15, "poly": [89.0, 1438.0, 1149.0, 1438.0, 1149.0, 1472.0, 89.0, 1472.0], "score": 0.98, "text": "different images at the same scanned angle were not the same. It is possible to result in errors of IOL tit and decentration."}, {"category_id": 15, "poly": [89.0, 1489.0, 1555.0, 1489.0, 1555.0, 1520.0, 89.0, 1520.0], "score": 0.99, "text": "Due to the fact that IOL surface is similar to the spherical [6, 16], we assumed anterior and posterior surfaces ofIOL to be spherical surfaces. The equations ofthe IOL"}, {"category_id": 15, "poly": [91.0, 1518.0, 1500.0, 1518.0, 1500.0, 1552.0, 91.0, 1552.0], "score": 0.98, "text": "anterior and posterior surfaces were calculated through the AS-OCT image registration and the surface ftting method, and then the IOL tit and decentration were"}, {"category_id": 15, "poly": [91.0, 1550.0, 184.0, 1550.0, 184.0, 1576.0, 91.0, 1576.0], "score": 1.0, "text": "calculated."}, {"category_id": 15, "poly": [86.0, 1608.0, 347.0, 1608.0, 347.0, 1640.0, 86.0, 1640.0], "score": 0.98, "text": " 2. Materials and Methods"}, {"category_id": 15, "poly": [86.0, 1664.0, 261.0, 1664.0, 261.0, 1698.0, 86.0, 1698.0], "score": 0.91, "text": " 2.1. Image Obtaining"}, {"category_id": 15, "poly": [89.0, 1723.0, 1552.0, 1723.0, 1552.0, 1757.0, 89.0, 1757.0], "score": 0.97, "text": "In this study, AS-OCT images of 12 eyes of 8 patients with congenital subluxation lens were provided by the Ophthalmic Research Center of Bejing, Tongren Hospital."}, {"category_id": 15, "poly": [91.0, 1930.0, 231.0, 1930.0, 231.0, 1956.0, 91.0, 1956.0], "score": 0.98, "text": "anterior surface."}, {"category_id": 15, "poly": [89.0, 1988.0, 278.0, 1988.0, 278.0, 2013.0, 89.0, 2013.0], "score": 0.99, "text": "2.2. Image Registration"}, {"category_id": 15, "poly": [89.0, 2042.0, 1560.0, 2042.0, 1560.0, 2076.0, 89.0, 2076.0], "score": 0.97, "text": "Because the center locations of the cormeal anterior surface may be different among images, we need to use image registration for al the images from each scanned angle."}, {"category_id": 15, "poly": [84.0, 2064.0, 1545.0, 2066.0, 1545.0, 2108.0, 84.0, 2105.0], "score": 0.88, "text": "The center ofthecorneal antrior sface is regarded as arefrence pont defndbyth ntersectiopont ofcomeal antrior suface and ppendicubisetorfte"}, {"category_id": 15, "poly": [91.0, 2100.0, 1560.0, 2100.0, 1560.0, 2134.0, 91.0, 2134.0], "score": 0.99, "text": "line joining scleral spurs, which is also regarded as reference line (Figure 1). Each picture can be made rigid transformation Figure 2 gives one piece ofregistered images."}, {"category_id": 15, "poly": [86.0, 2122.0, 1501.0, 2125.0, 1500.0, 2166.0, 86.0, 2164.0], "score": 0.89, "text": "Afer image transformation, the pixel values ofthe center ofthe coreal anteror surface n mage were read t verify the corectess and validity ofthe rgid body"}, {"category_id": 15, "poly": [86.0, 2156.0, 332.0, 2159.0, 332.0, 2193.0, 86.0, 2190.0], "score": 0.98, "text": " transformation image again."}, {"category_id": 15, "poly": [1102.0, 1752.0, 1451.0, 1752.0, 1451.0, 1786.0, 1102.0, 1786.0], "score": 0.99, "text": "Moreover, it has a scan speed of2000"}, {"category_id": 15, "poly": [91.0, 1752.0, 731.0, 1752.0, 731.0, 1786.0, 91.0, 1786.0], "score": 0.98, "text": "The system takes 2000 A scans per second and has an axial resolution of"}, {"category_id": 15, "poly": [793.0, 1752.0, 1037.0, 1752.0, 1037.0, 1786.0, 793.0, 1786.0], "score": 0.95, "text": "and transverse resolution of"}, {"category_id": 15, "poly": [233.0, 1810.0, 370.0, 1810.0, 370.0, 1844.0, 233.0, 1844.0], "score": 0.95, "text": "with periods of"}, {"category_id": 15, "poly": [406.0, 1810.0, 1107.0, 1810.0, 1107.0, 1844.0, 406.0, 1844.0], "score": 0.98, "text": ", Figure 1 shows a piece of these images. Image format is RGB and image size is"}, {"category_id": 15, "poly": [89.0, 397.0, 180.0, 397.0, 180.0, 431.0, 89.0, 431.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 397.0, 1535.0, 397.0, 1535.0, 431.0, 205.0, 431.0], "score": 0.98, "text": "2013 Lin Liet al. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution,"}, {"category_id": 15, "poly": [91.0, 1779.0, 590.0, 1779.0, 590.0, 1813.0, 91.0, 1813.0], "score": 0.98, "text": "times/second, scan time of0.125 s/row and frame rate of"}, {"category_id": 15, "poly": [649.0, 1779.0, 1532.0, 1779.0, 1532.0, 1813.0, 649.0, 1813.0], "score": 0.99, "text": "[9, 13, 14, 17]. For each eyeball the AS-OCT instrument provides 2-3 pieces of images at a degree"}, {"category_id": 15, "poly": [89.0, 1810.0, 133.0, 1810.0, 133.0, 1844.0, 89.0, 1844.0], "score": 1.0, "text": "from"}, {"category_id": 15, "poly": [160.0, 1810.0, 184.0, 1810.0, 184.0, 1844.0, 160.0, 1844.0], "score": 1.0, "text": "to"}, {"category_id": 15, "poly": [89.0, 1898.0, 966.0, 1898.0, 966.0, 1930.0, 89.0, 1930.0], "score": 0.99, "text": "Figure 1: The AS-OCT image at 30 degrees scanned angle. Points A and B are scleral spurs. Point"}, {"category_id": 15, "poly": [986.0, 1898.0, 1555.0, 1898.0, 1555.0, 1930.0, 986.0, 1930.0], "score": 0.97, "text": "is the intersection point of perpendicular bisector (L) and corneal"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [85.54791259765625, 1992.5283203125, 1562.2015380859375, 1992.5283203125, 1562.2015380859375, 2056.579345703125, 85.54791259765625, 2056.579345703125], "score": 0.9999997019767761}, {"category_id": 1, "poly": [87.99212646484375, 1732.5474853515625, 1526.8167724609375, 1732.5474853515625, 1526.8167724609375, 1821.6837158203125, 87.99212646484375, 1821.6837158203125], "score": 0.9999996423721313}, {"category_id": 1, "poly": [87.91651916503906, 1343.5950927734375, 1564.9542236328125, 1343.5950927734375, 1564.9542236328125, 1559.619140625, 87.91651916503906, 1559.619140625], "score": 0.9999995231628418}, {"category_id": 1, "poly": [88.61979675292969, 192.71449279785156, 1564.0771484375, 192.71449279785156, 1564.0771484375, 352.6291198730469, 88.61979675292969, 352.6291198730469], "score": 0.9999982714653015}, {"category_id": 1, "poly": [88.50137329101562, 2161.22705078125, 1559.828369140625, 2161.22705078125, 1559.828369140625, 2250.30322265625, 88.50137329101562, 2250.30322265625], "score": 0.9999971389770508}, {"category_id": 1, "poly": [88.35848236083984, 1612.80908203125, 832.944580078125, 1612.80908203125, 832.944580078125, 1644.988525390625, 88.35848236083984, 1644.988525390625], "score": 0.9999966025352478}, {"category_id": 1, "poly": [90.69235229492188, 136.1838836669922, 353.772216796875, 136.1838836669922, 353.772216796875, 164.39956665039062, 90.69235229492188, 164.39956665039062], "score": 0.9999963045120239}, {"category_id": 1, "poly": [89.27186584472656, 584.7158813476562, 1319.1031494140625, 584.7158813476562, 1319.1031494140625, 615.459716796875, 89.27186584472656, 615.459716796875], "score": 0.99998939037323}, {"category_id": 1, "poly": [89.09489440917969, 1938.7176513671875, 999.1207275390625, 1938.7176513671875, 999.1207275390625, 1972.3106689453125, 89.09489440917969, 1972.3106689453125], "score": 0.9999687075614929}, {"category_id": 1, "poly": [90.13467407226562, 816.0372314453125, 655.7335815429688, 816.0372314453125, 655.7335815429688, 844.8386840820312, 90.13467407226562, 844.8386840820312], "score": 0.9999328851699829}, {"category_id": 1, "poly": [89.41749572753906, 1096.5411376953125, 570.4242553710938, 1096.5411376953125, 570.4242553710938, 1125.2283935546875, 89.41749572753906, 1125.2283935546875], "score": 0.9999017715454102}, {"category_id": 1, "poly": [90.6684799194336, 1875.5430908203125, 790.7373046875, 1875.5430908203125, 790.7373046875, 1909.607421875, 90.6684799194336, 1909.607421875], "score": 0.999858558177948}, {"category_id": 1, "poly": [89.06340026855469, 438.9635009765625, 1541.6885986328125, 438.9635009765625, 1541.6885986328125, 471.1564025878906, 89.06340026855469, 471.1564025878906], "score": 0.999854564666748}, {"category_id": 0, "poly": [90.62982177734375, 1674.107421875, 190.1685028076172, 1674.107421875, 190.1685028076172, 1702.7989501953125, 90.62982177734375, 1702.7989501953125], "score": 0.9994069337844849}, {"category_id": 1, "poly": [885.4088745117188, 1009.2900390625, 1554.4609375, 1009.2900390625, 1554.4609375, 1040.7022705078125, 885.4088745117188, 1040.7022705078125], "score": 0.99406498670578}, {"category_id": 0, "poly": [89.37139892578125, 381.36798095703125, 647.948486328125, 381.36798095703125, 647.948486328125, 411.0863342285156, 89.37139892578125, 411.0863342285156], "score": 0.9733448028564453}, {"category_id": 1, "poly": [90.8209228515625, 1022.72314453125, 831.962890625, 1022.72314453125, 831.962890625, 1069.7454833984375, 90.8209228515625, 1069.7454833984375], "score": 0.958243727684021}, {"category_id": 1, "poly": [87.7586898803711, 1236.5714111328125, 1562.075439453125, 1236.5714111328125, 1562.075439453125, 1326.6446533203125, 87.7586898803711, 1326.6446533203125], "score": 0.9568014144897461}, {"category_id": 1, "poly": [90.61516571044922, 618.959228515625, 716.7681884765625, 618.959228515625, 716.7681884765625, 748.9569091796875, 90.61516571044922, 748.9569091796875], "score": 0.9079942107200623}, {"category_id": 1, "poly": [87.41266632080078, 2108.4521484375, 987.64697265625, 2108.4521484375, 987.64697265625, 2142.37841796875, 87.41266632080078, 2142.37841796875], "score": 0.8984202146530151}, {"category_id": 1, "poly": [90.61538696289062, 79.59878540039062, 622.52001953125, 79.59878540039062, 622.52001953125, 108.5462875366211, 90.61538696289062, 108.5462875366211], "score": 0.704590916633606}, {"category_id": 2, "poly": [90.76073455810547, 79.55668640136719, 622.679443359375, 79.55668640136719, 622.679443359375, 108.58277893066406, 90.76073455810547, 108.58277893066406], "score": 0.3732546269893646}, {"category_id": 4, "poly": [886.0936279296875, 1009.5165405273438, 1554.5311279296875, 1009.5165405273438, 1554.5311279296875, 1040.713623046875, 886.0936279296875, 1040.713623046875], "score": 0.20330366492271423}, {"category_id": 13, "poly": [1355, 279, 1450, 279, 1450, 315, 1355, 315], "score": 0.92, "latex": "(x^{'},y^{'},z^{'})"}, {"category_id": 13, "poly": [1083, 1011, 1181, 1011, 1181, 1040, 1083, 1040], "score": 0.9, "latex": "(a_{2},b_{2},c_{2})"}, {"category_id": 14, "poly": [836, 1180, 1390, 1180, 1390, 1263, 836, 1263], "score": 0.9, "latex": "\\stackrel{\\cdot}{\\cos\\omega\\left(\\alpha\\right)=\\frac{\\left|c_{2}\\stackrel{\\cdot}{-}c_{1}\\right|}{\\sqrt{r_{d}^{2}-\\left(\\left(b_{2}-b_{1}\\right)\\cos\\alpha-\\left(a_{2}-a_{1}\\right)\\sin\\alpha\\right)^{2}}}}\\cdot\\left(4\\right)"}, {"category_id": 13, "poly": [942, 1011, 1040, 1011, 1040, 1040, 942, 1040], "score": 0.9, "latex": "(a_{1},b_{1},c_{1})"}, {"category_id": 13, "poly": [936, 1441, 991, 1441, 991, 1470, 936, 1470], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [272, 2221, 327, 2221, 327, 2250, 272, 2250], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [1081, 2221, 1136, 2221, 1136, 2250, 1081, 2250], "score": 0.89, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [964, 1269, 1020, 1269, 1020, 1297, 964, 1297], "score": 0.89, "latex": "\\omega(\\alpha_{0})"}, {"category_id": 13, "poly": [834, 1471, 943, 1471, 943, 1499, 834, 1499], "score": 0.89, "latex": "(\\alpha-\\rho)=1"}, {"category_id": 13, "poly": [468, 1268, 696, 1268, 696, 1297, 468, 1297], "score": 0.88, "latex": "\\cos\\omega(\\alpha_{0})=|\\boldsymbol{c}_{2}-\\boldsymbol{c}_{1}|/r_{d}"}, {"category_id": 13, "poly": [202, 1500, 258, 1500, 258, 1528, 202, 1528], "score": 0.88, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [202, 1470, 258, 1470, 258, 1499, 202, 1499], "score": 0.87, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [943, 287, 998, 287, 998, 315, 943, 315], "score": 0.86, "latex": "(x,y)"}, {"category_id": 13, "poly": [97, 1266, 450, 1266, 450, 1298, 97, 1298], "score": 0.86, "latex": "((b_{2}-b_{1})\\cos\\alpha-(a_{2}-a_{1})\\sin\\alpha)^{2}=0"}, {"category_id": 14, "poly": [86, 685, 690, 685, 690, 754, 86, 754], "score": 0.84, "latex": "\\cos\\gamma=\\frac{\\left|b_{2}-b_{1}\\right|}{r_{d}},\\ \\ \\ r_{d}=\\sqrt{\\left(a_{2}-a_{1}\\right)^{2}+\\left(b_{2}-b_{1}\\right)^{2}+\\left(c_{2}-c_{1}\\right)^{2}}."}, {"category_id": 13, "poly": [1094, 1409, 1202, 1409, 1202, 1437, 1094, 1437], "score": 0.84, "latex": "\\rho=\\angle X O F"}, {"category_id": 13, "poly": [582, 1240, 630, 1240, 630, 1266, 582, 1266], "score": 0.84, "latex": "\\omega(\\alpha)"}, {"category_id": 13, "poly": [1506, 1499, 1561, 1499, 1561, 1528, 1506, 1528], "score": 0.84, "latex": "\\cdot d_{2}(\\alpha)"}, {"category_id": 13, "poly": [684, 1044, 705, 1044, 705, 1068, 684, 1068], "score": 0.83, "latex": "r_{2}"}, {"category_id": 13, "poly": [384, 1996, 433, 1996, 433, 2023, 384, 2023], "score": 0.82, "latex": "\\omega(\\alpha)"}, {"category_id": 13, "poly": [919, 442, 937, 442, 937, 471, 919, 471], "score": 0.82, "latex": "\\beta"}, {"category_id": 13, "poly": [621, 1042, 644, 1042, 644, 1068, 621, 1068], "score": 0.82, "latex": "\\cdot_{r_{1}}"}, {"category_id": 13, "poly": [972, 1408, 1081, 1408, 1081, 1434, 972, 1434], "score": 0.81, "latex": "\\alpha=\\angle X O E"}, {"category_id": 14, "poly": [211, 610, 572, 610, 572, 677, 211, 677], "score": 0.81, "latex": "\\cos\\theta=\\frac{\\left|\\dot{c_{2}}-c_{1}\\right|}{r_{d}},\\ \\ \\cos\\beta=\\frac{\\left|a_{2}-a_{1}\\right|}{r_{d}},"}, {"category_id": 13, "poly": [933, 332, 949, 332, 949, 350, 933, 350], "score": 0.8, "latex": "\\alpha"}, {"category_id": 13, "poly": [1481, 1760, 1509, 1760, 1509, 1788, 1481, 1788], "score": 0.78, "latex": "R^{2\\cdot}"}, {"category_id": 13, "poly": [877, 1501, 923, 1501, 923, 1527, 877, 1527], "score": 0.76, "latex": "\\mathrm{OL},"}, {"category_id": 13, "poly": [90, 1444, 201, 1444, 201, 1470, 90, 1470], "score": 0.72, "latex": "y=x\\tan\\alpha"}, {"category_id": 13, "poly": [724, 1352, 742, 1352, 742, 1374, 724, 1374], "score": 0.69, "latex": "E"}, {"category_id": 13, "poly": [233, 587, 253, 587, 253, 609, 233, 609], "score": 0.68, "latex": "X"}, {"category_id": 13, "poly": [1182, 1435, 1298, 1435, 1298, 1463, 1182, 1463], "score": 0.66, "latex": "d_{2}\\left(\\alpha\\right)=\\infty"}, {"category_id": 14, "poly": [432, 864, 848, 864, 848, 1034, 432, 1034], "score": 0.64, "latex": "\\begin{array}{l}{d=\\sqrt{d_{1}^{2}+\\left[\\left(\\frac{b_{2}-b_{1}}{a_{2}-a_{1}}\\right)d_{1}+\\frac{a_{2}b_{1}-a_{1}b_{2}}{a_{2}-a_{1}}\\right]^{2}},}\\\\ {d_{1}=\\displaystyle\\left(\\frac{\\left(a_{2}-a_{1}\\right)^{2}\\left(r_{1}^{2}-r_{2}^{2}\\right)}{r_{d}^{2}}+a_{2}+a_{1}\\right),}\\end{array}"}, {"category_id": 13, "poly": [579, 1380, 599, 1380, 599, 1406, 579, 1406], "score": 0.63, "latex": "\\underline{{3}})"}, {"category_id": 13, "poly": [775, 315, 870, 315, 870, 348, 775, 348], "score": 0.62, "latex": "z^{'}=y,\\!(1)"}, {"category_id": 13, "poly": [1118, 1380, 1135, 1380, 1135, 1402, 1118, 1402], "score": 0.62, "latex": "F"}, {"category_id": 13, "poly": [304, 590, 320, 590, 320, 611, 304, 611], "score": 0.61, "latex": "\\gamma"}, {"category_id": 13, "poly": [1011, 1500, 1045, 1500, 1045, 1524, 1011, 1524], "score": 0.59, "latex": "E F"}, {"category_id": 13, "poly": [680, 1472, 695, 1472, 695, 1494, 680, 1494], "score": 0.58, "latex": "d"}, {"category_id": 14, "poly": [429, 864, 851, 864, 851, 941, 429, 941], "score": 0.58, "latex": "d=\\sqrt{d_{1}^{2}+\\left[\\left(\\frac{b_{2}-b_{1}}{a_{2}-a_{1}}\\right)d_{1}+\\frac{a_{2}b_{1}-a_{1}b_{2}}{a_{2}-a_{1}}\\right]^{2}},"}, {"category_id": 13, "poly": [1145, 255, 1166, 255, 1166, 277, 1145, 277], "score": 0.54, "latex": "Z"}, {"category_id": 13, "poly": [88, 254, 111, 254, 111, 278, 88, 278], "score": 0.54, "latex": "X"}, {"category_id": 13, "poly": [783, 1408, 878, 1408, 878, 1433, 783, 1433], "score": 0.52, "latex": "E F\\perp O E"}, {"category_id": 13, "poly": [370, 1529, 385, 1529, 385, 1552, 370, 1552], "score": 0.5, "latex": "d"}, {"category_id": 13, "poly": [1303, 1433, 1389, 1433, 1389, 1464, 1303, 1464], "score": 0.5, "latex": "\\dot{\\bf\\Phi}(\\alpha-\\rho)\\,d"}, {"category_id": 13, "poly": [1181, 1433, 1511, 1433, 1511, 1465, 1181, 1465], "score": 0.43, "latex": "d_{2}\\left(\\alpha\\right)=\\cos{\\stackrel{\\bullet}{\\left(\\alpha-\\rho\\right)}}\\,d.(5)\\;\\mathrm{{The\\;IOL}}"}, {"category_id": 13, "poly": [466, 324, 580, 324, 580, 345, 466, 345], "score": 0.43, "latex": "x\\ =x\\cos\\alpha"}, {"category_id": 13, "poly": [466, 313, 874, 313, 874, 348, 466, 348], "score": 0.43, "latex": "x^{'}=x\\cos\\alpha,~~~~~y^{'}=x\\sin\\alpha,~~~~~z^{'}=y,\\bar{(1)}"}, {"category_id": 13, "poly": [1101, 1350, 1147, 1350, 1147, 1377, 1101, 1377], "score": 0.42, "latex": "\\mathrm{{TOL},}"}, {"category_id": 13, "poly": [1024, 1380, 1071, 1380, 1071, 1405, 1024, 1405], "score": 0.41, "latex": "O,E"}, {"category_id": 13, "poly": [406, 1408, 422, 1408, 422, 1432, 406, 1432], "score": 0.38, "latex": "d"}, {"category_id": 13, "poly": [1238, 1471, 1255, 1471, 1255, 1494, 1238, 1494], "score": 0.36, "latex": "d"}, {"category_id": 13, "poly": [621, 317, 735, 317, 735, 348, 621, 348], "score": 0.35, "latex": "y^{'}=x\\sin\\alpha"}, {"category_id": 13, "poly": [240, 1244, 254, 1244, 254, 1263, 240, 1263], "score": 0.34, "latex": "\\cdot_{\\alpha}"}, {"category_id": 13, "poly": [149, 1997, 166, 1997, 166, 2022, 149, 2022], "score": 0.29, "latex": "\\underline{{6}}"}, {"category_id": 13, "poly": [88, 1299, 104, 1299, 104, 1323, 88, 1323], "score": 0.28, "latex": "\\theta"}, {"category_id": 13, "poly": [798, 255, 819, 255, 819, 277, 798, 277], "score": 0.27, "latex": "Y"}, {"category_id": 13, "poly": [1054, 1381, 1072, 1381, 1072, 1403, 1054, 1403], "score": 0.26, "latex": "E"}, {"category_id": 15, "poly": [89.0, 139.0, 354.0, 139.0, 354.0, 171.0, 89.0, 171.0], "score": 1.0, "text": "2.3. Collecting IOL Surface Data"}, {"category_id": 15, "poly": [89.0, 197.0, 1557.0, 197.0, 1557.0, 229.0, 89.0, 229.0], "score": 0.99, "text": "From each piece of AS-OCT images, we can obtain two-dimensional pixel coordinates of points of the IOL anterior and posterior surfaces. In order to obtain the three-"}, {"category_id": 15, "poly": [89.0, 227.0, 1557.0, 227.0, 1557.0, 261.0, 89.0, 261.0], "score": 0.98, "text": "dimensional coordinates of points of the IOL surface data, Cartesian coordinate system is needed. We set the horizontal direction (alar to zygomatic direction) parallel to"}, {"category_id": 15, "poly": [91.0, 329.0, 428.0, 329.0, 428.0, 361.0, 91.0, 361.0], "score": 0.98, "text": "relations between them are as follows:"}, {"category_id": 15, "poly": [91.0, 387.0, 642.0, 387.0, 642.0, 412.0, 91.0, 412.0], "score": 0.97, "text": "2.4.TheTilt and Decentration of IOL Calculated by GeometricMethod"}, {"category_id": 15, "poly": [686.0, 670.0, 713.0, 670.0, 713.0, 692.0, 686.0, 692.0], "score": 0.75, "text": "(2)"}, {"category_id": 15, "poly": [91.0, 816.0, 654.0, 816.0, 654.0, 848.0, 91.0, 848.0], "score": 0.98, "text": "Figure 3: The geometrical definition of IOL tilt and decentration"}, {"category_id": 15, "poly": [849.0, 936.0, 883.0, 936.0, 883.0, 965.0, 849.0, 965.0], "score": 0.98, "text": "(3)"}, {"category_id": 15, "poly": [89.0, 1014.0, 403.0, 1014.0, 403.0, 1045.0, 89.0, 1045.0], "score": 0.99, "text": "Decentration equation is as follows:"}, {"category_id": 15, "poly": [86.0, 1099.0, 571.0, 1101.0, 571.0, 1133.0, 86.0, 1130.0], "score": 0.97, "text": " 2.5. IOL Tilt Calculated When the Different Scanned Angles"}, {"category_id": 15, "poly": [89.0, 1157.0, 1557.0, 1157.0, 1557.0, 1189.0, 89.0, 1189.0], "score": 0.98, "text": "The IOL tilt and decentration at different scanned angles were calculated based on the equations ofthe IOL anterior and posterior surface. For the AS-OCT image with"}, {"category_id": 15, "poly": [1390.0, 1245.0, 1525.0, 1245.0, 1525.0, 1272.0, 1390.0, 1272.0], "score": 0.95, "text": "Apparently, as"}, {"category_id": 15, "poly": [86.0, 1615.0, 831.0, 1618.0, 831.0, 1652.0, 86.0, 1649.0], "score": 0.98, "text": " Figure 4: The projection of IOL center point in the plane at different scanned angles."}, {"category_id": 15, "poly": [89.0, 1679.0, 192.0, 1679.0, 192.0, 1706.0, 89.0, 1706.0], "score": 0.99, "text": "3. Results"}, {"category_id": 15, "poly": [89.0, 1737.0, 1520.0, 1737.0, 1520.0, 1771.0, 89.0, 1771.0], "score": 0.96, "text": "Figure 5 shows the IOL ftting surface of case 11. Table 1 gives the IOL tilt and decentration calculated by the surface fitting approach and their values given by AS-"}, {"category_id": 15, "poly": [89.0, 1796.0, 723.0, 1796.0, 723.0, 1827.0, 89.0, 1827.0], "score": 0.99, "text": "shown in the ninth-tenth colum of Table 1, was between 0.85 and 0.97."}, {"category_id": 15, "poly": [89.0, 1878.0, 792.0, 1881.0, 792.0, 1915.0, 89.0, 1913.0], "score": 0.97, "text": "Table 1: The IOL tilt and decentration obtained by the method of surface ftting."}, {"category_id": 15, "poly": [91.0, 1947.0, 1001.0, 1947.0, 1001.0, 1978.0, 91.0, 1978.0], "score": 0.98, "text": "Figure 5: The image of IOL fiting surface and intersection of the anterior and posterior surfaces of IOL."}, {"category_id": 15, "poly": [89.0, 2030.0, 1471.0, 2030.0, 1471.0, 2061.0, 89.0, 2061.0], "score": 0.96, "text": "respect to the change of scanned angle. But the data provided by As-OCT instrument oscillates with a small amplitude. It definitely affects the estimation of tlt."}, {"category_id": 15, "poly": [91.0, 2115.0, 986.0, 2115.0, 986.0, 2147.0, 91.0, 2147.0], "score": 0.98, "text": "Figure 6: The relation with IOL tits by the method of surface fitting and AS-OCT and scanned angles."}, {"category_id": 15, "poly": [89.0, 2166.0, 1525.0, 2166.0, 1525.0, 2198.0, 89.0, 2198.0], "score": 0.98, "text": "Figure 7 gives data of the decentration calculated by the method of surface fitting and provided by AS-OCT instrument for case 12. It is shown that the trend oftwo"}, {"category_id": 15, "poly": [91.0, 2195.0, 1550.0, 2195.0, 1550.0, 2227.0, 91.0, 2227.0], "score": 0.97, "text": "curves is inconsistent with respect to the change of scanned angle. But the data provided by AS-OCT instrument oscillates with a large amplitude. According to formula"}, {"category_id": 15, "poly": [992.0, 1442.0, 1154.0, 1442.0, 1154.0, 1476.0, 992.0, 1476.0], "score": 0.97, "text": ", can be obtained"}, {"category_id": 15, "poly": [91.0, 2224.0, 271.0, 2224.0, 271.0, 2259.0, 91.0, 2259.0], "score": 0.99, "text": "(5), the decentration"}, {"category_id": 15, "poly": [328.0, 2224.0, 1080.0, 2224.0, 1080.0, 2259.0, 328.0, 2259.0], "score": 0.98, "text": " changes in accordance with cosine approximately. Clearly, the change of decentration"}, {"category_id": 15, "poly": [1137.0, 2224.0, 1555.0, 2224.0, 1555.0, 2259.0, 1137.0, 2259.0], "score": 0.97, "text": "calculated by our method is in accordance with"}, {"category_id": 15, "poly": [1021.0, 1269.0, 1557.0, 1267.0, 1557.0, 1301.0, 1021.0, 1304.0], "score": 0.97, "text": "is a maxima, which is exactly equal to tit. Therefore, the tilt ("}, {"category_id": 15, "poly": [697.0, 1269.0, 963.0, 1267.0, 963.0, 1301.0, 697.0, 1304.0], "score": 0.97, "text": "attains its minimum value, and"}, {"category_id": 15, "poly": [89.0, 1498.0, 201.0, 1501.0, 201.0, 1535.0, 89.0, 1533.0], "score": 0.98, "text": "decentration"}, {"category_id": 15, "poly": [91.0, 1472.0, 201.0, 1472.0, 201.0, 1506.0, 91.0, 1506.0], "score": 1.0, "text": "decentration"}, {"category_id": 15, "poly": [89.0, 290.0, 942.0, 290.0, 942.0, 322.0, 89.0, 322.0], "score": 0.99, "text": "surface is as the origin of coordinates. Assuming that the two-dimensional coordinate of point A is"}, {"category_id": 15, "poly": [999.0, 290.0, 1493.0, 290.0, 1493.0, 322.0, 999.0, 322.0], "score": 0.97, "text": ", and the three-dimensional coordinate is (x y ,z \uff09, the"}, {"category_id": 15, "poly": [451.0, 1269.0, 467.0, 1267.0, 467.0, 1301.0, 451.0, 1304.0], "score": 0.77, "text": "\uff0c"}, {"category_id": 15, "poly": [1203.0, 1408.0, 1476.0, 1406.0, 1476.0, 1440.0, 1203.0, 1442.0], "score": 0.95, "text": ", and the equation of line OE is"}, {"category_id": 15, "poly": [631.0, 1243.0, 809.0, 1243.0, 809.0, 1274.0, 631.0, 1274.0], "score": 0.98, "text": ", from the following:"}, {"category_id": 15, "poly": [706.0, 1043.0, 826.0, 1043.0, 826.0, 1077.0, 706.0, 1077.0], "score": 0.96, "text": ", respectively."}, {"category_id": 15, "poly": [434.0, 1998.0, 1560.0, 1998.0, 1560.0, 2032.0, 434.0, 2032.0], "score": 0.97, "text": " defined by formula (4) and provided by AS-OCT instrument for case 12. It is found that the trend oftwo curves is identical with"}, {"category_id": 15, "poly": [91.0, 443.0, 918.0, 443.0, 918.0, 475.0, 91.0, 475.0], "score": 0.97, "text": "From Figure 3, 0, known as tilt of IOL, is an angle between visual axis and optical axis of IOL."}, {"category_id": 15, "poly": [938.0, 443.0, 1535.0, 443.0, 1535.0, 475.0, 938.0, 475.0], "score": 0.97, "text": ", defined as tit at the horizontal direction, is an angle between optical"}, {"category_id": 15, "poly": [89.0, 1043.0, 620.0, 1043.0, 620.0, 1077.0, 89.0, 1077.0], "score": 0.98, "text": "ofthe fied IOL anterior and posterior surface with radius of"}, {"category_id": 15, "poly": [645.0, 1043.0, 683.0, 1043.0, 683.0, 1077.0, 645.0, 1077.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [1082.0, 1408.0, 1093.0, 1406.0, 1093.0, 1440.0, 1082.0, 1442.0], "score": 0.7, "text": "\uff0c"}, {"category_id": 15, "poly": [950.0, 314.0, 1215.0, 322.0, 1215.0, 363.0, 950.0, 356.0], "score": 0.95, "text": "is scanned angle of AS-OCT."}, {"category_id": 15, "poly": [84.0, 1759.0, 1480.0, 1762.0, 1480.0, 1803.0, 84.0, 1801.0], "score": 0.94, "text": "OCT instrument. The eighth coummn of Table 1 gives the diameter ofIOL computed by the method of surface fiting The goodness-oft (corelation coeficient"}, {"category_id": 15, "poly": [1510.0, 1759.0, 1525.0, 1762.0, 1525.0, 1803.0, 1510.0, 1801.0], "score": 0.73, "text": "\uff0c"}, {"category_id": 15, "poly": [259.0, 1498.0, 876.0, 1501.0, 876.0, 1535.0, 259.0, 1533.0], "score": 0.97, "text": "calculated from all of different scanmned angle images. If there is a tit of"}, {"category_id": 15, "poly": [202.0, 1442.0, 935.0, 1442.0, 935.0, 1476.0, 202.0, 1476.0], "score": 0.97, "text": ", for the AS-OCT image with scanned angle of \u03b1, the IOL decentration, denoted by"}, {"category_id": 15, "poly": [89.0, 1352.0, 723.0, 1352.0, 723.0, 1386.0, 89.0, 1386.0], "score": 0.99, "text": "For a piece of AS-OCT image with scanned angle of\u03b1 (Figure 4), point"}, {"category_id": 15, "poly": [89.0, 587.0, 232.0, 587.0, 232.0, 621.0, 89.0, 621.0], "score": 0.97, "text": "axis ofIOL and"}, {"category_id": 15, "poly": [89.0, 1381.0, 578.0, 1381.0, 578.0, 1413.0, 89.0, 1413.0], "score": 0.99, "text": "center ofIOL on XOY plane (coordinate plane, Figure"}, {"category_id": 15, "poly": [871.0, 314.0, 932.0, 322.0, 932.0, 363.0, 871.0, 356.0], "score": 0.99, "text": "where"}, {"category_id": 15, "poly": [1136.0, 1381.0, 1550.0, 1381.0, 1550.0, 1413.0, 1136.0, 1413.0], "score": 0.97, "text": "were the same one. The length of segment OF"}, {"category_id": 15, "poly": [254.0, 587.0, 303.0, 587.0, 303.0, 621.0, 254.0, 621.0], "score": 0.94, "text": "-axis."}, {"category_id": 15, "poly": [321.0, 587.0, 1316.0, 587.0, 1316.0, 621.0, 321.0, 621.0], "score": 0.97, "text": ". defined as tit at vertical direction, is an angle between optical axis ofIOL and Y axis, and we know the folowing"}, {"category_id": 15, "poly": [924.0, 1498.0, 1010.0, 1501.0, 1010.0, 1535.0, 924.0, 1533.0], "score": 1.0, "text": "segments"}, {"category_id": 15, "poly": [1046.0, 1498.0, 1505.0, 1501.0, 1505.0, 1535.0, 1046.0, 1533.0], "score": 0.97, "text": "and OE are nearly orthogonal; then the maximum of"}, {"category_id": 15, "poly": [259.0, 1472.0, 679.0, 1472.0, 679.0, 1506.0, 259.0, 1506.0], "score": 0.96, "text": "attains is maximum value, the IOL decentration"}, {"category_id": 15, "poly": [696.0, 1472.0, 833.0, 1472.0, 833.0, 1506.0, 696.0, 1506.0], "score": 1.0, "text": ", as long as cos"}, {"category_id": 15, "poly": [1167.0, 256.0, 1510.0, 256.0, 1510.0, 288.0, 1167.0, 288.0], "score": 0.98, "text": "axis. The center ofthe corneal anterior"}, {"category_id": 15, "poly": [879.0, 1408.0, 971.0, 1406.0, 971.0, 1440.0, 879.0, 1442.0], "score": 0.96, "text": ". Defining."}, {"category_id": 15, "poly": [89.0, 1530.0, 369.0, 1530.0, 369.0, 1562.0, 89.0, 1562.0], "score": 1.0, "text": "is close to the IOL decentration"}, {"category_id": 15, "poly": [1390.0, 1430.0, 1511.0, 1435.0, 1510.0, 1477.0, 1390.0, 1471.0], "score": 1.0, "text": "(5) The IOL"}, {"category_id": 15, "poly": [743.0, 1352.0, 1100.0, 1352.0, 1100.0, 1386.0, 743.0, 1386.0], "score": 0.97, "text": "is the projection point of image center of"}, {"category_id": 15, "poly": [1148.0, 1352.0, 1515.0, 1352.0, 1515.0, 1386.0, 1148.0, 1386.0], "score": 0.97, "text": " and point F is the projection point of real"}, {"category_id": 15, "poly": [600.0, 1381.0, 1023.0, 1381.0, 1023.0, 1413.0, 600.0, 1413.0], "score": 0.98, "text": ". Ifthere were not any decentration, three points"}, {"category_id": 15, "poly": [86.0, 1408.0, 405.0, 1406.0, 405.0, 1440.0, 86.0, 1442.0], "score": 0.98, "text": "is the IOL decentration, denoted by"}, {"category_id": 15, "poly": [423.0, 1408.0, 782.0, 1406.0, 782.0, 1440.0, 423.0, 1442.0], "score": 0.95, "text": ". Ifthere were not any IOL tilt, we know"}, {"category_id": 15, "poly": [944.0, 1472.0, 1237.0, 1472.0, 1237.0, 1506.0, 944.0, 1506.0], "score": 0.97, "text": ". Therefore, the IOL decentration"}, {"category_id": 15, "poly": [1256.0, 1472.0, 1473.0, 1472.0, 1473.0, 1506.0, 1256.0, 1506.0], "score": 0.99, "text": "is the maximum value of"}, {"category_id": 15, "poly": [91.0, 1243.0, 239.0, 1243.0, 239.0, 1274.0, 91.0, 1274.0], "score": 0.99, "text": "scanned angle of"}, {"category_id": 15, "poly": [255.0, 1243.0, 581.0, 1243.0, 581.0, 1274.0, 255.0, 1274.0], "score": 0.96, "text": ", one can get the IOL tilt, denoted by"}, {"category_id": 15, "poly": [91.0, 1998.0, 148.0, 1998.0, 148.0, 2032.0, 91.0, 2032.0], "score": 1.0, "text": "Figure"}, {"category_id": 15, "poly": [167.0, 1998.0, 383.0, 1998.0, 383.0, 2032.0, 167.0, 2032.0], "score": 0.93, "text": "gives the graph of the tilt"}, {"category_id": 15, "poly": [105.0, 1301.0, 863.0, 1301.0, 863.0, 1333.0, 105.0, 1333.0], "score": 0.96, "text": ") should take the maximum value from the tits calculated at the different scanned angles."}, {"category_id": 15, "poly": [112.0, 256.0, 797.0, 256.0, 797.0, 288.0, 112.0, 288.0], "score": 0.99, "text": "axis, the vertical direction (nasal bone to the jaw bone direction) parallel to the"}, {"category_id": 15, "poly": [820.0, 256.0, 1144.0, 256.0, 1144.0, 288.0, 820.0, 288.0], "score": 0.99, "text": "axis, and the ocular axial is set as the"}, {"category_id": 15, "poly": [1073.0, 1381.0, 1117.0, 1381.0, 1117.0, 1413.0, 1073.0, 1413.0], "score": 0.9, "text": ", and"}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [92.0838623046875, 1900.6451416015625, 559.0983276367188, 1900.6451416015625, 559.0983276367188, 1928.751220703125, 92.0838623046875, 1928.751220703125], "score": 0.9999998807907104}, {"category_id": 1, "poly": [91.62836456298828, 851.543701171875, 1564.9864501953125, 851.543701171875, 1564.9864501953125, 967.3631591796875, 91.62836456298828, 967.3631591796875], "score": 0.9999996423721313}, {"category_id": 1, "poly": [92.05652618408203, 215.79888916015625, 1561.2559814453125, 215.79888916015625, 1561.2559814453125, 308.03350830078125, 92.05652618408203, 308.03350830078125], "score": 0.9999996423721313}, {"category_id": 1, "poly": [94.2770767211914, 1414.743896484375, 1554.660400390625, 1414.743896484375, 1554.660400390625, 1530.9073486328125, 94.2770767211914, 1530.9073486328125], "score": 0.9999992847442627}, {"category_id": 1, "poly": [89.20370483398438, 624.4737548828125, 1550.6175537109375, 624.4737548828125, 1550.6175537109375, 830.793212890625, 89.20370483398438, 830.793212890625], "score": 0.9999992251396179}, {"category_id": 0, "poly": [92.16163635253906, 486.2047119140625, 221.58810424804688, 486.2047119140625, 221.58810424804688, 513.4022216796875, 92.16163635253906, 513.4022216796875], "score": 0.9999988079071045}, {"category_id": 1, "poly": [91.32354736328125, 2019.1021728515625, 1520.1068115234375, 2019.1021728515625, 1520.1068115234375, 2078.71875, 91.32354736328125, 2078.71875], "score": 0.9999988079071045}, {"category_id": 1, "poly": [92.47036743164062, 1552.7711181640625, 1563.363037109375, 1552.7711181640625, 1563.363037109375, 1728.47509765625, 92.47036743164062, 1728.47509765625], "score": 0.9999986886978149}, {"category_id": 1, "poly": [93.6260757446289, 545.9700927734375, 1503.9862060546875, 545.9700927734375, 1503.9862060546875, 602.2791748046875, 93.6260757446289, 602.2791748046875], "score": 0.9999985694885254}, {"category_id": 1, "poly": [116.43787384033203, 2167.059814453125, 1546.01611328125, 2167.059814453125, 1546.01611328125, 2253.558349609375, 116.43787384033203, 2253.558349609375], "score": 0.9999980926513672}, {"category_id": 1, "poly": [90.38311767578125, 991.6314086914062, 1560.7762451171875, 991.6314086914062, 1560.7762451171875, 1195.52685546875, 90.38311767578125, 1195.52685546875], "score": 0.9999979734420776}, {"category_id": 0, "poly": [91.14202117919922, 2109.3701171875, 205.3326416015625, 2109.3701171875, 205.3326416015625, 2136.172607421875, 91.14202117919922, 2136.172607421875], "score": 0.9999975562095642}, {"category_id": 2, "poly": [89.6928939819336, 80.47642517089844, 1064.296142578125, 80.47642517089844, 1064.296142578125, 109.5609359741211, 89.6928939819336, 109.5609359741211], "score": 0.9999974966049194}, {"category_id": 1, "poly": [93.3862075805664, 425.0317687988281, 1225.755859375, 425.0317687988281, 1225.755859375, 455.3368835449219, 93.3862075805664, 455.3368835449219], "score": 0.9999973177909851}, {"category_id": 1, "poly": [91.79408264160156, 1217.8751220703125, 1562.400390625, 1217.8751220703125, 1562.400390625, 1394.65966796875, 91.79408264160156, 1394.65966796875], "score": 0.9999968409538269}, {"category_id": 0, "poly": [93.45516204833984, 1961.228271484375, 268.7946472167969, 1961.228271484375, 268.7946472167969, 1989.3597412109375, 93.45516204833984, 1989.3597412109375], "score": 0.999996542930603}, {"category_id": 1, "poly": [92.93805694580078, 1752.11279296875, 1558.070068359375, 1752.11279296875, 1558.070068359375, 1810.2469482421875, 92.93805694580078, 1810.2469482421875], "score": 0.9999892711639404}, {"category_id": 1, "poly": [94.07872772216797, 361.7344665527344, 859.4450073242188, 361.7344665527344, 859.4450073242188, 391.92236328125, 94.07872772216797, 391.92236328125], "score": 0.9999321699142456}, {"category_id": 0, "poly": [93.5462417602539, 1842.1314697265625, 305.74224853515625, 1842.1314697265625, 305.74224853515625, 1868.2958984375, 93.5462417602539, 1868.2958984375], "score": 0.9998486042022705}, {"category_id": 1, "poly": [90.42353820800781, 165.59219360351562, 1066.601806640625, 165.59219360351562, 1066.601806640625, 194.8575897216797, 90.42353820800781, 194.8575897216797], "score": 0.999814510345459}, {"category_id": 13, "poly": [1330, 993, 1386, 993, 1386, 1022, 1330, 1022], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [574, 1109, 629, 1109, 629, 1138, 574, 1138], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [1379, 1051, 1435, 1051, 1435, 1080, 1379, 1080], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [318, 1051, 373, 1051, 373, 1080, 318, 1080], "score": 0.9, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [334, 80, 390, 80, 390, 108, 334, 108], "score": 0.89, "latex": "d_{2}(\\alpha)"}, {"category_id": 13, "poly": [858, 994, 907, 994, 907, 1021, 858, 1021], "score": 0.88, "latex": "\\omega(\\alpha)"}, {"category_id": 13, "poly": [114, 1051, 163, 1051, 163, 1079, 114, 1079], "score": 0.86, "latex": "\\omega(\\alpha)"}, {"category_id": 13, "poly": [370, 1110, 419, 1110, 419, 1136, 370, 1136], "score": 0.86, "latex": "\\omega(\\alpha)"}, {"category_id": 13, "poly": [725, 912, 834, 912, 834, 938, 725, 938], "score": 0.86, "latex": "5.48\\pm1.95"}, {"category_id": 13, "poly": [1312, 714, 1444, 714, 1444, 741, 1312, 741], "score": 0.82, "latex": "5.5\\,\\mathrm{mm}{-}6\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [281, 940, 455, 940, 455, 968, 281, 968], "score": 0.81, "latex": "0.06\\,\\mathrm{mm}\\mathrm{-}0.51\\,\\mathrm{mm})"}, {"category_id": 13, "poly": [1031, 912, 1181, 912, 1181, 938, 1031, 938], "score": 0.8, "latex": "1.09\\pm0.65\\;\\mathrm{mm})"}, {"category_id": 13, "poly": [1289, 1051, 1338, 1051, 1338, 1079, 1289, 1079], "score": 0.79, "latex": "\\dot{\\mathbf{\\omega}}\\omega(\\alpha)"}, {"category_id": 13, "poly": [435, 573, 477, 573, 477, 603, 435, 603], "score": 0.78, "latex": "(R^{2})"}, {"category_id": 13, "poly": [1025, 1335, 1111, 1335, 1111, 1363, 1025, 1363], "score": 0.71, "latex": "0.05\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [158, 1027, 174, 1027, 174, 1046, 158, 1046], "score": 0.64, "latex": "\\alpha"}, {"category_id": 13, "poly": [420, 1082, 437, 1082, 437, 1107, 420, 1107], "score": 0.49, "latex": "\\underline{{6}}"}, {"category_id": 13, "poly": [1029, 1307, 1046, 1307, 1046, 1333, 1029, 1333], "score": 0.26, "latex": "\\underline{{3}}"}, {"category_id": 15, "poly": [89.0, 168.0, 1065.0, 168.0, 1065.0, 200.0, 89.0, 200.0], "score": 0.98, "text": "Figure 7: The relation with IOL decentration by the method of surface fitting and AS-OCT and scanned angles."}, {"category_id": 15, "poly": [91.0, 219.0, 1562.0, 219.0, 1562.0, 253.0, 91.0, 253.0], "score": 0.97, "text": "Table 2 gives the results ofthe IOL tilt and decentration of three cases by two methods in different scanned angles (The \u201c' shown in the Table 2 means that this data is"}, {"category_id": 15, "poly": [91.0, 249.0, 1528.0, 249.0, 1528.0, 283.0, 91.0, 283.0], "score": 0.97, "text": "not available). The resuts ofIOL tit and decentration shown in Table 3 were calculated by surface ftting method based on 6, 7, 8, 9, 10, and 11 pieces ofAS-OCT"}, {"category_id": 15, "poly": [91.0, 283.0, 268.0, 283.0, 268.0, 309.0, 91.0, 309.0], "score": 0.94, "text": "images, respectively."}, {"category_id": 15, "poly": [89.0, 363.0, 861.0, 366.0, 861.0, 400.0, 89.0, 397.0], "score": 0.97, "text": "Table 2: IOL decentration and tit obtained from the image with different scanned angle."}, {"category_id": 15, "poly": [89.0, 426.0, 1225.0, 429.0, 1225.0, 463.0, 89.0, 460.0], "score": 0.97, "text": "Table 3: IOL tilt and decentration calculated by surface ftting method based on 6, 7, 8, 9, 10, and 11 pieces of AS-OCT images."}, {"category_id": 15, "poly": [87.0, 482.0, 224.0, 488.0, 223.0, 522.0, 86.0, 516.0], "score": 1.0, "text": "4. Discussion"}, {"category_id": 15, "poly": [89.0, 541.0, 1508.0, 543.0, 1508.0, 585.0, 89.0, 582.0], "score": 0.77, "text": "According tCes, tILtitadderation we calculatd bycolletingdatafI sface and shercal fting to te dta ofIL aeror ad"}, {"category_id": 15, "poly": [91.0, 629.0, 1503.0, 629.0, 1503.0, 663.0, 91.0, 663.0], "score": 0.97, "text": "Korynta et al [18] showed that the drif and oblique astigmatism can be caused by the IOL decentration being more than 1 mm and the IOL tit being more than 5"}, {"category_id": 15, "poly": [86.0, 653.0, 1547.0, 653.0, 1547.0, 694.0, 86.0, 694.0], "score": 0.89, "text": "degres Inour results, the decentration ofone ee was greater than mmand the tits of3 eyes were greater than 5 degrees. The IL tit and decentrationfthe othr"}, {"category_id": 15, "poly": [89.0, 687.0, 1540.0, 687.0, 1540.0, 721.0, 89.0, 721.0], "score": 0.96, "text": "8 eyes basically were within the normal range given by Korynta. It is noticed that most ofthe cases used in this study are successful in operations. This verified that our"}, {"category_id": 15, "poly": [89.0, 746.0, 1537.0, 746.0, 1537.0, 780.0, 89.0, 780.0], "score": 0.98, "text": "optical diameter obtained in this study was basicall in this range (Table 1). We noticed that the calculated IOL diameters are slightly larger than those provided by the"}, {"category_id": 15, "poly": [89.0, 775.0, 1535.0, 772.0, 1535.0, 806.0, 89.0, 809.0], "score": 0.97, "text": "manufacturer. The reason is that the edge ofIOL was made with a smooth and certain thickness shape, but we have not taken into account this issue in the calculation"}, {"category_id": 15, "poly": [86.0, 804.0, 187.0, 804.0, 187.0, 838.0, 86.0, 838.0], "score": 0.97, "text": "(Figure Z)."}, {"category_id": 15, "poly": [91.0, 855.0, 1469.0, 855.0, 1469.0, 887.0, 91.0, 887.0], "score": 0.97, "text": "The results oftilt calculated by surface ftting (Table 1, 1.76-7.52 degrees) were higher than those of Dhivya's study (0.04-3.6 degrees) [19]. Besides sample"}, {"category_id": 15, "poly": [91.0, 884.0, 1562.0, 884.0, 1562.0, 919.0, 91.0, 919.0], "score": 0.97, "text": "differences, the main reason is that the maximum value obtained from the four images (0 degrees, 90 degrees, 45 degrees, and 135 degrees [19]) is possibly less than the"}, {"category_id": 15, "poly": [86.0, 1138.0, 1523.0, 1138.0, 1523.0, 1179.0, 86.0, 1179.0], "score": 0.92, "text": "elninated byregistrationof images at diferent scanned directions and selecting as many as possibl pixel ponts to a certan extent So, the IL tit and decentration"}, {"category_id": 15, "poly": [86.0, 1167.0, 586.0, 1170.0, 585.0, 1204.0, 86.0, 1201.0], "score": 0.97, "text": " calculated with the method of surface fitting are accurate."}, {"category_id": 15, "poly": [89.0, 1221.0, 1540.0, 1221.0, 1540.0, 1255.0, 89.0, 1255.0], "score": 0.97, "text": "In order to reduce the pressure ofclinical work, it is very significant to provide the method for calculating the more accurate tilt and decentration ofIOL and saving the"}, {"category_id": 15, "poly": [91.0, 1250.0, 1545.0, 1250.0, 1545.0, 1284.0, 91.0, 1284.0], "score": 0.98, "text": "workload. Table 3 gives the results of IOL tilt and decentration calculated with 11, 10, 9, 8, 7, 6 AS-OCT images, respectively by the method. This problem is one of"}, {"category_id": 15, "poly": [89.0, 1279.0, 1557.0, 1279.0, 1557.0, 1313.0, 89.0, 1313.0], "score": 0.98, "text": "innovations of this study. Although the number of images used to obtain IOL tilt and decentration are 2 (90 degrees and 180 degrees) [6, 15], 4 (0 degrees, 45 degrees,"}, {"category_id": 15, "poly": [89.0, 1367.0, 1427.0, 1367.0, 1427.0, 1401.0, 89.0, 1401.0], "score": 0.98, "text": "practice. It is suggested that the method can calculate the more accurate tit and decentration of IOL with scanned angles at the six symmetrical directions."}, {"category_id": 15, "poly": [89.0, 1418.0, 1555.0, 1418.0, 1555.0, 1452.0, 89.0, 1452.0], "score": 0.98, "text": "The IOL tit measured by AS-COT instrument is the angle between the IOL optical axis and the ine joining the centers ofthe anterior cornea and the pupil Our method"}, {"category_id": 15, "poly": [91.0, 1447.0, 1518.0, 1447.0, 1518.0, 1481.0, 91.0, 1481.0], "score": 0.95, "text": "can not only give the IOL tilt, but aso the tilt at the horizontal direction and the tit at the verticaldirection To the knowldge ofthe authors, it has not been reported"}, {"category_id": 15, "poly": [91.0, 1476.0, 1528.0, 1476.0, 1528.0, 1511.0, 91.0, 1511.0], "score": 0.97, "text": "whether the horizontal and vertical angles can affect the recovery of vision and optical imaging quality. This may be related to the current methods in clinic leaving two"}, {"category_id": 15, "poly": [89.0, 1506.0, 1409.0, 1506.0, 1409.0, 1540.0, 89.0, 1540.0], "score": 0.97, "text": "angles unknown. Therefore, it should be studied that whether the horizontal and vertical angles have an impact on visual acuity and visual efect in future."}, {"category_id": 15, "poly": [91.0, 1557.0, 1537.0, 1557.0, 1537.0, 1591.0, 91.0, 1591.0], "score": 0.97, "text": "This study is limited in the follwing: because IOL was covered by ris and opaque tissues, the middle part ofIOL is only displayed in the image, and the point near the"}, {"category_id": 15, "poly": [91.0, 1586.0, 1532.0, 1586.0, 1532.0, 1618.0, 91.0, 1618.0], "score": 0.97, "text": "IOL boundary cannot be obtained. In addition, artificial selection and obtaining pixel coordinates will bring the errors. This will affect the similarity ofthe fitting surface"}, {"category_id": 15, "poly": [91.0, 1615.0, 1532.0, 1615.0, 1532.0, 1649.0, 91.0, 1649.0], "score": 0.96, "text": "and the actual IOL surface. Therefore, it should be studied that the method can reduce errors in collcting data for improving the ftting goodness in future. In addiion,"}, {"category_id": 15, "poly": [89.0, 1645.0, 1513.0, 1645.0, 1513.0, 1679.0, 89.0, 1679.0], "score": 0.96, "text": "this study assumed that the IOL surface was spherical. But the aspheric surface cannot be thought about. It is hoped that the IOL suface can be calculated with the"}, {"category_id": 15, "poly": [89.0, 1674.0, 1564.0, 1674.0, 1564.0, 1708.0, 89.0, 1708.0], "score": 0.98, "text": "method of aspheric ftting in future. Moreover, compared with two methods of spherical and aspheric ftting, the results calculated with two methods can be more close to"}, {"category_id": 15, "poly": [89.0, 1703.0, 305.0, 1703.0, 305.0, 1735.0, 89.0, 1735.0], "score": 0.99, "text": "the real values in clinical"}, {"category_id": 15, "poly": [89.0, 1752.0, 1555.0, 1754.0, 1555.0, 1788.0, 89.0, 1786.0], "score": 0.97, "text": "In conclusion, the method ofthe surface ftting to the IOL surface can accurately analyze the IOL's location, and six piece of AS-OCT images at three pairs symmetrical"}, {"category_id": 15, "poly": [89.0, 1786.0, 814.0, 1786.0, 814.0, 1818.0, 89.0, 1818.0], "score": 0.97, "text": "directions are enough to get ilt angle and decentration value of IOL more precisely."}, {"category_id": 15, "poly": [91.0, 1844.0, 307.0, 1844.0, 307.0, 1876.0, 91.0, 1876.0], "score": 0.98, "text": "Authors\u2019 Contribution"}, {"category_id": 15, "poly": [89.0, 1903.0, 558.0, 1903.0, 558.0, 1935.0, 89.0, 1935.0], "score": 0.99, "text": "Lin Li and Ke Wang contributed equally to this work."}, {"category_id": 15, "poly": [93.0, 1966.0, 266.0, 1966.0, 266.0, 1993.0, 93.0, 1993.0], "score": 0.92, "text": "Acknowle dgme nts"}, {"category_id": 15, "poly": [91.0, 2020.0, 1520.0, 2020.0, 1520.0, 2054.0, 91.0, 2054.0], "score": 0.98, "text": "This work was financially supported by the National Natural Science Foundation ofChina (no. 31070840), the Beijing Natural Science Foundation (3122010), and"}, {"category_id": 15, "poly": [89.0, 2051.0, 1038.0, 2051.0, 1038.0, 2083.0, 89.0, 2083.0], "score": 0.98, "text": "Bejing Leading Academic Discipline Project of Bejing Municipal education Commission (PHR201110506)."}, {"category_id": 15, "poly": [87.0, 2105.0, 207.0, 2110.0, 205.0, 2145.0, 86.0, 2139.0], "score": 1.0, "text": "References"}, {"category_id": 15, "poly": [116.0, 2168.0, 1520.0, 2168.0, 1520.0, 2203.0, 116.0, 2203.0], "score": 0.96, "text": "1. M. Scherer, E. Bertelmann, and P. Rieck, \u201cLate spontaneous in-the-bag intraocular ens and capsular tension ring dislocation in pseudoexfoliation syndrome,\u201d\""}, {"category_id": 15, "poly": [145.0, 2198.0, 1427.0, 2198.0, 1427.0, 2232.0, 145.0, 2232.0], "score": 0.98, "text": "Journal of Cataract and Refractive Surgery, vol. 32, no. 4, pp. 672-675, 2006. View at Publisher \u00b7 View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [113.0, 2227.0, 1545.0, 2227.0, 1545.0, 2261.0, 113.0, 2261.0], "score": 0.98, "text": "2. H. Saedon, W. H. Chan, and R. Radford, \u201cAnterior dislocation ofa Morcher capsular tension ring\" Journal of Cataract and Refractive Surgery, vol. 37, no."}, {"category_id": 15, "poly": [1387.0, 994.0, 1550.0, 994.0, 1550.0, 1028.0, 1387.0, 1028.0], "score": 1.0, "text": "when the scanned"}, {"category_id": 15, "poly": [630.0, 1111.0, 1481.0, 1111.0, 1481.0, 1145.0, 630.0, 1145.0], "score": 0.98, "text": "calculated from each image could cause larger accumulation errors. In our method, the errors are"}, {"category_id": 15, "poly": [1436.0, 1053.0, 1552.0, 1053.0, 1552.0, 1087.0, 1436.0, 1087.0], "score": 0.97, "text": "among of all"}, {"category_id": 15, "poly": [91.0, 994.0, 857.0, 994.0, 857.0, 1028.0, 91.0, 1028.0], "score": 0.99, "text": "Assume that IOL anterior and posterior surfaces are spheres. We give the formula oftilt"}, {"category_id": 15, "poly": [908.0, 994.0, 1329.0, 994.0, 1329.0, 1028.0, 908.0, 1028.0], "score": 0.99, "text": " and the approximate expression of decentration"}, {"category_id": 15, "poly": [89.0, 1053.0, 113.0, 1053.0, 113.0, 1087.0, 89.0, 1087.0], "score": 1.0, "text": "tit"}, {"category_id": 15, "poly": [164.0, 1053.0, 317.0, 1053.0, 317.0, 1087.0, 164.0, 1087.0], "score": 0.96, "text": " and decentration"}, {"category_id": 15, "poly": [89.0, 1111.0, 369.0, 1111.0, 369.0, 1145.0, 89.0, 1145.0], "score": 0.98, "text": "errors are not eliminated, the tit"}, {"category_id": 15, "poly": [420.0, 1111.0, 573.0, 1111.0, 573.0, 1145.0, 420.0, 1145.0], "score": 0.97, "text": " and decentration"}, {"category_id": 15, "poly": [91.0, 914.0, 724.0, 914.0, 724.0, 948.0, 91.0, 948.0], "score": 0.96, "text": "IOL tilt (see, (4). Our results are consistent with those of Xue et al. (tilt,"}, {"category_id": 15, "poly": [89.0, 716.0, 1311.0, 711.0, 1311.0, 746.0, 89.0, 750.0], "score": 0.96, "text": "results were in accordance with results of the literatures and clinical In addition, optical diameter of the IOL provided by the manufacturer is"}, {"category_id": 15, "poly": [1445.0, 716.0, 1532.0, 711.0, 1533.0, 746.0, 1445.0, 750.0], "score": 1.0, "text": "The IOL"}, {"category_id": 15, "poly": [89.0, 943.0, 280.0, 943.0, 280.0, 977.0, 89.0, 977.0], "score": 1.0, "text": "degrees; decentration"}, {"category_id": 15, "poly": [456.0, 943.0, 1560.0, 943.0, 1560.0, 977.0, 456.0, 977.0], "score": 0.99, "text": "[21]. In fact, the IOL tit and decentration were possibly involved in the difference of individuals, surgeons, and measurements."}, {"category_id": 15, "poly": [835.0, 914.0, 1030.0, 914.0, 1030.0, 948.0, 835.0, 948.0], "score": 0.96, "text": "degrees; decentration"}, {"category_id": 15, "poly": [1182.0, 914.0, 1557.0, 914.0, 1557.0, 948.0, 1182.0, 948.0], "score": 0.99, "text": "[20] and Baumeister et al. (tilt, 0.91-6.83"}, {"category_id": 15, "poly": [374.0, 1053.0, 1288.0, 1053.0, 1288.0, 1087.0, 374.0, 1087.0], "score": 0.99, "text": ", respectively. However, the tilt and decentration given by AS-OCT instrument are the maximum value of"}, {"category_id": 15, "poly": [1339.0, 1053.0, 1378.0, 1053.0, 1378.0, 1087.0, 1339.0, 1087.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [89.0, 577.0, 434.0, 577.0, 434.0, 612.0, 89.0, 612.0], "score": 0.98, "text": "posterior surfaces. The goodness-of ft"}, {"category_id": 15, "poly": [478.0, 577.0, 713.0, 577.0, 713.0, 612.0, 478.0, 612.0], "score": 0.97, "text": "is between 0.85 and 0.97."}, {"category_id": 15, "poly": [91.0, 1338.0, 1024.0, 1338.0, 1024.0, 1372.0, 91.0, 1372.0], "score": 0.97, "text": "with the decreasing of the number of images. The tilt and decentration changed in the range of 1 degree and"}, {"category_id": 15, "poly": [1112.0, 1338.0, 1562.0, 1338.0, 1562.0, 1372.0, 1112.0, 1372.0], "score": 0.99, "text": "respectively. If the erors were neglected in clinical"}, {"category_id": 15, "poly": [89.0, 1023.0, 157.0, 1021.0, 157.0, 1055.0, 89.0, 1057.0], "score": 1.0, "text": "angle is"}, {"category_id": 15, "poly": [175.0, 1023.0, 1552.0, 1021.0, 1552.0, 1055.0, 175.0, 1057.0], "score": 0.98, "text": ". The two relationships display that both oftit and decentration continuously change in cosine law. The IOL tilt and decentration are the maximum values ofthe"}, {"category_id": 15, "poly": [89.0, 1082.0, 419.0, 1082.0, 419.0, 1116.0, 89.0, 1116.0], "score": 0.99, "text": "scanned images, respectively. Figures"}, {"category_id": 15, "poly": [438.0, 1082.0, 1550.0, 1082.0, 1550.0, 1116.0, 438.0, 1116.0], "score": 0.98, "text": "and 7 show that the errors oftit and decentration produced by AS-OCT are large. In fact, each image contains errors. Ifthese"}, {"category_id": 15, "poly": [89.0, 1308.0, 1028.0, 1308.0, 1028.0, 1342.0, 89.0, 1342.0], "score": 0.97, "text": "90 degrees, and 135 degrees) [19], and 5 (five diferent directions) [22], their results are not verified. Table"}, {"category_id": 15, "poly": [1047.0, 1308.0, 1545.0, 1308.0, 1545.0, 1342.0, 1047.0, 1342.0], "score": 0.96, "text": "shows that the IOL tilt and decentration become smaller "}], "page_info": {"page_no": 3, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [104.5351791381836, 78.89070892333984, 1570.2327880859375, 78.89070892333984, 1570.2327880859375, 1424.9718017578125, 104.5351791381836, 1424.9718017578125], "score": 0.999968409538269}, {"category_id": 13, "poly": [786, 1189, 801, 1189, 801, 1203, 786, 1203], "score": 0.44, "latex": "\\cdot"}, {"category_id": 13, "poly": [804, 1130, 819, 1130, 819, 1145, 804, 1145], "score": 0.42, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 85, 757, 85, 757, 101, 743, 101], "score": 0.4, "latex": "\\cdot"}, {"category_id": 13, "poly": [1266, 259, 1280, 259, 1280, 274, 1266, 274], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [1036, 259, 1051, 259, 1051, 274, 1036, 274], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [961, 607, 974, 607, 974, 623, 961, 623], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 1071, 757, 1071, 757, 1087, 743, 1087], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [513, 1071, 527, 1071, 527, 1087, 513, 1087], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [959, 1304, 972, 1304, 972, 1319, 959, 1319], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [514, 85, 527, 85, 527, 100, 514, 100], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [1291, 1362, 1304, 1362, 1304, 1379, 1291, 1379], "score": 0.25, "latex": "\\cdot"}, {"category_id": 13, "poly": [875, 1013, 890, 1013, 890, 1029, 875, 1029], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [116.0, 107.0, 1503.0, 107.0, 1503.0, 141.0, 116.0, 141.0], "score": 0.96, "text": "3. F. Taketani, T. Matura, E. Yukawa, and Y. Hara, \u201cInfuence of intraocular lens tilt and decentration on waveffont aberrations,\u201d\" Journal of Cataract and"}, {"category_id": 15, "poly": [140.0, 132.0, 1235.0, 134.0, 1235.0, 175.0, 140.0, 173.0], "score": 0.97, "text": " Refractive Surgery, vol. 30, no. 10, p. 2158-2162, 2004. View at Publisher View at Go0ogle Scholar View at Scopus"}, {"category_id": 15, "poly": [111.0, 163.0, 1555.0, 168.0, 1555.0, 200.0, 111.0, 195.0], "score": 0.98, "text": " 4. D. L. Guyton, H. Uozato, and H. J. Wisnicki, \u201cRapid determination of intraocular lens tilt and decentration through the undilated pupil, Ophthalmology, vol. 97,"}, {"category_id": 15, "poly": [145.0, 195.0, 799.0, 195.0, 799.0, 229.0, 145.0, 229.0], "score": 0.97, "text": "no. 10, pp. 1259-1264, 1990. View at Go0gle Scholar : View at Scopus"}, {"category_id": 15, "poly": [111.0, 222.0, 1523.0, 224.0, 1523.0, 258.0, 111.0, 256.0], "score": 0.98, "text": " 5. U. Mester, T. Sauer, and H. Kaymak, \u201cDecentration and tit of a single-piece aspheric intraocular lens compared with the lens position in young phakic eyes,\""}, {"category_id": 15, "poly": [111.0, 280.0, 1488.0, 283.0, 1488.0, 317.0, 111.0, 314.0], "score": 0.97, "text": " 6. W. Zhang, Z. X. Ma, R. Y. Liu, and L. Zhang, \u201cSpherical and aspheric intraocular lens tit and decentration effect on Visual quality,\u201d Chinese Journal of"}, {"category_id": 15, "poly": [143.0, 312.0, 962.0, 312.0, 962.0, 346.0, 143.0, 346.0], "score": 0.98, "text": "Practical Ophthalmology, vol. 28, no. 11, pp. 1232-1235, 2010. View at Google Scholar"}, {"category_id": 15, "poly": [113.0, 341.0, 1567.0, 341.0, 1567.0, 373.0, 113.0, 373.0], "score": 0.97, "text": "7. Y. Nishi, N. Hirnschall A. Crnej et al., \u201cReproducibility of intraocular lens decentration and tilt measurement using a clinical Purkinje meter,\u201d\" Journal of Cataract"}, {"category_id": 15, "poly": [145.0, 370.0, 1257.0, 370.0, 1257.0, 404.0, 145.0, 404.0], "score": 0.97, "text": "and Refractive Surgery, vol. 36, no. 9, pp. 1529-1535, 2010. View at Publisher View at Go0gle Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [108.0, 395.0, 1562.0, 397.0, 1562.0, 431.0, 108.0, 429.0], "score": 0.97, "text": " 8. M. Modesti G. Pasqualito, R. Appoloni, I. Pecorella, and P. Sourdille, \u201cPreoperative and postoperative size and movements ofthe lens capsular bag: ultrasound"}, {"category_id": 15, "poly": [145.0, 426.0, 1528.0, 426.0, 1528.0, 460.0, 145.0, 460.0], "score": 0.97, "text": "biomicroscopy analysis,\" Journal of Cataract and Refractive Surgery, vol. 37, no. 10, pp. 1775-1784, 2011. View at Publisher View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 456.0, 295.0, 456.0, 295.0, 490.0, 145.0, 490.0], "score": 0.98, "text": "View at Scopus"}, {"category_id": 15, "poly": [111.0, 485.0, 1471.0, 485.0, 1471.0, 519.0, 111.0, 519.0], "score": 0.98, "text": " 9. T. Dada, R. Sihota, R. Gadia, A. Aggarwal, S. Mandal, and V. Gupta, \u201cComparison of anterior segment optical coherence tomography and ultrasound "}, {"category_id": 15, "poly": [143.0, 514.0, 1532.0, 514.0, 1532.0, 548.0, 143.0, 548.0], "score": 0.97, "text": "biomicroscopy for assessment ofthe anterior segment,\" Journal of Cataract and Refractive Surgery, vol. 33, no. 5, pp. 837-840, 2007. View at Publisher "}, {"category_id": 15, "poly": [145.0, 543.0, 524.0, 543.0, 524.0, 577.0, 145.0, 577.0], "score": 0.97, "text": "View at Google Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [103.0, 573.0, 1545.0, 573.0, 1545.0, 607.0, 103.0, 607.0], "score": 0.98, "text": "10. A. D. Castro, P. Rosales, and S. Marcos, \u201cTilt and decentration of intraocular lenses in vivo from Purkinje and Scheimpfug imaging. Validation study,\u201d\" Journal"}, {"category_id": 15, "poly": [96.0, 624.0, 1555.0, 626.0, 1555.0, 668.0, 96.0, 665.0], "score": 0.96, "text": "11. Y. W. Fang, Y. Lu, and L. Wang, \u201cDecentration and tit of foldable ntraocular enses in the lens capsule,\u201d Chinese Joumal of OptometR)R & Ophthalmology,"}, {"category_id": 15, "poly": [145.0, 660.0, 679.0, 660.0, 679.0, 694.0, 145.0, 694.0], "score": 0.97, "text": "vol. 10, no. 4, pp. 252-258, 2008. View at Google Scholar"}, {"category_id": 15, "poly": [98.0, 682.0, 1557.0, 685.0, 1557.0, 726.0, 98.0, 724.0], "score": 0.74, "text": "12. MBaister a T. oen Scheg aent ofinacu s psitionafpback aationoffabe raoar nse ys wih"}, {"category_id": 15, "poly": [140.0, 711.0, 1501.0, 714.0, 1500.0, 755.0, 140.0, 753.0], "score": 0.94, "text": "hyperopia, Journal of Cataract and Refractive Surgery, vol. 32, no. 12,p. 2098-2104, 2006. View at Pubisher Vew at Google Scholar View at "}, {"category_id": 15, "poly": [145.0, 742.0, 225.0, 749.0, 222.0, 783.0, 142.0, 776.0], "score": 1.0, "text": "Scopus"}, {"category_id": 15, "poly": [101.0, 772.0, 1508.0, 775.0, 1508.0, 809.0, 101.0, 806.0], "score": 0.98, "text": "13. D. A. Kumar, A. Agarwal, G. Prakash, S. Jacob, Y. Saravanan, and A. Agarwal, \u201cEvaluation of intraocular lens tilt with anterior segment optical coherence"}, {"category_id": 15, "poly": [143.0, 804.0, 1500.0, 804.0, 1500.0, 838.0, 143.0, 838.0], "score": 0.97, "text": "tomography,\" American Journal of Ophthalmology, vol. 151, no. 3, p. 406 412, 2011. View at Publisher \u00b7 View at Google Scholar View at Scopus "}, {"category_id": 15, "poly": [103.0, 833.0, 1520.0, 833.0, 1520.0, 867.0, 103.0, 867.0], "score": 0.98, "text": "14. Q. Zhang, W. Jin, and Q. Wang, \u201cRepeatabilty, reproducibility, and agreement of central anterior chamber depth measurements in pseudophakic and phakic"}, {"category_id": 15, "poly": [145.0, 863.0, 1557.0, 863.0, 1557.0, 897.0, 145.0, 897.0], "score": 0.97, "text": "eyes: optical coherence tomography versus ultrasound biomicroscopy,\" Journal of Cataract and Refractive Surgery, vol 36, no. 6, pp. 941-946, 2010. View"}, {"category_id": 15, "poly": [145.0, 889.0, 642.0, 892.0, 642.0, 926.0, 145.0, 923.0], "score": 0.97, "text": "at Publisher : View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [98.0, 914.0, 1535.0, 916.0, 1535.0, 958.0, 98.0, 955.0], "score": 0.94, "text": "15. Y. L. Wang J. Yang, Y. Wang, L. Luo, M. He, and Y. Liu, Bometry ofintraocular lenses using Pentacam Scheimpfug images,\u201d Eye Science, vol. 22, no. 2,"}, {"category_id": 15, "poly": [140.0, 945.0, 706.0, 945.0, 706.0, 987.0, 140.0, 987.0], "score": 0.98, "text": " pp. 119-123, 2006. View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [103.0, 977.0, 1530.0, 977.0, 1530.0, 1011.0, 103.0, 1011.0], "score": 0.98, "text": "16. X-J. Xing, X. Tang, H. Song, and W.-W. Li, \u201cComparison oftilt and decentration of four different kinds of aspheric intraocular lenses implantation, Chinese"}, {"category_id": 15, "poly": [103.0, 1035.0, 1547.0, 1035.0, 1547.0, 1070.0, 103.0, 1070.0], "score": 0.97, "text": "17. A. Koivula and M. Kugelberg, \u201cOptical coherence tomography of the anterior segment in eyes with phakic refractive lenses,\" Ophthalmology, vol. 114, no. 11,"}, {"category_id": 15, "poly": [103.0, 1094.0, 1562.0, 1094.0, 1562.0, 1128.0, 103.0, 1128.0], "score": 0.97, "text": "18. J. Korynta, J. Bok, J. Cendelin, and K. Michalova, \u201cComputer modeling of visual impairment caused by intraocular lens misalignment,\u201d Journal of Cataract and"}, {"category_id": 15, "poly": [101.0, 1148.0, 1469.0, 1152.0, 1468.0, 1187.0, 101.0, 1182.0], "score": 0.98, "text": "19. A. K. Dhivya, A. Amar, and P. Gaurav, \u201cEvaluation of intraocular lens tit with anterior segment optical coherence tomography,\u201d American Journal of"}, {"category_id": 15, "poly": [101.0, 1211.0, 1498.0, 1211.0, 1498.0, 1245.0, 101.0, 1245.0], "score": 0.96, "text": " 20. W. J. Xue, X. D. Song, and Y. Yan, \u201cSurgical treatment ofcongenital subluxated lense\u2014a random controlled clnical trial. Chnese,\u201d\" Journal of Practical"}, {"category_id": 15, "poly": [145.0, 1240.0, 834.0, 1240.0, 834.0, 1274.0, 145.0, 1274.0], "score": 0.98, "text": "Ophthalmology, vol. 28, no. 6, pp. 615-618, 2010. View at Go0gle Scholar"}, {"category_id": 15, "poly": [101.0, 1265.0, 1520.0, 1267.0, 1520.0, 1301.0, 101.0, 1299.0], "score": 0.96, "text": " 21. M. Baumeister, J. Buhren, and T. Kohnen, \u201cTilt and decentration of spherical and aspheric intraocular lenses: effect on higher-order aberrations,\" Journal of"}, {"category_id": 15, "poly": [103.0, 1325.0, 1518.0, 1325.0, 1518.0, 1360.0, 103.0, 1360.0], "score": 0.96, "text": "22. S. J. Yu, Y. Yan, and L. Li, \u201cA geometry method for evaluating the values ofintraocular ens tit and decentration,\"' in Proceedings of the 4th International"}, {"category_id": 15, "poly": [144.0, 1378.0, 296.0, 1387.0, 294.0, 1421.0, 142.0, 1413.0], "score": 1.0, "text": "View at Scopus"}, {"category_id": 15, "poly": [145.0, 1182.0, 785.0, 1182.0, 785.0, 1216.0, 145.0, 1216.0], "score": 0.97, "text": "Ophthalmology, vol. 151, no. 3, pp. 406 412, 2011. View at Publisher"}, {"category_id": 15, "poly": [802.0, 1182.0, 1018.0, 1182.0, 1018.0, 1216.0, 802.0, 1216.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [148.0, 1123.0, 803.0, 1123.0, 803.0, 1157.0, 148.0, 1157.0], "score": 0.97, "text": "Refractive Surgery, vol. 25, no. 1, pp. 100-105, 1999. View at Publisher"}, {"category_id": 15, "poly": [820.0, 1123.0, 1193.0, 1123.0, 1193.0, 1157.0, 820.0, 1157.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [758.0, 78.0, 905.0, 78.0, 905.0, 112.0, 758.0, 112.0], "score": 0.99, "text": "View at Scopus"}, {"category_id": 15, "poly": [1281.0, 253.0, 1429.0, 253.0, 1429.0, 288.0, 1281.0, 288.0], "score": 0.99, "text": "View at Scopus"}, {"category_id": 15, "poly": [143.0, 253.0, 1035.0, 253.0, 1035.0, 288.0, 143.0, 288.0], "score": 0.97, "text": " Journal of Cataract and Refractive Surgery, vol. 35, no. 3, pp. 485-490, 2009. View at Publisher"}, {"category_id": 15, "poly": [1052.0, 253.0, 1265.0, 253.0, 1265.0, 288.0, 1052.0, 288.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [143.0, 602.0, 960.0, 602.0, 960.0, 636.0, 143.0, 636.0], "score": 0.99, "text": "of Cataract and Refractive Surgery, vol. 33, no. 3, pp. 418-429, 2007. View at Publisher"}, {"category_id": 15, "poly": [975.0, 602.0, 1350.0, 602.0, 1350.0, 636.0, 975.0, 636.0], "score": 0.96, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [758.0, 1065.0, 903.0, 1065.0, 903.0, 1099.0, 758.0, 1099.0], "score": 0.99, "text": "View at Scopus"}, {"category_id": 15, "poly": [143.0, 1065.0, 512.0, 1065.0, 512.0, 1099.0, 143.0, 1099.0], "score": 0.98, "text": " pp. 2031-2037, 2007. View at Publisher"}, {"category_id": 15, "poly": [528.0, 1065.0, 742.0, 1065.0, 742.0, 1099.0, 528.0, 1099.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 1299.0, 958.0, 1299.0, 958.0, 1333.0, 145.0, 1333.0], "score": 0.99, "text": "Cataract and Refractive Surgery, vol. 35, no. 6, pp. 1006-1012, 2009. View at Publisher"}, {"category_id": 15, "poly": [973.0, 1299.0, 1350.0, 1299.0, 1350.0, 1333.0, 973.0, 1333.0], "score": 0.97, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [145.0, 78.0, 513.0, 78.0, 513.0, 112.0, 145.0, 112.0], "score": 0.97, "text": "5, pp. 967-968, 2011. View at Publisher"}, {"category_id": 15, "poly": [528.0, 78.0, 742.0, 78.0, 742.0, 112.0, 528.0, 112.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 1355.0, 1290.0, 1355.0, 1290.0, 1389.0, 145.0, 1389.0], "score": 0.98, "text": "Conference on Biomedical Engineering and Informatics (BMEI'11), vol. 3, pp. 1462-1465, October 2011. View at Publisher"}, {"category_id": 15, "poly": [1305.0, 1355.0, 1530.0, 1355.0, 1530.0, 1389.0, 1305.0, 1389.0], "score": 0.97, "text": "View at Google Scholar \u00b7"}, {"category_id": 15, "poly": [145.0, 1006.0, 874.0, 1006.0, 874.0, 1040.0, 145.0, 1040.0], "score": 0.98, "text": "Journal of Ophthalmology, vol. 46, no. 4, pp. 332-336, 2010. View at Publisher"}, {"category_id": 15, "poly": [891.0, 1006.0, 1267.0, 1006.0, 1267.0, 1040.0, 891.0, 1040.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus"}], "page_info": {"page_no": 4, "height": 2339, "width": 1653}}]
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment