Commit 6b6f40f3 authored by liukaiwen's avatar liukaiwen

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=""):
page_markdown = []
for para_block in paras_of_layout:
para_text = ''
para_type = para_block.get('type')
para_type = para_block['type']
if para_type == BlockType.Text:
para_text = merge_para_with_text(para_block)
elif para_type == BlockType.Title:
......@@ -106,32 +106,30 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""):
if mode == 'nlp':
continue
elif mode == 'mm':
img_blocks = para_block.get('blocks')
for img_block in img_blocks:
if img_block.get('type') == BlockType.ImageBody:
for line in img_block.get('lines'):
for block in para_block['blocks']:
if block['type'] == BlockType.ImageBody:
for line in block['lines']:
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"
for img_block in img_blocks:
if img_block.get('type') == BlockType.ImageCaption:
para_text += merge_para_with_text(img_block)
for block in para_block['blocks']:
if block['type'] == BlockType.ImageCaption:
para_text += merge_para_with_text(block)
elif para_type == BlockType.Table:
if mode == 'nlp':
continue
elif mode == 'mm':
table_blocks = para_block.get('blocks')
for table_block in table_blocks:
if table_block.get('type') == BlockType.TableBody:
for line in table_block.get('lines'):
for block in para_block['blocks']:
if block['type'] == BlockType.TableBody:
for line in block['lines']:
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"
for table_block in table_blocks:
if table_block.get('type') == BlockType.TableCaption:
para_text += merge_para_with_text(table_block)
elif table_block.get('type') == BlockType.TableFootnote:
para_text += merge_para_with_text(table_block)
for block in para_block['blocks']:
if block['type'] == BlockType.TableCaption:
para_text += merge_para_with_text(block)
elif block['type'] == BlockType.TableFootnote:
para_text += merge_para_with_text(block)
if para_text.strip() == '':
continue
......@@ -141,11 +139,11 @@ def ocr_mk_markdown_with_para_core_v2(paras_of_layout, mode, img_buket_path=""):
return page_markdown
def merge_para_with_text(para):
def merge_para_with_text(para_block):
para_text = ''
for line in para['lines']:
for line in para_block['lines']:
for span in line['spans']:
span_type = span.get('type')
span_type = span['type']
content = ''
language = ''
if span_type == ContentType.Text:
......@@ -159,6 +157,7 @@ def merge_para_with_text(para):
content = f"${span['content']}$"
elif span_type == ContentType.InterlineEquation:
content = f"\n$$\n{span['content']}\n$$\n"
if content != '':
if language == 'en': # 英文语境下 content间需要空格分隔
para_text += content + ' '
......
......@@ -132,7 +132,7 @@ def draw_layout_bbox(pdf_info, pdf_bytes, out_path):
pdf_docs = fitz.open("pdf", pdf_bytes)
for i, page in enumerate(pdf_docs):
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_body_list, page, [204, 204, 0], 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):
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, 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
pdf_docs.save(f"{out_path}/layout.pdf")
......
......@@ -61,7 +61,7 @@ def parse_pdf_by_ocr(pdf_bytes,
'''将所有区块的bbox整理到一起'''
all_bboxes = ocr_prepare_bboxes_for_layout_split(
img_blocks, table_blocks, discarded_blocks, text_blocks, title_blocks,
interline_equation_blocks, page_w, page_h)
interline_equations, page_w, page_h)
'''根据区块信息计算layout'''
page_boundry = [0, 0, page_w, page_h]
......
......@@ -57,8 +57,8 @@ def fix_text_overlap_title_blocks(all_bboxes):
for text_block in text_blocks:
for title_block in title_blocks:
text_block_bbox = text_block[0], text_block[1], text_block[2], text_block[3]
title_block_bbox = title_block[0], title_block[1], title_block[2], title_block[3]
text_block_bbox = text_block[:4]
title_block_bbox = title_block[:4]
if calculate_iou(text_block_bbox, title_block_bbox) > 0.8:
all_bboxes.remove(title_block)
......@@ -66,27 +66,37 @@ def fix_text_overlap_title_blocks(all_bboxes):
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:
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:
all_bboxes.remove(block)
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)
return all_bboxes
def remove_overlaps_min_blocks(all_bboxes):
# 删除重叠blocks中较小的那些
for block1 in all_bboxes.copy():
for block2 in all_bboxes.copy():
need_remove = []
for block1 in all_bboxes:
for block2 in all_bboxes:
if block1 != block2:
block1_bbox = [block1[0], block1[1], block1[2], block1[3]]
block2_bbox = [block2[0], block2[1], block2[2], block2[3]]
block1_bbox = block1[:4]
block2_bbox = block2[:4]
overlap_box = get_minbox_if_overlap_by_ratio(block1_bbox, block2_bbox, 0.8)
if overlap_box is not None:
bbox_to_remove = next(
(block for block in all_bboxes if [block[0], block[1], block[2], block[3]] == overlap_box),
None)
if bbox_to_remove is not None:
all_bboxes.remove(bbox_to_remove)
bbox_to_remove = next((block for block in all_bboxes if block[:4] == overlap_box), None)
if bbox_to_remove is not None and bbox_to_remove not in need_remove:
need_remove.append(bbox_to_remove)
if len(need_remove) > 0:
for block in need_remove:
all_bboxes.remove(block)
return all_bboxes
......@@ -9,16 +9,20 @@ from magic_pdf.libs.ocr_content_type import ContentType, BlockType
def remove_overlaps_min_spans(spans):
dropped_spans = []
# 删除重叠spans中较小的那些
for span1 in spans.copy():
for span2 in spans.copy():
for span1 in spans:
for span2 in spans:
if span1 != span2:
overlap_box = get_minbox_if_overlap_by_ratio(span1['bbox'], span2['bbox'], 0.65)
if overlap_box is not None:
bbox_to_remove = next((span for span in spans if span['bbox'] == overlap_box), None)
if bbox_to_remove is not None:
spans.remove(bbox_to_remove)
bbox_to_remove['tag'] = DropTag.SPAN_OVERLAP
dropped_spans.append(bbox_to_remove)
span_need_remove = next((span for span in spans if span['bbox'] == overlap_box), None)
if span_need_remove is not None and span_need_remove not in dropped_spans:
dropped_spans.append(span_need_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
......@@ -29,11 +33,13 @@ def remove_spans_by_bboxes(spans, need_remove_spans_bboxes):
for span in spans:
for removed_bbox in need_remove_spans_bboxes:
if calculate_overlap_area_in_bbox1_area_ratio(span['bbox'], removed_bbox) > 0.5:
need_remove_spans.append(span)
break
if span not in need_remove_spans:
need_remove_spans.append(span)
break
for span in need_remove_spans:
spans.remove(span)
if len(need_remove_spans) > 0:
for span in need_remove_spans:
spans.remove(span)
return spans
......
......@@ -74,7 +74,7 @@ def parse_union_pdf(pdf_bytes: bytes, pdf_models: list, imageWriter: AbsReaderWr
debug_mode=is_debug,
)
except Exception as e:
logger.error(f"{method.__name__} error: {e}")
logger.exception(e)
return None
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_
scikit-learn>=1.0.2
nltk==3.8.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
[{"layout_dets": [{"category_id": 1, "poly": [179.0469207763672, 539.4579467773438, 368.67236328125, 539.4579467773438, 368.67236328125, 570.8563232421875, 179.0469207763672, 570.8563232421875], "score": 0.9999997019767761}, {"category_id": 1, "poly": [75.62322235107422, 656.3840942382812, 171.6643829345703, 656.3840942382812, 171.6643829345703, 685.1553955078125, 75.62322235107422, 685.1553955078125], "score": 0.9999997019767761}, {"category_id": 1, "poly": [117.395263671875, 882.8248901367188, 1521.9913330078125, 882.8248901367188, 1521.9913330078125, 943.7774047851562, 117.395263671875, 943.7774047851562], "score": 0.9999988079071045}, {"category_id": 1, "poly": [121.51150512695312, 794.60546875, 319.03668212890625, 794.60546875, 319.03668212890625, 823.8867797851562, 121.51150512695312, 823.8867797851562], "score": 0.9999984502792358}, {"category_id": 0, "poly": [126.3370590209961, 1555.9193115234375, 541.1210327148438, 1555.9193115234375, 541.1210327148438, 1591.463623046875, 126.3370590209961, 1591.463623046875], "score": 0.9999961256980896}, {"category_id": 0, "poly": [92.8140869140625, 231.27146911621094, 735.1264038085938, 231.27146911621094, 735.1264038085938, 274.8824768066406, 92.8140869140625, 274.8824768066406], "score": 0.9999876022338867}, {"category_id": 1, "poly": [126.5475082397461, 1618.18310546875, 442.7079162597656, 1618.18310546875, 442.7079162597656, 1734.980712890625, 126.5475082397461, 1734.980712890625], "score": 0.9999706745147705}, {"category_id": 1, "poly": [100.31060028076172, 2068.47900390625, 403.9242858886719, 2068.47900390625, 403.9242858886719, 2184.978759765625, 100.31060028076172, 2184.978759765625], "score": 0.9999696016311646}, {"category_id": 1, "poly": [95.8763656616211, 456.330078125, 195.7279510498047, 456.330078125, 195.7279510498047, 485.95526123046875, 95.8763656616211, 485.95526123046875], "score": 0.999954879283905}, {"category_id": 1, "poly": [120.78211212158203, 1273.357421875, 258.3019104003906, 1273.357421875, 258.3019104003906, 1302.3172607421875, 120.78211212158203, 1302.3172607421875], "score": 0.999937891960144}, {"category_id": 2, "poly": [1350.6090087890625, 254.21243286132812, 1558.161376953125, 254.21243286132812, 1558.161376953125, 284.9269104003906, 1350.6090087890625, 284.9269104003906], "score": 0.9997021555900574}, {"category_id": 1, "poly": [116.67657470703125, 1357.779296875, 589.2650146484375, 1357.779296875, 589.2650146484375, 1423.920166015625, 116.67657470703125, 1423.920166015625], "score": 0.9996711611747742}, {"category_id": 1, "poly": [111.38509368896484, 1989.98095703125, 327.103515625, 1989.98095703125, 327.103515625, 2022.852783203125, 111.38509368896484, 2022.852783203125], "score": 0.9986104369163513}, {"category_id": 1, "poly": [93.70162963867188, 308.7748718261719, 198.2908172607422, 308.7748718261719, 198.2908172607422, 387.1202087402344, 93.70162963867188, 387.1202087402344], "score": 0.9815019965171814}, {"category_id": 1, "poly": [152.86053466796875, 1784.0943603515625, 276.9812927246094, 1784.0943603515625, 276.9812927246094, 1813.1904296875, 152.86053466796875, 1813.1904296875], "score": 0.9623009562492371}, {"category_id": 2, "poly": [103.83556365966797, 181.67459106445312, 394.9173889160156, 181.67459106445312, 394.9173889160156, 210.24830627441406, 103.83556365966797, 210.24830627441406], "score": 0.8260787725448608}, {"category_id": 3, "poly": [122.9292984008789, 972.7586669921875, 398.4557189941406, 972.7586669921875, 398.4557189941406, 1251.8038330078125, 122.9292984008789, 1251.8038330078125], "score": 0.697519063949585}, {"category_id": 1, "poly": [122.86821746826172, 972.43896484375, 398.49847412109375, 972.43896484375, 398.49847412109375, 1252.1817626953125, 122.86821746826172, 1252.1817626953125], "score": 0.5362049341201782}, {"category_id": 2, "poly": [96.36648559570312, 95.52904510498047, 300.2067565917969, 95.52904510498047, 300.2067565917969, 129.6904296875, 96.36648559570312, 129.6904296875], "score": 0.3145829141139984}, {"category_id": 1, "poly": [103.69683837890625, 181.6577606201172, 394.8996887207031, 181.6577606201172, 394.8996887207031, 210.26023864746094, 103.69683837890625, 210.26023864746094], "score": 0.24186041951179504}, {"category_id": 13, "poly": [154, 1662, 207, 1662, 207, 1687, 154, 1687], "score": 0.81, "latex": "160+"}, {"category_id": 13, "poly": [152, 1704, 202, 1704, 202, 1729, 152, 1729], "score": 0.78, "latex": "^{2.3+}"}, {"category_id": 13, "poly": [152, 1620, 195, 1620, 195, 1645, 152, 1645], "score": 0.77, "latex": "^{25+}"}, {"category_id": 15, "poly": [91.0, 234.0, 735.0, 234.0, 735.0, 275.0, 91.0, 275.0], "score": 0.98, "text": "Non-Quanto Cross Currency Option Model"}, {"category_id": 15, "poly": [90.0, 308.0, 198.0, 302.0, 200.0, 338.0, 92.0, 344.0], "score": 1.0, "text": "April 2023"}, {"category_id": 15, "poly": [91.0, 356.0, 194.0, 356.0, 194.0, 390.0, 91.0, 390.0], "score": 1.0, "text": "Authors:"}, {"category_id": 15, "poly": [89.0, 456.0, 194.0, 456.0, 194.0, 490.0, 89.0, 490.0], "score": 0.98, "text": "Tim Xiao"}, {"category_id": 15, "poly": [182.0, 541.0, 369.0, 541.0, 369.0, 575.0, 182.0, 575.0], "score": 0.99, "text": "Download file PDF"}, {"category_id": 15, "poly": [74.0, 653.0, 175.0, 653.0, 175.0, 687.0, 74.0, 687.0], "score": 0.97, "text": "igures (1)"}, {"category_id": 15, "poly": [118.0, 794.0, 322.0, 794.0, 322.0, 826.0, 118.0, 826.0], "score": 1.0, "text": "Abstract and Figures"}, {"category_id": 15, "poly": [118.0, 882.0, 1520.0, 882.0, 1520.0, 916.0, 118.0, 916.0], "score": 0.99, "text": "A non-quanto cross currency option is a currency translated option of the type foreign equity option struck in domestic currency, which is a callor"}, {"category_id": 15, "poly": [118.0, 914.0, 1161.0, 914.0, 1161.0, 948.0, 118.0, 948.0], "score": 0.98, "text": "put on a foreign asset with a strike price set in domestic currency and payoff measured in domestic currency."}, {"category_id": 15, "poly": [121.0, 1277.0, 258.0, 1277.0, 258.0, 1304.0, 121.0, 1304.0], "score": 0.98, "text": "Testing Cases"}, {"category_id": 15, "poly": [116.0, 1357.0, 590.0, 1355.0, 590.0, 1389.0, 116.0, 1391.0], "score": 0.97, "text": "Figures - uploaded by Tim XiaoAuthor content"}, {"category_id": 15, "poly": [118.0, 1394.0, 423.0, 1394.0, 423.0, 1428.0, 118.0, 1428.0], "score": 0.97, "text": "Content may be subject to copyright."}, {"category_id": 15, "poly": [125.0, 1557.0, 539.0, 1557.0, 539.0, 1591.0, 125.0, 1591.0], "score": 0.99, "text": "Discover theworld'sresearch"}, {"category_id": 15, "poly": [155.0, 1786.0, 278.0, 1786.0, 278.0, 1813.0, 155.0, 1813.0], "score": 1.0, "text": "Join for free"}, {"category_id": 15, "poly": [108.0, 1991.0, 278.0, 1991.0, 278.0, 2025.0, 108.0, 2025.0], "score": 0.93, "text": "Public Full-text"}, {"category_id": 15, "poly": [101.0, 2069.0, 396.0, 2069.0, 396.0, 2100.0, 101.0, 2100.0], "score": 1.0, "text": "Content uploadedbyTimXiao"}, {"category_id": 15, "poly": [116.0, 2117.0, 263.0, 2117.0, 263.0, 2144.0, 116.0, 2144.0], "score": 1.0, "text": "Author content"}, {"category_id": 15, "poly": [101.0, 2154.0, 406.0, 2154.0, 406.0, 2188.0, 101.0, 2188.0], "score": 1.0, "text": "Content may be subject to copyright."}, {"category_id": 15, "poly": [121.0, 1659.0, 153.0, 1662.0, 153.0, 1696.0, 120.0, 1693.0], "score": 0.59, "text": "\u00b7"}, {"category_id": 15, "poly": [208.0, 1659.0, 445.0, 1662.0, 445.0, 1696.0, 208.0, 1693.0], "score": 0.99, "text": "million public ation pages"}, {"category_id": 15, "poly": [203.0, 1698.0, 352.0, 1701.0, 352.0, 1735.0, 203.0, 1732.0], "score": 0.96, "text": "billion citations"}, {"category_id": 15, "poly": [123.0, 1620.0, 151.0, 1620.0, 151.0, 1652.0, 123.0, 1652.0], "score": 0.58, "text": "\u00b7"}, {"category_id": 15, "poly": [196.0, 1620.0, 359.0, 1620.0, 359.0, 1652.0, 196.0, 1652.0], "score": 0.98, "text": "million members "}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 2, "poly": [125.7938232421875, 93.31427764892578, 492.23907470703125, 93.31427764892578, 492.23907470703125, 202.11734008789062, 125.7938232421875, 202.11734008789062], "score": 0.9996020197868347}, {"category_id": 1, "poly": [126.84598541259766, 235.32752990722656, 845.0670166015625, 235.32752990722656, 845.0670166015625, 264.1240234375, 126.84598541259766, 264.1240234375], "score": 0.9975671768188477}, {"category_id": 15, "poly": [130.0, 236.0, 839.0, 236.0, 839.0, 268.0, 130.0, 268.0], "score": 0.99, "text": "ResearchGate has not been able to resolve any citations for this publication."}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [145.55177307128906, 668.6309814453125, 257.24169921875, 668.6309814453125, 257.24169921875, 695.2064819335938, 145.55177307128906, 695.2064819335938], "score": 0.9999933242797852}, {"category_id": 1, "poly": [145.01766967773438, 593.615966796875, 1506.2098388671875, 593.615966796875, 1506.2098388671875, 646.6071166992188, 145.01766967773438, 646.6071166992188], "score": 0.9999914169311523}, {"category_id": 1, "poly": [143.95156860351562, 1887.22021484375, 1506.3323974609375, 1887.22021484375, 1506.3323974609375, 1942.4180908203125, 143.95156860351562, 1942.4180908203125], "score": 0.9999811053276062}, {"category_id": 1, "poly": [144.60951232910156, 1431.570556640625, 1499.564208984375, 1431.570556640625, 1499.564208984375, 1508.7158203125, 144.60951232910156, 1508.7158203125], "score": 0.9999725222587585}, {"category_id": 1, "poly": [118.69535064697266, 237.30966186523438, 266.45654296875, 237.30966186523438, 266.45654296875, 266.4462585449219, 118.69535064697266, 266.4462585449219], "score": 0.9999679327011108}, {"category_id": 2, "poly": [92.89108276367188, 2102.75439453125, 323.0655517578125, 2102.75439453125, 323.0655517578125, 2131.7177734375, 92.89108276367188, 2131.7177734375], "score": 0.9965107440948486}, {"category_id": 1, "poly": [144.1619873046875, 870.9488525390625, 572.283447265625, 870.9488525390625, 572.283447265625, 901.7980346679688, 144.1619873046875, 901.7980346679688], "score": 0.992797315120697}, {"category_id": 2, "poly": [120.11006164550781, 175.89962768554688, 298.2664794921875, 175.89962768554688, 298.2664794921875, 202.36383056640625, 120.11006164550781, 202.36383056640625], "score": 0.9734638929367065}, {"category_id": 1, "poly": [142.99256896972656, 1021.8843383789062, 998.11181640625, 1021.8843383789062, 998.11181640625, 1053.299072265625, 142.99256896972656, 1053.299072265625], "score": 0.9697649478912354}, {"category_id": 1, "poly": [145.82183837890625, 345.9314880371094, 462.0758972167969, 345.9314880371094, 462.0758972167969, 563.7789916992188, 145.82183837890625, 563.7789916992188], "score": 0.9646283984184265}, {"category_id": 1, "poly": [146.78175354003906, 1596.41748046875, 397.5833435058594, 1596.41748046875, 397.5833435058594, 1859.5223388671875, 146.78175354003906, 1859.5223388671875], "score": 0.7106560468673706}, {"category_id": 1, "poly": [145.20211791992188, 1964.371337890625, 259.1165466308594, 1964.371337890625, 259.1165466308594, 1992.5338134765625, 145.20211791992188, 1992.5338134765625], "score": 0.5783706903457642}, {"category_id": 1, "poly": [154.22329711914062, 780.2138671875, 305.8406982421875, 780.2138671875, 305.8406982421875, 846.1210327148438, 154.22329711914062, 846.1210327148438], "score": 0.47266852855682373}, {"category_id": 1, "poly": [144.09463500976562, 1532.5706787109375, 257.62896728515625, 1532.5706787109375, 257.62896728515625, 1559.7835693359375, 144.09463500976562, 1559.7835693359375], "score": 0.4100267291069031}, {"category_id": 1, "poly": [145.36669921875, 916.2137451171875, 274.54339599609375, 916.2137451171875, 274.54339599609375, 993.0739135742188, 145.36669921875, 993.0739135742188], "score": 0.2700274586677551}, {"category_id": 15, "poly": [121.0, 241.0, 266.0, 241.0, 266.0, 268.0, 121.0, 268.0], "score": 0.99, "text": "Discover more"}, {"category_id": 15, "poly": [149.0, 343.0, 264.0, 349.0, 262.0, 383.0, 147.0, 377.0], "score": 0.96, "text": " Presentation"}, {"category_id": 15, "poly": [150.0, 387.0, 305.0, 387.0, 305.0, 422.0, 150.0, 422.0], "score": 0.95, "text": " Full-text available"}, {"category_id": 15, "poly": [140.0, 441.0, 460.0, 438.0, 460.0, 473.0, 140.0, 475.0], "score": 0.99, "text": " Cross Currency Swaption Model"}, {"category_id": 15, "poly": [143.0, 485.0, 239.0, 485.0, 239.0, 519.0, 143.0, 519.0], "score": 0.98, "text": "April 2023"}, {"category_id": 15, "poly": [139.0, 532.0, 271.0, 523.0, 274.0, 560.0, 142.0, 568.0], "score": 0.98, "text": "Tim Xiao"}, {"category_id": 15, "poly": [140.0, 590.0, 1505.0, 592.0, 1505.0, 626.0, 140.0, 624.0], "score": 0.97, "text": "A Cross Curency European Swaption gives the holder the option to enter into a swap to exchange cash flows in two different currencies. The domestic and foreign swap"}, {"category_id": 15, "poly": [140.0, 616.0, 1006.0, 619.0, 1006.0, 653.0, 140.0, 651.0], "score": 0.96, "text": "leg cash flows can be fixed or float ing We present an analytic solution for pricing cros currency swaption."}, {"category_id": 15, "poly": [145.0, 672.0, 258.0, 672.0, 258.0, 699.0, 145.0, 699.0], "score": 0.98, "text": "View full-text"}, {"category_id": 15, "poly": [155.0, 785.0, 261.0, 785.0, 261.0, 811.0, 155.0, 811.0], "score": 1.0, "text": "Presentation"}, {"category_id": 15, "poly": [153.0, 821.0, 305.0, 821.0, 305.0, 848.0, 153.0, 848.0], "score": 0.99, "text": "Full-text available"}, {"category_id": 15, "poly": [143.0, 875.0, 573.0, 875.0, 573.0, 906.0, 143.0, 906.0], "score": 0.98, "text": "Equity Forward with Dividend Reinvestment"}, {"category_id": 15, "poly": [145.0, 921.0, 239.0, 921.0, 239.0, 948.0, 145.0, 948.0], "score": 0.99, "text": "April 2023"}, {"category_id": 15, "poly": [139.0, 966.0, 271.0, 957.0, 274.0, 993.0, 142.0, 1002.0], "score": 0.95, "text": " Tim Xiao"}, {"category_id": 15, "poly": [143.0, 1023.0, 1004.0, 1023.0, 1004.0, 1057.0, 143.0, 1057.0], "score": 0.97, "text": "We developed a pricing model to calculate unwinding values of equity forward with dividend reinvestment."}, {"category_id": 15, "poly": [141.0, 1069.0, 261.0, 1075.0, 260.0, 1109.0, 140.0, 1103.0], "score": 0.88, "text": "View full-text "}, {"category_id": 15, "poly": [151.0, 1181.0, 264.0, 1187.0, 262.0, 1221.0, 149.0, 1215.0], "score": 0.97, "text": " Presentation"}, {"category_id": 15, "poly": [155.0, 1228.0, 303.0, 1228.0, 303.0, 1255.0, 155.0, 1255.0], "score": 0.96, "text": "Full-text available"}, {"category_id": 15, "poly": [143.0, 1279.0, 499.0, 1279.0, 499.0, 1311.0, 143.0, 1311.0], "score": 0.96, "text": "Non Quanto Convertible Bond Model"}, {"category_id": 15, "poly": [139.0, 1324.0, 239.0, 1317.0, 242.0, 1354.0, 142.0, 1360.0], "score": 0.95, "text": "April 2023"}, {"category_id": 15, "poly": [140.0, 1372.0, 275.0, 1366.0, 276.0, 1401.0, 141.0, 1406.0], "score": 0.94, "text": "Tim Xiao"}, {"category_id": 15, "poly": [140.0, 1430.0, 1496.0, 1428.0, 1496.0, 1462.0, 140.0, 1464.0], "score": 0.88, "text": "Aconvertibleond canalsoecalldby theissuer orredmed putby thebondhler, dendnt onthecontract specifications.As totheond itef, it canbeafxd"}, {"category_id": 15, "poly": [143.0, 1457.0, 1496.0, 1457.0, 1496.0, 1489.0, 143.0, 1489.0], "score": 0.97, "text": "rate bond, or a floating rate bond. In a non-quanto convertible bonds, the spot stock price in foreign currency is converted into an amount in domestic currency using the"}, {"category_id": 15, "poly": [140.0, 1481.0, 780.0, 1479.0, 780.0, 1513.0, 140.0, 1516.0], "score": 0.94, "text": " spot exchange rate. This amoun is then adjusted by th .. Show fullabstract ]"}, {"category_id": 15, "poly": [145.0, 1535.0, 261.0, 1535.0, 261.0, 1562.0, 145.0, 1562.0], "score": 0.95, "text": "View full-text"}, {"category_id": 15, "poly": [153.0, 1647.0, 261.0, 1647.0, 261.0, 1674.0, 153.0, 1674.0], "score": 0.94, "text": " Presentation"}, {"category_id": 15, "poly": [153.0, 1686.0, 305.0, 1686.0, 305.0, 1713.0, 153.0, 1713.0], "score": 0.98, "text": "Full-text available"}, {"category_id": 15, "poly": [143.0, 1737.0, 398.0, 1737.0, 398.0, 1769.0, 143.0, 1769.0], "score": 1.0, "text": "Generic FX Option Model"}, {"category_id": 15, "poly": [139.0, 1779.0, 239.0, 1773.0, 242.0, 1810.0, 142.0, 1816.0], "score": 0.97, "text": "April 2023"}, {"category_id": 15, "poly": [139.0, 1828.0, 271.0, 1819.0, 274.0, 1856.0, 142.0, 1865.0], "score": 1.0, "text": "Tim Xiao"}, {"category_id": 15, "poly": [143.0, 1917.0, 266.0, 1917.0, 266.0, 1944.0, 143.0, 1944.0], "score": 0.99, "text": "now be priced."}, {"category_id": 15, "poly": [141.0, 1958.0, 261.0, 1964.0, 260.0, 1998.0, 140.0, 1993.0], "score": 0.95, "text": "View full-tex "}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [145.03257751464844, 1152.003662109375, 260.1025085449219, 1152.003662109375, 260.1025085449219, 1234.896240234375, 145.03257751464844, 1234.896240234375], "score": 0.9999997019767761}, {"category_id": 0, "poly": [147.48472595214844, 1093.7047119140625, 339.68072509765625, 1093.7047119140625, 339.68072509765625, 1122.5821533203125, 147.48472595214844, 1122.5821533203125], "score": 0.9999944567680359}, {"category_id": 2, "poly": [145.72323608398438, 91.14627838134766, 395.4117126464844, 91.14627838134766, 395.4117126464844, 252.55430603027344, 145.72323608398438, 252.55430603027344], "score": 0.9999925494194031}, {"category_id": 1, "poly": [147.83460998535156, 876.3418579101562, 259.32879638671875, 876.3418579101562, 259.32879638671875, 908.5487670898438, 147.83460998535156, 908.5487670898438], "score": 0.9999768733978271}, {"category_id": 1, "poly": [147.67713928222656, 820.9615478515625, 230.88519287109375, 820.9615478515625, 230.88519287109375, 849.6435546875, 147.67713928222656, 849.6435546875], "score": 0.9999751448631287}, {"category_id": 1, "poly": [144.82284545898438, 492.4263610839844, 237.4355010986328, 492.4263610839844, 237.4355010986328, 637.3516845703125, 144.82284545898438, 637.3516845703125], "score": 0.9999589920043945}, {"category_id": 1, "poly": [147.69908142089844, 1433.6260986328125, 594.3590087890625, 1433.6260986328125, 594.3590087890625, 1461.4381103515625, 147.69908142089844, 1461.4381103515625], "score": 0.9996242523193359}, {"category_id": 0, "poly": [147.33973693847656, 444.00946044921875, 246.31552124023438, 444.00946044921875, 246.31552124023438, 473.3200988769531, 147.33973693847656, 473.3200988769531], "score": 0.9994767904281616}, {"category_id": 1, "poly": [1158.7498779296875, 1493.6024169921875, 1473.79150390625, 1493.6024169921875, 1473.79150390625, 1520.931640625, 1158.7498779296875, 1520.931640625], "score": 0.7315104007720947}, {"category_id": 2, "poly": [1158.19775390625, 1493.51318359375, 1473.65380859375, 1493.51318359375, 1473.65380859375, 1520.7437744140625, 1158.19775390625, 1520.7437744140625], "score": 0.5131810903549194}, {"category_id": 1, "poly": [144.39974975585938, 818.6524658203125, 262.8362731933594, 818.6524658203125, 262.8362731933594, 912.287841796875, 144.39974975585938, 912.287841796875], "score": 0.21747881174087524}, {"category_id": 13, "poly": [146, 1435, 167, 1435, 167, 1457, 146, 1457], "score": 0.63, "latex": "\\copyright"}, {"category_id": 15, "poly": [149.0, 443.0, 247.0, 451.0, 244.0, 481.0, 147.0, 472.0], "score": 1.0, "text": "Company"}, {"category_id": 15, "poly": [147.0, 496.0, 237.0, 503.0, 235.0, 537.0, 144.0, 531.0], "score": 1.0, "text": "About us"}, {"category_id": 15, "poly": [144.0, 547.0, 216.0, 557.0, 210.0, 594.0, 139.0, 583.0], "score": 1.0, "text": "News"}, {"category_id": 15, "poly": [145.0, 599.0, 225.0, 605.0, 222.0, 642.0, 142.0, 635.0], "score": 0.9, "text": "Careers"}, {"category_id": 15, "poly": [145.0, 821.0, 234.0, 821.0, 234.0, 855.0, 145.0, 855.0], "score": 1.0, "text": "Support"}, {"category_id": 15, "poly": [145.0, 877.0, 263.0, 877.0, 263.0, 911.0, 145.0, 911.0], "score": 0.99, "text": "Help Center"}, {"category_id": 15, "poly": [148.0, 1094.0, 342.0, 1094.0, 342.0, 1126.0, 148.0, 1126.0], "score": 1.0, "text": "Business solutions"}, {"category_id": 15, "poly": [145.0, 1150.0, 261.0, 1150.0, 261.0, 1184.0, 145.0, 1184.0], "score": 1.0, "text": "Advertising"}, {"category_id": 15, "poly": [148.0, 1206.0, 248.0, 1206.0, 248.0, 1233.0, 148.0, 1233.0], "score": 1.0, "text": "Recruiting"}, {"category_id": 15, "poly": [168.0, 1433.0, 593.0, 1433.0, 593.0, 1464.0, 168.0, 1464.0], "score": 0.99, "text": "2008-2023 ResearchGate GmbH. All rights reserved."}], "page_info": {"page_no": 3, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.3582534790039, 74.89075469970703, 198.88485717773438, 74.89075469970703, 198.88485717773438, 186.62997436523438, 87.3582534790039, 186.62997436523438], "score": 0.9999958276748657}, {"category_id": 1, "poly": [116.99508666992188, 1113.3433837890625, 404.0977478027344, 1113.3433837890625, 404.0977478027344, 2043.5989990234375, 116.99508666992188, 2043.5989990234375], "score": 0.9999865293502808}, {"category_id": 1, "poly": [89.36714935302734, 2149.79248046875, 240.46218872070312, 2149.79248046875, 240.46218872070312, 2175.1220703125, 89.36714935302734, 2175.1220703125], "score": 0.9999708533287048}, {"category_id": 3, "poly": [85.21200561523438, 514.7850952148438, 1569.5164794921875, 514.7850952148438, 1569.5164794921875, 819.9174194335938, 85.21200561523438, 819.9174194335938], "score": 0.9999600648880005}, {"category_id": 1, "poly": [118.73188781738281, 410.0584716796875, 242.65625, 410.0584716796875, 242.65625, 496.72772216796875, 118.73188781738281, 496.72772216796875], "score": 0.9999237060546875}, {"category_id": 1, "poly": [88.45821380615234, 842.8271484375, 603.7357177734375, 842.8271484375, 603.7357177734375, 873.3505859375, 88.45821380615234, 873.3505859375], "score": 0.9984378218650818}, {"category_id": 1, "poly": [86.3029556274414, 2058.1669921875, 628.3001708984375, 2058.1669921875, 628.3001708984375, 2133.32080078125, 86.3029556274414, 2133.32080078125], "score": 0.9977549314498901}, {"category_id": 2, "poly": [90.50910949707031, 2206.423095703125, 1421.1888427734375, 2206.423095703125, 1421.1888427734375, 2245.4736328125, 90.50910949707031, 2245.4736328125], "score": 0.9768819808959961}, {"category_id": 1, "poly": [530.5018920898438, 1067.8828125, 655.8790283203125, 1067.8828125, 655.8790283203125, 1096.4207763671875, 530.5018920898438, 1096.4207763671875], "score": 0.8479697108268738}, {"category_id": 2, "poly": [530.5390014648438, 1068.0194091796875, 655.6405029296875, 1068.0194091796875, 655.6405029296875, 1096.383056640625, 530.5390014648438, 1096.383056640625], "score": 0.4273483157157898}, {"category_id": 2, "poly": [89.9920883178711, 355.6634216308594, 374.75653076171875, 355.6634216308594, 374.75653076171875, 385.0209655761719, 89.9920883178711, 385.0209655761719], "score": 0.3966638445854187}, {"category_id": 2, "poly": [88.96780395507812, 312.33709716796875, 385.1509094238281, 312.33709716796875, 385.1509094238281, 390.05267333984375, 88.96780395507812, 390.05267333984375], "score": 0.3079042136669159}, {"category_id": 1, "poly": [89.7560806274414, 355.71124267578125, 377.57391357421875, 355.71124267578125, 377.57391357421875, 385.0514221191406, 89.7560806274414, 385.0514221191406], "score": 0.20521578192710876}, {"category_id": 13, "poly": [201, 2206, 258, 2206, 258, 2244, 201, 2244], "score": 0.89, "latex": "H_{\\infty}"}, {"category_id": 15, "poly": [143.0, 412.0, 209.0, 412.0, 209.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": [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 ofContents"}, {"category_id": 15, "poly": [140.0, 1118.0, 320.0, 1118.0, 320.0, 1152.0, 140.0, 1152.0], "score": 0.95, "text": "About this Joumal \u00b7"}, {"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.94, "text": "Abstracting and Indexing \u00b7:"}, {"category_id": 15, "poly": [138.0, 1174.0, 313.0, 1180.0, 312.0, 1214.0, 137.0, 1208.0], "score": 0.96, "text": "Advance Access -"}, {"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": [139.0, 1230.0, 286.0, 1236.0, 284.0, 1270.0, 137.0, 1264.0], "score": 0.94, "text": "Annual Issues \u00b7"}, {"category_id": 15, "poly": [138.0, 1260.0, 396.0, 1262.0, 396.0, 1299.0, 138.0, 1296.0], "score": 0.95, "text": "Article Processing Charges "}, {"category_id": 15, "poly": [139.0, 1288.0, 301.0, 1294.0, 299.0, 1328.0, 137.0, 1323.0], "score": 0.97, "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": [141.0, 1406.0, 337.0, 1411.0, 336.0, 1443.0, 140.0, 1437.0], "score": 0.96, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [140.0, 1440.0, 298.0, 1440.0, 298.0, 1467.0, 140.0, 1467.0], "score": 0.99, "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.96, "text": "Editorial Workfow \u00b7:"}, {"category_id": 15, "poly": [143.0, 1498.0, 322.0, 1498.0, 322.0, 1525.0, 143.0, 1525.0], "score": 0.95, "text": " Free eTOC Alerts \u00b7"}, {"category_id": 15, "poly": [143.0, 1528.0, 315.0, 1528.0, 315.0, 1554.0, 143.0, 1554.0], "score": 0.96, "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": 1.0, "text": "Reviewers Acknowledgment "}, {"category_id": 15, "poly": [141.0, 1579.0, 345.0, 1584.0, 344.0, 1618.0, 140.0, 1613.0], "score": 0.94, "text": " Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1608.0, 377.0, 1613.0, 376.0, 1647.0, 137.0, 1642.0], "score": 0.99, "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.96, "text": "Published Special Issues \u00b7"}, {"category_id": 15, "poly": [138.0, 1749.0, 364.0, 1752.0, 364.0, 1786.0, 138.0, 1783.0], "score": 0.99, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [143.0, 1805.0, 231.0, 1805.0, 231.0, 1832.0, 143.0, 1832.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1832.0, 280.0, 1832.0, 280.0, 1859.0, 143.0, 1859.0], "score": 0.97, "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": [145.0, 1922.0, 288.0, 1922.0, 288.0, 1949.0, 145.0, 1949.0], "score": 0.99, "text": "Full- Text XML"}, {"category_id": 15, "poly": [145.0, 1952.0, 317.0, 1952.0, 317.0, 1978.0, 145.0, 1978.0], "score": 1.0, "text": "Linked References"}, {"category_id": 15, "poly": [140.0, 1973.0, 362.0, 1976.0, 361.0, 2010.0, 140.0, 2008.0], "score": 0.96, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [140.0, 2003.0, 362.0, 2005.0, 361.0, 2039.0, 140.0, 2037.0], "score": 0.99, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [86.0, 2051.0, 512.0, 2056.0, 511.0, 2088.0, 86.0, 2083.0], "score": 0.99, "text": "Mathematical Problems in Engineering"}, {"category_id": 15, "poly": [84.0, 2076.0, 534.0, 2073.0, 534.0, 2107.0, 84.0, 2110.0], "score": 0.99, "text": "Volume 2013 (2013), Article ID 574571,"}, {"category_id": 15, "poly": [523.0, 2078.0, 626.0, 2086.0, 623.0, 2113.0, 521.0, 2104.0], "score": 0.91, "text": "\uff0c 8 pages"}, {"category_id": 15, "poly": [86.0, 2103.0, 526.0, 2103.0, 526.0, 2134.0, 86.0, 2134.0], "score": 0.99, "text": "http://dx.doi.0rg/10.1155/2013/574571"}, {"category_id": 15, "poly": [89.0, 2149.0, 241.0, 2149.0, 241.0, 2176.0, 89.0, 2176.0], "score": 0.99, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [90.29815673828125, 310.5538024902344, 315.6524963378906, 310.5538024902344, 315.6524963378906, 339.793701171875, 90.29815673828125, 339.793701171875], "score": 0.9999997615814209}, {"category_id": 1, "poly": [87.25030517578125, 258.2095642089844, 496.4718322753906, 258.2095642089844, 496.4718322753906, 288.2512512207031, 87.25030517578125, 288.2512512207031], "score": 0.9999996423721313}, {"category_id": 1, "poly": [89.43354034423828, 139.74168395996094, 1165.4429931640625, 139.74168395996094, 1165.4429931640625, 238.32864379882812, 89.43354034423828, 238.32864379882812], "score": 0.9999995231628418}, {"category_id": 0, "poly": [90.16768646240234, 451.54296875, 277.71820068359375, 451.54296875, 277.71820068359375, 479.8429870605469, 90.16768646240234, 479.8429870605469], "score": 0.9999932646751404}, {"category_id": 1, "poly": [89.8242416381836, 362.2557373046875, 1542.560546875, 362.2557373046875, 1542.560546875, 422.63787841796875, 89.8242416381836, 422.63787841796875], "score": 0.9999925494194031}, {"category_id": 1, "poly": [103.10397338867188, 505.8548583984375, 1570.5694580078125, 505.8548583984375, 1570.5694580078125, 1709.22509765625, 103.10397338867188, 1709.22509765625], "score": 0.9999882578849792}, {"category_id": 2, "poly": [89.49260711669922, 81.8182144165039, 328.0972900390625, 81.8182144165039, 328.0972900390625, 115.02182006835938, 89.49260711669922, 115.02182006835938], "score": 0.9994227290153503}, {"category_id": 13, "poly": [181, 364, 204, 364, 204, 388, 181, 388], "score": 0.7, "latex": "\\copyright"}, {"category_id": 13, "poly": [513, 1069, 527, 1069, 527, 1084, 513, 1084], "score": 0.43, "latex": "\\cdot"}, {"category_id": 13, "poly": [252, 576, 267, 576, 267, 591, 252, 591], "score": 0.38, "latex": "\\cdot"}, {"category_id": 13, "poly": [409, 690, 423, 690, 423, 708, 409, 708], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [901, 691, 915, 691, 915, 708, 901, 708], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 574, 758, 574, 758, 591, 743, 591], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [1485, 1647, 1499, 1647, 1499, 1663, 1485, 1663], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [1050, 1126, 1064, 1126, 1064, 1143, 1050, 1143], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [643, 634, 656, 634, 656, 649, 643, 649], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [724, 1185, 738, 1185, 738, 1201, 724, 1201], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [558, 1126, 572, 1126, 572, 1142, 558, 1142], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [933, 1417, 946, 1417, 946, 1434, 933, 1434], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [1223, 1648, 1237, 1648, 1237, 1664, 1223, 1664], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [1005, 1068, 1020, 1068, 1020, 1085, 1005, 1085], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [481, 575, 496, 575, 496, 591, 481, 591], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [953, 1185, 966, 1185, 966, 1201, 953, 1201], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [1134, 634, 1149, 634, 1149, 649, 1134, 649], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 1068, 757, 1068, 757, 1084, 743, 1084], "score": 0.26, "latex": "\\cdot"}, {"category_id": 15, "poly": [89.0, 136.0, 859.0, 139.0, 858.0, 173.0, 89.0, 171.0], "score": 0.96, "text": " Reliabilty and Systems Engineering School, Beihang University, Bejing 100191, China"}, {"category_id": 15, "poly": [86.0, 171.0, 721.0, 173.0, 721.0, 207.0, 86.0, 205.0], "score": 0.98, "text": "2China Astronaut Research and Training Center, Beijing 100094, China"}, {"category_id": 15, "poly": [86.0, 200.0, 1164.0, 202.0, 1163.0, 244.0, 86.0, 241.0], "score": 0.87, "text": "3SchoolofElectricaland Auomation Engneerg Nanjng NormalUniversity, 78Bancang Street Nanjng 210042, Cha"}, {"category_id": 15, "poly": [89.0, 261.0, 499.0, 261.0, 499.0, 292.0, 89.0, 292.0], "score": 0.98, "text": "Received 5 May 2013; Accepted 1 July 2013"}, {"category_id": 15, "poly": [86.0, 309.0, 315.0, 309.0, 315.0, 341.0, 86.0, 341.0], "score": 0.98, "text": " Academic Editor: Jun Hu"}, {"category_id": 15, "poly": [86.0, 387.0, 876.0, 390.0, 876.0, 431.0, 86.0, 429.0], "score": 0.96, "text": "distribution, and reproduction in any medium, provided the original work is propery cited."}, {"category_id": 15, "poly": [89.0, 453.0, 283.0, 453.0, 283.0, 485.0, 89.0, 485.0], "score": 1.0, "text": "Linked References"}, {"category_id": 15, "poly": [113.0, 512.0, 1090.0, 512.0, 1090.0, 546.0, 113.0, 546.0], "score": 0.99, "text": "1. B. D. O. Anderson and J. B. Moore, Optimal Filtering, Prentice-Hal, Englewood Clifs, NJ, USA, 1979."}, {"category_id": 15, "poly": [111.0, 538.0, 1560.0, 541.0, 1559.0, 575.0, 111.0, 573.0], "score": 0.97, "text": " 2. D. S. Bernstein and W. M. Haddad, \u201cSteady-state Kalman fitering with an Ho error bound,\u201d Systems & Control Letters, vol. 12, no. 1, pp. 9-16, 1989. View"}, {"category_id": 15, "poly": [108.0, 592.0, 1564.0, 595.0, 1564.0, 636.0, 108.0, 633.0], "score": 0.77, "text": "3. MJr anAElsayed, SoionofthHoptallnear fitrng probmfr disrett systes, Istitteof letrical an Eletrons Egin,"}, {"category_id": 15, "poly": [108.0, 651.0, 1545.0, 653.0, 1545.0, 694.0, 108.0, 692.0], "score": 0.9, "text": "4. K. M Nagpal and P. P. Khargonekar, \u201cFilterng and smothng in an H seting\"Institute of Electrical and Electronics Enginers, vol 36, no. 2, pp. 15"}, {"category_id": 15, "poly": [108.0, 711.0, 1550.0, 714.0, 1550.0, 748.0, 108.0, 746.0], "score": 0.97, "text": " 5. B. O. S. Teixeira, J. Chandrasekar, H. J. Palanthandalam-Madapusi L. A. B. Torres, L. A. Aguirre, and D. S. Bernstein, \u201cGain-constrained Kalman fitering for"}, {"category_id": 15, "poly": [145.0, 743.0, 1535.0, 743.0, 1535.0, 777.0, 145.0, 777.0], "score": 0.97, "text": "linear and nonlinear systems,\" IEEE Transactions on Signal Processing, vol. 56, no. 9, pp. 4113-4123, 2008. View at Publisher View at Google Scholar \u00b7"}, {"category_id": 15, "poly": [148.0, 775.0, 337.0, 775.0, 337.0, 804.0, 148.0, 804.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [111.0, 802.0, 1560.0, 802.0, 1560.0, 836.0, 111.0, 836.0], "score": 0.97, "text": " 6. M. Fu, C. E. de Souza, and L. Xie, Hoo estimation for uncertain systems,\u201d\" International Journal of Robust and Nonlinear Control, vol. 2, pp. 87-105, 1992."}, {"category_id": 15, "poly": [143.0, 828.0, 367.0, 831.0, 366.0, 865.0, 143.0, 862.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [111.0, 860.0, 1560.0, 860.0, 1560.0, 894.0, 111.0, 894.0], "score": 0.95, "text": "7. H. Li and M. Fu, \u201cAn LMI approach to robust Ho fltering for linear systems,\u201d\" in Proceedings of the 34th IEEE Conference Decision and Control, pp. 3608-"}, {"category_id": 15, "poly": [145.0, 889.0, 578.0, 889.0, 578.0, 921.0, 145.0, 921.0], "score": 0.99, "text": "3613, New Orleans, La, USA, December 1995."}, {"category_id": 15, "poly": [111.0, 919.0, 1518.0, 919.0, 1518.0, 953.0, 111.0, 953.0], "score": 0.97, "text": " 8. L. Xie and C. E. de Souza, \u201cOn robust fitering for linear systems with parameter uncertainty,\" in Proceedings of the 34th IEEE Conference Decision and "}, {"category_id": 15, "poly": [145.0, 948.0, 758.0, 948.0, 758.0, 979.0, 145.0, 979.0], "score": 0.99, "text": " Control, pp. 2087-2092, New Orleans, La, USA, December 1995."}, {"category_id": 15, "poly": [108.0, 972.0, 1560.0, 975.0, 1559.0, 1009.0, 108.0, 1006.0], "score": 0.97, "text": "9. L. Xie, C. E. de Souza, and M. Fu, \u201cHo estimation for discrete-time linear uncertain systems,\u201d\" International Journal of Robust and Nonlinear Control, vol. 1,"}, {"category_id": 15, "poly": [143.0, 1004.0, 549.0, 1004.0, 549.0, 1038.0, 143.0, 1038.0], "score": 0.97, "text": " pp. 111-123, 1991. View at Google Scholar"}, {"category_id": 15, "poly": [101.0, 1031.0, 1560.0, 1033.0, 1559.0, 1067.0, 101.0, 1065.0], "score": 0.98, "text": "10. H. J. Chizeck, A. S. Wilsky, and D. Castanon, Discrete-time Markovian-jump linear quadratic optimal control, International Journal of Control, vol. 43, no."}, {"category_id": 15, "poly": [101.0, 1089.0, 1562.0, 1092.0, 1562.0, 1126.0, 101.0, 1123.0], "score": 0.97, "text": "11. X. Feng, K. A. Loparo, Y. Ji, and H. J. Chizeck, \u201cStochastic stability properties of jump linear systems,\u201d Institute of Electrical and Electronics Engineers, vol."}, {"category_id": 15, "poly": [103.0, 1150.0, 1532.0, 1150.0, 1532.0, 1184.0, 103.0, 1184.0], "score": 0.96, "text": "12. Y. Ji and H. J. Chizeck, \u201cControllabity, stabilizability, and continuous-time Markovianjump linear quadratic control\" Institute of Electrical and Electronics"}, {"category_id": 15, "poly": [103.0, 1208.0, 1557.0, 1208.0, 1557.0, 1243.0, 103.0, 1243.0], "score": 0.96, "text": "13. B. Zhang and Y. Li, \u201cExponential L2 -Hoo fitering for distributed delay systems with Markovian jumping parameters,\u201d\" Signal Processing, vol. 93, pp. 206-216,"}, {"category_id": 15, "poly": [143.0, 1233.0, 421.0, 1235.0, 420.0, 1270.0, 143.0, 1267.0], "score": 0.98, "text": " 2013. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 1265.0, 1562.0, 1265.0, 1562.0, 1299.0, 103.0, 1299.0], "score": 0.97, "text": "14. C. E. de Souza and M. D. Fragoso, \u201cHoo fitering for Markovian jump linear systems,\u201d\u2019 in Proceedings of the 35th IEEE Conference on Decision and Control,"}, {"category_id": 15, "poly": [143.0, 1294.0, 576.0, 1294.0, 576.0, 1328.0, 143.0, 1328.0], "score": 0.97, "text": " pp. 4814 4818, Kobe, Japan, December 1996."}, {"category_id": 15, "poly": [106.0, 1323.0, 1518.0, 1323.0, 1518.0, 1357.0, 106.0, 1357.0], "score": 0.96, "text": "15. C. E. de Souza and M. D. Fragoso, \u201cRobust Ho fitering for Markovian jump linear systems,\u201d in Proceedings of the 35th IEEE Conference Decision and"}, {"category_id": 15, "poly": [148.0, 1352.0, 659.0, 1352.0, 659.0, 1386.0, 148.0, 1386.0], "score": 0.99, "text": "Control, p. 4808-4813, Kobe, Japan, December 1996."}, {"category_id": 15, "poly": [103.0, 1381.0, 1493.0, 1381.0, 1493.0, 1416.0, 103.0, 1416.0], "score": 0.97, "text": "16. C. E. de Souza and M. D. Fragoso, \u201cRobust Ho fltering for uncertain Markovian jump linear systems,\u201d International Journal of Robust and Nonlinear"}, {"category_id": 15, "poly": [103.0, 1440.0, 1525.0, 1440.0, 1525.0, 1474.0, 103.0, 1474.0], "score": 0.97, "text": "17. S. Wen, Z. Zeng, and T. Huang, \u201cReliable Ho flter design for a class of mixed-delay Markovian jump systems with stochastic nonlinearities and multiplicative"}, {"category_id": 15, "poly": [145.0, 1469.0, 1510.0, 1469.0, 1510.0, 1503.0, 145.0, 1503.0], "score": 0.98, "text": "noises via delay-partitioning method,\" International Journal of Control, Automation and Systems, vol. 10, pp. 711-720, 2012. View at Google Scholar"}, {"category_id": 15, "poly": [98.0, 1491.0, 1501.0, 1494.0, 1500.0, 1535.0, 98.0, 1533.0], "score": 0.92, "text": "18. R. Zhang, Y. Zhang, C. Hu, M. Q.-H Meng, and Q. He, Delay-range-dependent Ho fiterng for two-dmensional Markovian jmp systens with ntrval"}, {"category_id": 15, "poly": [143.0, 1523.0, 1491.0, 1523.0, 1491.0, 1564.0, 143.0, 1564.0], "score": 0.96, "text": "delays,\" IET Control Theory & Applications, vol 5, no. 18, pp. 2191-2199, 2011. Vew at Publisher View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1554.0, 1555.0, 1554.0, 1555.0, 1589.0, 103.0, 1589.0], "score": 0.97, "text": "19. X Li and C. E. de Souza, \u201cCriteria for robust stability and stabilization ofuncertain inear systems with state delay,\u201d Automatica, vol. 33, no. 9, pp. 1657-1662,"}, {"category_id": 15, "poly": [148.0, 1584.0, 792.0, 1584.0, 792.0, 1618.0, 148.0, 1618.0], "score": 0.97, "text": "1997. View at Publisher : View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1613.0, 1542.0, 1613.0, 1542.0, 1647.0, 103.0, 1647.0], "score": 0.97, "text": "20. X. Li and C. E. de Souza, \u201cDelay-dependent robust stability and stabilization of uncertain linear delay systems: a linear matrix inequality approach, Institute of"}, {"category_id": 15, "poly": [148.0, 1671.0, 280.0, 1671.0, 280.0, 1706.0, 148.0, 1706.0], "score": 1.0, "text": "at MathSciNet"}, {"category_id": 15, "poly": [89.0, 363.0, 180.0, 363.0, 180.0, 397.0, 89.0, 397.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 363.0, 1540.0, 363.0, 1540.0, 397.0, 205.0, 397.0], "score": 0.99, "text": "2013 Yi Yang and Junwei Lu. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use,"}, {"category_id": 15, "poly": [148.0, 1062.0, 512.0, 1062.0, 512.0, 1096.0, 148.0, 1096.0], "score": 0.97, "text": "1, pp. 213-231, 1986. View at Publisher"}, {"category_id": 15, "poly": [145.0, 570.0, 251.0, 570.0, 251.0, 604.0, 145.0, 604.0], "score": 0.99, "text": "at Publisher"}, {"category_id": 15, "poly": [143.0, 682.0, 408.0, 685.0, 408.0, 719.0, 143.0, 716.0], "score": 0.99, "text": "166, 1991. View at Publisher"}, {"category_id": 15, "poly": [424.0, 682.0, 900.0, 685.0, 900.0, 719.0, 424.0, 716.0], "score": 0.96, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [916.0, 682.0, 1104.0, 685.0, 1104.0, 719.0, 916.0, 716.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [759.0, 570.0, 947.0, 570.0, 947.0, 604.0, 759.0, 604.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [1500.0, 1642.0, 1552.0, 1642.0, 1552.0, 1676.0, 1500.0, 1676.0], "score": 1.0, "text": "View"}, {"category_id": 15, "poly": [1065.0, 1121.0, 1252.0, 1121.0, 1252.0, 1155.0, 1065.0, 1155.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [140.0, 624.0, 642.0, 621.0, 642.0, 663.0, 140.0, 665.0], "score": 0.94, "text": "vol. 38, no. 7, pp. 1092-1104, 1990. View at Publisher"}, {"category_id": 15, "poly": [145.0, 1179.0, 723.0, 1179.0, 723.0, 1213.0, 145.0, 1213.0], "score": 0.97, "text": "Engineers, vol. 35, no. 7, pp. 777-788, 1990. View at Publisher"}, {"category_id": 15, "poly": [145.0, 1121.0, 557.0, 1121.0, 557.0, 1155.0, 145.0, 1155.0], "score": 0.99, "text": "37, no. 1, pp. 38-53, 1992. View at Publisher"}, {"category_id": 15, "poly": [573.0, 1121.0, 1049.0, 1121.0, 1049.0, 1155.0, 573.0, 1155.0], "score": 0.98, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [145.0, 1411.0, 932.0, 1411.0, 932.0, 1445.0, 145.0, 1445.0], "score": 0.98, "text": "Control, vol. 12, no. 5, pp. 435-446, 2002. View at Publisher View at Go0gle Scholar"}, {"category_id": 15, "poly": [947.0, 1411.0, 1397.0, 1411.0, 1397.0, 1445.0, 947.0, 1445.0], "score": 0.97, "text": "View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1642.0, 1222.0, 1642.0, 1222.0, 1676.0, 148.0, 1676.0], "score": 0.98, "text": "Electrical and Electronics Engineers, vol. 42, no. 8, pp. 1144-1148, 1997. View at Publisher \u00b7 View at Google Scholar"}, {"category_id": 15, "poly": [1238.0, 1642.0, 1484.0, 1642.0, 1484.0, 1676.0, 1238.0, 1676.0], "score": 0.97, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1021.0, 1062.0, 1208.0, 1062.0, 1208.0, 1096.0, 1021.0, 1096.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [268.0, 570.0, 480.0, 570.0, 480.0, 604.0, 268.0, 604.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [497.0, 570.0, 742.0, 570.0, 742.0, 604.0, 497.0, 604.0], "score": 0.99, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [739.0, 1179.0, 952.0, 1179.0, 952.0, 1213.0, 739.0, 1213.0], "score": 0.96, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [967.0, 1179.0, 1414.0, 1179.0, 1414.0, 1213.0, 967.0, 1213.0], "score": 0.98, "text": "View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [657.0, 624.0, 1133.0, 621.0, 1133.0, 663.0, 657.0, 665.0], "score": 0.95, "text": "View at Google Scholar View at Zentralbat MATH"}, {"category_id": 15, "poly": [1150.0, 624.0, 1338.0, 621.0, 1338.0, 663.0, 1150.0, 665.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [528.0, 1062.0, 742.0, 1062.0, 742.0, 1096.0, 528.0, 1096.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [758.0, 1062.0, 1004.0, 1062.0, 1004.0, 1096.0, 758.0, 1096.0], "score": 0.97, "text": "View at Zentralblatt MATH"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.34127044677734, 74.84285736083984, 198.96192932128906, 74.84285736083984, 198.96192932128906, 186.61492919921875, 87.34127044677734, 186.61492919921875], "score": 0.9999977350234985}, {"category_id": 1, "poly": [117.28620910644531, 1038.5125732421875, 404.07122802734375, 1038.5125732421875, 404.07122802734375, 1968.02099609375, 117.28620910644531, 1968.02099609375], "score": 0.99998939037323}, {"category_id": 1, "poly": [89.49173736572266, 2073.978271484375, 239.2662811279297, 2073.978271484375, 239.2662811279297, 2100.392822265625, 89.49173736572266, 2100.392822265625], "score": 0.9999732971191406}, {"category_id": 1, "poly": [530.5352172851562, 991.89990234375, 656.2816772460938, 991.89990234375, 656.2816772460938, 1020.5838012695312, 530.5352172851562, 1020.5838012695312], "score": 0.999929666519165}, {"category_id": 1, "poly": [118.7813491821289, 409.962158203125, 245.50466918945312, 409.962158203125, 245.50466918945312, 496.9958190917969, 118.7813491821289, 496.9958190917969], "score": 0.999922513961792}, {"category_id": 1, "poly": [85.843994140625, 1983.2537841796875, 628.0003051757812, 1983.2537841796875, 628.0003051757812, 2057.158447265625, 85.843994140625, 2057.158447265625], "score": 0.9999217391014099}, {"category_id": 3, "poly": [88.17593383789062, 515.35888671875, 1570.7386474609375, 515.35888671875, 1570.7386474609375, 770.6958618164062, 88.17593383789062, 770.6958618164062], "score": 0.994332492351532}, {"category_id": 1, "poly": [89.81619262695312, 355.65985107421875, 375.0465087890625, 355.65985107421875, 375.0465087890625, 385.1306457519531, 89.81619262695312, 385.1306457519531], "score": 0.9594439268112183}, {"category_id": 4, "poly": [89.77859497070312, 769.3564453125, 604.736083984375, 769.3564453125, 604.736083984375, 797.360595703125, 89.77859497070312, 797.360595703125], "score": 0.9471120238304138}, {"category_id": 1, "poly": [86.25837707519531, 2197.17578125, 321.7710876464844, 2197.17578125, 321.7710876464844, 2230.809326171875, 86.25837707519531, 2230.809326171875], "score": 0.9042510986328125}, {"category_id": 1, "poly": [89.83118438720703, 2131.3505859375, 1322.724365234375, 2131.3505859375, 1322.724365234375, 2169.843994140625, 89.83118438720703, 2169.843994140625], "score": 0.794327974319458}, {"category_id": 2, "poly": [91.27215576171875, 2131.0751953125, 1322.0323486328125, 2131.0751953125, 1322.0323486328125, 2169.485595703125, 91.27215576171875, 2169.485595703125], "score": 0.32391396164894104}, {"category_id": 2, "poly": [86.5780029296875, 2197.31494140625, 321.7021179199219, 2197.31494140625, 321.7021179199219, 2230.764892578125, 86.5780029296875, 2230.764892578125], "score": 0.2888472080230713}, {"category_id": 2, "poly": [89.98391723632812, 355.7607727050781, 373.74615478515625, 355.7607727050781, 373.74615478515625, 385.2027282714844, 89.98391723632812, 385.2027282714844], "score": 0.2699974775314331}, {"category_id": 0, "poly": [90.1002426147461, 2131.122802734375, 1322.6817626953125, 2131.122802734375, 1322.6817626953125, 2169.69140625, 90.1002426147461, 2169.69140625], "score": 0.21775439381599426}, {"category_id": 2, "poly": [88.46417236328125, 515.3632202148438, 1570.6729736328125, 515.3632202148438, 1570.6729736328125, 770.8546142578125, 88.46417236328125, 770.8546142578125], "score": 0.20587031543254852}, {"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, 285.0, 1162.0, 285.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": [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": [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, 367.0, 1304.0, 366.0, 1338.0, 138.0, 1335.0], "score": 0.94, "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, 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, 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": [145.0, 1847.0, 288.0, 1847.0, 288.0, 1874.0, 145.0, 1874.0], "score": 0.99, "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": [84.0, 2000.0, 627.0, 2003.0, 627.0, 2037.0, 84.0, 2034.0], "score": 0.99, "text": "Volume 2013 (2013), Article ID 128625, 8 pages"}, {"category_id": 15, "poly": [86.0, 2030.0, 526.0, 2030.0, 526.0, 2061.0, 86.0, 2061.0], "score": 0.99, "text": "http://dx.doi.0rg/10.1155/2013/128625"}, {"category_id": 15, "poly": [83.0, 2074.0, 240.0, 2068.0, 241.0, 2102.0, 84.0, 2108.0], "score": 0.99, "text": " Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [87.11019134521484, 201.25587463378906, 559.7459106445312, 201.25587463378906, 559.7459106445312, 230.83251953125, 87.11019134521484, 230.83251953125], "score": 0.9999991655349731}, {"category_id": 1, "poly": [89.7821044921875, 253.52198791503906, 377.6583557128906, 253.52198791503906, 377.6583557128906, 282.96502685546875, 89.7821044921875, 282.96502685546875], "score": 0.9999982118606567}, {"category_id": 1, "poly": [90.1204833984375, 306.8159484863281, 1536.261474609375, 306.8159484863281, 1536.261474609375, 366.9244079589844, 90.1204833984375, 366.9244079589844], "score": 0.9999963641166687}, {"category_id": 0, "poly": [90.43875885009766, 394.6031188964844, 279.03216552734375, 394.6031188964844, 279.03216552734375, 422.8419189453125, 90.43875885009766, 422.8419189453125], "score": 0.9999901652336121}, {"category_id": 1, "poly": [104.76892852783203, 449.5394592285156, 1572.931640625, 449.5394592285156, 1572.931640625, 1534.6893310546875, 104.76892852783203, 1534.6893310546875], "score": 0.9999666213989258}, {"category_id": 2, "poly": [88.89970397949219, 83.20890808105469, 1165.4189453125, 83.20890808105469, 1165.4189453125, 179.82862854003906, 88.89970397949219, 179.82862854003906], "score": 0.9335730075836182}, {"category_id": 1, "poly": [89.11207580566406, 83.14006805419922, 1165.5521240234375, 83.14006805419922, 1165.5521240234375, 180.0005340576172, 89.11207580566406, 180.0005340576172], "score": 0.4244956374168396}, {"category_id": 13, "poly": [181, 309, 204, 309, 204, 332, 181, 332], "score": 0.74, "latex": "\\copyright"}, {"category_id": 13, "poly": [1004, 605, 1020, 605, 1020, 622, 1004, 622], "score": 0.42, "latex": "\\cdot"}, {"category_id": 13, "poly": [1005, 664, 1021, 664, 1021, 680, 1005, 680], "score": 0.42, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 606, 757, 606, 757, 621, 743, 621], "score": 0.42, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 664, 757, 664, 757, 681, 743, 681], "score": 0.41, "latex": "\\cdot"}, {"category_id": 13, "poly": [1005, 1447, 1021, 1447, 1021, 1463, 1005, 1463], "score": 0.4, "latex": "\\cdot"}, {"category_id": 13, "poly": [763, 1389, 777, 1389, 777, 1405, 763, 1405], "score": 0.39, "latex": "\\cdot"}, {"category_id": 13, "poly": [866, 867, 879, 867, 879, 883, 866, 883], "score": 0.38, "latex": "\\cdot"}, {"category_id": 13, "poly": [1357, 867, 1371, 867, 1371, 883, 1357, 883], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 1447, 757, 1447, 757, 1463, 743, 1463], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [513, 1448, 527, 1448, 527, 1463, 513, 1463], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [752, 1506, 765, 1506, 765, 1521, 752, 1521], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [1356, 693, 1370, 693, 1370, 708, 1356, 708], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [513, 664, 527, 664, 527, 680, 513, 680], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [582, 810, 596, 810, 596, 825, 582, 825], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [320, 1011, 336, 1011, 336, 1028, 320, 1028], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [514, 606, 527, 606, 527, 621, 514, 621], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [1093, 1157, 1108, 1157, 1108, 1174, 1093, 1174], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [776, 926, 789, 926, 789, 942, 776, 942], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [1381, 1070, 1395, 1070, 1395, 1085, 1381, 1085], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [669, 491, 683, 491, 683, 506, 669, 506], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [1038, 926, 1053, 926, 1053, 940, 1038, 940], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [992, 1389, 1006, 1389, 1006, 1405, 992, 1405], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [523, 1506, 536, 1506, 536, 1521, 523, 1521], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [889, 1071, 903, 1071, 903, 1086, 889, 1086], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [601, 1158, 616, 1158, 616, 1173, 601, 1173], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [1094, 867, 1109, 867, 1109, 882, 1094, 882], "score": 0.26, "latex": "\\cdot"}, {"category_id": 15, "poly": [89.0, 202.0, 558.0, 202.0, 558.0, 234.0, 89.0, 234.0], "score": 0.99, "text": "Received 3 January 2013; Accepted 21 March 2013"}, {"category_id": 15, "poly": [89.0, 256.0, 376.0, 256.0, 376.0, 288.0, 89.0, 288.0], "score": 1.0, "text": "Academic Editor: Xuerong Mao"}, {"category_id": 15, "poly": [86.0, 336.0, 876.0, 336.0, 876.0, 370.0, 86.0, 370.0], "score": 0.98, "text": " distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [84.0, 392.0, 281.0, 397.0, 280.0, 429.0, 83.0, 424.0], "score": 0.99, "text": "Linked References"}, {"category_id": 15, "poly": [111.0, 453.0, 1493.0, 456.0, 1493.0, 490.0, 111.0, 487.0], "score": 0.99, "text": "1. G. Da Prato and J. Zabczyk, Stochastic Equations in Infinite Dimensions, vol. 44 of Encyclopedia of Mathematics and Its Applications, Cambridge"}, {"category_id": 15, "poly": [111.0, 514.0, 1560.0, 514.0, 1560.0, 548.0, 111.0, 548.0], "score": 0.97, "text": " 2. K. Liu, Stability of Infinite Dimensional Stochastic Differential Equations with Applications, Chapman & HalVCRC, Boca Raton, Fla, USA, 2004. View at"}, {"category_id": 15, "poly": [143.0, 541.0, 261.0, 541.0, 261.0, 575.0, 143.0, 575.0], "score": 1.0, "text": "MathSciNet"}, {"category_id": 15, "poly": [113.0, 573.0, 1555.0, 573.0, 1555.0, 604.0, 113.0, 604.0], "score": 0.98, "text": " 3. Q. Luo, F. Deng, J. Bao, B. Zhao, and Y. Fu, \u201cStabilization of stochastic Hopfield neural network with distributed parameters,\u201d Science in China F, vol 47, no."}, {"category_id": 15, "poly": [111.0, 629.0, 1550.0, 629.0, 1550.0, 663.0, 111.0, 663.0], "score": 0.97, "text": "4. Q. Luo, F. Deng, X. Mao, J. Bao, and Y. Zhang, \u201cTheory and application of stability for stochastic reaction difusion systems,' Science in China F, vol. 51, no."}, {"category_id": 15, "poly": [113.0, 716.0, 1567.0, 716.0, 1567.0, 750.0, 113.0, 750.0], "score": 0.96, "text": " 6. Y. Shen and J. Wang, \u201c\"An improved algebraic criterion for global exponential stabity ofrecurrent neural networks with time-varying delays,\u201d IEEE Transactions"}, {"category_id": 15, "poly": [143.0, 746.0, 1050.0, 746.0, 1050.0, 780.0, 143.0, 780.0], "score": 0.98, "text": " on Neural Networks, vol. 19, no. 3, pp. 528-531, 2008. View at Publisher \u00b7 View at Google Scholar"}, {"category_id": 15, "poly": [113.0, 775.0, 1552.0, 775.0, 1552.0, 809.0, 113.0, 809.0], "score": 0.96, "text": "7. Y. Shen and J. Wang, \u201cAlmost sure exponential stabilty of recurrent neural networks with markovian switching,\" IEEE Transactions on Neural Networks, vol."}, {"category_id": 15, "poly": [111.0, 833.0, 1486.0, 833.0, 1486.0, 867.0, 111.0, 867.0], "score": 0.96, "text": " 8. 1. Gyongy and N. Krylov, \u201cAccelerated finite difference schemes for linear stochastic partial differential equations in the whole space,\u201d\" SLAMJournal on"}, {"category_id": 15, "poly": [111.0, 889.0, 1550.0, 889.0, 1550.0, 923.0, 111.0, 923.0], "score": 0.97, "text": " 9. A. Jentzen, P. E. Kloeden, and G. Winkel, \u201cEfficient simulation of nonlinear parabolic SPDEs with additive noise, The Annals of Applied Probability, vol. 21,"}, {"category_id": 15, "poly": [101.0, 945.0, 1503.0, 948.0, 1503.0, 982.0, 101.0, 979.0], "score": 0.97, "text": "10. P. E. Kloeden, G. J. Lord, A. Neuenkirch, and T. Shardlow, The exponential integrator scheme for stochastic partial differential equations: pathwise error "}, {"category_id": 15, "poly": [145.0, 977.0, 1555.0, 977.0, 1555.0, 1011.0, 145.0, 1011.0], "score": 0.98, "text": "bounds,\" Journal of Computational and Applied Mathematics, vol. 235, no. 5, pp. 1245-1260, 2011. View at Publisher View at Google Scholar \u00b7 View at"}, {"category_id": 15, "poly": [103.0, 1035.0, 1569.0, 1035.0, 1569.0, 1070.0, 103.0, 1070.0], "score": 0.96, "text": "11. J. Bao, A. Truman, and C. Yuan, \u201cStability in distribution ofmild solutions to stochastic partial differential delay equations with jumps,\u201d Proceedings of The Royal"}, {"category_id": 15, "poly": [145.0, 1094.0, 261.0, 1094.0, 261.0, 1128.0, 145.0, 1128.0], "score": 1.0, "text": "MathSciNet"}, {"category_id": 15, "poly": [101.0, 1123.0, 1542.0, 1123.0, 1542.0, 1157.0, 101.0, 1157.0], "score": 0.96, "text": "12. B. Boufoussi and S. Haji, \u201cSuccessive approximation of neutral functional stochastic differential equations with jumps,\" Statistics and Probability Letters, vol."}, {"category_id": 15, "poly": [98.0, 1177.0, 1528.0, 1177.0, 1528.0, 1218.0, 98.0, 1218.0], "score": 0.94, "text": "13. E. Hausenblas, \u201cFinte element approximation of stochastic partal diffrential equations driven by Poisson random measures of jump type,\u201d SIAM Journal on"}, {"category_id": 15, "poly": [143.0, 1206.0, 1277.0, 1206.0, 1277.0, 1247.0, 143.0, 1247.0], "score": 0.93, "text": "Numerical Analysis, vol 46, no. 1, pp. 437-471, 2007/08.Vewat Pubisher Viw at Google Scholar Viewat MathSciNet"}, {"category_id": 15, "poly": [98.0, 1233.0, 1518.0, 1235.0, 1518.0, 1277.0, 98.0, 1274.0], "score": 0.96, "text": "14. S. Peszat and J. Zabczyk, Stochastic Partial Differential Equations with Levy Noise: An Evolution Equation Approach, vol. 13 of Encyclopedia of"}, {"category_id": 15, "poly": [145.0, 1267.0, 1528.0, 1267.0, 1528.0, 1301.0, 145.0, 1301.0], "score": 0.99, "text": "Mathematics and Its Applications, Cambridge University Press, Cambridge, UK, 2007. View at Publisher View at Google Scholar \u00b7 View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1294.0, 1560.0, 1296.0, 1559.0, 1330.0, 101.0, 1328.0], "score": 0.97, "text": " 15. M. Rockner and T. Zhang, \u201cStochastic evolution equations of jump type: existence, uniqueness and large deviation principles,\" Potential Analysis, vol. 26, no. 3,"}, {"category_id": 15, "poly": [140.0, 1325.0, 922.0, 1323.0, 922.0, 1357.0, 140.0, 1360.0], "score": 0.96, "text": " pp. 255-279, 2007. View at Publisher : View at Go0gle Scholar View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1352.0, 1469.0, 1355.0, 1468.0, 1389.0, 101.0, 1386.0], "score": 0.98, "text": "16. J. Bao, B. Bottcher, X. Mao, and C. Yuan, \u201cConvergence rate of numerical solutions to SFDEs with jumps,\u201d Journal of Computational and Applied"}, {"category_id": 15, "poly": [103.0, 1413.0, 1562.0, 1413.0, 1562.0, 1447.0, 103.0, 1447.0], "score": 0.98, "text": "17. N. Jacob, Y. Wang, and C. Yuan, \u03bcNumerical solutions of stochastic differential delay equations with jumps,\" Stochastic Analysis and Applications, vol. 27, no."}, {"category_id": 15, "poly": [101.0, 1467.0, 1537.0, 1469.0, 1537.0, 1503.0, 101.0, 1501.0], "score": 0.98, "text": "18. A.Pazy, Semigroups of Linear Operators and Applications to Partial Differential Equations, vol. 44 ofApplied Mathematical Sciences, Springer, New"}, {"category_id": 15, "poly": [86.0, 307.0, 180.0, 305.0, 180.0, 339.0, 86.0, 341.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 307.0, 1530.0, 305.0, 1530.0, 339.0, 205.0, 341.0], "score": 0.97, "text": "2013 Yan Li and Junhao Hu. This is an open access article distributed under the Creative Commons Atribution License, which permits unrestricted use,"}, {"category_id": 15, "poly": [1021.0, 599.0, 1208.0, 599.0, 1208.0, 633.0, 1021.0, 633.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [1022.0, 658.0, 1208.0, 658.0, 1208.0, 692.0, 1022.0, 692.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [758.0, 599.0, 1003.0, 599.0, 1003.0, 633.0, 758.0, 633.0], "score": 0.98, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [758.0, 658.0, 1004.0, 658.0, 1004.0, 692.0, 758.0, 692.0], "score": 0.98, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1022.0, 1438.0, 1210.0, 1435.0, 1210.0, 1476.0, 1022.0, 1479.0], "score": 0.99, "text": "Vew at MathSciNet"}, {"category_id": 15, "poly": [145.0, 1384.0, 762.0, 1384.0, 762.0, 1418.0, 145.0, 1418.0], "score": 0.98, "text": "Mathematics, vol. 236, no. 2, pp. 119-131, 2011. View at Pubisher"}, {"category_id": 15, "poly": [148.0, 860.0, 865.0, 860.0, 865.0, 894.0, 148.0, 894.0], "score": 0.98, "text": "Mathematical Analysis, vol. 42, no. 5, pp. 2275-2296, 2010. View at Publisher"}, {"category_id": 15, "poly": [1372.0, 860.0, 1560.0, 860.0, 1560.0, 894.0, 1372.0, 894.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [758.0, 1438.0, 1004.0, 1435.0, 1004.0, 1476.0, 758.0, 1479.0], "score": 0.98, "text": "View at Zentralbatt MATH"}, {"category_id": 15, "poly": [140.0, 1438.0, 512.0, 1435.0, 512.0, 1476.0, 140.0, 1479.0], "score": 0.98, "text": "4, pp. 825-853, 2009. View at Pubisher"}, {"category_id": 15, "poly": [528.0, 1438.0, 742.0, 1435.0, 742.0, 1476.0, 528.0, 1479.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [766.0, 1496.0, 954.0, 1498.0, 954.0, 1533.0, 766.0, 1530.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [113.0, 687.0, 1355.0, 687.0, 1355.0, 721.0, 113.0, 721.0], "score": 0.99, "text": " 5. X. Mao, Stochastic Differential Equations and Applications, Horwood Publishing, Chichester, UK, 2007. View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1371.0, 687.0, 1560.0, 687.0, 1560.0, 721.0, 1371.0, 721.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 658.0, 512.0, 658.0, 512.0, 692.0, 145.0, 692.0], "score": 0.98, "text": "2, pp. 158-170, 2008. View at Publisher"}, {"category_id": 15, "poly": [528.0, 658.0, 742.0, 658.0, 742.0, 692.0, 528.0, 692.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [143.0, 804.0, 581.0, 804.0, 581.0, 838.0, 143.0, 838.0], "score": 0.97, "text": " 20, no. 5, pp. 840-855, 2009. View at Publisher"}, {"category_id": 15, "poly": [597.0, 804.0, 814.0, 804.0, 814.0, 838.0, 597.0, 838.0], "score": 0.95, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 1006.0, 319.0, 1006.0, 319.0, 1038.0, 145.0, 1038.0], "score": 1.0, "text": "Zentralblatt MATH"}, {"category_id": 15, "poly": [337.0, 1006.0, 524.0, 1006.0, 524.0, 1038.0, 337.0, 1038.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [143.0, 599.0, 513.0, 599.0, 513.0, 633.0, 143.0, 633.0], "score": 0.99, "text": "6, pp. 752-762, 2004. View at Publisher"}, {"category_id": 15, "poly": [528.0, 599.0, 742.0, 599.0, 742.0, 633.0, 528.0, 633.0], "score": 0.98, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1109.0, 1148.0, 1296.0, 1145.0, 1296.0, 1187.0, 1109.0, 1189.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [143.0, 919.0, 775.0, 919.0, 775.0, 953.0, 143.0, 953.0], "score": 0.97, "text": " no. 3, p. 908-950, 2011. View at Publisher : View at Go0gle Scholar"}, {"category_id": 15, "poly": [1396.0, 1065.0, 1471.0, 1065.0, 1471.0, 1099.0, 1396.0, 1099.0], "score": 0.97, "text": "View at"}, {"category_id": 15, "poly": [143.0, 485.0, 668.0, 485.0, 668.0, 519.0, 143.0, 519.0], "score": 0.97, "text": " University Press, Cambridge, UK, 1992. View at Publisher"}, {"category_id": 15, "poly": [684.0, 485.0, 1100.0, 485.0, 1100.0, 519.0, 684.0, 519.0], "score": 0.97, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [790.0, 919.0, 1037.0, 919.0, 1037.0, 953.0, 790.0, 953.0], "score": 0.97, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1054.0, 919.0, 1242.0, 919.0, 1242.0, 953.0, 1054.0, 953.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [778.0, 1384.0, 991.0, 1384.0, 991.0, 1418.0, 778.0, 1418.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1007.0, 1384.0, 1459.0, 1384.0, 1459.0, 1418.0, 1007.0, 1418.0], "score": 0.98, "text": "View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [143.0, 1496.0, 522.0, 1498.0, 522.0, 1533.0, 143.0, 1530.0], "score": 0.99, "text": "York, NY, USA, 1983. View at Publisher"}, {"category_id": 15, "poly": [537.0, 1496.0, 751.0, 1498.0, 751.0, 1533.0, 537.0, 1530.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [148.0, 1065.0, 888.0, 1065.0, 888.0, 1099.0, 148.0, 1099.0], "score": 0.98, "text": "Society of London A, vol. 465, no. 2107, pp. 2111-2134, 2009. View at Publisher"}, {"category_id": 15, "poly": [904.0, 1065.0, 1380.0, 1065.0, 1380.0, 1099.0, 904.0, 1099.0], "score": 0.97, "text": "View at Google Scholar : View at Zentrlblatt MATH"}, {"category_id": 15, "poly": [138.0, 1148.0, 600.0, 1145.0, 600.0, 1187.0, 138.0, 1189.0], "score": 0.96, "text": "80, no. 5-6, pp. 324-332, 2010. View at Pubisher"}, {"category_id": 15, "poly": [617.0, 1148.0, 1092.0, 1145.0, 1092.0, 1187.0, 617.0, 1189.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralbat MATH"}, {"category_id": 15, "poly": [880.0, 860.0, 1093.0, 860.0, 1093.0, 894.0, 880.0, 894.0], "score": 1.0, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1110.0, 860.0, 1356.0, 860.0, 1356.0, 894.0, 1110.0, 894.0], "score": 0.95, "text": "View at Zentralblatt MATH"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.2992935180664, 74.89192962646484, 199.04367065429688, 74.89192962646484, 199.04367065429688, 186.59889221191406, 87.2992935180664, 186.59889221191406], "score": 0.9999977946281433}, {"category_id": 1, "poly": [89.16050720214844, 2074.181396484375, 239.64305114746094, 2074.181396484375, 239.64305114746094, 2100.66650390625, 89.16050720214844, 2100.66650390625], "score": 0.9999954700469971}, {"category_id": 1, "poly": [117.5444564819336, 1038.5023193359375, 403.9747314453125, 1038.5023193359375, 403.9747314453125, 1968.6846923828125, 117.5444564819336, 1968.6846923828125], "score": 0.9999890327453613}, {"category_id": 1, "poly": [118.65921020507812, 410.06402587890625, 245.42909240722656, 410.06402587890625, 245.42909240722656, 497.04345703125, 118.65921020507812, 497.04345703125], "score": 0.9999560117721558}, {"category_id": 1, "poly": [85.76885986328125, 1983.26708984375, 627.6712646484375, 1983.26708984375, 627.6712646484375, 2057.109619140625, 85.76885986328125, 2057.109619140625], "score": 0.9999496340751648}, {"category_id": 1, "poly": [530.5665893554688, 991.9664306640625, 656.3384399414062, 991.9664306640625, 656.3384399414062, 1020.5671997070312, 530.5665893554688, 1020.5671997070312], "score": 0.9999181032180786}, {"category_id": 3, "poly": [88.25532531738281, 515.4844360351562, 1570.79248046875, 515.4844360351562, 1570.79248046875, 770.6967163085938, 88.25532531738281, 770.6967163085938], "score": 0.994342029094696}, {"category_id": 1, "poly": [89.80184173583984, 355.7042236328125, 375.00457763671875, 355.7042236328125, 375.00457763671875, 385.1364440917969, 89.80184173583984, 385.1364440917969], "score": 0.9732376933097839}, {"category_id": 1, "poly": [87.66413879394531, 2196.612548828125, 268.9773254394531, 2196.612548828125, 268.9773254394531, 2226.1484375, 87.66413879394531, 2226.1484375], "score": 0.9430352449417114}, {"category_id": 4, "poly": [89.84688568115234, 769.3914184570312, 604.580810546875, 769.3914184570312, 604.580810546875, 797.3281860351562, 89.84688568115234, 797.3281860351562], "score": 0.942071795463562}, {"category_id": 1, "poly": [88.9885482788086, 2131.16259765625, 1160.894775390625, 2131.16259765625, 1160.894775390625, 2169.7490234375, 88.9885482788086, 2169.7490234375], "score": 0.6996387839317322}, {"category_id": 0, "poly": [88.96036529541016, 2131.230712890625, 1159.57763671875, 2131.230712890625, 1159.57763671875, 2169.53466796875, 88.96036529541016, 2169.53466796875], "score": 0.470080703496933}, {"category_id": 2, "poly": [89.95308685302734, 355.7828369140625, 373.687255859375, 355.7828369140625, 373.687255859375, 385.18841552734375, 89.95308685302734, 385.18841552734375], "score": 0.27228784561157227}, {"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.97, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [143.0, 1106.0, 310.0, 1106.0, 310.0, 1131.0, 143.0, 1131.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, 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.94, "text": "Article Processing Charges \u00b7"}, {"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": [140.0, 1304.0, 369.0, 1304.0, 369.0, 1335.0, 140.0, 1335.0], "score": 0.95, "text": " Citations to this Journal \u00b7"}, {"category_id": 15, "poly": [138.0, 1330.0, 340.0, 1333.0, 339.0, 1367.0, 138.0, 1364.0], "score": 0.92, "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.98, "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, 1647.0, 376.0, 1647.0, 376.0, 1679.0, 140.0, 1679.0], "score": 0.98, "text": "Published Special Issues \u00b7"}, {"category_id": 15, "poly": [140.0, 1676.0, 367.0, 1676.0, 367.0, 1708.0, 140.0, 1708.0], "score": 0.95, "text": " Special Issue Guidelines"}, {"category_id": 15, "poly": [143.0, 1730.0, 231.0, 1730.0, 231.0, 1757.0, 143.0, 1757.0], "score": 1.0, "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, 1844.0, 288.0, 1844.0, 288.0, 1871.0, 143.0, 1871.0], "score": 0.95, "text": " Full- Text XML"}, {"category_id": 15, "poly": [143.0, 1876.0, 320.0, 1876.0, 320.0, 1903.0, 143.0, 1903.0], "score": 0.97, "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, 438.0, 1981.0, 438.0, 2013.0, 86.0, 2013.0], "score": 0.99, "text": "Abstract and Applied Analysis"}, {"category_id": 15, "poly": [86.0, 2003.0, 627.0, 2003.0, 627.0, 2034.0, 86.0, 2034.0], "score": 0.98, "text": "Volume 2013 (2013), Article ID 672069, 8 pages"}, {"category_id": 15, "poly": [86.0, 2030.0, 526.0, 2030.0, 526.0, 2061.0, 86.0, 2061.0], "score": 0.99, "text": "http://dx.doi.0rg/10.1155/2013/672069"}, {"category_id": 15, "poly": [86.0, 2073.0, 241.0, 2073.0, 241.0, 2100.0, 86.0, 2100.0], "score": 0.97, "text": "Research Article"}, {"category_id": 15, "poly": [89.0, 2134.0, 1159.0, 2134.0, 1159.0, 2168.0, 89.0, 2168.0], "score": 0.99, "text": "One-Local Retract and Common Fixed Point in Modular Metric Spaces"}, {"category_id": 15, "poly": [89.0, 2198.0, 266.0, 2198.0, 266.0, 2224.0, 89.0, 2224.0], "score": 1.0, "text": "Afrah A. N. Abdou"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 2, "poly": [86.99822235107422, 80.00711059570312, 1000.3544311523438, 80.00711059570312, 1000.3544311523438, 107.6072769165039, 86.99822235107422, 107.6072769165039], "score": 0.9999921321868896}, {"category_id": 1, "poly": [90.0252685546875, 234.6359405517578, 1512.6181640625, 234.6359405517578, 1512.6181640625, 295.8846435546875, 90.0252685546875, 295.8846435546875], "score": 0.9999914169311523}, {"category_id": 0, "poly": [89.865966796875, 322.99163818359375, 278.4775085449219, 322.99163818359375, 278.4775085449219, 351.28179931640625, 89.865966796875, 351.28179931640625], "score": 0.9999914169311523}, {"category_id": 1, "poly": [100.0983657836914, 382.0526428222656, 1571.1024169921875, 382.0526428222656, 1571.1024169921875, 2042.144775390625, 100.0983657836914, 2042.144775390625], "score": 0.9999712705612183}, {"category_id": 1, "poly": [88.13471221923828, 130.28758239746094, 529.1017456054688, 130.28758239746094, 529.1017456054688, 160.1971893310547, 88.13471221923828, 160.1971893310547], "score": 0.9977970123291016}, {"category_id": 1, "poly": [88.85736083984375, 182.03805541992188, 446.2120056152344, 182.03805541992188, 446.2120056152344, 211.64596557617188, 88.85736083984375, 211.64596557617188], "score": 0.9951528906822205}, {"category_id": 13, "poly": [181, 238, 204, 238, 204, 260, 181, 260], "score": 0.7, "latex": "\\copyright"}, {"category_id": 13, "poly": [959, 476, 973, 476, 973, 491, 959, 491], "score": 0.4, "latex": "\\cdot"}, {"category_id": 13, "poly": [548, 1377, 563, 1377, 563, 1393, 548, 1393], "score": 0.4, "latex": "\\cdot"}, {"category_id": 13, "poly": [796, 1666, 811, 1666, 811, 1681, 796, 1681], "score": 0.37, "latex": "\\cdot"}, {"category_id": 13, "poly": [534, 1666, 548, 1666, 548, 1682, 534, 1682], "score": 0.37, "latex": "\\cdot"}, {"category_id": 13, "poly": [624, 1608, 638, 1608, 638, 1625, 624, 1625], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [305, 1667, 319, 1667, 319, 1681, 305, 1681], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [987, 883, 1002, 883, 1002, 898, 987, 898], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [1250, 882, 1264, 882, 1264, 899, 1250, 899], "score": 0.35, "latex": "\\cdot"}, {"category_id": 13, "poly": [1084, 825, 1099, 825, 1099, 841, 1084, 841], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [758, 883, 773, 883, 773, 899, 758, 899], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [696, 476, 711, 476, 711, 493, 696, 493], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [467, 476, 481, 476, 481, 492, 467, 492], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [361, 1318, 376, 1318, 376, 1335, 361, 1335], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [305, 1725, 319, 1725, 319, 1739, 305, 1739], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [586, 1000, 599, 1000, 599, 1017, 586, 1017], "score": 0.31, "latex": "\\cdot"}, {"category_id": 13, "poly": [796, 1724, 811, 1724, 811, 1739, 796, 1739], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [1034, 1232, 1049, 1232, 1049, 1247, 1034, 1247], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [351, 1515, 386, 1515, 386, 1542, 351, 1542], "score": 0.29, "latex": "\\mathrm{Xu},"}, {"category_id": 13, "poly": [823, 825, 836, 825, 836, 841, 823, 841], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 417, 758, 417, 758, 434, 743, 434], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [796, 1056, 811, 1056, 811, 1072, 796, 1072], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [624, 940, 638, 940, 638, 957, 624, 957], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [1040, 1376, 1053, 1376, 1053, 1391, 1040, 1391], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [655, 1782, 668, 1782, 668, 1799, 655, 1799], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [1291, 710, 1304, 710, 1304, 725, 1291, 725], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [89.0, 132.0, 531.0, 132.0, 531.0, 166.0, 89.0, 166.0], "score": 0.99, "text": "Received 8 July 2013; Accepted 19 August 2013"}, {"category_id": 15, "poly": [89.0, 180.0, 443.0, 183.0, 443.0, 217.0, 88.0, 214.0], "score": 0.98, "text": "Academic Editor: Mohamed A. Khamsi"}, {"category_id": 15, "poly": [89.0, 268.0, 876.0, 268.0, 876.0, 300.0, 89.0, 300.0], "score": 0.99, "text": "distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [89.0, 321.0, 281.0, 324.0, 280.0, 358.0, 88.0, 356.0], "score": 1.0, "text": "Linked References"}, {"category_id": 15, "poly": [113.0, 380.0, 1557.0, 383.0, 1557.0, 417.0, 113.0, 414.0], "score": 0.97, "text": "1. V. V. Chistyakov, \u201cModular metric spaces. 1. Basic concepts,\" Nonlinear Analysis: Theory, Methods & Applications A, vol. 72, no. 1, pp. 1-14, 2010. View"}, {"category_id": 15, "poly": [111.0, 439.0, 1567.0, 439.0, 1567.0, 480.0, 111.0, 480.0], "score": 0.94, "text": " 2. V. V. Chistyakoy, \u201cModular metric spaces. Il Application to superposition operators,\" Nonlinear Analysis: Theory, Methods & Applications A, vol. 72, no. 1,"}, {"category_id": 15, "poly": [113.0, 499.0, 1107.0, 499.0, 1107.0, 534.0, 113.0, 534.0], "score": 0.98, "text": "3. H. Nakano, Modulared Semi-Ordered Linear Spaces, Maruzen, Tokyo, Japan, 1950. View at MathSciNet"}, {"category_id": 15, "poly": [113.0, 529.0, 1481.0, 529.0, 1481.0, 563.0, 113.0, 563.0], "score": 0.98, "text": "4. J. Musielak, Orlicz Spaces and Modular Spaces, vol 1034 of Lecture Notes in Mathematics, Springer, Berlin, Germany, 1983. View at MathSciNet"}, {"category_id": 15, "poly": [111.0, 555.0, 1215.0, 558.0, 1215.0, 592.0, 111.0, 590.0], "score": 0.97, "text": " 5. W. Orlicz, Collected Papers, Part I, Il PWN Polish Scientific Publishers, Warsaw, Poland, 1988. View at MathSciNet"}, {"category_id": 15, "poly": [113.0, 587.0, 1407.0, 587.0, 1407.0, 621.0, 113.0, 621.0], "score": 0.99, "text": "6. L. Diening, Theoretical and mumerical results for electrorheological fluids [Ph.D. thesis], University of Freiburg, Freiburg, Germany, 2002."}, {"category_id": 15, "poly": [113.0, 614.0, 1540.0, 616.0, 1540.0, 651.0, 113.0, 648.0], "score": 0.97, "text": "7. M. Ruzicka, Electrorheological Fluids Modeling and Mathematical Theory, Springer, Berlin, Germany, 2002. View at Publisher \u00b7 View at Googe Scholar "}, {"category_id": 15, "poly": [143.0, 643.0, 335.0, 646.0, 334.0, 680.0, 142.0, 677.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [113.0, 675.0, 1498.0, 675.0, 1498.0, 709.0, 113.0, 709.0], "score": 0.99, "text": "8. P. Harjulehto, P. Hasto, M. Koskenoja, and S. Varonen, \u201cThe Dirichlet energy integral and variable exponent Sobolev spaces with zero boundary values,"}, {"category_id": 15, "poly": [113.0, 733.0, 1562.0, 733.0, 1562.0, 767.0, 113.0, 767.0], "score": 0.98, "text": " 9. J. Heinonen, T. Kipelinen, and O. Martio, Nonlinear Potential Theory of Degenerate Elliptic Equations, Oxford University Press, Oxford, UK, 1993. View"}, {"category_id": 15, "poly": [148.0, 765.0, 278.0, 765.0, 278.0, 792.0, 148.0, 792.0], "score": 0.97, "text": "at MathSciNet"}, {"category_id": 15, "poly": [101.0, 787.0, 1562.0, 789.0, 1562.0, 824.0, 101.0, 821.0], "score": 0.97, "text": "10. M. A. Khamsi, W. M. Kozlowski and S. Reich, \u201cFixed point theory in modular function spaces,\" Nonlinear Analysis: Theory, Methods & Applications A, vol."}, {"category_id": 15, "poly": [98.0, 843.0, 1547.0, 845.0, 1547.0, 887.0, 98.0, 884.0], "score": 0.89, "text": "11. M. A. Khamsi andW. M Kozlowski \u201cOnasyptotic poitise nonexpansive mappings nmodular fction spaces, Junal of Mathematical Analsis ad"}, {"category_id": 15, "poly": [103.0, 906.0, 1523.0, 906.0, 1523.0, 940.0, 103.0, 940.0], "score": 0.98, "text": "12. L. P. Beluce and W. A. Kirk, *Nonexpansive mappings and fixed-points in Banach spaces,\" Illinois Journal of Mathematics, vol. 11, p. 474 479, 1967."}, {"category_id": 15, "poly": [101.0, 962.0, 1550.0, 965.0, 1550.0, 999.0, 101.0, 996.0], "score": 0.98, "text": "13. F. E. Browder, \u201cNonexpansive nonlinear operators ina Banach space,\u201d Proceedings of the National Academy of Sciences of the United States of America,"}, {"category_id": 15, "poly": [101.0, 1023.0, 1540.0, 1023.0, 1540.0, 1057.0, 101.0, 1057.0], "score": 0.98, "text": "14. R. E. Bruck, \u201cA common fixed point theorem for a commuting family ofnonexpansive mappings,\u201d Pacific Journal of Mathematics, vol. 53, pp. 59-71, 1974."}, {"category_id": 15, "poly": [101.0, 1077.0, 1532.0, 1077.0, 1532.0, 1118.0, 101.0, 1118.0], "score": 0.93, "text": "15. T. C. Lim \u201cAfxed point theorem for famiies on nonexpansive mappings,\u201d Pacific Journal of Mathematics, vol. 53, pp. 487493, 1974.Vwat Pubisher "}, {"category_id": 15, "poly": [145.0, 1111.0, 563.0, 1111.0, 563.0, 1143.0, 145.0, 1143.0], "score": 0.98, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1135.0, 1542.0, 1138.0, 1542.0, 1172.0, 101.0, 1169.0], "score": 0.98, "text": "16. K. Goebel and S. Reich, Reich Uniform Convexity, Hyperbolic Geometry, and Nonexpansive Mappings, vol. 83 of Monographs and Textbooks in Pure"}, {"category_id": 15, "poly": [148.0, 1167.0, 994.0, 1167.0, 994.0, 1201.0, 148.0, 1201.0], "score": 0.99, "text": "and Applied Mathematics, Marcel Dekker, New York, NY, USA, 1984. View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1196.0, 1547.0, 1196.0, 1547.0, 1230.0, 103.0, 1230.0], "score": 0.97, "text": "17. K. Goebel, T. Sekowski, and A. Stachura, \u201cUniform convexity ofthe hyperbolic metric and fixed points ofholomorphic mappings in the Hibert ball\" Nonlinear"}, {"category_id": 15, "poly": [143.0, 1250.0, 335.0, 1255.0, 334.0, 1289.0, 142.0, 1284.0], "score": 0.98, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1284.0, 1508.0, 1284.0, 1508.0, 1318.0, 103.0, 1318.0], "score": 0.98, "text": "18. W. A. Kirk, \u201cFixed point theorems in CAT(0) spaces and R-trees,\" Fixed Point Theory and Applications, no. 4, pp. 309-316, 2004. View at Publisher "}, {"category_id": 15, "poly": [108.0, 1347.0, 150.0, 1347.0, 150.0, 1367.0, 108.0, 1367.0], "score": 1.0, "text": "19."}, {"category_id": 15, "poly": [138.0, 1338.0, 1552.0, 1343.0, 1552.0, 1377.0, 138.0, 1372.0], "score": 0.97, "text": "N. Hussain and M. A. Khamsi, \u201cOn asymptotic pointwise contractions in metric spaces,\u201d' Nonlinear Analysis: Theory, Methods & Applications A, vol. 71, no."}, {"category_id": 15, "poly": [103.0, 1399.0, 1518.0, 1399.0, 1518.0, 1433.0, 103.0, 1433.0], "score": 0.98, "text": "20. W. A. Kirk, \u201cFixed points ofasymptotic contractions,\" Journal of Mathematical Analysis and Applications, vol. 277, no. 2, pp. 645-650, 2003. View at"}, {"category_id": 15, "poly": [145.0, 1428.0, 925.0, 1428.0, 925.0, 1462.0, 145.0, 1462.0], "score": 0.97, "text": "Publisher : View at Google Scholar View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1455.0, 1493.0, 1457.0, 1493.0, 1491.0, 101.0, 1489.0], "score": 0.98, "text": "21. W. A. Kirk, \"Asymptotic pointwise contractions, plenary lecture,\u201d in Proceedings of the 8th International Conference on Fixed Point Theory and Its"}, {"category_id": 15, "poly": [148.0, 1486.0, 873.0, 1486.0, 873.0, 1520.0, 148.0, 1520.0], "score": 0.97, "text": "Applications, pp. 16-22, ChiangMai University, Chiang Mai, Thailand, July 2007."}, {"category_id": 15, "poly": [145.0, 1545.0, 1055.0, 1545.0, 1055.0, 1579.0, 145.0, 1579.0], "score": 0.97, "text": " 2008. View at Publisher View at Google Scholar : View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1572.0, 1547.0, 1572.0, 1547.0, 1606.0, 101.0, 1606.0], "score": 0.98, "text": " 23. J.-P. Penot, \u201cFixed point theorems without convexity,\u201d Memoires de la Societe Mathematique de France, vol. 60, pp. 129-152, 1979, Analyse non convexe."}, {"category_id": 15, "poly": [98.0, 1625.0, 1520.0, 1628.0, 1520.0, 1669.0, 98.0, 1667.0], "score": 0.93, "text": "24. W. A. Kirk, \u201cA fixed point theorem for mappings which do not ncrease distances,\u201d The American Mathematical Monthly, vol. 72, pp. 1004-1006, 1965."}, {"category_id": 15, "poly": [103.0, 1688.0, 1540.0, 1688.0, 1540.0, 1723.0, 103.0, 1723.0], "score": 0.97, "text": "25. M. A. Khamsi, \u201cOn metric spaces with uniform normal structure,\" Proceedings of the American Mathematical Society, vol. 106, no. 3, pp. 723-726, 1989."}, {"category_id": 15, "poly": [98.0, 1742.0, 1567.0, 1745.0, 1567.0, 1786.0, 98.0, 1783.0], "score": 0.96, "text": " 26. M. A. Khamsi, \u201cOne-local retract and common fixed point for commuting mappings in metric spaces,\" Nonlinear Analysis: Theory, Methods & Applications A,"}, {"category_id": 15, "poly": [103.0, 1803.0, 1562.0, 1803.0, 1562.0, 1837.0, 103.0, 1837.0], "score": 0.96, "text": "27. S. A. Al-Mezel, A. AlRoqi and M. A. Khamsi, \u201cOne-local retract and common fixed point in modular function spaces,\u201d Fixed Point Theory and Applications,"}, {"category_id": 15, "poly": [148.0, 1832.0, 1082.0, 1832.0, 1082.0, 1866.0, 148.0, 1866.0], "score": 0.99, "text": "vol. 2012, article 109, 13 pages, 2012. View at Publisher View at Google Scholar View at MathSciNet"}, {"category_id": 15, "poly": [101.0, 1864.0, 1518.0, 1864.0, 1518.0, 1898.0, 101.0, 1898.0], "score": 0.98, "text": " 28. M. A. Khamsi and W. A. Kirk, An Introduction to Metric Spaces and Fixed Point Theory, John Wiley, New York, NY, USA, 2001. View at Publisher "}, {"category_id": 15, "poly": [148.0, 1893.0, 563.0, 1893.0, 563.0, 1927.0, 148.0, 1927.0], "score": 0.98, "text": "View at Google Scholar : View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1922.0, 153.0, 1922.0, 153.0, 1949.0, 103.0, 1949.0], "score": 1.0, "text": "29."}, {"category_id": 15, "poly": [140.0, 1922.0, 1560.0, 1922.0, 1560.0, 1956.0, 140.0, 1956.0], "score": 0.99, "text": "W. M. Kozlowski, Modular Function Spaces, vol. 122 of Monographs and Textbooks in Pure and Applied Mathematics, Marcel Dekker, New York, NY,"}, {"category_id": 15, "poly": [143.0, 1947.0, 448.0, 1949.0, 448.0, 1983.0, 143.0, 1981.0], "score": 0.96, "text": " USA, 1988. View at MathSciNet"}, {"category_id": 15, "poly": [103.0, 1981.0, 1168.0, 1981.0, 1168.0, 2015.0, 103.0, 2015.0], "score": 0.97, "text": "30. A. A. N. Abdou and M. A. Khamsi, \u201cOn the fixed points of nonexpansive maps in modular metric spaces,\" Preprint."}, {"category_id": 15, "poly": [98.0, 2003.0, 1454.0, 2005.0, 1454.0, 2047.0, 98.0, 2044.0], "score": 0.94, "text": " 31. J. B. Baillon, Nonexpansive mappings and hyperconvex spaces,\u201d Contemporary Mathematics, vol. 72, pp. 11-19, 1988. View at Google Scholar"}, {"category_id": 15, "poly": [89.0, 236.0, 180.0, 236.0, 180.0, 270.0, 89.0, 270.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 236.0, 1508.0, 236.0, 1508.0, 270.0, 205.0, 270.0], "score": 0.98, "text": "2013 Afrah A. N. Abdou. This is an open access article distributed under the Creative Commons Atribution License, which permits unrestricted use,"}, {"category_id": 15, "poly": [974.0, 470.0, 1161.0, 470.0, 1161.0, 504.0, 974.0, 504.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1367.0, 547.0, 1367.0, 547.0, 1401.0, 148.0, 1401.0], "score": 0.98, "text": "10, pp. 4423-4429, 2009. View at Publisher"}, {"category_id": 15, "poly": [812.0, 1662.0, 999.0, 1662.0, 999.0, 1693.0, 812.0, 1693.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [549.0, 1662.0, 795.0, 1662.0, 795.0, 1693.0, 549.0, 1693.0], "score": 0.99, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [145.0, 1603.0, 623.0, 1603.0, 623.0, 1635.0, 145.0, 1635.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [639.0, 1603.0, 824.0, 1603.0, 824.0, 1635.0, 639.0, 1635.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 1662.0, 304.0, 1662.0, 304.0, 1693.0, 145.0, 1693.0], "score": 1.0, "text": "View at Publisher"}, {"category_id": 15, "poly": [320.0, 1662.0, 533.0, 1662.0, 533.0, 1693.0, 320.0, 1693.0], "score": 1.0, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1003.0, 877.0, 1249.0, 875.0, 1249.0, 909.0, 1003.0, 911.0], "score": 0.98, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1265.0, 877.0, 1454.0, 875.0, 1454.0, 909.0, 1265.0, 911.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [1100.0, 814.0, 1291.0, 816.0, 1291.0, 858.0, 1100.0, 855.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [143.0, 877.0, 757.0, 875.0, 757.0, 909.0, 143.0, 911.0], "score": 0.98, "text": " Applications, vol. 380, no. 2, pp. 697-708, 2011. View at Publisher"}, {"category_id": 15, "poly": [774.0, 877.0, 986.0, 875.0, 986.0, 909.0, 774.0, 911.0], "score": 0.95, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [712.0, 470.0, 958.0, 470.0, 958.0, 504.0, 712.0, 504.0], "score": 1.0, "text": "View at Zentralblatt MATH"}, {"category_id": 15, "poly": [143.0, 470.0, 466.0, 470.0, 466.0, 504.0, 143.0, 504.0], "score": 0.98, "text": " pp. 15-30, 2010. View at Publisher"}, {"category_id": 15, "poly": [482.0, 470.0, 695.0, 470.0, 695.0, 504.0, 482.0, 504.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 1313.0, 360.0, 1313.0, 360.0, 1347.0, 145.0, 1347.0], "score": 1.0, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [377.0, 1313.0, 561.0, 1313.0, 561.0, 1347.0, 377.0, 1347.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 1718.0, 304.0, 1718.0, 304.0, 1752.0, 145.0, 1752.0], "score": 0.99, "text": "View at Publisher"}, {"category_id": 15, "poly": [148.0, 994.0, 585.0, 994.0, 585.0, 1028.0, 148.0, 1028.0], "score": 0.99, "text": "vol. 54, pp. 1041-1044, 1965. View at Pubisher"}, {"category_id": 15, "poly": [600.0, 994.0, 1282.0, 994.0, 1282.0, 1028.0, 600.0, 1028.0], "score": 0.96, "text": "View at Google Scholar : View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [320.0, 1718.0, 795.0, 1718.0, 795.0, 1752.0, 320.0, 1752.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [812.0, 1718.0, 999.0, 1718.0, 999.0, 1752.0, 812.0, 1752.0], "score": 1.0, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [148.0, 1228.0, 1033.0, 1228.0, 1033.0, 1260.0, 148.0, 1260.0], "score": 0.99, "text": "Analysis: Theory, Methods & Applications, vol. 4, no. 5, pp. 1011-1021, 1980. View at Publisher"}, {"category_id": 15, "poly": [1050.0, 1228.0, 1535.0, 1228.0, 1535.0, 1260.0, 1050.0, 1260.0], "score": 0.96, "text": "View at Google Scholar : View at Zentralblatt MATH "}, {"category_id": 15, "poly": [101.0, 1513.0, 350.0, 1515.0, 350.0, 1550.0, 101.0, 1547.0], "score": 0.98, "text": "22. W. A. Kirk and H-K."}, {"category_id": 15, "poly": [387.0, 1513.0, 1530.0, 1515.0, 1530.0, 1550.0, 387.0, 1547.0], "score": 0.98, "text": "\"Asymptotic pointwise contractions,\u201d Nonlinear Analysis: Theory, Methods & Applications A, vol. 69, no. 12, pp. 4706-4712,"}, {"category_id": 15, "poly": [143.0, 814.0, 822.0, 816.0, 822.0, 858.0, 143.0, 855.0], "score": 0.94, "text": "14, no. 11, pp. 935-953, 1990. View at Publisher View at Google Scholar"}, {"category_id": 15, "poly": [837.0, 814.0, 1083.0, 816.0, 1083.0, 858.0, 837.0, 855.0], "score": 0.98, "text": "View at Zentralbatt MATH"}, {"category_id": 15, "poly": [145.0, 414.0, 742.0, 414.0, 742.0, 446.0, 145.0, 446.0], "score": 0.97, "text": "at Publisher \u00b7 View at Google Scholar \u00b7 View at Zentralblatt MATH"}, {"category_id": 15, "poly": [759.0, 414.0, 947.0, 414.0, 947.0, 446.0, 759.0, 446.0], "score": 0.97, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 1053.0, 795.0, 1053.0, 795.0, 1084.0, 145.0, 1084.0], "score": 0.96, "text": "View at Publisher \u00b7 View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [812.0, 1053.0, 996.0, 1053.0, 996.0, 1084.0, 812.0, 1084.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 936.0, 623.0, 936.0, 623.0, 970.0, 145.0, 970.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [639.0, 936.0, 824.0, 936.0, 824.0, 970.0, 639.0, 970.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [564.0, 1367.0, 1039.0, 1367.0, 1039.0, 1401.0, 564.0, 1401.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1054.0, 1367.0, 1240.0, 1367.0, 1240.0, 1401.0, 1054.0, 1401.0], "score": 0.99, "text": "View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 1774.0, 654.0, 1774.0, 654.0, 1808.0, 145.0, 1808.0], "score": 0.97, "text": "vol. 27, no. 11, pp. 1307-1313, 1996. View at Publisher"}, {"category_id": 15, "poly": [669.0, 1774.0, 1346.0, 1774.0, 1346.0, 1808.0, 669.0, 1808.0], "score": 0.97, "text": "View at Google Scholar : View at Zentralblatt MATH : View at MathSciNet"}, {"category_id": 15, "poly": [145.0, 704.0, 1290.0, 704.0, 1290.0, 738.0, 145.0, 738.0], "score": 0.97, "text": "Potential Analysis, vol. 25, no. 3, pp. 205-222, 2006. View at Publisher View at Go0gle Scholar \u00b7 View at Zentralblatt MATH"}, {"category_id": 15, "poly": [1305.0, 704.0, 1493.0, 704.0, 1493.0, 738.0, 1305.0, 738.0], "score": 0.96, "text": "View at MathSciNet"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}]
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
[{"layout_dets": [{"category_id": 2, "poly": [87.25198364257812, 75.26839447021484, 198.9679718017578, 75.26839447021484, 198.9679718017578, 186.81060791015625, 87.25198364257812, 186.81060791015625], "score": 0.9999963641166687}, {"category_id": 1, "poly": [117.47514343261719, 1114.9505615234375, 403.929443359375, 1114.9505615234375, 403.929443359375, 2016.4647216796875, 117.47514343261719, 2016.4647216796875], "score": 0.9999550580978394}, {"category_id": 1, "poly": [89.71782684326172, 2120.572998046875, 240.07302856445312, 2120.572998046875, 240.07302856445312, 2146.5927734375, 89.71782684326172, 2146.5927734375], "score": 0.9998055696487427}, {"category_id": 1, "poly": [118.60252380371094, 410.12255859375, 252.4972686767578, 410.12255859375, 252.4972686767578, 497.0179748535156, 118.60252380371094, 497.0179748535156], "score": 0.9997944235801697}, {"category_id": 1, "poly": [88.58511352539062, 843.2276000976562, 602.5758666992188, 843.2276000976562, 602.5758666992188, 873.4408569335938, 88.58511352539062, 873.4408569335938], "score": 0.9993554353713989}, {"category_id": 1, "poly": [87.08870697021484, 2028.768310546875, 628.12109375, 2028.768310546875, 628.12109375, 2104.421630859375, 87.08870697021484, 2104.421630859375], "score": 0.9984189867973328}, {"category_id": 3, "poly": [88.63139343261719, 516.1129760742188, 1568.57763671875, 516.1129760742188, 1568.57763671875, 819.2877807617188, 88.63139343261719, 819.2877807617188], "score": 0.9963036775588989}, {"category_id": 1, "poly": [530.727783203125, 1068.291259765625, 655.7791748046875, 1068.291259765625, 655.7791748046875, 1096.4388427734375, 530.727783203125, 1096.4388427734375], "score": 0.9736971259117126}, {"category_id": 2, "poly": [90.0193099975586, 2177.864501953125, 1010.9573974609375, 2177.864501953125, 1010.9573974609375, 2215.756591796875, 90.0193099975586, 2215.756591796875], "score": 0.9298795461654663}, {"category_id": 1, "poly": [89.72213745117188, 355.6985778808594, 374.3538513183594, 355.6985778808594, 374.3538513183594, 385.2727966308594, 89.72213745117188, 385.2727966308594], "score": 0.827194094657898}, {"category_id": 2, "poly": [89.75248718261719, 355.7275390625, 373.8431701660156, 355.7275390625, 373.8431701660156, 385.39556884765625, 89.75248718261719, 385.39556884765625], "score": 0.3303239643573761}, {"category_id": 2, "poly": [88.7232666015625, 514.2149658203125, 1565.2548828125, 514.2149658203125, 1565.2548828125, 819.65966796875, 88.7232666015625, 819.65966796875], "score": 0.30479952692985535}, {"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": [140.0, 1118.0, 320.0, 1118.0, 320.0, 1152.0, 140.0, 1152.0], "score": 0.95, "text": "About this Joumal \u00b7"}, {"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.98, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [138.0, 1174.0, 313.0, 1180.0, 312.0, 1214.0, 137.0, 1208.0], "score": 0.96, "text": "Advance Access -"}, {"category_id": 15, "poly": [139.0, 1201.0, 308.0, 1206.0, 307.0, 1241.0, 137.0, 1235.0], "score": 0.98, "text": "Aims and Scope \u00b7"}, {"category_id": 15, "poly": [140.0, 1235.0, 401.0, 1235.0, 401.0, 1269.0, 140.0, 1269.0], "score": 0.96, "text": "Article Processing Charges -"}, {"category_id": 15, "poly": [139.0, 1259.0, 305.0, 1265.0, 304.0, 1299.0, 137.0, 1293.0], "score": 0.95, "text": "Articles in Press -"}, {"category_id": 15, "poly": [138.0, 1289.0, 318.0, 1294.0, 317.0, 1328.0, 137.0, 1323.0], "score": 0.99, "text": "Author Guidelines \u00b7"}, {"category_id": 15, "poly": [136.0, 1315.0, 382.0, 1321.0, 381.0, 1362.0, 135.0, 1357.0], "score": 0.91, "text": "Bibliographic Infomation *"}, {"category_id": 15, "poly": [140.0, 1352.0, 367.0, 1352.0, 367.0, 1384.0, 140.0, 1384.0], "score": 0.96, "text": " Citations to this Jounal -"}, {"category_id": 15, "poly": [138.0, 1376.0, 340.0, 1379.0, 339.0, 1413.0, 138.0, 1411.0], "score": 0.94, "text": " Contact Information -"}, {"category_id": 15, "poly": [140.0, 1411.0, 298.0, 1411.0, 298.0, 1438.0, 140.0, 1438.0], "score": 0.99, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [140.0, 1440.0, 330.0, 1440.0, 330.0, 1469.0, 140.0, 1469.0], "score": 0.95, "text": "Editorial Workfow \u00b7-"}, {"category_id": 15, "poly": [140.0, 1469.0, 320.0, 1469.0, 320.0, 1496.0, 140.0, 1496.0], "score": 0.94, "text": " Free eTOC Alerts -"}, {"category_id": 15, "poly": [140.0, 1498.0, 317.0, 1498.0, 317.0, 1525.0, 140.0, 1525.0], "score": 0.95, "text": " Publication Ethics \u00b7"}, {"category_id": 15, "poly": [140.0, 1523.0, 411.0, 1523.0, 411.0, 1554.0, 140.0, 1554.0], "score": 0.93, "text": "Reviewers Acknowledgment *"}, {"category_id": 15, "poly": [138.0, 1549.0, 347.0, 1555.0, 346.0, 1589.0, 137.0, 1583.0], "score": 0.96, "text": " Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1579.0, 379.0, 1584.0, 378.0, 1618.0, 137.0, 1613.0], "score": 0.99, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [140.0, 1615.0, 307.0, 1615.0, 307.0, 1642.0, 140.0, 1642.0], "score": 0.99, "text": "Table of Contents"}, {"category_id": 15, "poly": [138.0, 1664.0, 342.0, 1664.0, 342.0, 1698.0, 138.0, 1698.0], "score": 0.93, "text": " Open Special Issues \u00b7"}, {"category_id": 15, "poly": [136.0, 1691.0, 374.0, 1693.0, 374.0, 1728.0, 135.0, 1725.0], "score": 0.99, "text": "Published Special Issues "}, {"category_id": 15, "poly": [140.0, 1723.0, 367.0, 1723.0, 367.0, 1757.0, 140.0, 1757.0], "score": 0.97, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [138.0, 1774.0, 234.0, 1774.0, 234.0, 1808.0, 138.0, 1808.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1803.0, 280.0, 1803.0, 280.0, 1830.0, 143.0, 1830.0], "score": 0.97, "text": "Full- Text PDF"}, {"category_id": 15, "poly": [143.0, 1835.0, 300.0, 1835.0, 300.0, 1861.0, 143.0, 1861.0], "score": 0.99, "text": "Full-Text HTML"}, {"category_id": 15, "poly": [143.0, 1864.0, 290.0, 1864.0, 290.0, 1891.0, 143.0, 1891.0], "score": 0.97, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1893.0, 288.0, 1893.0, 288.0, 1920.0, 143.0, 1920.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [143.0, 1922.0, 320.0, 1922.0, 320.0, 1949.0, 143.0, 1949.0], "score": 1.0, "text": "Linked References"}, {"category_id": 15, "poly": [138.0, 1944.0, 354.0, 1947.0, 354.0, 1981.0, 138.0, 1978.0], "score": 1.0, "text": "Citations to this Article"}, {"category_id": 15, "poly": [140.0, 1978.0, 362.0, 1978.0, 362.0, 2010.0, 140.0, 2010.0], "score": 0.98, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [89.0, 2030.0, 192.0, 2030.0, 192.0, 2054.0, 89.0, 2054.0], "score": 1.0, "text": "Advances"}, {"category_id": 15, "poly": [184.0, 2025.0, 514.0, 2025.0, 514.0, 2056.0, 184.0, 2056.0], "score": 0.99, "text": " in Condensed Matter Physics"}, {"category_id": 15, "poly": [86.0, 2049.0, 536.0, 2049.0, 536.0, 2081.0, 86.0, 2081.0], "score": 0.98, "text": "Volume 2013 (2013), Article ID 415726,"}, {"category_id": 15, "poly": [524.0, 2054.0, 627.0, 2054.0, 627.0, 2081.0, 524.0, 2081.0], "score": 0.89, "text": "\uff0c6 pages"}, {"category_id": 15, "poly": [89.0, 2078.0, 524.0, 2078.0, 524.0, 2103.0, 89.0, 2103.0], "score": 1.0, "text": "http://dx.doi.0rg/10.1155/2013/415726"}, {"category_id": 15, "poly": [89.0, 2120.0, 241.0, 2120.0, 241.0, 2147.0, 89.0, 2147.0], "score": 0.99, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [89.60556030273438, 257.7027587890625, 546.51416015625, 257.7027587890625, 546.51416015625, 286.95489501953125, 89.60556030273438, 286.95489501953125], "score": 0.9999998807907104}, {"category_id": 1, "poly": [91.7472915649414, 139.4868927001953, 805.0294189453125, 139.4868927001953, 805.0294189453125, 237.60865783691406, 91.7472915649414, 237.60865783691406], "score": 0.9999997615814209}, {"category_id": 1, "poly": [90.519287109375, 310.0242919921875, 373.8019104003906, 310.0242919921875, 373.8019104003906, 339.0802307128906, 90.519287109375, 339.0802307128906], "score": 0.9999997019767761}, {"category_id": 1, "poly": [88.21710968017578, 1878.56494140625, 1564.9072265625, 1878.56494140625, 1564.9072265625, 2086.603759765625, 88.21710968017578, 2086.603759765625], "score": 0.9999996423721313}, {"category_id": 1, "poly": [88.62420654296875, 1430.4815673828125, 1571.1531982421875, 1430.4815673828125, 1571.1531982421875, 1736.9500732421875, 88.62420654296875, 1736.9500732421875], "score": 0.9999992847442627}, {"category_id": 0, "poly": [91.93282318115234, 716.9573974609375, 235.2843780517578, 716.9573974609375, 235.2843780517578, 744.0887451171875, 91.93282318115234, 744.0887451171875], "score": 0.9999988079071045}, {"category_id": 1, "poly": [90.74417877197266, 772.6946411132812, 1552.1319580078125, 772.6946411132812, 1552.1319580078125, 949.199951171875, 90.74417877197266, 949.199951171875], "score": 0.9999985694885254}, {"category_id": 1, "poly": [90.10245513916016, 363.0416564941406, 1466.570556640625, 363.0416564941406, 1466.570556640625, 420.6076354980469, 90.10245513916016, 420.6076354980469], "score": 0.9999980926513672}, {"category_id": 1, "poly": [90.15686798095703, 510.7475280761719, 1540.625732421875, 510.7475280761719, 1540.625732421875, 683.40966796875, 90.15686798095703, 683.40966796875], "score": 0.9999978542327881}, {"category_id": 2, "poly": [89.12712097167969, 82.95001220703125, 494.72808837890625, 82.95001220703125, 494.72808837890625, 112.88941955566406, 89.12712097167969, 112.88941955566406], "score": 0.9999977946281433}, {"category_id": 0, "poly": [91.56726837158203, 453.8135681152344, 176.73162841796875, 453.8135681152344, 176.73162841796875, 479.4419860839844, 91.56726837158203, 479.4419860839844], "score": 0.9999971389770508}, {"category_id": 1, "poly": [89.99569702148438, 2170.109619140625, 1557.329345703125, 2170.109619140625, 1557.329345703125, 2258.6806640625, 89.99569702148438, 2258.6806640625], "score": 0.9999960660934448}, {"category_id": 1, "poly": [92.00595092773438, 967.7759399414062, 1550.2696533203125, 967.7759399414062, 1550.2696533203125, 1060.31787109375, 92.00595092773438, 1060.31787109375], "score": 0.9999918937683105}, {"category_id": 1, "poly": [91.26786804199219, 1165.62548828125, 1551.071533203125, 1165.62548828125, 1551.071533203125, 1341.31689453125, 91.26786804199219, 1341.31689453125], "score": 0.9999575018882751}, {"category_id": 0, "poly": [90.88581085205078, 1368.39501953125, 503.1802673339844, 1368.39501953125, 503.1802673339844, 1396.3060302734375, 90.88581085205078, 1396.3060302734375], "score": 0.9996834993362427}, {"category_id": 0, "poly": [91.30207824707031, 1766.3370361328125, 301.4610290527344, 1766.3370361328125, 301.4610290527344, 1793.4818115234375, 91.30207824707031, 1793.4818115234375], "score": 0.9996699094772339}, {"category_id": 0, "poly": [91.46246337890625, 2115.71533203125, 218.72264099121094, 2115.71533203125, 218.72264099121094, 2140.02490234375, 91.46246337890625, 2140.02490234375], "score": 0.9622940421104431}, {"category_id": 1, "poly": [90.840087890625, 1823.8428955078125, 283.1961975097656, 1823.8428955078125, 283.1961975097656, 1849.7265625, 90.840087890625, 1849.7265625], "score": 0.9572533369064331}, {"category_id": 1, "poly": [87.99817657470703, 1070.980712890625, 1563.170166015625, 1070.980712890625, 1563.170166015625, 1159.4954833984375, 87.99817657470703, 1159.4954833984375], "score": 0.6675392985343933}, {"category_id": 0, "poly": [90.87812042236328, 1823.8172607421875, 283.5413818359375, 1823.8172607421875, 283.5413818359375, 1849.753662109375, 90.87812042236328, 1849.753662109375], "score": 0.22359627485275269}, {"category_id": 13, "poly": [1354, 1165, 1406, 1165, 1406, 1194, 1354, 1194], "score": 0.91, "latex": "\\psi_{i}(\\mathbf{r})"}, {"category_id": 13, "poly": [350, 1092, 404, 1092, 404, 1122, 350, 1122], "score": 0.9, "latex": "J(p_{z})"}, {"category_id": 13, "poly": [418, 2199, 538, 2199, 538, 2229, 418, 2229], "score": 0.89, "latex": "(\\mathrm{Ba})^{+x}(\\mathrm{O}^{-x})"}, {"category_id": 13, "poly": [258, 1586, 331, 1586, 331, 1615, 258, 1615], "score": 0.89, "latex": "2\\times10^{4}"}, {"category_id": 13, "poly": [700, 1587, 791, 1587, 791, 1616, 700, 1616], "score": 0.88, "latex": "2.5\\times10^{4}"}, {"category_id": 13, "poly": [695, 1461, 806, 1461, 806, 1487, 695, 1487], "score": 0.88, "latex": "166^{\\circ}\\pm3.0^{\\circ}"}, {"category_id": 13, "poly": [562, 2228, 683, 2228, 683, 2258, 562, 2258], "score": 0.88, "latex": "(\\mathrm{Ba})^{+x}(\\mathrm{O}^{-x})"}, {"category_id": 13, "poly": [348, 1169, 373, 1169, 373, 1194, 348, 1194], "score": 0.87, "latex": "\\mathcal{P}_{z}"}, {"category_id": 13, "poly": [745, 1165, 788, 1165, 788, 1191, 745, 1191], "score": 0.87, "latex": "n(\\mathbf{p})"}, {"category_id": 13, "poly": [726, 2229, 838, 2229, 838, 2258, 726, 2258], "score": 0.86, "latex": "(\\mathtt{B a})^{+x}(\\mathsf{S}^{-x})"}, {"category_id": 13, "poly": [581, 2199, 837, 2199, 837, 2228, 581, 2228], "score": 0.84, "latex": "\\mathrm{(Ba)}^{+\\bar{x}}\\mathrm{(S}^{-x}\\mathrm{)}(0.0\\leq x\\leq2.0)"}, {"category_id": 13, "poly": [337, 1461, 436, 1461, 436, 1487, 337, 1487], "score": 0.82, "latex": "\\cdot59.54\\,\\mathrm{keV}"}, {"category_id": 13, "poly": [529, 1492, 712, 1492, 712, 1523, 529, 1523], "score": 0.79, "latex": "\\mathrm{BaS\\,1.7815\\,g m/cm^{3}}"}, {"category_id": 13, "poly": [959, 2027, 1013, 2027, 1013, 2053, 959, 2053], "score": 0.79, "latex": "145\\,\\mathrm{k}"}, {"category_id": 13, "poly": [120, 2233, 139, 2233, 139, 2259, 120, 2259], "score": 0.78, "latex": "\\mathcal{P}"}, {"category_id": 13, "poly": [1529, 1649, 1560, 1649, 1560, 1673, 1529, 1673], "score": 0.75, "latex": "+5"}, {"category_id": 13, "poly": [433, 1169, 449, 1169, 449, 1188, 433, 1188], "score": 0.71, "latex": "z"}, {"category_id": 13, "poly": [699, 540, 799, 540, 799, 567, 699, 567], "score": 0.7, "latex": "59.54\\,\\mathrm{keV}"}, {"category_id": 13, "poly": [88, 1589, 173, 1589, 173, 1617, 88, 1617], "score": 0.68, "latex": "48.529\\,\\mathrm{h}"}, {"category_id": 13, "poly": [181, 364, 204, 364, 204, 388, 181, 388], "score": 0.67, "latex": "\\copyright"}, {"category_id": 13, "poly": [1240, 2206, 1257, 2206, 1257, 2226, 1240, 2226], "score": 0.65, "latex": "x"}, {"category_id": 13, "poly": [909, 1092, 954, 1092, 954, 1119, 909, 1119], "score": 0.65, "latex": "n(\\mathbf{p})"}, {"category_id": 13, "poly": [341, 1491, 488, 1491, 488, 1522, 341, 1522], "score": 0.64, "latex": ")\\,2.9329\\,\\mathrm{gm}/\\mathrm{cm}^{3}"}, {"category_id": 13, "poly": [1400, 1461, 1472, 1461, 1472, 1488, 1400, 1488], "score": 0.54, "latex": "3.2\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [618, 1428, 717, 1428, 717, 1459, 618, 1459], "score": 0.44, "latex": "\\mathrm{5\\,Ci^{241}A m}"}, {"category_id": 13, "poly": [542, 1589, 615, 1589, 615, 1617, 542, 1617], "score": 0.33, "latex": "56.25\\,\\mathrm{h}"}, {"category_id": 13, "poly": [181, 363, 280, 363, 280, 390, 181, 390], "score": 0.3, "latex": "\\copyright2013\\,\\mathrm{R}"}, {"category_id": 14, "poly": [916, 1054, 1395, 1054, 1395, 1187, 916, 1187], "score": 0.3, "latex": "\\begin{array}{r l}{\\dot{\\mathbf{\\eta}}}&{J\\left(p_{z}\\right)=\\displaystyle\\iint_{-\\infty}^{+\\infty}\\!\\!\\!n\\left(\\mathbf{p}\\right)d p_{x}d p_{y}\\mathrm{,}(1)}\\\\ {\\dot{n\\left(\\mathbf{p}\\right)}\\alpha\\displaystyle\\sum_{i}\\bigg|\\int\\psi_{i}\\left(\\mathbf{r}\\right)\\exp\\left(-i\\mathbf{p}\\cdot\\mathbf{r}\\right)d\\mathbf{r}\\bigg|^{2}\\mathrm{,}(2)}\\\\ &{\\mathrm{where}\\;\\psi_{i}(\\mathbf{r})}\\end{array}"}, {"category_id": 13, "poly": [505, 1311, 522, 1311, 522, 1336, 505, 1336], "score": 0.26, "latex": "\\underline{{3}}"}, {"category_id": 15, "poly": [89.0, 136.0, 706.0, 139.0, 706.0, 173.0, 89.0, 171.0], "score": 0.98, "text": "Department of Physics, University of Rajasthan, Jaipur 302004, India"}, {"category_id": 15, "poly": [86.0, 171.0, 704.0, 173.0, 703.0, 207.0, 86.0, 205.0], "score": 0.98, "text": "2Faculty of Sciences, Manipal University Jaipur, Jaipur 302007, India"}, {"category_id": 15, "poly": [89.0, 205.0, 804.0, 207.0, 804.0, 241.0, 89.0, 239.0], "score": 0.99, "text": "3Department of Pure & Applied Physics, University of Kota, Kota 324010, India"}, {"category_id": 15, "poly": [89.0, 261.0, 549.0, 261.0, 549.0, 295.0, 89.0, 295.0], "score": 0.98, "text": "Received 25 May 2013; Accepted 24 August 2013"}, {"category_id": 15, "poly": [89.0, 314.0, 374.0, 314.0, 374.0, 346.0, 89.0, 346.0], "score": 0.97, "text": "Academic Editor: Dilip Kanhere"}, {"category_id": 15, "poly": [89.0, 395.0, 873.0, 395.0, 873.0, 429.0, 89.0, 429.0], "score": 0.98, "text": "distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [89.0, 453.0, 180.0, 453.0, 180.0, 487.0, 89.0, 487.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [89.0, 514.0, 1493.0, 514.0, 1493.0, 546.0, 89.0, 546.0], "score": 0.99, "text": "The electronic structure and electron momentum density distribution in BaO and BaS are presented using Compton spectroscopy. The frst-ever Compton profle"}, {"category_id": 15, "poly": [89.0, 570.0, 1520.0, 570.0, 1520.0, 604.0, 89.0, 604.0], "score": 0.98, "text": "Compton profles of BaO and BaS using the linear combination of atomic orbitals method. In the present computation, the correlation scheme proposed by Perdew-"}, {"category_id": 15, "poly": [89.0, 599.0, 1535.0, 599.0, 1535.0, 633.0, 89.0, 633.0], "score": 0.98, "text": "Burke-Ernzerhof and the exchange scheme of Becke were considered. The hybrid B3PW and Hartree-Fock based profles were also computed for both compounds."}, {"category_id": 15, "poly": [89.0, 629.0, 1503.0, 629.0, 1503.0, 663.0, 89.0, 663.0], "score": 0.99, "text": "The ionic configurations are performed to estimate the charge transfer on compound formation, and the present study suggests charge transfer from Ba to O and S"}, {"category_id": 15, "poly": [89.0, 658.0, 1119.0, 658.0, 1119.0, 692.0, 89.0, 692.0], "score": 0.98, "text": "atoms. On the basis of equal-valence-electron-density profles,itis found that BaO is more ionic as compared to BaS."}, {"category_id": 15, "poly": [91.0, 721.0, 236.0, 721.0, 236.0, 748.0, 91.0, 748.0], "score": 1.0, "text": "1. Introduction"}, {"category_id": 15, "poly": [89.0, 772.0, 1550.0, 775.0, 1550.0, 809.0, 89.0, 806.0], "score": 0.98, "text": "The I-VI alkaline earth compounds have interesting bond characteristics and simple crystal structures. BaO and BaS have potential applications in ight-emiting diodes"}, {"category_id": 15, "poly": [89.0, 806.0, 1550.0, 806.0, 1550.0, 841.0, 89.0, 841.0], "score": 0.98, "text": "(LEDs), laser diodes (LDs), and magnetooptical devices [14]. BaO is an indirect bandgap, whereas BaS is a direct bandgap material. At normal conditions, BaO and"}, {"category_id": 15, "poly": [89.0, 836.0, 1488.0, 836.0, 1488.0, 867.0, 89.0, 867.0], "score": 0.96, "text": "BaS crystallize in NaCl (B1) structure, but under pressure, they show structural phase transition from B1 to B2 structure [5, 6]. Using the full-potential linearized "}, {"category_id": 15, "poly": [86.0, 860.0, 1500.0, 858.0, 1501.0, 899.0, 86.0, 902.0], "score": 0.81, "text": "augmented plae wave F-LAPWhd, Drablat al rpoted the ltronic andoptcal prpertis fBa and Baincubc phase at maland "}, {"category_id": 15, "poly": [89.0, 894.0, 1515.0, 894.0, 1515.0, 926.0, 89.0, 926.0], "score": 0.99, "text": "hydrostatic pressure. Lin et al. [8] observed that the electronic structure ofthese compounds containing oxygen atoms always obeys a different relationship from the"}, {"category_id": 15, "poly": [86.0, 923.0, 780.0, 921.0, 780.0, 955.0, 86.0, 958.0], "score": 0.98, "text": " compounds not containing oxygen atoms using density functional theory (DFT)."}, {"category_id": 15, "poly": [91.0, 972.0, 1493.0, 972.0, 1493.0, 1006.0, 91.0, 1006.0], "score": 0.97, "text": "Most ofthe earlier studies, both experimental and theoretical, involve the electronic, optical, and structural properties ofBaO and BaS [515]. To the best ofour"}, {"category_id": 15, "poly": [86.0, 999.0, 1496.0, 996.0, 1496.0, 1038.0, 86.0, 1040.0], "score": 0.8, "text": "knowlede, nne attdt ltronic strutue and mnmdnsityfBaand Ba usng Coto ptropy It swellstablhed that Ctn"}, {"category_id": 15, "poly": [89.0, 1033.0, 1550.0, 1031.0, 1550.0, 1065.0, 89.0, 1067.0], "score": 0.98, "text": "spectroscopy provides a useful test to examine the bonding in solids [16, 17]. Thus, we found it worth to study the electronic structure in BaO and BaS using Compton "}, {"category_id": 15, "poly": [1402.0, 1096.0, 1555.0, 1096.0, 1555.0, 1123.0, 1402.0, 1123.0], "score": 0.97, "text": "where integration"}, {"category_id": 15, "poly": [86.0, 1191.0, 1481.0, 1189.0, 1481.0, 1230.0, 86.0, 1233.0], "score": 0.79, "text": "wave ftionand suatonxts oeralloccpid statIn this paper, te reuts ofCoptnscattrng studya and Ba are prentd.F t"}, {"category_id": 15, "poly": [91.0, 1223.0, 1547.0, 1223.0, 1547.0, 1257.0, 91.0, 1257.0], "score": 0.97, "text": "theoretical Compton profles, first-principles calculations based on inear combination ofatomic orbitals (LCAO) method are performed using CRYSTALO6 code [18]."}, {"category_id": 15, "poly": [89.0, 1250.0, 1471.0, 1250.0, 1471.0, 1284.0, 89.0, 1284.0], "score": 0.98, "text": "The ionic model has been applied to estimate the charge transfer in these compounds. The nature ofbonding in isostructural and isovalent BaO and BaS is also"}, {"category_id": 15, "poly": [89.0, 1279.0, 1505.0, 1279.0, 1505.0, 1313.0, 89.0, 1313.0], "score": 0.98, "text": "compared using equal-valence-electron-density (EVED) profles. The paper is organized as follows. Section 2 gives the experimental details and data analysis. The"}, {"category_id": 15, "poly": [89.0, 1372.0, 504.0, 1372.0, 504.0, 1403.0, 89.0, 1403.0], "score": 0.97, "text": "2. Expe rime ntal Details and Data Analysis"}, {"category_id": 15, "poly": [91.0, 1525.0, 1515.0, 1525.0, 1515.0, 1559.0, 91.0, 1559.0], "score": 0.98, "text": "which was cooled with liquid nitrogen providing overall momentum resolution of 0.6 a.u. The spectra were recorded with a multichannel analyzer (MCA) with 4096"}, {"category_id": 15, "poly": [84.0, 1618.0, 1505.0, 1615.0, 1505.0, 1657.0, 84.0, 1659.0], "score": 0.89, "text": "processed for several systematic corrections likebackground, instrumental resoution sanple absorption, scattering crosssection, and mutipe scattering using the"}, {"category_id": 15, "poly": [89.0, 1679.0, 1562.0, 1679.0, 1562.0, 1713.0, 89.0, 1713.0], "score": 0.98, "text": "a.u., being the area of free atom Compton profle [22] in the given range. The 1 s electrons of Ba were neglected for both compounds since these do not contribute in the"}, {"category_id": 15, "poly": [86.0, 1708.0, 329.0, 1705.0, 330.0, 1742.0, 86.0, 1745.0], "score": 1.0, "text": "present experimental setup."}, {"category_id": 15, "poly": [86.0, 1769.0, 303.0, 1769.0, 303.0, 1801.0, 86.0, 1801.0], "score": 1.0, "text": "3. Theoretical Details"}, {"category_id": 15, "poly": [86.0, 1825.0, 285.0, 1825.0, 285.0, 1857.0, 86.0, 1857.0], "score": 0.98, "text": "3.1. DFT-LCAO Method"}, {"category_id": 15, "poly": [89.0, 1883.0, 1547.0, 1883.0, 1547.0, 1917.0, 89.0, 1917.0], "score": 0.98, "text": "To compute the theoretical Compton profles of BaO and BaS, the LCAO method embodied in the CRYSTAL06 code [18, 23] was employed. This code provides a"}, {"category_id": 15, "poly": [89.0, 1913.0, 1508.0, 1913.0, 1508.0, 1947.0, 89.0, 1947.0], "score": 0.96, "text": "platformto calculate electronic structure of periodic systems considering Gaussian basis sets. In the LCAO technique, each crystallne orbital is built from the inear"}, {"category_id": 15, "poly": [89.0, 1942.0, 1564.0, 1942.0, 1564.0, 1974.0, 89.0, 1974.0], "score": 0.98, "text": "combination of Bloch functions. The Bloch functions are defined in terms of local functions constructed from the atom-centered certain number of Gaussian functions. For"}, {"category_id": 15, "poly": [86.0, 1971.0, 1540.0, 1971.0, 1540.0, 2005.0, 86.0, 2005.0], "score": 0.98, "text": "Ba, O, and S, the local functions were constructed from the Gaussian type basis sets [24]. In the present DFT calculation, the crystal Hamitonian was generated using"}, {"category_id": 15, "poly": [89.0, 2000.0, 1523.0, 2000.0, 1523.0, 2034.0, 89.0, 2034.0], "score": 0.97, "text": "the correlation functional proposed by Perdew et al. [25] and exchange scheme of Becke [26]. The hybrid B3PW and Hartree-Fock (HF) based profles were also"}, {"category_id": 15, "poly": [89.0, 2056.0, 175.0, 2056.0, 175.0, 2090.0, 89.0, 2090.0], "score": 0.98, "text": "and BaS."}, {"category_id": 15, "poly": [89.0, 2117.0, 216.0, 2117.0, 216.0, 2144.0, 89.0, 2144.0], "score": 0.98, "text": "3.2. Ionic Model"}, {"category_id": 15, "poly": [84.0, 2166.0, 1525.0, 2168.0, 1525.0, 2210.0, 84.0, 2207.0], "score": 0.95, "text": "The theoretical ionic profles ofBaO and BaS for various charge transfer confgurations were calculated from thefee atom Compton profle of Ba, O, and S atoms"}, {"category_id": 15, "poly": [1407.0, 1159.0, 1540.0, 1165.0, 1539.0, 1199.0, 1407.0, 1193.0], "score": 0.93, "text": " is the electron"}, {"category_id": 15, "poly": [89.0, 1094.0, 349.0, 1094.0, 349.0, 1126.0, 89.0, 1126.0], "score": 0.97, "text": "profile. The Compton profle,"}, {"category_id": 15, "poly": [91.0, 2203.0, 417.0, 2203.0, 417.0, 2237.0, 91.0, 2237.0], "score": 0.98, "text": "[22]. The valence profles for various"}, {"category_id": 15, "poly": [792.0, 1591.0, 1542.0, 1591.0, 1542.0, 1625.0, 792.0, 1625.0], "score": 0.99, "text": "counts at the Compton peak. To deduce the true Compton profle, the raw data were"}, {"category_id": 15, "poly": [89.0, 1167.0, 347.0, 1167.0, 347.0, 1199.0, 89.0, 1199.0], "score": 0.97, "text": "is performed over a constant-"}, {"category_id": 15, "poly": [789.0, 1167.0, 888.0, 1167.0, 888.0, 1199.0, 789.0, 1199.0], "score": 0.99, "text": "is given as"}, {"category_id": 15, "poly": [684.0, 2232.0, 725.0, 2232.0, 725.0, 2266.0, 684.0, 2266.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [839.0, 2232.0, 1537.0, 2232.0, 1537.0, 2266.0, 839.0, 2266.0], "score": 0.97, "text": " configurations were then added to the core contribution to get total profles. All"}, {"category_id": 15, "poly": [539.0, 2203.0, 580.0, 2203.0, 580.0, 2237.0, 539.0, 2237.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [89.0, 1462.0, 336.0, 1462.0, 336.0, 1496.0, 89.0, 1496.0], "score": 1.0, "text": "The incident gamma-rays of"}, {"category_id": 15, "poly": [437.0, 1462.0, 694.0, 1462.0, 694.0, 1496.0, 437.0, 1496.0], "score": 0.98, "text": "were scattered at an angle of"}, {"category_id": 15, "poly": [713.0, 1494.0, 1530.0, 1491.0, 1530.0, 1525.0, 713.0, 1528.0], "score": 0.98, "text": ". The scattered radiation was analyzed using an HPGe detector (Canberra model, GLO110S)"}, {"category_id": 15, "poly": [89.0, 2030.0, 958.0, 2030.0, 958.0, 2061.0, 89.0, 2061.0], "score": 1.0, "text": "computed for both compounds [18]. The computations were performed by taking B1 structure and"}, {"category_id": 15, "poly": [1014.0, 2030.0, 1542.0, 2030.0, 1542.0, 2061.0, 1014.0, 2061.0], "score": 0.98, "text": "points in the irreducible wedge ofthe Brillouin zone for BaO"}, {"category_id": 15, "poly": [91.0, 2232.0, 119.0, 2232.0, 119.0, 2266.0, 91.0, 2266.0], "score": 0.92, "text": "the"}, {"category_id": 15, "poly": [140.0, 2232.0, 561.0, 2232.0, 561.0, 2266.0, 140.0, 2266.0], "score": 0.98, "text": "shell ofO and S atoms. The valence profles for"}, {"category_id": 15, "poly": [89.0, 1649.0, 1528.0, 1649.0, 1528.0, 1684.0, 89.0, 1684.0], "score": 0.98, "text": "computer code ofthe Warwick Group [20. 21]. Finally, the corrected profles were normalized to 23.200 for BaO and 26.434 for BaS electrons in the range of0 to"}, {"category_id": 15, "poly": [374.0, 1167.0, 432.0, 1167.0, 432.0, 1199.0, 374.0, 1199.0], "score": 1.0, "text": "plane,"}, {"category_id": 15, "poly": [450.0, 1167.0, 744.0, 1167.0, 744.0, 1199.0, 450.0, 1199.0], "score": 0.98, "text": "is scattering vector direction, and"}, {"category_id": 15, "poly": [89.0, 543.0, 698.0, 543.0, 698.0, 575.0, 89.0, 575.0], "score": 0.98, "text": "measurements on polycrystalline BaO and BaS were performed using"}, {"category_id": 15, "poly": [800.0, 543.0, 1525.0, 543.0, 1525.0, 575.0, 800.0, 575.0], "score": 0.98, "text": "gamma-rays. To interpret the experimental data, we have computed the theoretical"}, {"category_id": 15, "poly": [89.0, 365.0, 180.0, 365.0, 180.0, 397.0, 89.0, 397.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [838.0, 2203.0, 1239.0, 2203.0, 1239.0, 2237.0, 838.0, 2237.0], "score": 0.99, "text": " configurations were computed by transferring"}, {"category_id": 15, "poly": [1258.0, 2203.0, 1557.0, 2203.0, 1557.0, 2237.0, 1258.0, 2237.0], "score": 0.95, "text": "electrons from the s shellof Ba to"}, {"category_id": 15, "poly": [405.0, 1094.0, 908.0, 1094.0, 908.0, 1126.0, 405.0, 1126.0], "score": 0.99, "text": ", is related to the ground state electron momentum density"}, {"category_id": 15, "poly": [86.0, 1494.0, 340.0, 1491.0, 340.0, 1525.0, 86.0, 1528.0], "score": 0.98, "text": "and effective density for BaC"}, {"category_id": 15, "poly": [489.0, 1494.0, 528.0, 1491.0, 528.0, 1525.0, 489.0, 1528.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [807.0, 1462.0, 1399.0, 1462.0, 1399.0, 1496.0, 807.0, 1496.0], "score": 0.97, "text": "by the polycrystalline sample of BaO and BaS (pellet of 18 mm dia,"}, {"category_id": 15, "poly": [1473.0, 1462.0, 1562.0, 1462.0, 1562.0, 1496.0, 1473.0, 1496.0], "score": 1.0, "text": "thickness,"}, {"category_id": 15, "poly": [86.0, 1428.0, 617.0, 1428.0, 617.0, 1469.0, 86.0, 1469.0], "score": 0.98, "text": "The measurements on BaO and BaS were performed using "}, {"category_id": 15, "poly": [718.0, 1428.0, 1552.0, 1428.0, 1552.0, 1469.0, 718.0, 1469.0], "score": 0.94, "text": "gamma-rays Compton spectrometer. The details ofthe experimental setup are available in [19]."}, {"category_id": 15, "poly": [174.0, 1591.0, 541.0, 1591.0, 541.0, 1625.0, 174.0, 1625.0], "score": 0.97, "text": "to collect 2 \u00d7 104 counts and BaS around"}, {"category_id": 15, "poly": [616.0, 1591.0, 699.0, 1591.0, 699.0, 1625.0, 616.0, 1625.0], "score": 0.89, "text": "to collect"}, {"category_id": 15, "poly": [281.0, 365.0, 1464.0, 365.0, 1464.0, 397.0, 281.0, 397.0], "score": 0.98, "text": "Kumar et al. This is an open access article distributed under the Creative Commons Atribution License, which permits unrestricted use,"}, {"category_id": 15, "poly": [89.0, 1311.0, 504.0, 1311.0, 504.0, 1345.0, 89.0, 1345.0], "score": 0.99, "text": "theoretical calculations are presented in Section"}, {"category_id": 15, "poly": [523.0, 1311.0, 1412.0, 1311.0, 1412.0, 1345.0, 523.0, 1345.0], "score": 0.98, "text": "and Section 4 is devoted to the resuts and discussion Finally, the conclusions are drawn in Section 5."}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 0, "poly": [91.0196304321289, 1884.4053955078125, 231.04054260253906, 1884.4053955078125, 231.04054260253906, 1912.9195556640625, 91.0196304321289, 1912.9195556640625], "score": 0.9999994039535522}, {"category_id": 1, "poly": [91.3698959350586, 754.431884765625, 1535.784912109375, 754.431884765625, 1535.784912109375, 810.5221557617188, 91.3698959350586, 810.5221557617188], "score": 0.9999992251396179}, {"category_id": 1, "poly": [90.13461303710938, 1502.198486328125, 1567.8511962890625, 1502.198486328125, 1567.8511962890625, 1738.1129150390625, 90.13461303710938, 1738.1129150390625], "score": 0.9999989867210388}, {"category_id": 1, "poly": [89.23295593261719, 1941.5654296875, 1556.913330078125, 1941.5654296875, 1556.913330078125, 2087.917724609375, 89.23295593261719, 2087.917724609375], "score": 0.9999987483024597}, {"category_id": 1, "poly": [91.76690673828125, 1794.6348876953125, 1557.6793212890625, 1794.6348876953125, 1557.6793212890625, 1854.5736083984375, 91.76690673828125, 1854.5736083984375], "score": 0.9999982714653015}, {"category_id": 1, "poly": [90.50084686279297, 1102.3192138671875, 1532.22265625, 1102.3192138671875, 1532.22265625, 1133.3848876953125, 90.50084686279297, 1133.3848876953125], "score": 0.9999977946281433}, {"category_id": 1, "poly": [91.41088104248047, 197.61265563964844, 1549.43310546875, 197.61265563964844, 1549.43310546875, 256.9227600097656, 91.41088104248047, 256.9227600097656], "score": 0.9999977350234985}, {"category_id": 1, "poly": [92.2707290649414, 662.3663940429688, 1534.8604736328125, 662.3663940429688, 1534.8604736328125, 718.7718505859375, 92.2707290649414, 718.7718505859375], "score": 0.9999968409538269}, {"category_id": 1, "poly": [90.96248626708984, 312.89385986328125, 1550.7559814453125, 312.89385986328125, 1550.7559814453125, 371.8708190917969, 90.96248626708984, 371.8708190917969], "score": 0.9999966621398926}, {"category_id": 1, "poly": [89.40441131591797, 393.2928771972656, 1564.3697509765625, 393.2928771972656, 1564.3697509765625, 604.0750732421875, 89.40441131591797, 604.0750732421875], "score": 0.9999958276748657}, {"category_id": 0, "poly": [91.00100708007812, 137.44204711914062, 345.062744140625, 137.44204711914062, 345.062744140625, 167.01547241210938, 91.00100708007812, 167.01547241210938], "score": 0.9999955892562866}, {"category_id": 2, "poly": [89.0749740600586, 80.05528259277344, 1032.959228515625, 80.05528259277344, 1032.959228515625, 109.89458465576172, 89.0749740600586, 109.89458465576172], "score": 0.9999954104423523}, {"category_id": 1, "poly": [88.58851623535156, 834.2111206054688, 1564.656494140625, 834.2111206054688, 1564.656494140625, 983.0889892578125, 88.58851623535156, 983.0889892578125], "score": 0.9999943971633911}, {"category_id": 0, "poly": [92.04490661621094, 2119.915771484375, 267.8406982421875, 2119.915771484375, 267.8406982421875, 2147.420166015625, 92.04490661621094, 2147.420166015625], "score": 0.999992847442627}, {"category_id": 1, "poly": [91.69647216796875, 1151.6390380859375, 1550.22509765625, 1151.6390380859375, 1550.22509765625, 1330.3680419921875, 91.69647216796875, 1330.3680419921875], "score": 0.9999927282333374}, {"category_id": 1, "poly": [89.6108627319336, 1038.51416015625, 1536.2987060546875, 1038.51416015625, 1536.2987060546875, 1069.6767578125, 89.6108627319336, 1069.6767578125], "score": 0.9999446868896484}, {"category_id": 1, "poly": [90.9629898071289, 1387.213134765625, 1189.64501953125, 1387.213134765625, 1189.64501953125, 1418.462646484375, 90.9629898071289, 1418.462646484375], "score": 0.9999391436576843}, {"category_id": 1, "poly": [91.323486328125, 1451.559814453125, 1184.7769775390625, 1451.559814453125, 1184.7769775390625, 1480.8780517578125, 91.323486328125, 1480.8780517578125], "score": 0.9999162554740906}, {"category_id": 1, "poly": [89.67076110839844, 2178.41162109375, 1537.48095703125, 2178.41162109375, 1537.48095703125, 2237.9775390625, 89.67076110839844, 2237.9775390625], "score": 0.998978853225708}, {"category_id": 13, "poly": [640, 421, 902, 421, 902, 456, 640, 456], "score": 0.92, "latex": "\\Delta J=J^{\\mathrm{Theory}}(p_{z}\\grave{)}-J^{\\mathrm{Exp}}(p_{z})"}, {"category_id": 13, "poly": [90, 1589, 179, 1589, 179, 1621, 90, 1621], "score": 0.92, "latex": "(3\\pi^{2}n)^{1/3}"}, {"category_id": 13, "poly": [235, 833, 512, 833, 512, 868, 235, 868], "score": 0.92, "latex": "(\\Delta J=J^{\\mathrm{Theory}}(p_{z})-J^{\\mathrm{Exp}}(p_{z}))"}, {"category_id": 13, "poly": [398, 1389, 467, 1389, 467, 1419, 398, 1419], "score": 0.9, "latex": "\\Delta J(p_{z})"}, {"category_id": 13, "poly": [723, 1623, 788, 1623, 788, 1652, 723, 1652], "score": 0.89, "latex": "\\varPhi_{z}=0"}, {"category_id": 13, "poly": [398, 1453, 466, 1453, 466, 1483, 398, 1483], "score": 0.89, "latex": "\\Delta J(p_{z})"}, {"category_id": 13, "poly": [515, 542, 625, 542, 625, 572, 515, 572], "score": 0.89, "latex": "\\mathrm{Ba^{+1.0}O^{-1.0}}"}, {"category_id": 13, "poly": [804, 1798, 910, 1798, 910, 1826, 804, 1826], "score": 0.87, "latex": "p_{F}=0.938"}, {"category_id": 13, "poly": [1205, 485, 1279, 485, 1279, 509, 1205, 509], "score": 0.87, "latex": "x=1.0"}, {"category_id": 13, "poly": [278, 514, 352, 514, 352, 539, 278, 539], "score": 0.87, "latex": "x=1.5"}, {"category_id": 13, "poly": [664, 542, 770, 542, 770, 572, 664, 572], "score": 0.85, "latex": "\\mathrm{Ba^{+1.5}S^{-1.5}}"}, {"category_id": 13, "poly": [804, 579, 822, 579, 822, 604, 804, 604], "score": 0.85, "latex": "\\boldsymbol{p}"}, {"category_id": 13, "poly": [896, 1566, 925, 1566, 925, 1593, 896, 1593], "score": 0.85, "latex": "\\scriptstyle\\mathcal{P}_{F}"}, {"category_id": 13, "poly": [113, 896, 282, 896, 282, 926, 113, 926], "score": 0.85, "latex": "0.0<p_{z}<0.5\\,\\mathrm{a.u}"}, {"category_id": 13, "poly": [743, 896, 906, 896, 906, 925, 743, 925], "score": 0.85, "latex": "0.5<p_{z}<2.0\\,\\mathrm{a.v}"}, {"category_id": 13, "poly": [895, 1215, 1014, 1215, 1014, 1244, 895, 1244], "score": 0.84, "latex": "\\dot{P}_{z}=0.0\\,\\mathrm{a.u.}"}, {"category_id": 13, "poly": [514, 2035, 531, 2035, 531, 2060, 514, 2060], "score": 0.82, "latex": "p"}, {"category_id": 13, "poly": [1505, 510, 1530, 510, 1530, 543, 1505, 543], "score": 0.79, "latex": "\\chi^{2}"}, {"category_id": 13, "poly": [247, 1598, 263, 1598, 263, 1618, 247, 1618], "score": 0.79, "latex": "n"}, {"category_id": 13, "poly": [674, 1564, 715, 1564, 715, 1593, 674, 1593], "score": 0.79, "latex": "\\left(p_{F}\\right)"}, {"category_id": 13, "poly": [1116, 756, 1161, 756, 1161, 783, 1116, 783], "score": 0.77, "latex": "\\left(\\pm\\sigma\\right)"}, {"category_id": 13, "poly": [1323, 839, 1340, 839, 1340, 865, 1323, 865], "score": 0.73, "latex": "\\underline{{\\boldsymbol{3}}}"}, {"category_id": 13, "poly": [1119, 664, 1163, 664, 1163, 689, 1119, 689], "score": 0.7, "latex": "\\left(\\pm\\sigma\\right)"}, {"category_id": 13, "poly": [263, 868, 280, 868, 280, 893, 263, 893], "score": 0.68, "latex": "\\underline{{\\boldsymbol{3}}}"}, {"category_id": 13, "poly": [634, 581, 647, 581, 647, 599, 634, 599], "score": 0.67, "latex": "s"}, {"category_id": 13, "poly": [1475, 1186, 1492, 1186, 1492, 1213, 1475, 1213], "score": 0.67, "latex": "\\underline{{\\boldsymbol{5}}}"}, {"category_id": 13, "poly": [1309, 456, 1338, 456, 1338, 480, 1309, 480], "score": 0.65, "latex": "+5"}, {"category_id": 13, "poly": [278, 756, 322, 756, 322, 783, 278, 783], "score": 0.62, "latex": "(\\Delta J)"}, {"category_id": 13, "poly": [768, 484, 837, 484, 837, 510, 768, 510], "score": 0.43, "latex": "3.0\\,\\mathrm{a.u.}"}, {"category_id": 13, "poly": [739, 514, 806, 514, 806, 539, 739, 539], "score": 0.34, "latex": "3.0\\,\\mathrm{a.u.}"}, {"category_id": 13, "poly": [1333, 1243, 1400, 1243, 1400, 1269, 1333, 1269], "score": 0.33, "latex": "0.6\\,\\mathrm{a.u.}"}, {"category_id": 13, "poly": [278, 663, 321, 663, 321, 690, 278, 690], "score": 0.32, "latex": "(\\Delta J)"}, {"category_id": 13, "poly": [777, 867, 809, 867, 809, 891, 777, 891], "score": 0.27, "latex": "\\mathrm{HF}"}, {"category_id": 15, "poly": [89.0, 141.0, 342.0, 141.0, 342.0, 173.0, 89.0, 173.0], "score": 0.98, "text": "4. Results and Discussion"}, {"category_id": 15, "poly": [89.0, 200.0, 1545.0, 200.0, 1545.0, 231.0, 89.0, 231.0], "score": 0.98, "text": "The numerical values of unconvoluted spherically averaged theoretical Compton profiles (DFT-PBE, B3PW, HF, and Ionic) of BaO and BaS are presented in Table 1."}, {"category_id": 15, "poly": [91.0, 229.0, 1191.0, 229.0, 1191.0, 263.0, 91.0, 263.0], "score": 0.98, "text": "The experimental Compton profles of BaO and BaS are also given in the table including experimental errors at selected points."}, {"category_id": 15, "poly": [91.0, 317.0, 1547.0, 317.0, 1547.0, 348.0, 91.0, 348.0], "score": 0.98, "text": "Table 1: The unconvoluted theoretical (DFT-PBE, DFT-B3PW, HF, and Ionic) and experimental Compton profles for BaO and BaS. The experimental errors at few"}, {"category_id": 15, "poly": [89.0, 346.0, 772.0, 346.0, 772.0, 380.0, 89.0, 380.0], "score": 0.98, "text": "points are also presented, and all profles are normalized to the fee atom area."}, {"category_id": 15, "poly": [89.0, 397.0, 1552.0, 397.0, 1552.0, 431.0, 89.0, 431.0], "score": 0.98, "text": "In Figures 1 and 2, the experimental Compton profles ofBaO and BaS are compared with various ionic arrangements to estimate the charge transfer. For a quantitative"}, {"category_id": 15, "poly": [89.0, 487.0, 1560.0, 487.0, 1560.0, 521.0, 89.0, 521.0], "score": 0.97, "text": "the efect of charge transfer from Ba to O atoms is largely visible within 0.0 to 3.0 a.u. for BaO. The best agreement is found for x = 1.0. Figure 2 shows that the charge"}, {"category_id": 15, "poly": [89.0, 694.0, 556.0, 694.0, 556.0, 729.0, 89.0, 729.0], "score": 0.95, "text": "are convohuted with the Gaussian of 0.6 a.u. FWHM."}, {"category_id": 15, "poly": [86.0, 787.0, 558.0, 784.0, 558.0, 819.0, 86.0, 821.0], "score": 0.96, "text": " are convoluted with the Gaussian of 0.6 a.u. FWHM."}, {"category_id": 15, "poly": [89.0, 926.0, 1540.0, 923.0, 1540.0, 958.0, 89.0, 960.0], "score": 0.96, "text": "momentum region, because the contrbution in this region is mostly due to core elctrons, which remain unafected in the compound formation. Similar features are also"}, {"category_id": 15, "poly": [89.0, 953.0, 795.0, 955.0, 794.0, 989.0, 89.0, 987.0], "score": 0.96, "text": "visible in Figure 4, but the effect of exchange and correlation is not seen for BaS."}, {"category_id": 15, "poly": [91.0, 1043.0, 1535.0, 1043.0, 1535.0, 1077.0, 91.0, 1077.0], "score": 0.96, "text": "Figure 3: The difference of DFT-PBE, B3PW, and HF with experimental Compton profle of BaO. All profles are convoluted with the Gaussian of 0.6 a.u. FWHM."}, {"category_id": 15, "poly": [91.0, 1106.0, 1530.0, 1106.0, 1530.0, 1140.0, 91.0, 1140.0], "score": 0.97, "text": "Figure 4: The difference of DFT-PBE, B3PW, and HF with experimental Compton profle of BaS. Alprofiles are convoluted with the Gaussian of0.6 a.u. FWHM."}, {"category_id": 15, "poly": [89.0, 1155.0, 1523.0, 1157.0, 1523.0, 1191.0, 89.0, 1189.0], "score": 0.98, "text": "The directional Compton profles ofBaO and BaS along [100], [110], and [111] directions have been computed to examine the anisotropies [100]-[110] , [110]-"}, {"category_id": 15, "poly": [91.0, 1274.0, 1547.0, 1274.0, 1547.0, 1308.0, 91.0, 1308.0], "score": 0.98, "text": "anisotropies are visible up to 3.0 a.u. In Figure 6, the anisotropies are plotted for BaS. This figure shows similarity with BaO, but all anisotropies are diminished beyond"}, {"category_id": 15, "poly": [86.0, 1301.0, 1304.0, 1304.0, 1304.0, 1338.0, 86.0, 1335.0], "score": 0.98, "text": " 2.0 a.u. Measurements on single crystallne samples of BaO and BaS along principal directions would be valuable to examine these findings."}, {"category_id": 15, "poly": [91.0, 1508.0, 1520.0, 1508.0, 1520.0, 1540.0, 91.0, 1540.0], "score": 0.98, "text": "The nature of bonding in isostructural and isovalent BaO and BaS has been compared and plotted in Figure 7. In this figure, the experimental EVED profles of these"}, {"category_id": 15, "poly": [89.0, 1537.0, 1518.0, 1537.0, 1518.0, 1569.0, 89.0, 1569.0], "score": 0.97, "text": "compounds are considered. We also plot the theoretical EVED profles in the inset. The EVED profles were derived by normalizing valence electron profiles to 4.0"}, {"category_id": 15, "poly": [91.0, 1654.0, 1540.0, 1654.0, 1540.0, 1688.0, 91.0, 1688.0], "score": 0.98, "text": "localization of charges in BaS in the bonding direction as compared to BaO. It is worth mentioning here that the covalent bonding is a result of sharing ofelectrons, and"}, {"category_id": 15, "poly": [93.0, 1684.0, 1540.0, 1684.0, 1540.0, 1715.0, 93.0, 1715.0], "score": 0.99, "text": "hence, it increases localization ofcharge in bonding direction which results in a sharper Compton line shape [32, 33]. Therefore, we conclude that the ionic character is"}, {"category_id": 15, "poly": [91.0, 1713.0, 1505.0, 1713.0, 1505.0, 1745.0, 91.0, 1745.0], "score": 0.98, "text": "higher for BaO as compared to BaS. The larger ionic character of BaO as compared to BaS is well supported by the bulk modulus and cohesive energy data [34]"}, {"category_id": 15, "poly": [91.0, 1827.0, 1547.0, 1827.0, 1547.0, 1861.0, 91.0, 1861.0], "score": 0.98, "text": "valence profles. The inset shows the EVED profles derived from the theoretical valence profiles of these compounds. All these profles are normalized to 4.0 electrons."}, {"category_id": 15, "poly": [85.0, 1881.0, 234.0, 1886.0, 233.0, 1920.0, 83.0, 1915.0], "score": 0.97, "text": " 5. Conclusions"}, {"category_id": 15, "poly": [91.0, 1947.0, 1483.0, 1947.0, 1483.0, 1981.0, 91.0, 1981.0], "score": 0.97, "text": "Electronic structure and momentum density in BaO and BaS using Compton scattering technique are reported. The experimental values of Compton profles are"}, {"category_id": 15, "poly": [89.0, 1976.0, 1508.0, 1976.0, 1508.0, 2010.0, 89.0, 2010.0], "score": 0.98, "text": "compared with the LCAO based values for both compounds. The anisotropies in momentum densities depict larger occupied states along [1oo] direction with low"}, {"category_id": 15, "poly": [89.0, 2005.0, 1537.0, 2005.0, 1537.0, 2037.0, 89.0, 2037.0], "score": 0.99, "text": "momentum In addition, the ionic model based calculations have also been used to estimate the charge transfer in the compounds, and the model suggests a transfer of"}, {"category_id": 15, "poly": [91.0, 2064.0, 155.0, 2064.0, 155.0, 2093.0, 91.0, 2093.0], "score": 0.95, "text": "to BaS."}, {"category_id": 15, "poly": [89.0, 2119.0, 266.0, 2125.0, 265.0, 2157.0, 88.0, 2151.0], "score": 1.0, "text": "Acknowledgments"}, {"category_id": 15, "poly": [91.0, 2181.0, 1532.0, 2181.0, 1532.0, 2215.0, 91.0, 2215.0], "score": 0.97, "text": "This work is financially supported by the CSIR, New Delhi, through the Grant no. 03(1205/12EMR-II). G. Sharma is also thankful to the Head ofthe Department of"}, {"category_id": 15, "poly": [86.0, 2207.0, 891.0, 2210.0, 890.0, 2244.0, 86.0, 2242.0], "score": 0.97, "text": "Pure & Applied Physics, University ofKota, Kota, for providing the computational facities."}, {"category_id": 15, "poly": [89.0, 426.0, 639.0, 426.0, 639.0, 460.0, 89.0, 460.0], "score": 0.97, "text": "comparison of the ionic and experiment, the difference profiles "}, {"category_id": 15, "poly": [903.0, 426.0, 1520.0, 426.0, 1520.0, 460.0, 903.0, 460.0], "score": 0.94, "text": " have been deduced after convoluting alionic profles with a Gaussian"}, {"category_id": 15, "poly": [86.0, 833.0, 234.0, 833.0, 234.0, 875.0, 86.0, 875.0], "score": 0.96, "text": "The diferences"}, {"category_id": 15, "poly": [91.0, 1391.0, 397.0, 1391.0, 397.0, 1425.0, 91.0, 1425.0], "score": 0.99, "text": "Figure 5: Directional anisotropies,"}, {"category_id": 15, "poly": [468.0, 1391.0, 1188.0, 1391.0, 1188.0, 1425.0, 468.0, 1425.0], "score": 0.96, "text": ", for BaO for the pair ofdirections [100]-[110] , [110]-[111], and [100]-[111] ."}, {"category_id": 15, "poly": [91.0, 1623.0, 722.0, 1623.0, 722.0, 1657.0, 91.0, 1657.0], "score": 0.99, "text": "and isostructural compounds [27-31]. It is seen from Figure 7 that, near"}, {"category_id": 15, "poly": [789.0, 1623.0, 1476.0, 1623.0, 1476.0, 1657.0, 789.0, 1657.0], "score": 0.98, "text": "a.u., the sharpness ofCompton profles is higher for BaS, which suggests more"}, {"category_id": 15, "poly": [91.0, 1457.0, 397.0, 1457.0, 397.0, 1489.0, 91.0, 1489.0], "score": 1.0, "text": "Figure 6: Directional anisotropies,"}, {"category_id": 15, "poly": [467.0, 1457.0, 1186.0, 1457.0, 1186.0, 1489.0, 467.0, 1489.0], "score": 0.97, "text": ", for BaS for the pair ofdirections [100]-[110] , [110]-[111], and [100]-[111] ."}, {"category_id": 15, "poly": [84.0, 541.0, 514.0, 546.0, 514.0, 585.0, 84.0, 580.0], "score": 0.94, "text": " checks and from Figures 1 and 2, it isfound that"}, {"category_id": 15, "poly": [91.0, 1798.0, 803.0, 1798.0, 803.0, 1832.0, 91.0, 1832.0], "score": 0.97, "text": "Figure 7: The equal valence-electron-density (EVED) profiles of BaO and BaS ("}, {"category_id": 15, "poly": [911.0, 1798.0, 1552.0, 1798.0, 1552.0, 1832.0, 911.0, 1832.0], "score": 0.96, "text": " and 0.813 a.u., resp.). These profles are deduced from the experimental"}, {"category_id": 15, "poly": [91.0, 517.0, 277.0, 517.0, 277.0, 548.0, 91.0, 548.0], "score": 0.98, "text": "transfer configuration"}, {"category_id": 15, "poly": [626.0, 541.0, 663.0, 546.0, 663.0, 585.0, 626.0, 580.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [771.0, 541.0, 1537.0, 546.0, 1537.0, 585.0, 771.0, 580.0], "score": 0.98, "text": "configurations give the best agreement for BaO and BaS, respectively. Thus, the model"}, {"category_id": 15, "poly": [823.0, 577.0, 1259.0, 577.0, 1259.0, 612.0, 823.0, 612.0], "score": 1.0, "text": "states ofO and S for BaO and BaS, respectively."}, {"category_id": 15, "poly": [926.0, 1567.0, 1564.0, 1567.0, 1564.0, 1601.0, 926.0, 1601.0], "score": 0.98, "text": "tuned out to be 0.938 and 0.813 a.u., respectively, using the expression"}, {"category_id": 15, "poly": [283.0, 892.0, 742.0, 894.0, 742.0, 936.0, 283.0, 933.0], "score": 0.88, "text": "-, whilethe trend reversed in the momentum range of"}, {"category_id": 15, "poly": [907.0, 892.0, 1537.0, 894.0, 1537.0, 936.0, 907.0, 933.0], "score": 0.94, "text": ". The diference between theory and experiment is negigibe in the high"}, {"category_id": 15, "poly": [89.0, 1213.0, 894.0, 1213.0, 894.0, 1255.0, 89.0, 1255.0], "score": 0.7, "text": "forBa aBa retivFdits tat alant are psitiv"}, {"category_id": 15, "poly": [1015.0, 1213.0, 1505.0, 1213.0, 1505.0, 1255.0, 1015.0, 1255.0], "score": 0.96, "text": "for BaO. It ndicates larger occupied states along [100]"}, {"category_id": 15, "poly": [86.0, 2027.0, 513.0, 2030.0, 513.0, 2071.0, 86.0, 2069.0], "score": 0.95, "text": "1.0 and 1.5 electrons froms state ofBa atomto"}, {"category_id": 15, "poly": [532.0, 2027.0, 1552.0, 2030.0, 1552.0, 2071.0, 532.0, 2069.0], "score": 0.97, "text": "state ofO and S atoms. The EVED profles for the compounds conclude higher ionic character in BaO as compared"}, {"category_id": 15, "poly": [180.0, 1593.0, 246.0, 1593.0, 246.0, 1628.0, 180.0, 1628.0], "score": 0.95, "text": ", where"}, {"category_id": 15, "poly": [264.0, 1593.0, 1547.0, 1593.0, 1547.0, 1628.0, 264.0, 1628.0], "score": 0.99, "text": "is the valence electron density. A number ofresearchers have proved that this scheme offers a way to understand the nature ofbonding in isovalent "}, {"category_id": 15, "poly": [91.0, 1567.0, 673.0, 1567.0, 673.0, 1601.0, 91.0, 1601.0], "score": 0.95, "text": "electrons and scaling the resulting profiles by the Fermi momentum"}, {"category_id": 15, "poly": [716.0, 1567.0, 895.0, 1567.0, 895.0, 1601.0, 716.0, 1601.0], "score": 0.95, "text": ". For BaO and BaS,"}, {"category_id": 15, "poly": [1162.0, 755.0, 1532.0, 758.0, 1532.0, 792.0, 1162.0, 789.0], "score": 0.97, "text": " are also shown at points. All ionic profles"}, {"category_id": 15, "poly": [513.0, 833.0, 1322.0, 833.0, 1322.0, 875.0, 513.0, 875.0], "score": 0.88, "text": "betwenexperimental and CAO schee based Compton profle are presened nFigu"}, {"category_id": 15, "poly": [1341.0, 833.0, 1562.0, 833.0, 1562.0, 875.0, 1341.0, 875.0], "score": 0.96, "text": "and 4 for BaO and BaS,"}, {"category_id": 15, "poly": [1164.0, 665.0, 1532.0, 665.0, 1532.0, 699.0, 1164.0, 699.0], "score": 0.97, "text": "are also shown at points. All ionic profles"}, {"category_id": 15, "poly": [89.0, 867.0, 262.0, 870.0, 262.0, 904.0, 89.0, 901.0], "score": 0.96, "text": "respectively. Figure"}, {"category_id": 15, "poly": [89.0, 577.0, 633.0, 577.0, 633.0, 612.0, 89.0, 612.0], "score": 0.99, "text": "suggests the transfer of 1.0 and 1.5 electrons from the valence"}, {"category_id": 15, "poly": [648.0, 577.0, 803.0, 577.0, 803.0, 612.0, 648.0, 612.0], "score": 0.97, "text": "state of Ba to the"}, {"category_id": 15, "poly": [93.0, 1189.0, 1474.0, 1189.0, 1474.0, 1221.0, 93.0, 1221.0], "score": 0.98, "text": "[111], and [100]-[111] in the electron momentum density. Allthese anisotropies are derived from convoluted B3PW hybrid scheme and presented in Figures"}, {"category_id": 15, "poly": [1493.0, 1189.0, 1550.0, 1189.0, 1550.0, 1221.0, 1493.0, 1221.0], "score": 1.0, "text": "and 6"}, {"category_id": 15, "poly": [91.0, 458.0, 1308.0, 458.0, 1308.0, 490.0, 91.0, 490.0], "score": 0.98, "text": "function of0.6 a.u. FWHM. All ionic profles are normalized to 23.200 electrons for BaO and 26.434 electrons for BaS in the range of0 to"}, {"category_id": 15, "poly": [1339.0, 458.0, 1560.0, 458.0, 1560.0, 490.0, 1339.0, 490.0], "score": 0.96, "text": "a.u. Figure 1 depicts that"}, {"category_id": 15, "poly": [86.0, 755.0, 277.0, 758.0, 277.0, 792.0, 86.0, 789.0], "score": 0.99, "text": "Figure 2: Difference"}, {"category_id": 15, "poly": [323.0, 755.0, 1115.0, 758.0, 1115.0, 792.0, 323.0, 789.0], "score": 0.99, "text": "between convoluted ionic and experimental Compton profles of BaS. Experimental errors"}, {"category_id": 15, "poly": [353.0, 517.0, 738.0, 517.0, 738.0, 548.0, 353.0, 548.0], "score": 0.98, "text": "is closet to the experiment for BaS. Beyond"}, {"category_id": 15, "poly": [807.0, 517.0, 1504.0, 517.0, 1504.0, 548.0, 807.0, 548.0], "score": 0.98, "text": ", all configurations show identical behavior for both compounds. On the basis of"}, {"category_id": 15, "poly": [89.0, 1245.0, 1332.0, 1245.0, 1332.0, 1279.0, 89.0, 1279.0], "score": 0.98, "text": "direction with low momentum A close inspection ofthis fgure reveals that maximum anisotropy is seen between [100] and [111] directions at"}, {"category_id": 15, "poly": [1401.0, 1245.0, 1545.0, 1245.0, 1545.0, 1279.0, 1401.0, 1279.0], "score": 0.93, "text": " and 1.2 a.u. All"}, {"category_id": 15, "poly": [89.0, 665.0, 277.0, 665.0, 277.0, 699.0, 89.0, 699.0], "score": 1.0, "text": "Figure 1: Difference"}, {"category_id": 15, "poly": [322.0, 665.0, 1118.0, 665.0, 1118.0, 699.0, 322.0, 699.0], "score": 0.98, "text": "between convoluted ionic and experimental Compton profles of BaO. Experimental errors"}, {"category_id": 15, "poly": [281.0, 867.0, 776.0, 870.0, 776.0, 904.0, 281.0, 901.0], "score": 0.98, "text": "shows that for BaO all theories DFT-PBE, B3PW, and"}, {"category_id": 15, "poly": [810.0, 867.0, 1560.0, 870.0, 1559.0, 904.0, 810.0, 901.0], "score": 0.98, "text": ") predict lower momentum density as compared to experiment in the momentum range"}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 2, "poly": [89.0936279296875, 80.74409484863281, 204.3162078857422, 80.74409484863281, 204.3162078857422, 106.50306701660156, 89.0936279296875, 106.50306701660156], "score": 0.9999979734420776}, {"category_id": 1, "poly": [103.02957153320312, 134.86175537109375, 1563.1484375, 134.86175537109375, 1563.1484375, 2057.353515625, 103.02957153320312, 2057.353515625], "score": 0.999991774559021}, {"category_id": 13, "poly": [1065, 1590, 1114, 1590, 1114, 1614, 1065, 1614], "score": 0.46, "latex": "\\mathrm{{X}}\\!=\\!\\mathbf{\\mathcal{C}}"}, {"category_id": 13, "poly": [608, 1045, 622, 1045, 622, 1061, 608, 1061], "score": 0.42, "latex": "\\cdot"}, {"category_id": 13, "poly": [231, 1131, 245, 1131, 245, 1147, 231, 1147], "score": 0.38, "latex": "\\cdot"}, {"category_id": 13, "poly": [524, 871, 537, 871, 537, 886, 524, 886], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [872, 1914, 886, 1914, 886, 1931, 872, 1931], "score": 0.36, "latex": "\\cdot"}, {"category_id": 13, "poly": [743, 928, 757, 928, 757, 944, 743, 944], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [795, 318, 809, 318, 809, 335, 795, 335], "score": 0.34, "latex": "\\cdot"}, {"category_id": 13, "poly": [582, 1973, 596, 1973, 596, 1988, 582, 1988], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [305, 260, 319, 260, 319, 276, 305, 276], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [514, 929, 527, 929, 527, 944, 514, 944], "score": 0.32, "latex": "\\cdot"}, {"category_id": 13, "poly": [756, 812, 770, 812, 770, 828, 756, 828], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [811, 1422, 825, 1422, 825, 1437, 811, 1437], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [1023, 319, 1038, 319, 1038, 334, 1023, 334], "score": 0.29, "latex": "\\cdot"}, {"category_id": 13, "poly": [305, 1567, 319, 1567, 319, 1582, 305, 1582], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [940, 987, 954, 987, 954, 1002, 940, 1002], "score": 0.28, "latex": "\\cdot"}, {"category_id": 13, "poly": [456, 1740, 469, 1740, 469, 1756, 456, 1756], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [549, 1683, 562, 1683, 562, 1698, 549, 1698], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [685, 1740, 699, 1740, 699, 1756, 685, 1756], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [111.0, 134.0, 1471.0, 139.0, 1471.0, 173.0, 111.0, 168.0], "score": 0.97, "text": "1. P. Cervantes, Q. Willams, M. Cote, M. Rohlfng, M. L. Cohen, and S. G. Louie, Band structures ofCsC-structured BaS and CaSe at high pressure:"}, {"category_id": 15, "poly": [148.0, 168.0, 1555.0, 168.0, 1555.0, 202.0, 148.0, 202.0], "score": 0.97, "text": "implications for metallization pressures ofthe alkaline earth chalcogenides,\u201d Physical Review B, vol. 58, no. 15, pp. 9793-9800, 1998. View at Google Scholar "}, {"category_id": 15, "poly": [146.0, 192.0, 293.0, 198.0, 292.0, 232.0, 145.0, 226.0], "score": 1.0, "text": "View at Scopus"}, {"category_id": 15, "poly": [113.0, 227.0, 1518.0, 227.0, 1518.0, 261.0, 113.0, 261.0], "score": 0.98, "text": "2. T. Lv, D. Chen, and M. Huang, \u201cQuasiparticle band structures ofBaO and BaS,\" Journal of Applied Physics, vol. 100, Article ID 086103, 3 pages, 2006."}, {"category_id": 15, "poly": [113.0, 283.0, 1500.0, 283.0, 1500.0, 317.0, 113.0, 317.0], "score": 0.96, "text": " 3. S. Drablia, H. Meradji, S. Ghemid, G. Nouet, and F. El Haj Hassan,\u03bcFirst principles investigation ofbarium chalcogenide ternary alloys,\u201d Computational"}, {"category_id": 15, "poly": [111.0, 339.0, 1508.0, 341.0, 1508.0, 375.0, 111.0, 373.0], "score": 0.97, "text": "4. M. Uudoan, T. Cain, A. Strachan, and W. A. Goddard MI, \u201cAb-initio studies of pressure induced phase transitions in BaO,\" Journal of Computer-Aided"}, {"category_id": 15, "poly": [145.0, 370.0, 1186.0, 370.0, 1186.0, 404.0, 145.0, 404.0], "score": 0.98, "text": "Materials Design, vol. 8, no. 2-3, pp. 193-202, 2001. View at Publisher \u00b7 View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [111.0, 397.0, 1535.0, 400.0, 1535.0, 434.0, 111.0, 431.0], "score": 0.98, "text": " 5. M. Alfredsson, J. P. Brodholt, P. B. Wilson et al, \u201cStructural and magnetic phase transitions in simple oxides using hybrid functionals, Molecular Simulation,"}, {"category_id": 15, "poly": [145.0, 429.0, 1009.0, 429.0, 1009.0, 463.0, 145.0, 463.0], "score": 0.97, "text": "vol. 31, no. 5, pp. 367-377, 2005. View at Publisher View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [113.0, 458.0, 1550.0, 458.0, 1550.0, 492.0, 113.0, 492.0], "score": 0.98, "text": "6. S. T. Weir, Y. K. Vohra, and A. L. Ruoff \u201cHigh-pressure phase transitions and the equations of state ofBaS and BaO\" Physical Review B, vol. 33, no. 6, pp."}, {"category_id": 15, "poly": [145.0, 487.0, 868.0, 487.0, 868.0, 519.0, 145.0, 519.0], "score": 0.97, "text": "4221-4226, 1986. View at Publisher : View at Go0gle Scholar View at Scopus"}, {"category_id": 15, "poly": [113.0, 517.0, 1557.0, 517.0, 1557.0, 551.0, 113.0, 551.0], "score": 0.98, "text": " 7. S. Drablia, H. Meradj, S. Ghemid, N. Boukhris, B. Bouhafs, and G. Nouet, \u201cElectronic and optical properties of BaO, BaS, BaSe, BaTe and BaPo compounds"}, {"category_id": 15, "poly": [145.0, 546.0, 1552.0, 546.0, 1552.0, 580.0, 145.0, 580.0], "score": 0.98, "text": "under hydrostatic pressure,\" Modern Physics Letters B, vol. 23, no. 26, pp. 3065-3079, 2009. View at Pubisher : View at Go0gle Scholar View at Scopus"}, {"category_id": 15, "poly": [111.0, 573.0, 1552.0, 573.0, 1552.0, 607.0, 111.0, 607.0], "score": 0.97, "text": " 8. G. Q. Lin, H. Gong, and P. Wu, \u201cElectronic properties ofbarium chalcogenides from frst-principles calculations: tailoring wide-band-gap I-VI semiconductors,\""}, {"category_id": 15, "poly": [140.0, 597.0, 1240.0, 599.0, 1240.0, 641.0, 140.0, 638.0], "score": 0.91, "text": "Physical Review B, vol 71, no. 8, Artile ID 085203, 2005. Vw at Pubisher Viw at Googe Schor Vw at Scopus"}, {"category_id": 15, "poly": [108.0, 629.0, 1552.0, 631.0, 1552.0, 665.0, 108.0, 663.0], "score": 0.98, "text": " 9. M. Ameri, A. Touia, H. Khachai, Z. Mahdjoub, M. Z. Chekroun, and A. Slamani \"Ab initio study of structural and electronic properties ofbarium chalcogenide"}, {"category_id": 15, "poly": [143.0, 658.0, 1023.0, 660.0, 1023.0, 694.0, 143.0, 692.0], "score": 0.98, "text": "alloys, Materials Sciences and Applications, vol. 3, pp. 612-618, 2012. View at Google Scholar"}, {"category_id": 15, "poly": [103.0, 690.0, 1496.0, 690.0, 1496.0, 724.0, 103.0, 724.0], "score": 0.97, "text": "10. Y. Kang, Y. S. Kim Y. C. Chung, H. Kim, D. S. Kim, and J. J. Kim, \u03bcThe evaluation ofulrasof pseudopotential in predicting material properties of ionic"}, {"category_id": 15, "poly": [148.0, 719.0, 1552.0, 719.0, 1552.0, 750.0, 148.0, 750.0], "score": 0.97, "text": "systems by an ab-initio pseudopotential method,\" Journal of Ceramic Processing Research, vol. 3, no. 3, pp. 171-173, 2002. View at Google Scholar \u00b7 View"}, {"category_id": 15, "poly": [145.0, 748.0, 241.0, 748.0, 241.0, 782.0, 145.0, 782.0], "score": 1.0, "text": "at Scopus"}, {"category_id": 15, "poly": [108.0, 782.0, 150.0, 782.0, 150.0, 802.0, 108.0, 802.0], "score": 1.0, "text": "11."}, {"category_id": 15, "poly": [140.0, 777.0, 1513.0, 777.0, 1513.0, 811.0, 140.0, 811.0], "score": 0.97, "text": " R. K. Singh, A. S. Verma, and S. K. Rathi, \u201cGround state properties ofrock salt, CsCl, diamond and zinc blende structured solids,\u201d The Open Condensed"}, {"category_id": 15, "poly": [98.0, 828.0, 1535.0, 831.0, 1535.0, 872.0, 98.0, 870.0], "score": 0.92, "text": "12. M. Teng and X. Hong, \u201cPhase transion and themdyamic properties ofBaS: an Ab initio study,\u201d Wuhan University Jual of Natural Sciences, ol. 16,"}, {"category_id": 15, "poly": [103.0, 894.0, 1555.0, 894.0, 1555.0, 928.0, 103.0, 928.0], "score": 0.97, "text": "13. F. El Haj Hassan and H. Akbarzadeh, \u201cFirst-principles elastic and bonding properties ofbarium chalcogenides,' Computational Materials Science, vol. 38, no."}, {"category_id": 15, "poly": [98.0, 945.0, 1552.0, 948.0, 1552.0, 989.0, 98.0, 987.0], "score": 0.76, "text": "14. R Khnta, M Sah, HBalth t al,Sttal trn, lastic an hgprse prets ofs aka-achagend: anab ntio st"}, {"category_id": 15, "poly": [98.0, 1004.0, 1552.0, 1006.0, 1552.0, 1048.0, 98.0, 1045.0], "score": 0.91, "text": "15. Z. Feng H Hu, Z Lv, and S.Ci \u201cFirst-prinples study ofeectronic and opticalpropertes ofBaS,BaSe and BaTe,\u201d Cental Eurpean Joual of Pyi,"}, {"category_id": 15, "poly": [103.0, 1067.0, 1429.0, 1067.0, 1429.0, 1101.0, 103.0, 1101.0], "score": 0.99, "text": "16. M. J. Cooper, P. E. Mijnarends, N. Shiotani, N. Sakai, and A. Bansil, X-Ray Compton Scattering, Oxford Publishing Press, Oxford, UK, 2004."}, {"category_id": 15, "poly": [103.0, 1096.0, 1503.0, 1096.0, 1503.0, 1131.0, 103.0, 1131.0], "score": 0.97, "text": "17. M. J. Cooper, \u201cCompton scattering and electron momentum determination,\u201d\" Reports on Progress in Physics, vol 48, no. 4, pp. 415-481, 1985. View at"}, {"category_id": 15, "poly": [103.0, 1155.0, 1218.0, 1155.0, 1218.0, 1189.0, 103.0, 1189.0], "score": 0.98, "text": "18. R R. Dovesi, V. R. Saunders, C. Roetti et al, CRYSTAL06 User's Manual, University ofTorino, Torino, Canada, 2006."}, {"category_id": 15, "poly": [98.0, 1177.0, 1520.0, 1182.0, 1520.0, 1223.0, 98.0, 1218.0], "score": 0.95, "text": "19. B.K. Sharma, A. Gupta, H. Singh, S. Perkki, A. Kshirsagar, and D. G. Kanhere, \u201cCompton profle ofpaladum,\u201d Physical Review B, vol 37, no. 12, pp."}, {"category_id": 15, "poly": [143.0, 1208.0, 871.0, 1213.0, 871.0, 1248.0, 143.0, 1243.0], "score": 0.97, "text": " 6821-6826, 1988. View at Publisher View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [98.0, 1235.0, 1387.0, 1238.0, 1387.0, 1279.0, 98.0, 1277.0], "score": 0.92, "text": "20. D.N. Tinms, Comton scattering studies of spin and momentum densities [Ph.D. thesis], University ofWarwick, Coventry, UK, 1989."}, {"category_id": 15, "poly": [96.0, 1264.0, 1555.0, 1267.0, 1555.0, 1308.0, 96.0, 1306.0], "score": 0.82, "text": "21. JFelster P Patison and M Copr, \u201cct ofml cateng nexpral Comtnprofle aMne Carlcalcuaton hilsohical Maga,"}, {"category_id": 15, "poly": [148.0, 1296.0, 831.0, 1296.0, 831.0, 1330.0, 148.0, 1330.0], "score": 0.98, "text": "vol. 30, no. 3, pp. 537-548, 1974. View at Google Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [98.0, 1323.0, 1530.0, 1328.0, 1530.0, 1369.0, 98.0, 1364.0], "score": 0.94, "text": " 22. F. Biggs, L. B. Mendelsohn, and J. B. Mann, \u201cHartree Fock Compton profles for the elements,\" Atomic Data and Nuclear Data Tables, vol. 16, no. 3, p."}, {"category_id": 15, "poly": [143.0, 1355.0, 672.0, 1357.0, 671.0, 1391.0, 143.0, 1389.0], "score": 0.97, "text": " 201-309, 1975. View at Googe Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [98.0, 1384.0, 1545.0, 1386.0, 1545.0, 1420.0, 98.0, 1418.0], "score": 0.97, "text": " 23. R. Dovesi, R. Orlando, C. Roetti C. Pisani, and V. R. Saunders, The periodic Hartree-Fock method and its implementation in the CRYSTAL code,\u201d Physica"}, {"category_id": 15, "poly": [103.0, 1447.0, 153.0, 1447.0, 153.0, 1474.0, 103.0, 1474.0], "score": 0.96, "text": "24.1"}, {"category_id": 15, "poly": [140.0, 1445.0, 428.0, 1445.0, 428.0, 1479.0, 140.0, 1479.0], "score": 0.98, "text": "http://www.tcm.phy.cam.ac.uk/."}, {"category_id": 15, "poly": [103.0, 1474.0, 1508.0, 1474.0, 1508.0, 1508.0, 103.0, 1508.0], "score": 0.98, "text": "25. J. P. Perdew, K. Burke, and M. Ermzerhof, \u201cGeneralized gradient approximation made simple,\" Physical Review Letters, vol 77, no. 18, pp. 3865-3868,"}, {"category_id": 15, "poly": [145.0, 1501.0, 578.0, 1503.0, 578.0, 1537.0, 145.0, 1535.0], "score": 0.99, "text": "1996. View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [96.0, 1525.0, 1552.0, 1528.0, 1552.0, 1569.0, 96.0, 1567.0], "score": 0.92, "text": "26. A. D.Becke, ensity-fctional exchange-nerg approxiation with corect asymtotic behavior,\u201d Physical Review A, vol. 38, no. 6, pp. 30983100, 1988."}, {"category_id": 15, "poly": [143.0, 1618.0, 1466.0, 1620.0, 1466.0, 1654.0, 143.0, 1652.0], "score": 0.97, "text": "spectroscopy,\u201d Computational Materials Science, vol. 51, no. 1, p. 340-346, 2012. View at Publisher \u00b7 View at Google Scholar View at Scopus"}, {"category_id": 15, "poly": [96.0, 1642.0, 1557.0, 1645.0, 1557.0, 1686.0, 96.0, 1684.0], "score": 0.89, "text": "28. N Munjal G Sham, V. Vyas, K.B. Joshi and B. K. Shama, \u201cAb-initio study ofstructuraland electroni properties ofAIAs,\u201d Philosophical Magazine, vol."}, {"category_id": 15, "poly": [98.0, 1703.0, 1560.0, 1708.0, 1559.0, 1742.0, 98.0, 1737.0], "score": 0.97, "text": " 29. G. Sharma, K. B. Joshi, M. C. Mishra et al., \u201cElectronic structure of AlAs: a Compton profle study,\" Journal of Alloys and Compounds, vol 485, no. 1-2, pp."}, {"category_id": 15, "poly": [101.0, 1762.0, 1562.0, 1764.0, 1562.0, 1798.0, 101.0, 1796.0], "score": 0.97, "text": " 30. R. Kumar, N. Munjal, G. Sharma, V. Vyas, M. S. Dhaka, and B. K. Sharma, \u201cElectron momentum density and phase transition in SrO\" Phase Transitions, vol."}, {"category_id": 15, "poly": [145.0, 1793.0, 846.0, 1793.0, 846.0, 1827.0, 145.0, 1827.0], "score": 0.98, "text": "85, no. 12, pp. 1098-1108, 2012. View at Publisher \u00b7 View at Go0gle Scholar"}, {"category_id": 15, "poly": [96.0, 1815.0, 1555.0, 1818.0, 1555.0, 1859.0, 96.0, 1857.0], "score": 0.93, "text": "31. W. A. Reed and P. Esenberger,\u201cGamma-raycompton profles ofdamond, sicon, and gemanum\u201d Physical Review B, vol 6, no. 12,p. 4596 4604, 1972."}, {"category_id": 15, "poly": [145.0, 1849.0, 691.0, 1849.0, 691.0, 1881.0, 145.0, 1881.0], "score": 0.97, "text": "View at Publisher : View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [98.0, 1876.0, 1555.0, 1879.0, 1555.0, 1913.0, 98.0, 1910.0], "score": 0.97, "text": " 32. G. Sharma, K. B. Joshi, M. C. Mishra, S. Shrivastava, Y. K. Vijay, and B. K. Sharma, \u201cElectron momentum density in multiwallcarbon nanotubes,\u201d Physica E,"}, {"category_id": 15, "poly": [101.0, 1935.0, 1537.0, 1937.0, 1537.0, 1971.0, 101.0, 1969.0], "score": 0.97, "text": " 33. M. C. Mishra, R. Kumar, G. Sharma, Y. K. Vijay, and B. K. Sharmab, Size dependent electron momentum density distribution in ZnS,\u201d Physica B, vol. 406,"}, {"category_id": 15, "poly": [101.0, 1993.0, 1547.0, 1995.0, 1547.0, 2030.0, 101.0, 2027.0], "score": 0.97, "text": " 34. A. S. Verma, \u201cAn empirical model for bulk moduus and cohesive energy ofrocksalt- , zincblende- and chalcopyrite-structured solids,\u201d Physica Status Solidi B,"}, {"category_id": 15, "poly": [145.0, 2022.0, 1021.0, 2027.0, 1021.0, 2061.0, 145.0, 2056.0], "score": 0.98, "text": "vol. 246, no. 2, pp. 345-353, 2009. View at Publisher View at Go0gle Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [98.0, 1586.0, 1064.0, 1589.0, 1064.0, 1623.0, 98.0, 1620.0], "score": 0.98, "text": " 27. M. C. Mishra, G. Sharma, R. K. Kothari, Y. K. Vijay, and B. K. Sharma, \u201cElectronic structure ofCaX("}, {"category_id": 15, "poly": [1115.0, 1586.0, 1441.0, 1589.0, 1441.0, 1623.0, 1115.0, 1620.0], "score": 0.99, "text": "0, S, Se) compounds using Compton"}, {"category_id": 15, "poly": [148.0, 1038.0, 607.0, 1038.0, 607.0, 1072.0, 148.0, 1072.0], "score": 0.98, "text": "vol. 8, no. 5, pp. 782-788, 2010. View at Publisher"}, {"category_id": 15, "poly": [623.0, 1038.0, 996.0, 1038.0, 996.0, 1072.0, 623.0, 1072.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [146.0, 1121.0, 230.0, 1126.0, 230.0, 1160.0, 145.0, 1155.0], "score": 0.98, "text": "Publisher"}, {"category_id": 15, "poly": [246.0, 1121.0, 463.0, 1126.0, 462.0, 1160.0, 246.0, 1155.0], "score": 0.96, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 865.0, 523.0, 865.0, 523.0, 899.0, 145.0, 899.0], "score": 0.97, "text": "no. 1, pp. 33-37, 2011. View at Publisher"}, {"category_id": 15, "poly": [538.0, 865.0, 910.0, 865.0, 910.0, 899.0, 538.0, 899.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [145.0, 1908.0, 871.0, 1910.0, 871.0, 1944.0, 145.0, 1942.0], "score": 0.96, "text": "vol. 43, no. 5, pp. 1084 1086, 2011. View at Publisher View at Go0gle Scholar"}, {"category_id": 15, "poly": [887.0, 1908.0, 1031.0, 1910.0, 1031.0, 1944.0, 887.0, 1942.0], "score": 0.98, "text": "View at Scopus"}, {"category_id": 15, "poly": [758.0, 916.0, 903.0, 919.0, 903.0, 960.0, 758.0, 957.0], "score": 1.0, "text": "View at Scopus"}, {"category_id": 15, "poly": [140.0, 307.0, 794.0, 309.0, 794.0, 351.0, 140.0, 348.0], "score": 0.91, "text": "Materials Science, vol 46, no. 2,pp. 376382, 2009. Viw at Pubisher"}, {"category_id": 15, "poly": [145.0, 1966.0, 581.0, 1966.0, 581.0, 2000.0, 145.0, 2000.0], "score": 0.97, "text": "no. 22, pp. 4307-4311, 2011. View at Publisher"}, {"category_id": 15, "poly": [597.0, 1966.0, 969.0, 1966.0, 969.0, 2000.0, 597.0, 2000.0], "score": 0.97, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [145.0, 256.0, 304.0, 256.0, 304.0, 288.0, 145.0, 288.0], "score": 1.0, "text": "View at Publisher"}, {"category_id": 15, "poly": [320.0, 256.0, 536.0, 256.0, 536.0, 288.0, 320.0, 288.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [138.0, 916.0, 513.0, 919.0, 513.0, 960.0, 138.0, 957.0], "score": 0.93, "text": " 2, pp. 362-368, 2006. View at Pubisher"}, {"category_id": 15, "poly": [528.0, 916.0, 742.0, 919.0, 742.0, 960.0, 528.0, 957.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [148.0, 806.0, 755.0, 806.0, 755.0, 841.0, 148.0, 841.0], "score": 0.99, "text": "Matter Physics Journal, vol. 2, pp. 25-29, 2009. View at Publisher"}, {"category_id": 15, "poly": [771.0, 806.0, 984.0, 806.0, 984.0, 841.0, 771.0, 841.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [145.0, 1411.0, 810.0, 1413.0, 810.0, 1455.0, 145.0, 1452.0], "score": 0.92, "text": "Status Solidi B, vol. 217, no. 1, pp. 6388, 200.Vwat Googe Schor"}, {"category_id": 15, "poly": [826.0, 1411.0, 969.0, 1413.0, 969.0, 1455.0, 826.0, 1452.0], "score": 0.95, "text": "View at Scopus"}, {"category_id": 15, "poly": [810.0, 307.0, 1022.0, 309.0, 1022.0, 351.0, 810.0, 348.0], "score": 1.0, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [1039.0, 307.0, 1188.0, 309.0, 1188.0, 351.0, 1039.0, 348.0], "score": 0.97, "text": "View at Scopus"}, {"category_id": 15, "poly": [145.0, 1562.0, 304.0, 1562.0, 304.0, 1593.0, 145.0, 1593.0], "score": 1.0, "text": "View at Publisher"}, {"category_id": 15, "poly": [320.0, 1562.0, 696.0, 1562.0, 696.0, 1593.0, 320.0, 1593.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus "}, {"category_id": 15, "poly": [143.0, 977.0, 939.0, 982.0, 939.0, 1016.0, 143.0, 1011.0], "score": 0.99, "text": " Physica B, vol. 371, no. 1, pp. 12-19, 2006. View at Publisher \u00b7 View at Google Scholar"}, {"category_id": 15, "poly": [955.0, 977.0, 1097.0, 982.0, 1097.0, 1016.0, 955.0, 1011.0], "score": 0.97, "text": "View at Scopus"}, {"category_id": 15, "poly": [143.0, 1732.0, 455.0, 1735.0, 455.0, 1769.0, 143.0, 1766.0], "score": 0.99, "text": " 682-686, 2009. View at Publisher"}, {"category_id": 15, "poly": [145.0, 1674.0, 548.0, 1674.0, 548.0, 1708.0, 145.0, 1708.0], "score": 1.0, "text": "92, pp. 3101-3112, 2012. View at Publisher"}, {"category_id": 15, "poly": [563.0, 1674.0, 777.0, 1674.0, 777.0, 1708.0, 563.0, 1708.0], "score": 0.94, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [470.0, 1732.0, 684.0, 1735.0, 684.0, 1769.0, 470.0, 1766.0], "score": 0.97, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [700.0, 1732.0, 844.0, 1735.0, 844.0, 1769.0, 700.0, 1766.0], "score": 0.99, "text": "View at Scopus"}], "page_info": {"page_no": 3, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [86.6845932006836, 75.00092315673828, 199.30972290039062, 75.00092315673828, 199.30972290039062, 187.03204345703125, 86.6845932006836, 187.03204345703125], "score": 0.9999940395355225}, {"category_id": 1, "poly": [88.64607238769531, 842.485107421875, 603.5187377929688, 842.485107421875, 603.5187377929688, 873.0970458984375, 88.64607238769531, 873.0970458984375], "score": 0.9999934434890747}, {"category_id": 1, "poly": [117.11527252197266, 1113.0667724609375, 403.7685852050781, 1113.0667724609375, 403.7685852050781, 2044.9041748046875, 117.11527252197266, 2044.9041748046875], "score": 0.9999505877494812}, {"category_id": 2, "poly": [87.65496063232422, 2205.26953125, 1437.0079345703125, 2205.26953125, 1437.0079345703125, 2245.772216796875, 87.65496063232422, 2245.772216796875], "score": 0.9998267889022827}, {"category_id": 1, "poly": [118.57080078125, 410.1543884277344, 249.9625701904297, 410.1543884277344, 249.9625701904297, 497.1147766113281, 118.57080078125, 497.1147766113281], "score": 0.999817967414856}, {"category_id": 1, "poly": [89.54680633544922, 2149.4169921875, 240.348388671875, 2149.4169921875, 240.348388671875, 2175.2548828125, 89.54680633544922, 2175.2548828125], "score": 0.9992427229881287}, {"category_id": 1, "poly": [86.12283325195312, 2058.065185546875, 629.594482421875, 2058.065185546875, 629.594482421875, 2133.709716796875, 86.12283325195312, 2133.709716796875], "score": 0.9939674139022827}, {"category_id": 3, "poly": [88.25961303710938, 518.9714965820312, 1572.033935546875, 518.9714965820312, 1572.033935546875, 819.5787353515625, 88.25961303710938, 819.5787353515625], "score": 0.959598958492279}, {"category_id": 1, "poly": [530.6159057617188, 1067.653564453125, 656.0296020507812, 1067.653564453125, 656.0296020507812, 1096.2071533203125, 530.6159057617188, 1096.2071533203125], "score": 0.9331798553466797}, {"category_id": 2, "poly": [90.07243347167969, 355.22125244140625, 375.12530517578125, 355.22125244140625, 375.12530517578125, 385.51025390625, 90.07243347167969, 385.51025390625], "score": 0.3976841866970062}, {"category_id": 2, "poly": [88.3437271118164, 519.038818359375, 1572.5084228515625, 519.038818359375, 1572.5084228515625, 820.267578125, 88.3437271118164, 820.267578125], "score": 0.3771171569824219}, {"category_id": 2, "poly": [530.6888427734375, 1067.7939453125, 655.8843994140625, 1067.7939453125, 655.8843994140625, 1096.11669921875, 530.6888427734375, 1096.11669921875], "score": 0.3523666560649872}, {"category_id": 2, "poly": [88.91911315917969, 312.55615234375, 385.92108154296875, 312.55615234375, 385.92108154296875, 388.15106201171875, 88.91911315917969, 388.15106201171875], "score": 0.31310322880744934}, {"category_id": 1, "poly": [90.1015396118164, 355.3726501464844, 375.1319274902344, 355.3726501464844, 375.1319274902344, 385.4516296386719, 90.1015396118164, 385.4516296386719], "score": 0.2635093331336975}, {"category_id": 15, "poly": [143.0, 412.0, 209.0, 412.0, 209.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": [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 ofContents"}, {"category_id": 15, "poly": [140.0, 1118.0, 320.0, 1118.0, 320.0, 1152.0, 140.0, 1152.0], "score": 0.95, "text": "About this Joumal \u00b7"}, {"category_id": 15, "poly": [136.0, 1140.0, 384.0, 1145.0, 383.0, 1187.0, 135.0, 1181.0], "score": 0.95, "text": "Abstracting and Indexing \u00b7"}, {"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": [138.0, 1174.0, 313.0, 1180.0, 312.0, 1214.0, 137.0, 1208.0], "score": 0.96, "text": "Advance Access -"}, {"category_id": 15, "poly": [123.0, 1187.0, 135.0, 1187.0, 135.0, 1201.0, 123.0, 1201.0], "score": 0.53, "text": "?"}, {"category_id": 15, "poly": [139.0, 1201.0, 308.0, 1206.0, 307.0, 1241.0, 137.0, 1235.0], "score": 0.98, "text": "Aims and Scope \u00b7"}, {"category_id": 15, "poly": [140.0, 1235.0, 401.0, 1235.0, 401.0, 1269.0, 140.0, 1269.0], "score": 0.97, "text": "Article Processing Charges \u00b7"}, {"category_id": 15, "poly": [139.0, 1259.0, 305.0, 1265.0, 304.0, 1299.0, 137.0, 1293.0], "score": 0.95, "text": "Articles in Press -"}, {"category_id": 15, "poly": [138.0, 1289.0, 318.0, 1294.0, 317.0, 1328.0, 137.0, 1323.0], "score": 0.99, "text": "Author Guidelines \u00b7"}, {"category_id": 15, "poly": [136.0, 1315.0, 382.0, 1321.0, 381.0, 1362.0, 135.0, 1357.0], "score": 0.91, "text": "Bibliographic Infomation *"}, {"category_id": 15, "poly": [140.0, 1352.0, 367.0, 1352.0, 367.0, 1384.0, 140.0, 1384.0], "score": 0.95, "text": " Citations to this Journal -"}, {"category_id": 15, "poly": [138.0, 1376.0, 340.0, 1379.0, 339.0, 1413.0, 138.0, 1411.0], "score": 0.94, "text": " Contact Information -"}, {"category_id": 15, "poly": [140.0, 1411.0, 298.0, 1411.0, 298.0, 1438.0, 140.0, 1438.0], "score": 0.99, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [140.0, 1440.0, 330.0, 1440.0, 330.0, 1469.0, 140.0, 1469.0], "score": 0.95, "text": "Editorial Workfow \u00b7-"}, {"category_id": 15, "poly": [140.0, 1469.0, 320.0, 1469.0, 320.0, 1496.0, 140.0, 1496.0], "score": 0.94, "text": " Free eTOC Alerts "}, {"category_id": 15, "poly": [140.0, 1498.0, 317.0, 1498.0, 317.0, 1525.0, 140.0, 1525.0], "score": 0.98, "text": " Publication Ethics \u00b7"}, {"category_id": 15, "poly": [140.0, 1525.0, 413.0, 1525.0, 413.0, 1557.0, 140.0, 1557.0], "score": 0.99, "text": "Reviewers Acknowledgment \u00b7"}, {"category_id": 15, "poly": [138.0, 1549.0, 347.0, 1555.0, 346.0, 1589.0, 137.0, 1583.0], "score": 0.96, "text": " Submit a Manuscript -"}, {"category_id": 15, "poly": [138.0, 1579.0, 379.0, 1584.0, 378.0, 1618.0, 137.0, 1613.0], "score": 0.99, "text": "Subscription Information \u00b7"}, {"category_id": 15, "poly": [140.0, 1615.0, 307.0, 1615.0, 307.0, 1642.0, 140.0, 1642.0], "score": 0.99, "text": "Table of Contents"}, {"category_id": 15, "poly": [138.0, 1664.0, 342.0, 1664.0, 342.0, 1698.0, 138.0, 1698.0], "score": 0.93, "text": " Open Special Issues \u00b7"}, {"category_id": 15, "poly": [138.0, 1693.0, 371.0, 1693.0, 371.0, 1727.0, 138.0, 1727.0], "score": 0.96, "text": "Published Special Issues"}, {"category_id": 15, "poly": [140.0, 1723.0, 367.0, 1723.0, 367.0, 1757.0, 140.0, 1757.0], "score": 0.98, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [138.0, 1774.0, 231.0, 1774.0, 231.0, 1808.0, 138.0, 1808.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1803.0, 280.0, 1803.0, 280.0, 1830.0, 143.0, 1830.0], "score": 0.97, "text": "Full- Text PDF"}, {"category_id": 15, "poly": [143.0, 1835.0, 300.0, 1835.0, 300.0, 1861.0, 143.0, 1861.0], "score": 0.99, "text": "Full-Text HTML"}, {"category_id": 15, "poly": [143.0, 1864.0, 290.0, 1864.0, 290.0, 1891.0, 143.0, 1891.0], "score": 0.97, "text": "Full- Text ePUB"}, {"category_id": 15, "poly": [143.0, 1893.0, 288.0, 1893.0, 288.0, 1920.0, 143.0, 1920.0], "score": 0.94, "text": " Full- Text XML"}, {"category_id": 15, "poly": [143.0, 1922.0, 320.0, 1922.0, 320.0, 1949.0, 143.0, 1949.0], "score": 0.97, "text": " Linked References"}, {"category_id": 15, "poly": [140.0, 1944.0, 354.0, 1947.0, 354.0, 1981.0, 140.0, 1978.0], "score": 0.99, "text": "Citations to this Article"}, {"category_id": 15, "poly": [143.0, 1978.0, 359.0, 1978.0, 359.0, 2010.0, 143.0, 2010.0], "score": 0.97, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [140.0, 2003.0, 362.0, 2005.0, 361.0, 2039.0, 140.0, 2037.0], "score": 0.99, "text": "Complete Special Issue"}, {"category_id": 15, "poly": [89.0, 2056.0, 467.0, 2056.0, 467.0, 2088.0, 89.0, 2088.0], "score": 0.99, "text": "Advances in Mathematical Physics"}, {"category_id": 15, "poly": [84.0, 2076.0, 627.0, 2078.0, 627.0, 2112.0, 84.0, 2110.0], "score": 0.99, "text": "Volume 2013 (2013), Article ID 754248, 5 pages"}, {"category_id": 15, "poly": [86.0, 2103.0, 526.0, 2103.0, 526.0, 2134.0, 86.0, 2134.0], "score": 0.99, "text": "http://dx.doi.0rg/10.1155/2013/754248"}, {"category_id": 15, "poly": [86.0, 2149.0, 241.0, 2149.0, 241.0, 2176.0, 86.0, 2176.0], "score": 0.97, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [91.61941528320312, 205.3466339111328, 1165.187744140625, 205.3466339111328, 1165.187744140625, 338.3722229003906, 91.61941528320312, 338.3722229003906], "score": 0.9999999403953552}, {"category_id": 1, "poly": [90.47676086425781, 147.34872436523438, 721.919189453125, 147.34872436523438, 721.919189453125, 180.9026336669922, 90.47676086425781, 180.9026336669922], "score": 0.9999997615814209}, {"category_id": 1, "poly": [89.43013763427734, 356.9610900878906, 498.9012145996094, 356.9610900878906, 498.9012145996094, 388.1481018066406, 89.43013763427734, 388.1481018066406], "score": 0.9999997019767761}, {"category_id": 1, "poly": [90.58576965332031, 409.6827087402344, 467.4754638671875, 409.6827087402344, 467.4754638671875, 440.8402099609375, 90.58576965332031, 440.8402099609375], "score": 0.9999997019767761}, {"category_id": 1, "poly": [89.73047637939453, 610.2697143554688, 1535.9852294921875, 610.2697143554688, 1535.9852294921875, 697.6023559570312, 89.73047637939453, 697.6023559570312], "score": 0.9999990463256836}, {"category_id": 1, "poly": [88.72743225097656, 461.9386901855469, 1503.21826171875, 461.9386901855469, 1503.21826171875, 522.0845336914062, 88.72743225097656, 522.0845336914062], "score": 0.9999979734420776}, {"category_id": 0, "poly": [88.03105926513672, 79.6369400024414, 1080.2962646484375, 79.6369400024414, 1080.2962646484375, 120.2398452758789, 88.03105926513672, 120.2398452758789], "score": 0.9999903440475464}, {"category_id": 0, "poly": [92.00572204589844, 552.6351318359375, 175.29025268554688, 552.6351318359375, 175.29025268554688, 581.0797119140625, 92.00572204589844, 581.0797119140625], "score": 0.9999518394470215}, {"category_id": 13, "poly": [181, 464, 204, 464, 204, 488, 181, 488], "score": 0.66, "latex": "\\copyright"}, {"category_id": 15, "poly": [89.0, 88.0, 1080.0, 88.0, 1080.0, 122.0, 89.0, 122.0], "score": 0.98, "text": "Involving the Cantorian and Cantor-Type Cylindrical Coordinates"}, {"category_id": 15, "poly": [89.0, 149.0, 716.0, 149.0, 716.0, 180.0, 89.0, 180.0], "score": 0.95, "text": "Ya-Juan Hao,1 H. M. Srivastava,2 Hossein Jafari 3 and Xiao-Jun Yang"}, {"category_id": 15, "poly": [86.0, 200.0, 718.0, 205.0, 718.0, 246.0, 86.0, 241.0], "score": 0.93, "text": "1College of Science, Yanshan Universiy, Qinhuangdao 066004, China"}, {"category_id": 15, "poly": [84.0, 234.0, 1085.0, 236.0, 1085.0, 278.0, 84.0, 275.0], "score": 0.96, "text": " 2Department of Mathematics and Statistics, Universiyof Victora, Victoria, British Columbia, Canada V8W 3R4"}, {"category_id": 15, "poly": [86.0, 270.0, 1134.0, 273.0, 1134.0, 307.0, 86.0, 305.0], "score": 0.98, "text": "3Department of Mathematics, Faculty of Mathematical Sciences, University of Mazandaran, Babolsar 47415-416, Iran"}, {"category_id": 15, "poly": [89.0, 305.0, 1164.0, 309.0, 1163.0, 344.0, 88.0, 339.0], "score": 0.98, "text": "4Department of Mathematics and Mechanics, China University ofMining and Technology, Jangsu, Xuzhou 221008, China"}, {"category_id": 15, "poly": [89.0, 361.0, 497.0, 361.0, 497.0, 392.0, 89.0, 392.0], "score": 0.98, "text": "Received 9 June 2013; Accepted 7 July 2013"}, {"category_id": 15, "poly": [89.0, 414.0, 465.0, 414.0, 465.0, 446.0, 89.0, 446.0], "score": 0.98, "text": "Academic Editor: J. A. Tenreiro Machado"}, {"category_id": 15, "poly": [89.0, 495.0, 873.0, 495.0, 873.0, 529.0, 89.0, 529.0], "score": 0.99, "text": "distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [91.0, 558.0, 177.0, 558.0, 177.0, 585.0, 91.0, 585.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [89.0, 614.0, 1532.0, 614.0, 1532.0, 646.0, 89.0, 646.0], "score": 0.98, "text": "The main object of this paper is to investigate the Helmholtz and difusion equations on the Cantor sets involving local fractional derivative operators. The Cantor-type"}, {"category_id": 15, "poly": [89.0, 641.0, 1510.0, 641.0, 1510.0, 672.0, 89.0, 672.0], "score": 0.99, "text": "cylindrical-coordinate method is applied to handle the corresponding local fractional differential equations. Two ilustrative examples for the Helmholtz and diffusion"}, {"category_id": 15, "poly": [89.0, 670.0, 1070.0, 670.0, 1070.0, 704.0, 89.0, 704.0], "score": 0.98, "text": "equations on the Cantor sets are shown by making use ofthe Cantorian and Cantor-type cylindrical coordinates."}, {"category_id": 15, "poly": [91.0, 465.0, 180.0, 465.0, 180.0, 497.0, 91.0, 497.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 465.0, 1493.0, 465.0, 1493.0, 497.0, 205.0, 497.0], "score": 0.98, "text": "2013 Ya- Juan Hao et al. This is an open access article distributed under the Creative Commons Atribution License, which permits unrestricted use,"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 2, "poly": [87.07008361816406, 75.6528091430664, 198.86453247070312, 75.6528091430664, 198.86453247070312, 186.90357971191406, 87.07008361816406, 186.90357971191406], "score": 0.9999990463256836}, {"category_id": 1, "poly": [118.27208709716797, 1114.719482421875, 403.4161682128906, 1114.719482421875, 403.4161682128906, 2015.570556640625, 118.27208709716797, 2015.570556640625], "score": 0.9999963045120239}, {"category_id": 1, "poly": [89.6655502319336, 2120.24462890625, 240.38525390625, 2120.24462890625, 240.38525390625, 2146.673095703125, 89.6655502319336, 2146.673095703125], "score": 0.9999281764030457}, {"category_id": 1, "poly": [90.1281967163086, 842.4866333007812, 602.7894897460938, 842.4866333007812, 602.7894897460938, 872.6671752929688, 90.1281967163086, 872.6671752929688], "score": 0.9989845156669617}, {"category_id": 3, "poly": [88.10802459716797, 513.58642578125, 1572.1552734375, 513.58642578125, 1572.1552734375, 820.75537109375, 88.10802459716797, 820.75537109375], "score": 0.9923195838928223}, {"category_id": 1, "poly": [87.52156066894531, 2028.5263671875, 663.27685546875, 2028.5263671875, 663.27685546875, 2103.556396484375, 87.52156066894531, 2103.556396484375], "score": 0.9890296459197998}, {"category_id": 1, "poly": [530.8441772460938, 1068.1019287109375, 655.7586059570312, 1068.1019287109375, 655.7586059570312, 1096.3885498046875, 530.8441772460938, 1096.3885498046875], "score": 0.9725723266601562}, {"category_id": 1, "poly": [119.29820251464844, 410.2472839355469, 259.9034423828125, 410.2472839355469, 259.9034423828125, 497.4517517089844, 119.29820251464844, 497.4517517089844], "score": 0.9393717646598816}, {"category_id": 2, "poly": [90.29474639892578, 2177.171630859375, 1114.365966796875, 2177.171630859375, 1114.365966796875, 2216.08642578125, 90.29474639892578, 2216.08642578125], "score": 0.767061710357666}, {"category_id": 2, "poly": [89.42839050292969, 355.4114074707031, 374.3411560058594, 355.4114074707031, 374.3411560058594, 385.35565185546875, 89.42839050292969, 385.35565185546875], "score": 0.6788046360015869}, {"category_id": 2, "poly": [87.57695770263672, 2028.4844970703125, 663.39013671875, 2028.4844970703125, 663.39013671875, 2103.76513671875, 87.57695770263672, 2103.76513671875], "score": 0.31901150941848755}, {"category_id": 2, "poly": [530.806884765625, 1068.268310546875, 655.5225830078125, 1068.268310546875, 655.5225830078125, 1096.3162841796875, 530.806884765625, 1096.3162841796875], "score": 0.26986756920814514}, {"category_id": 2, "poly": [87.8614730834961, 312.4030456542969, 386.2200622558594, 312.4030456542969, 386.2200622558594, 355.23040771484375, 87.8614730834961, 355.23040771484375], "score": 0.25322863459587097}, {"category_id": 1, "poly": [90.3290786743164, 2177.180419921875, 1114.3892822265625, 2177.180419921875, 1114.3892822265625, 2215.815673828125, 90.3290786743164, 2215.815673828125], "score": 0.2085944414138794}, {"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, 236.0, 465.0, 236.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 ofContents"}, {"category_id": 15, "poly": [140.0, 1118.0, 320.0, 1118.0, 320.0, 1152.0, 140.0, 1152.0], "score": 0.95, "text": "About this Joumal \u00b7"}, {"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.98, "text": "Abstracting and Indexing \u00b7"}, {"category_id": 15, "poly": [138.0, 1174.0, 310.0, 1180.0, 309.0, 1214.0, 137.0, 1208.0], "score": 0.96, "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": [139.0, 1230.0, 286.0, 1236.0, 284.0, 1270.0, 137.0, 1264.0], "score": 0.94, "text": "Annual Issues \u00b7"}, {"category_id": 15, "poly": [138.0, 1260.0, 396.0, 1262.0, 396.0, 1299.0, 138.0, 1296.0], "score": 0.95, "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": [141.0, 1406.0, 337.0, 1411.0, 336.0, 1443.0, 140.0, 1437.0], "score": 0.96, "text": " Contact Information \u00b7"}, {"category_id": 15, "poly": [140.0, 1440.0, 298.0, 1440.0, 298.0, 1467.0, 140.0, 1467.0], "score": 0.99, "text": "Editorial Board \u00b7"}, {"category_id": 15, "poly": [143.0, 1469.0, 327.0, 1469.0, 327.0, 1496.0, 143.0, 1496.0], "score": 0.97, "text": "Editorial Workflow"}, {"category_id": 15, "poly": [143.0, 1498.0, 322.0, 1498.0, 322.0, 1525.0, 143.0, 1525.0], "score": 0.97, "text": "Free eTOC Alerts \u00b7"}, {"category_id": 15, "poly": [143.0, 1528.0, 315.0, 1528.0, 315.0, 1554.0, 143.0, 1554.0], "score": 0.95, "text": " Publication Ethics :"}, {"category_id": 15, "poly": [140.0, 1554.0, 408.0, 1554.0, 408.0, 1586.0, 140.0, 1586.0], "score": 1.0, "text": "Reviewers Acknowledgment"}, {"category_id": 15, "poly": [140.0, 1581.0, 345.0, 1584.0, 344.0, 1618.0, 140.0, 1615.0], "score": 0.93, "text": " Submit a Manuscript \u00b7"}, {"category_id": 15, "poly": [138.0, 1608.0, 377.0, 1613.0, 376.0, 1647.0, 137.0, 1642.0], "score": 0.99, "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.94, "text": "Published Special Issues *"}, {"category_id": 15, "poly": [138.0, 1749.0, 364.0, 1752.0, 364.0, 1786.0, 138.0, 1783.0], "score": 0.99, "text": "Special Issue Guidelines"}, {"category_id": 15, "poly": [143.0, 1805.0, 231.0, 1805.0, 231.0, 1832.0, 143.0, 1832.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [143.0, 1832.0, 280.0, 1832.0, 280.0, 1859.0, 143.0, 1859.0], "score": 0.97, "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": [145.0, 1922.0, 288.0, 1922.0, 288.0, 1949.0, 145.0, 1949.0], "score": 0.99, "text": "Full- Text XML"}, {"category_id": 15, "poly": [143.0, 1952.0, 315.0, 1952.0, 315.0, 1978.0, 143.0, 1978.0], "score": 0.97, "text": " Linked References"}, {"category_id": 15, "poly": [143.0, 1978.0, 362.0, 1978.0, 362.0, 2010.0, 143.0, 2010.0], "score": 0.97, "text": "How to Cite this Article"}, {"category_id": 15, "poly": [89.0, 2120.0, 241.0, 2120.0, 241.0, 2147.0, 89.0, 2147.0], "score": 0.99, "text": "Research Article"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [91.7681655883789, 1602.5355224609375, 1523.787841796875, 1602.5355224609375, 1523.787841796875, 1726.97412109375, 91.7681655883789, 1726.97412109375], "score": 0.9999997615814209}, {"category_id": 1, "poly": [90.56932830810547, 1908.4337158203125, 1533.0589599609375, 1908.4337158203125, 1533.0589599609375, 2033.147216796875, 90.56932830810547, 2033.147216796875], "score": 0.9999997019767761}, {"category_id": 1, "poly": [89.40352630615234, 222.77264404296875, 842.1173095703125, 222.77264404296875, 842.1173095703125, 253.5812225341797, 89.40352630615234, 253.5812225341797], "score": 0.9999994039535522}, {"category_id": 1, "poly": [90.5095443725586, 276.4141540527344, 365.9908447265625, 276.4141540527344, 365.9908447265625, 306.078857421875, 90.5095443725586, 306.078857421875], "score": 0.9999992251396179}, {"category_id": 1, "poly": [87.51888275146484, 711.513916015625, 1550.887451171875, 711.513916015625, 1550.887451171875, 978.5478515625, 87.51888275146484, 978.5478515625], "score": 0.9999990463256836}, {"category_id": 1, "poly": [92.49445343017578, 137.98239135742188, 1234.7618408203125, 137.98239135742188, 1234.7618408203125, 204.58377075195312, 92.49445343017578, 204.58377075195312], "score": 0.9999989867210388}, {"category_id": 1, "poly": [89.26309967041016, 477.3477478027344, 1549.5972900390625, 477.3477478027344, 1549.5972900390625, 622.30224609375, 89.26309967041016, 622.30224609375], "score": 0.9999987483024597}, {"category_id": 1, "poly": [88.77384185791016, 996.1212158203125, 1565.1656494140625, 996.1212158203125, 1565.1656494140625, 1144.38232421875, 88.77384185791016, 1144.38232421875], "score": 0.9999984502792358}, {"category_id": 1, "poly": [92.27659606933594, 1551.2664794921875, 1154.04052734375, 1551.2664794921875, 1154.04052734375, 1584.466796875, 92.27659606933594, 1584.466796875], "score": 0.9999984502792358}, {"category_id": 1, "poly": [92.42786407470703, 1829.950439453125, 1560.163818359375, 1829.950439453125, 1560.163818359375, 1889.435302734375, 92.42786407470703, 1889.435302734375], "score": 0.9999977946281433}, {"category_id": 1, "poly": [88.50579071044922, 329.0122375488281, 1490.7076416015625, 329.0122375488281, 1490.7076416015625, 388.1294250488281, 88.50579071044922, 388.1294250488281], "score": 0.9999972581863403}, {"category_id": 1, "poly": [88.21162414550781, 1401.64208984375, 1571.3563232421875, 1401.64208984375, 1571.3563232421875, 1436.9921875, 88.21162414550781, 1436.9921875], "score": 0.9999964237213135}, {"category_id": 2, "poly": [89.23831939697266, 82.6554183959961, 790.54248046875, 82.6554183959961, 790.54248046875, 115.53522491455078, 89.23831939697266, 115.53522491455078], "score": 0.9999935030937195}, {"category_id": 1, "poly": [90.6179428100586, 1778.015869140625, 685.5267333984375, 1778.015869140625, 685.5267333984375, 1808.7415771484375, 90.6179428100586, 1808.7415771484375], "score": 0.9999932050704956}, {"category_id": 0, "poly": [91.47610473632812, 654.0404052734375, 234.32472229003906, 654.0404052734375, 234.32472229003906, 681.013916015625, 91.47610473632812, 681.013916015625], "score": 0.9999911189079285}, {"category_id": 1, "poly": [88.8289566040039, 1167.9456787109375, 1566.777587890625, 1167.9456787109375, 1566.777587890625, 1318.4156494140625, 88.8289566040039, 1318.4156494140625], "score": 0.999964714050293}, {"category_id": 0, "poly": [92.30870056152344, 419.03448486328125, 175.82183837890625, 419.03448486328125, 175.82183837890625, 445.3079528808594, 92.30870056152344, 445.3079528808594], "score": 0.9999622106552124}, {"category_id": 2, "poly": [90.35787963867188, 2154.50732421875, 492.136474609375, 2154.50732421875, 492.136474609375, 2183.007568359375, 90.35787963867188, 2183.007568359375], "score": 0.9995360374450684}, {"category_id": 0, "poly": [89.08985137939453, 1344.5521240234375, 475.616455078125, 1344.5521240234375, 475.616455078125, 1374.9229736328125, 89.08985137939453, 1374.9229736328125], "score": 0.9980475306510925}, {"category_id": 1, "poly": [85.98867797851562, 2204.818359375, 1552.1868896484375, 2204.818359375, 1552.1868896484375, 2236.912841796875, 85.98867797851562, 2236.912841796875], "score": 0.9953666925430298}, {"category_id": 2, "poly": [89.66373443603516, 2089.416259765625, 552.517333984375, 2089.416259765625, 552.517333984375, 2119.1826171875, 89.66373443603516, 2119.1826171875], "score": 0.9939791560173035}, {"category_id": 3, "poly": [1161.9366455078125, 1434.065185546875, 1395.604248046875, 1434.065185546875, 1395.604248046875, 1582.2518310546875, 1161.9366455078125, 1582.2518310546875], "score": 0.29008710384368896}, {"category_id": 13, "poly": [467, 1167, 588, 1167, 588, 1196, 467, 1196], "score": 0.89, "latex": "40\\times40\\,\\mathrm{mm}^{2}"}, {"category_id": 13, "poly": [397, 1552, 421, 1552, 421, 1582, 397, 1582], "score": 0.88, "latex": "f_{0}"}, {"category_id": 13, "poly": [827, 565, 903, 565, 903, 592, 827, 592], "score": 0.85, "latex": "80.36\\%"}, {"category_id": 13, "poly": [1370, 1971, 1488, 1971, 1488, 1999, 1370, 1999], "score": 0.85, "latex": "W_{7}=7\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [725, 1556, 747, 1556, 747, 1581, 725, 1581], "score": 0.85, "latex": "\\varepsilon_{e}"}, {"category_id": 13, "poly": [714, 565, 788, 565, 788, 591, 714, 591], "score": 0.85, "latex": "79.76\\%"}, {"category_id": 13, "poly": [169, 507, 403, 507, 403, 533, 169, 533], "score": 0.84, "latex": "\\cdot40\\,\\mathrm{mm}\\!\\times\\!40\\,\\mathrm{mm}\\!\\times\\!1.6\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1427, 536, 1480, 536, 1480, 562, 1427, 562], "score": 0.84, "latex": "7.8\\%"}, {"category_id": 13, "poly": [1150, 536, 1225, 536, 1225, 563, 1150, 563], "score": 0.83, "latex": "18.53\\%"}, {"category_id": 13, "poly": [1521, 1408, 1543, 1408, 1543, 1434, 1521, 1434], "score": 0.83, "latex": "\\varepsilon_{r}"}, {"category_id": 13, "poly": [1371, 1941, 1494, 1941, 1494, 1970, 1371, 1970], "score": 0.8, "latex": "S_{1}=10\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [609, 1912, 659, 1912, 659, 1938, 609, 1938], "score": 0.78, "latex": "50\\,\\Omega"}, {"category_id": 14, "poly": [1158, 1430, 1376, 1430, 1376, 1580, 1158, 1580], "score": 0.77, "latex": "\\begin{array}{l}{\\displaystyle{W=\\frac{c}{2f_{0}}\\sqrt{\\frac{\\varepsilon_{r}+1}{2}},\\ \\ \\ (}}\\\\ {\\displaystyle{L=\\frac{c}{2f_{0}\\sqrt{\\varepsilon_{r}}}-2\\Delta l.}}\\end{array}"}, {"category_id": 13, "poly": [896, 1406, 914, 1406, 914, 1428, 896, 1428], "score": 0.76, "latex": "L"}, {"category_id": 13, "poly": [731, 1969, 821, 1969, 821, 2003, 731, 2003], "score": 0.76, "latex": "W_{g}=40"}, {"category_id": 13, "poly": [1312, 1409, 1326, 1409, 1326, 1428, 1312, 1428], "score": 0.76, "latex": "c"}, {"category_id": 13, "poly": [1187, 1831, 1292, 1831, 1292, 1859, 1187, 1859], "score": 0.74, "latex": "14.96\\,\\mathrm{GHz},"}, {"category_id": 13, "poly": [461, 507, 511, 507, 511, 533, 461, 533], "score": 0.74, "latex": "50\\,\\Omega"}, {"category_id": 13, "poly": [89, 1970, 227, 1970, 227, 2000, 89, 2000], "score": 0.71, "latex": "S_{2}=16.5\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [357, 1970, 473, 1970, 473, 1999, 357, 1999], "score": 0.63, "latex": "W_{1}=4\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1231, 1634, 1301, 1634, 1301, 1661, 1231, 1661], "score": 0.62, "latex": "1.6\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [832, 1970, 962, 1970, 962, 2000, 832, 2000], "score": 0.62, "latex": "W_{3}=18\\;\\mathrm{mm},"}, {"category_id": 13, "poly": [1210, 1970, 1327, 1970, 1327, 1999, 1210, 1999], "score": 0.6, "latex": "W_{6}=4\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [232, 1970, 352, 1970, 352, 1999, 232, 1999], "score": 0.6, "latex": "S_{3}=12\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [181, 331, 204, 331, 204, 355, 181, 355], "score": 0.59, "latex": "\\copyright"}, {"category_id": 14, "poly": [1156, 1430, 1348, 1430, 1348, 1504, 1156, 1504], "score": 0.59, "latex": "W=\\frac{c}{2f_{0}}\\sqrt{\\frac{\\varepsilon_{r}+1}{2}},"}, {"category_id": 13, "poly": [966, 1970, 1083, 1970, 1083, 1999, 966, 1999], "score": 0.58, "latex": "W_{4}=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [1019, 1940, 1496, 1940, 1496, 1969, 1019, 1969], "score": 0.52, "latex": "L=40\\,\\mathrm{mm},W=40\\,\\mathrm{mm},R=6\\,\\mathrm{mm},S_{1}=10\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [559, 2004, 576, 2004, 576, 2029, 559, 2029], "score": 0.48, "latex": "\\underline{{3}}."}, {"category_id": 13, "poly": [1021, 1941, 1132, 1941, 1132, 1968, 1021, 1968], "score": 0.47, "latex": "L=40\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1089, 1970, 1207, 1970, 1207, 1999, 1089, 1999], "score": 0.46, "latex": "W_{5}=8\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [1266, 1941, 1364, 1941, 1364, 1969, 1266, 1969], "score": 0.41, "latex": "R=6\\,\\mathrm{{mm}}"}, {"category_id": 13, "poly": [827, 1970, 1328, 1970, 1328, 2000, 827, 2000], "score": 0.37, "latex": "W_{3}=18\\,\\mathrm{mm},W_{4}=6\\,\\mathrm{mm},W_{5}=8\\,\\mathrm{mm},W_{6}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [661, 1405, 690, 1405, 690, 1432, 661, 1432], "score": 0.35, "latex": "(\\underline{{1}})"}, {"category_id": 13, "poly": [479, 1970, 596, 1970, 596, 2000, 479, 2000], "score": 0.35, "latex": "W_{2}=7\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [601, 1970, 727, 1970, 727, 2003, 601, 2003], "score": 0.34, "latex": "L_{g}=40\\,\\mathrm{mm},"}, {"category_id": 15, "poly": [86.0, 134.0, 1055.0, 139.0, 1055.0, 180.0, 86.0, 175.0], "score": 0.97, "text": "Centre for Space Science (ANGKASA), Universi Kebangsaan Malaysia, 43600 Bangi Selangor, Malaysia"}, {"category_id": 15, "poly": [91.0, 175.0, 1230.0, 175.0, 1230.0, 210.0, 91.0, 210.0], "score": 0.97, "text": "Department of Electrical, Electronic and Systems Engineering, Universiti Kebangsaan Malaysia, 43600 Bangi Selangor, Malaysia"}, {"category_id": 15, "poly": [86.0, 224.0, 841.0, 227.0, 841.0, 261.0, 86.0, 258.0], "score": 0.99, "text": " Received 25 October 2013; Accepted 17 November 2013; Published 27 April 2014"}, {"category_id": 15, "poly": [91.0, 280.0, 364.0, 280.0, 364.0, 312.0, 91.0, 312.0], "score": 0.99, "text": "Academic Editor: Rezaul Azim"}, {"category_id": 15, "poly": [89.0, 363.0, 873.0, 363.0, 873.0, 395.0, 89.0, 395.0], "score": 0.98, "text": "distribution, and reproduction in any medium, provided the original work is properly cited."}, {"category_id": 15, "poly": [91.0, 424.0, 177.0, 424.0, 177.0, 451.0, 91.0, 451.0], "score": 1.0, "text": "Abstract"}, {"category_id": 15, "poly": [91.0, 480.0, 1547.0, 480.0, 1547.0, 512.0, 91.0, 512.0], "score": 0.98, "text": "A double inverted F-shape patch antenna is presented for dual-band operation. The proposed antenna is comprised ofcircular and rectangular slots on a printed circuit"}, {"category_id": 15, "poly": [89.0, 597.0, 1045.0, 597.0, 1045.0, 629.0, 89.0, 629.0], "score": 0.99, "text": "bands. Moreover, numerical simulations have been indicated as an important uniformity with measured results."}, {"category_id": 15, "poly": [91.0, 658.0, 236.0, 658.0, 236.0, 685.0, 91.0, 685.0], "score": 1.0, "text": "1. Introduction"}, {"category_id": 15, "poly": [89.0, 714.0, 1498.0, 714.0, 1498.0, 748.0, 89.0, 748.0], "score": 0.98, "text": "The raising demands of wireless communication systems enforce the improvement of dual band antennas that have abilities to operate under different standards in"}, {"category_id": 15, "poly": [84.0, 738.0, 1550.0, 741.0, 1550.0, 782.0, 84.0, 780.0], "score": 0.79, "text": "different fqucyba. dan nwre catons he ducd tr ds in the antea tlgy It als pavedt wayfrwidesa"}, {"category_id": 15, "poly": [84.0, 767.0, 1483.0, 770.0, 1483.0, 811.0, 84.0, 809.0], "score": 0.83, "text": "ofmobile phnes nmde socity reulting n mounng concems surodng its hamul radiation [1 2]. Mrostrip patch anta plays an iortant role a a"}, {"category_id": 15, "poly": [89.0, 802.0, 1528.0, 802.0, 1528.0, 836.0, 89.0, 836.0], "score": 0.98, "text": "harbinger in wireless communication systems and is gradually carrying out to face the changing demands ofupdate antena technology. Microstrip patch antennas are"}, {"category_id": 15, "poly": [91.0, 831.0, 1542.0, 831.0, 1542.0, 865.0, 91.0, 865.0], "score": 0.98, "text": "presently under concern for using in broadband comunication systems due to their attractive characteristics, such as low profle, low cost, ightweight, wide frequency"}, {"category_id": 15, "poly": [91.0, 860.0, 1532.0, 860.0, 1532.0, 892.0, 91.0, 892.0], "score": 0.97, "text": "bandwidth, ease of fabrication, and easy integration with monolithic microwave integrated circuits [3, 4]. However, the limitations ofthe microstrip patch antennas are"}, {"category_id": 15, "poly": [91.0, 889.0, 1505.0, 889.0, 1505.0, 921.0, 91.0, 921.0], "score": 0.98, "text": "having narrow bandwidth, and for that reason the demand of the bandwidth enhancement is gradualy rising in the practical applications [5]. In order to enhance its"}, {"category_id": 15, "poly": [89.0, 919.0, 1513.0, 919.0, 1513.0, 953.0, 89.0, 953.0], "score": 0.97, "text": "bandwidth, many approaches have been applied conventionaly, such as using thick substrates with low dielectrics constant, impedance matching network, parasitic"}, {"category_id": 15, "poly": [89.0, 948.0, 1341.0, 948.0, 1341.0, 979.0, 89.0, 979.0], "score": 0.98, "text": "patches stacked on the top ofthe main patch [6], slots lbaded on the patch, high dielectric constant substrate, and adopting short-circuit pin [Z]."}, {"category_id": 15, "poly": [89.0, 997.0, 1552.0, 997.0, 1552.0, 1031.0, 89.0, 1031.0], "score": 0.98, "text": "In [8], a rectangular slot antenna has been stated for dual frequency operation Reference [9] has narrated a printed dipole antenna to cover dual band with U-slot arms."}, {"category_id": 15, "poly": [89.0, 1028.0, 1486.0, 1028.0, 1486.0, 1060.0, 89.0, 1060.0], "score": 0.99, "text": "Reference [10] has been reported a low cost microstrip dipole antenna for wireless communications. In [11], a PIFA antenna has been presented for dual band "}, {"category_id": 15, "poly": [86.0, 1053.0, 1562.0, 1053.0, 1562.0, 1094.0, 86.0, 1094.0], "score": 0.96, "text": "operation with U-slot. Reference [12] has been mentioned a dual lop antea for 2.4/5 GHz wireless LAN. A monopole antema with double-T has been stated in [13]"}, {"category_id": 15, "poly": [86.0, 1082.0, 1555.0, 1084.0, 1555.0, 1118.0, 86.0, 1116.0], "score": 0.99, "text": " for 2.4/5.2 GHz WLAN operations. A dual polarized antemna has been mentioned in [14] for Ku-band application. Microstrip antennas on FR4 substrate material were"}, {"category_id": 15, "poly": [89.0, 1113.0, 475.0, 1113.0, 475.0, 1148.0, 89.0, 1148.0], "score": 0.98, "text": "discussed for UWB applications in [15, 16]."}, {"category_id": 15, "poly": [89.0, 1172.0, 1513.0, 1172.0, 1513.0, 1206.0, 89.0, 1206.0], "score": 0.99, "text": "In this research, a double inverted F-shape 40 \u00d7 40 mm? patch antenna for dual-band operation has been proposed and investigated to increase the bandwidth and"}, {"category_id": 15, "poly": [91.0, 1201.0, 1562.0, 1201.0, 1562.0, 1233.0, 91.0, 1233.0], "score": 0.99, "text": "reduce the size at the same time. The effect on antenna resonances and other antenna parameters is concentrated due to slots on the patch and ground plane to design the"}, {"category_id": 15, "poly": [89.0, 1230.0, 1537.0, 1228.0, 1537.0, 1262.0, 89.0, 1265.0], "score": 0.97, "text": "proposed dual-band double inverted F-shape antenna with enhanced bandwidth and effciency. Some techniques are employed such as increasing substrate thickness,"}, {"category_id": 15, "poly": [89.0, 1260.0, 1547.0, 1260.0, 1547.0, 1294.0, 89.0, 1294.0], "score": 0.98, "text": "changing patch by cutting rectangular slots, and cutting ground plane to achieve the resultant parameters such as impedance matching, gain, radiation pattern, and return"}, {"category_id": 15, "poly": [89.0, 1289.0, 1129.0, 1289.0, 1129.0, 1323.0, 89.0, 1323.0], "score": 0.97, "text": "loss. The results have been given a hint that the proposed antemna is appropriate for X-band and Ku-band applications."}, {"category_id": 15, "poly": [89.0, 1345.0, 470.0, 1345.0, 470.0, 1377.0, 89.0, 1377.0], "score": 0.99, "text": "2. Antenna Geometry and Optimization"}, {"category_id": 15, "poly": [89.0, 1606.0, 1488.0, 1606.0, 1488.0, 1640.0, 89.0, 1640.0], "score": 0.99, "text": "The geometry ofthe proposed antenna is as shown in Figure 1. The antenna consists ofrectangular conducting slots on patch and two on the ground. The design"}, {"category_id": 15, "poly": [89.0, 1667.0, 1523.0, 1667.0, 1523.0, 1701.0, 89.0, 1701.0], "score": 0.97, "text": "relative permittity 4.60, relative permeabilty 1, and dielectric loss tangent 0.02. A rectangular slot is cut fromone side of the copper patch to another. Another two"}, {"category_id": 15, "poly": [86.0, 1693.0, 1154.0, 1696.0, 1154.0, 1730.0, 86.0, 1727.0], "score": 0.98, "text": "rectangular slots are also cut from the middle ofthe patch. Five lateral rectangular slots are also cut from the ground plane."}, {"category_id": 15, "poly": [86.0, 1781.0, 684.0, 1779.0, 684.0, 1813.0, 86.0, 1815.0], "score": 0.98, "text": " Figure 1: The proposed antenna (a) top view and (b) Bottom view."}, {"category_id": 15, "poly": [93.0, 1864.0, 1168.0, 1864.0, 1168.0, 1898.0, 93.0, 1898.0], "score": 0.97, "text": "width, and slots of the proposed antenna endlessly. Here, microstrip line is used to provide feeding to the proposed antenna."}, {"category_id": 15, "poly": [89.0, 2207.0, 1542.0, 2207.0, 1542.0, 2239.0, 89.0, 2239.0], "score": 0.98, "text": "The return loss of simulation with different substrate materials is demonstrated in Figure 4. Teflon is a fuorine plastic that is very slippery with physical properties. It is a"}, {"category_id": 15, "poly": [89.0, 1552.0, 396.0, 1552.0, 396.0, 1584.0, 89.0, 1584.0], "score": 0.97, "text": "the dielectric constant of substrate,"}, {"category_id": 15, "poly": [91.0, 568.0, 826.0, 568.0, 826.0, 602.0, 91.0, 602.0], "score": 0.98, "text": "upper band, respectively. It has achieved stable radiation effciencies of 79. 76% and"}, {"category_id": 15, "poly": [904.0, 568.0, 1525.0, 568.0, 1525.0, 602.0, 904.0, 602.0], "score": 0.97, "text": "with average gains of 7.82 dBi and 5.66 dBi in the operating frequency"}, {"category_id": 15, "poly": [1489.0, 1966.0, 1535.0, 1969.0, 1535.0, 2010.0, 1489.0, 2008.0], "score": 1.0, "text": "The"}, {"category_id": 15, "poly": [422.0, 1552.0, 724.0, 1552.0, 724.0, 1584.0, 422.0, 1584.0], "score": 0.99, "text": " is the target center frequency, and"}, {"category_id": 15, "poly": [748.0, 1552.0, 1132.0, 1552.0, 1132.0, 1584.0, 748.0, 1584.0], "score": 0.99, "text": "is the effective dielectric constant. Consider"}, {"category_id": 15, "poly": [89.0, 509.0, 168.0, 509.0, 168.0, 541.0, 89.0, 541.0], "score": 1.0, "text": "board of"}, {"category_id": 15, "poly": [1481.0, 538.0, 1540.0, 538.0, 1540.0, 570.0, 1481.0, 570.0], "score": 0.96, "text": "on the"}, {"category_id": 15, "poly": [89.0, 538.0, 1149.0, 538.0, 1149.0, 570.0, 89.0, 570.0], "score": 0.99, "text": "element method (FEM) has been adopted in this investigation. It has a measured impedance bandwidths (2 : 1 VSWR) of"}, {"category_id": 15, "poly": [1226.0, 538.0, 1426.0, 538.0, 1426.0, 570.0, 1226.0, 570.0], "score": 0.98, "text": "on the lower band and"}, {"category_id": 15, "poly": [1544.0, 1406.0, 1564.0, 1406.0, 1564.0, 1440.0, 1544.0, 1440.0], "score": 0.71, "text": ".s"}, {"category_id": 15, "poly": [89.0, 1915.0, 608.0, 1915.0, 608.0, 1947.0, 89.0, 1947.0], "score": 1.0, "text": "The subminiature version A (SMA) connector that contains"}, {"category_id": 15, "poly": [660.0, 1915.0, 1476.0, 1915.0, 1476.0, 1947.0, 660.0, 1947.0], "score": 0.98, "text": "is conducted at the end of antenna feeding line for input RF signal. The input impedance of the"}, {"category_id": 15, "poly": [915.0, 1406.0, 1311.0, 1406.0, 1311.0, 1440.0, 915.0, 1440.0], "score": 0.95, "text": "and W are the length and width ofthe patch,"}, {"category_id": 15, "poly": [1327.0, 1406.0, 1520.0, 1406.0, 1520.0, 1440.0, 1327.0, 1440.0], "score": 0.92, "text": "is the velocity of ight,"}, {"category_id": 15, "poly": [91.0, 1835.0, 1186.0, 1835.0, 1186.0, 1866.0, 91.0, 1866.0], "score": 0.99, "text": "Thus, the proposed double inverted F-shape microstrip patch antenna is achieved. Two resonant frequencies, 11.32 GHz and"}, {"category_id": 15, "poly": [1293.0, 1835.0, 1552.0, 1835.0, 1552.0, 1866.0, 1293.0, 1866.0], "score": 0.98, "text": " are obtained adjusting length,"}, {"category_id": 15, "poly": [404.0, 509.0, 460.0, 509.0, 460.0, 541.0, 404.0, 541.0], "score": 0.94, "text": "with a"}, {"category_id": 15, "poly": [512.0, 509.0, 1508.0, 509.0, 1508.0, 541.0, 512.0, 541.0], "score": 0.97, "text": "microstrip transmission line. Commercially available high frequency structural simulator (HFSS) based on the finite "}, {"category_id": 15, "poly": [89.0, 1637.0, 1230.0, 1637.0, 1230.0, 1669.0, 89.0, 1669.0], "score": 0.97, "text": "procedure begins with the radiating patch with substrate, ground plane, and a feed line. It has been printed on a FR4 substrate with"}, {"category_id": 15, "poly": [1302.0, 1637.0, 1500.0, 1637.0, 1500.0, 1669.0, 1302.0, 1669.0], "score": 1.0, "text": "thickness that contains"}, {"category_id": 15, "poly": [1328.0, 1966.0, 1369.0, 1969.0, 1369.0, 2010.0, 1328.0, 2008.0], "score": 0.99, "text": "and"}, {"category_id": 15, "poly": [89.0, 331.0, 180.0, 331.0, 180.0, 365.0, 89.0, 365.0], "score": 1.0, "text": "Copyright"}, {"category_id": 15, "poly": [205.0, 331.0, 1488.0, 331.0, 1488.0, 365.0, 205.0, 365.0], "score": 0.97, "text": "2014 M. M. Islam et al This is an open access article distributed under the Creative Commons Atribution License, which permits unrestricted use,"}, {"category_id": 15, "poly": [89.0, 1944.0, 1018.0, 1942.0, 1018.0, 1976.0, 89.0, 1978.0], "score": 0.98, "text": "proposed antenna is as shown in Figure 2. Finally the optimal dimensions have been determined as follows:"}, {"category_id": 15, "poly": [89.0, 2005.0, 558.0, 2005.0, 558.0, 2039.0, 89.0, 2039.0], "score": 0.97, "text": "proposed prototype of the antenna is shown in Figure"}, {"category_id": 15, "poly": [89.0, 1406.0, 660.0, 1406.0, 660.0, 1440.0, 89.0, 1440.0], "score": 0.98, "text": "The length and width ofthe patch antenna can be calculated fom"}, {"category_id": 15, "poly": [691.0, 1406.0, 895.0, 1406.0, 895.0, 1440.0, 691.0, 1440.0], "score": 0.97, "text": "narrated in [17]. While"}], "page_info": {"page_no": 1, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [92.67031860351562, 1364.832275390625, 1511.6773681640625, 1364.832275390625, 1511.6773681640625, 1459.1207275390625, 92.67031860351562, 1459.1207275390625], "score": 0.9999997019767761}, {"category_id": 1, "poly": [90.04090881347656, 882.6687622070312, 1542.4300537109375, 882.6687622070312, 1542.4300537109375, 976.8461303710938, 90.04090881347656, 976.8461303710938], "score": 0.9999987483024597}, {"category_id": 1, "poly": [91.11861419677734, 1163.9913330078125, 1561.25830078125, 1163.9913330078125, 1561.25830078125, 1259.062255859375, 91.11861419677734, 1259.062255859375], "score": 0.9999984502792358}, {"category_id": 1, "poly": [88.6368179321289, 802.6366577148438, 1564.5556640625, 802.6366577148438, 1564.5556640625, 862.2216796875, 88.6368179321289, 862.2216796875], "score": 0.9999982714653015}, {"category_id": 1, "poly": [90.7897720336914, 635.2744750976562, 1532.6754150390625, 635.2744750976562, 1532.6754150390625, 695.762451171875, 90.7897720336914, 695.762451171875], "score": 0.9999982714653015}, {"category_id": 1, "poly": [92.48423767089844, 1891.2623291015625, 1563.0369873046875, 1891.2623291015625, 1563.0369873046875, 2009.3848876953125, 92.48423767089844, 2009.3848876953125], "score": 0.9999972581863403}, {"category_id": 1, "poly": [93.3158950805664, 1631.61962890625, 1565.5577392578125, 1631.61962890625, 1565.5577392578125, 1784.204345703125, 93.3158950805664, 1784.204345703125], "score": 0.9999971389770508}, {"category_id": 1, "poly": [89.24046325683594, 381.9836120605469, 1545.03955078125, 381.9836120605469, 1545.03955078125, 503.71588134765625, 89.24046325683594, 503.71588134765625], "score": 0.9999968409538269}, {"category_id": 1, "poly": [90.92496490478516, 522.204345703125, 1552.5595703125, 522.204345703125, 1552.5595703125, 615.3118286132812, 90.92496490478516, 615.3118286132812], "score": 0.9999957084655762}, {"category_id": 1, "poly": [88.2559585571289, 243.9530487060547, 1557.1396484375, 243.9530487060547, 1557.1396484375, 364.6582946777344, 88.2559585571289, 364.6582946777344], "score": 0.9999927282333374}, {"category_id": 1, "poly": [92.19757843017578, 1513.5010986328125, 606.1973876953125, 1513.5010986328125, 606.1973876953125, 1543.826416015625, 92.19757843017578, 1543.826416015625], "score": 0.9999912977218628}, {"category_id": 1, "poly": [90.48003387451172, 1082.53759765625, 1553.8995361328125, 1082.53759765625, 1553.8995361328125, 1145.01806640625, 90.48003387451172, 1145.01806640625], "score": 0.999987781047821}, {"category_id": 0, "poly": [92.48602294921875, 1573.3577880859375, 341.561279296875, 1573.3577880859375, 341.561279296875, 1603.1844482421875, 92.48602294921875, 1603.1844482421875], "score": 0.9999871253967285}, {"category_id": 1, "poly": [90.41073608398438, 2116.785888671875, 1555.8414306640625, 2116.785888671875, 1555.8414306640625, 2236.162353515625, 90.41073608398438, 2236.162353515625], "score": 0.9999864101409912}, {"category_id": 1, "poly": [91.97549438476562, 750.4844360351562, 553.1688842773438, 750.4844360351562, 553.1688842773438, 781.4736938476562, 91.97549438476562, 781.4736938476562], "score": 0.9999596476554871}, {"category_id": 1, "poly": [91.80147552490234, 1312.2730712890625, 606.774658203125, 1312.2730712890625, 606.774658203125, 1344.3948974609375, 91.80147552490234, 1344.3948974609375], "score": 0.9996840357780457}, {"category_id": 1, "poly": [88.80435943603516, 79.18480682373047, 1543.6365966796875, 79.18480682373047, 1543.6365966796875, 139.5462646484375, 88.80435943603516, 139.5462646484375], "score": 0.9987170100212097}, {"category_id": 1, "poly": [91.11190032958984, 1839.40673828125, 759.7597045898438, 1839.40673828125, 759.7597045898438, 1870.8634033203125, 91.11190032958984, 1870.8634033203125], "score": 0.9838826060295105}, {"category_id": 1, "poly": [91.37591552734375, 1031.065673828125, 657.2227783203125, 1031.065673828125, 657.2227783203125, 1062.634033203125, 91.37591552734375, 1062.634033203125], "score": 0.9756878614425659}, {"category_id": 1, "poly": [89.29642486572266, 192.96754455566406, 717.2213134765625, 192.96754455566406, 717.2213134765625, 224.2034912109375, 89.29642486572266, 224.2034912109375], "score": 0.7060770988464355}, {"category_id": 1, "poly": [91.39877319335938, 2065.728759765625, 843.8994140625, 2065.728759765625, 843.8994140625, 2097.035888671875, 91.39877319335938, 2097.035888671875], "score": 0.4362611174583435}, {"category_id": 0, "poly": [91.39877319335938, 2065.728759765625, 843.8994140625, 2065.728759765625, 843.8994140625, 2097.035888671875, 91.39877319335938, 2097.035888671875], "score": 0.2932133078575134}, {"category_id": 13, "poly": [725, 1663, 894, 1663, 894, 1693, 725, 1693], "score": 0.91, "latex": "5.5\\times4.5\\times3.5\\,\\mathrm{m}^{3}"}, {"category_id": 13, "poly": [703, 1228, 736, 1228, 736, 1256, 703, 1256], "score": 0.87, "latex": "W_{5}"}, {"category_id": 13, "poly": [571, 1315, 604, 1315, 604, 1343, 571, 1343], "score": 0.86, "latex": "W_{5}"}, {"category_id": 13, "poly": [169, 1086, 272, 1086, 272, 1112, 169, 1112], "score": 0.86, "latex": "R=6\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [560, 2206, 636, 2206, 636, 2232, 560, 2232], "score": 0.85, "latex": "80.36\\%"}, {"category_id": 13, "poly": [405, 2206, 481, 2206, 481, 2233, 405, 2233], "score": 0.85, "latex": "79.76\\%"}, {"category_id": 13, "poly": [498, 1168, 532, 1168, 532, 1196, 498, 1196], "score": 0.85, "latex": "{\\bf{\\check{W}}}_{5}"}, {"category_id": 13, "poly": [1135, 1428, 1168, 1428, 1168, 1457, 1135, 1457], "score": 0.83, "latex": "W_{7}"}, {"category_id": 13, "poly": [630, 1368, 663, 1368, 663, 1396, 630, 1396], "score": 0.81, "latex": "\\cdot W_{7}"}, {"category_id": 13, "poly": [571, 1515, 604, 1515, 604, 1544, 571, 1544], "score": 0.81, "latex": "W_{7}"}, {"category_id": 13, "poly": [341, 914, 430, 914, 430, 947, 341, 947], "score": 0.78, "latex": "W_{g}=40"}, {"category_id": 13, "poly": [864, 1196, 981, 1196, 981, 1225, 864, 1225], "score": 0.77, "latex": "W_{6}=4\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [1181, 1197, 1214, 1197, 1214, 1225, 1181, 1225], "score": 0.74, "latex": "W_{5}"}, {"category_id": 13, "poly": [1122, 1229, 1178, 1229, 1178, 1253, 1122, 1253], "score": 0.73, "latex": "8\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1387, 1367, 1509, 1367, 1509, 1396, 1387, 1396], "score": 0.72, "latex": "S_{3}=12\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [149, 887, 166, 887, 166, 913, 149, 913], "score": 0.72, "latex": "\\underline{{\\boldsymbol{5}}}"}, {"category_id": 13, "poly": [508, 1196, 596, 1196, 596, 1229, 508, 1229], "score": 0.72, "latex": "W_{g}=40"}, {"category_id": 13, "poly": [1191, 1428, 1248, 1428, 1248, 1455, 1191, 1455], "score": 0.7, "latex": "7\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1501, 1696, 1559, 1696, 1559, 1723, 1501, 1723], "score": 0.69, "latex": "1.2\\,\\mathrm{m}"}, {"category_id": 13, "poly": [1012, 1368, 1112, 1368, 1112, 1394, 1012, 1394], "score": 0.67, "latex": "R=6\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [464, 1395, 553, 1395, 553, 1429, 464, 1429], "score": 0.67, "latex": "W_{g}=40"}, {"category_id": 13, "poly": [980, 1396, 1055, 1396, 1055, 1425, 980, 1425], "score": 0.67, "latex": "W_{6}=4"}, {"category_id": 13, "poly": [765, 1229, 821, 1229, 821, 1254, 765, 1254], "score": 0.66, "latex": "8\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [721, 1169, 739, 1169, 739, 1194, 721, 1194], "score": 0.66, "latex": "\\underline{{{6}}}."}, {"category_id": 13, "poly": [564, 1396, 688, 1396, 688, 1425, 564, 1425], "score": 0.66, "latex": "W_{3}=18\\;\\mathrm{mm}"}, {"category_id": 13, "poly": [980, 1397, 1170, 1397, 1170, 1425, 980, 1425], "score": 0.65, "latex": "W_{6}=4\\:\\mathrm{mm\\,with}\\:W_{7}"}, {"category_id": 13, "poly": [980, 915, 1157, 915, 1157, 943, 980, 943], "score": 0.65, "latex": "W_{7}=7\\:\\mathrm{mm}\\,\\mathrm{with}\\,R"}, {"category_id": 13, "poly": [1024, 1196, 1216, 1196, 1216, 1225, 1024, 1225], "score": 0.64, "latex": "W_{7}=7\\:\\mathrm{mm\\,with}\\:W_{5}"}, {"category_id": 13, "poly": [1126, 886, 1263, 886, 1263, 914, 1126, 914], "score": 0.64, "latex": "S_{2}=16.5\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [107, 1115, 164, 1115, 164, 1139, 107, 1139], "score": 0.64, "latex": "6\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [818, 1396, 938, 1396, 938, 1425, 818, 1425], "score": 0.64, "latex": "W_{5}=8\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [1459, 1167, 1538, 1167, 1538, 1196, 1459, 1196], "score": 0.63, "latex": "S_{3}=12"}, {"category_id": 13, "poly": [88, 1396, 205, 1396, 205, 1425, 88, 1425], "score": 0.63, "latex": "W_{1}=4\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [742, 1195, 858, 1195, 858, 1225, 742, 1225], "score": 0.62, "latex": "W_{4}=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [1052, 1696, 1094, 1696, 1094, 1722, 1052, 1722], "score": 0.61, "latex": "-60"}, {"category_id": 13, "poly": [1118, 1367, 1236, 1367, 1236, 1396, 1118, 1396], "score": 0.61, "latex": "S_{1}=10\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1243, 1367, 1379, 1367, 1379, 1396, 1243, 1396], "score": 0.59, "latex": "S_{2}=16.5\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [88, 1755, 111, 1755, 111, 1778, 88, 1778], "score": 0.59, "latex": "\\Omega"}, {"category_id": 13, "poly": [828, 885, 1515, 885, 1515, 914, 828, 914], "score": 0.59, "latex": "\\mathsf{m m},W=40\\,\\mathsf{m m},S_{1}=10\\,\\mathsf{m m},S_{2}=16.5\\,\\mathsf{n m},S_{3}=12\\,\\mathsf{m m},W_{1}=4\\,\\mathsf{m m},"}, {"category_id": 13, "poly": [437, 914, 938, 914, 938, 944, 437, 944], "score": 0.58, "latex": "W_{3}=18\\,\\mathrm{mm},W_{4}=6\\,\\mathrm{mm},W_{5}=8\\,\\mathrm{mm},W_{6}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [1138, 1398, 1170, 1398, 1170, 1425, 1138, 1425], "score": 0.58, "latex": "W_{7}"}, {"category_id": 13, "poly": [84, 1395, 944, 1395, 944, 1429, 84, 1429], "score": 0.56, "latex": "W_{1}=4\\,\\mathrm{nm},W_{2}=7\\,\\mathrm{nm},L_{g}=40\\,\\mathrm{nm},W_{g}=40,W_{3}=18\\,\\mathrm{nm},W_{4}=6\\,\\mathrm{nm},W_{5}=8\\,\\mathrm{nm},"}, {"category_id": 13, "poly": [777, 583, 1092, 583, 1092, 612, 777, 612], "score": 0.56, "latex": "1.44\\,\\mathrm{GHz}\\,(15.04\\,\\mathrm{GHz}\\mathrm{-}13.60\\,\\mathrm{GHz})"}, {"category_id": 13, "poly": [1084, 444, 1157, 444, 1157, 470, 1084, 470], "score": 0.56, "latex": "-10\\,\\mathrm{dB}"}, {"category_id": 13, "poly": [1199, 1725, 1276, 1725, 1276, 1751, 1199, 1751], "score": 0.55, "latex": "20\\,\\mathrm{GHz}."}, {"category_id": 13, "poly": [756, 886, 869, 886, 869, 912, 756, 912], "score": 0.55, "latex": "L=40\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1001, 885, 1120, 885, 1120, 914, 1001, 914], "score": 0.55, "latex": "S_{1}=10\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [776, 334, 849, 334, 849, 360, 776, 360], "score": 0.53, "latex": "-10\\,\\mathrm{dB}"}, {"category_id": 13, "poly": [608, 444, 709, 444, 709, 470, 608, 470], "score": 0.52, "latex": "14.40\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [837, 1166, 1551, 1166, 1551, 1196, 837, 1196], "score": 0.52, "latex": "L=40\\,\\mathrm{mm},W=40\\,\\mathrm{mm},R=6\\,\\mathrm{mm},S_{1}=10\\,\\mathrm{mm},S_{2}=16.5\\,\\mathrm{mm},S_{3}=12"}, {"category_id": 13, "poly": [634, 886, 653, 886, 653, 909, 634, 909], "score": 0.5, "latex": "R"}, {"category_id": 13, "poly": [967, 333, 1059, 333, 1059, 361, 967, 361], "score": 0.5, "latex": "1.36\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [1190, 1167, 1309, 1167, 1309, 1196, 1190, 1196], "score": 0.5, "latex": "S_{1}=10\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1085, 1167, 1186, 1167, 1186, 1195, 1085, 1195], "score": 0.49, "latex": "R=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [376, 1196, 502, 1196, 502, 1229, 376, 1229], "score": 0.48, "latex": "L_{g}=40\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [754, 946, 812, 946, 812, 972, 754, 972], "score": 0.47, "latex": "7\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [885, 1367, 1007, 1367, 1007, 1394, 885, 1394], "score": 0.47, "latex": "W=40\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [607, 1196, 737, 1196, 737, 1225, 607, 1225], "score": 0.46, "latex": "W_{3}=18\\;\\mathrm{mm},"}, {"category_id": 13, "poly": [302, 334, 403, 334, 403, 360, 302, 360], "score": 0.45, "latex": "12.40\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [1316, 1167, 1452, 1167, 1452, 1196, 1316, 1196], "score": 0.45, "latex": "S_{2}=16.5\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [1119, 1367, 1510, 1367, 1510, 1396, 1119, 1396], "score": 0.44, "latex": "S_{1}=10\\,\\mathrm{mm},S_{2}=16.5\\,\\mathrm{mm},S_{3}=12\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [211, 914, 333, 914, 333, 947, 211, 947], "score": 0.43, "latex": "L_{g}=40\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [698, 1396, 815, 1396, 815, 1425, 698, 1425], "score": 0.42, "latex": "W_{4}=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [1023, 1196, 1098, 1196, 1098, 1225, 1023, 1225], "score": 0.42, "latex": "W_{7}=7"}, {"category_id": 13, "poly": [980, 915, 1055, 915, 1055, 943, 980, 943], "score": 0.42, "latex": "W_{7}=7"}, {"category_id": 13, "poly": [254, 1195, 369, 1195, 369, 1226, 254, 1226], "score": 0.41, "latex": "W_{2}=7\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1394, 886, 1513, 886, 1513, 914, 1394, 914], "score": 0.41, "latex": "W_{1}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [563, 1396, 938, 1396, 938, 1426, 563, 1426], "score": 0.41, "latex": "W_{3}=18\\;\\mathrm{mm},W_{4}=6\\;\\mathrm{mm},W_{5}=8\\;\\mathrm{mm},"}, {"category_id": 13, "poly": [588, 584, 661, 584, 661, 609, 588, 609], "score": 0.39, "latex": "-10\\,\\mathrm{dB}"}, {"category_id": 13, "poly": [576, 914, 691, 914, 691, 944, 576, 944], "score": 0.39, "latex": "W_{4}=6\\,\\mathrm{{mm}}"}, {"category_id": 13, "poly": [620, 1921, 722, 1921, 722, 1949, 620, 1949], "score": 0.39, "latex": "15.48\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [767, 1367, 1121, 1367, 1121, 1394, 767, 1394], "score": 0.38, "latex": "L=40\\,\\mathrm{mm},W=40\\,\\mathrm{mm},R=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [756, 107, 850, 107, 850, 135, 756, 135], "score": 0.37, "latex": "1.36\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [132, 1195, 250, 1195, 250, 1225, 132, 1225], "score": 0.35, "latex": "W_{1}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [441, 914, 573, 914, 573, 944, 441, 944], "score": 0.35, "latex": "W_{3}=18\\;\\mathrm{mm},"}, {"category_id": 13, "poly": [512, 1980, 604, 1980, 604, 2007, 512, 2007], "score": 0.34, "latex": "1.08\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [873, 886, 996, 886, 996, 912, 873, 912], "score": 0.34, "latex": "W=40\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [606, 1195, 981, 1195, 981, 1225, 606, 1225], "score": 0.33, "latex": "W_{3}=18\\,\\mathrm{mm},W_{4}=6\\,\\mathrm{mm},W_{6}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [88, 914, 207, 914, 207, 944, 88, 944], "score": 0.32, "latex": "W_{2}=7\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [1269, 885, 1387, 885, 1387, 914, 1269, 914], "score": 0.32, "latex": "S_{3}=12\\:\\mathrm{mm}"}, {"category_id": 13, "poly": [767, 1367, 880, 1367, 880, 1393, 767, 1393], "score": 0.3, "latex": "L=40\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [634, 1034, 653, 1034, 653, 1058, 634, 1058], "score": 0.3, "latex": "R"}, {"category_id": 13, "poly": [131, 1195, 993, 1195, 993, 1228, 131, 1228], "score": 0.3, "latex": "W_{1}=4\\,\\mathrm{mm},W_{2}=7\\,\\mathrm{mm},L_{g}=40\\,\\mathrm{mm},W_{g}=40,W_{3}=18\\,\\mathrm{mm},W_{4}=6\\,\\mathrm{mm},W_{6}=4\\,\\mathrm{mm},a=1\\,\\mathrm{mm},W_{5}=7\\,\\mathrm{mm},W_{6}=4\\,\\mathrm{mm},a=1\\,\\mathrm{mm},W_{7}=1\\,\\mathrm{mm},W_{8}=40\\,\\mathrm{mm},W_{9}=40,W_{10}=4\\,\\mathrm{mm},W_{11}=1\\,\\mathrm{mm},W_{12}=4\\,\\mathrm{mm},W_{13}=1\\,\\mathrm{mm},W_{14}=1\\,\\mathrm{mm},W_{15}=3\\,\\mathrm{mm},W_{16}=4\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [566, 108, 607, 108, 607, 133, 566, 133], "score": 0.29, "latex": "-10"}, {"category_id": 13, "poly": [252, 2148, 357, 2148, 357, 2174, 252, 2174], "score": 0.29, "latex": "14.84\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [840, 1167, 1190, 1167, 1190, 1194, 840, 1194], "score": 0.28, "latex": "L=40\\,\\mathrm{mm},W=40\\,\\mathrm{mm},R=6\\,\\mathrm{mm},"}, {"category_id": 13, "poly": [820, 914, 937, 914, 937, 943, 820, 943], "score": 0.28, "latex": "W_{6}=4\\:\\mathrm{mm},"}, {"category_id": 13, "poly": [661, 947, 716, 947, 716, 971, 661, 971], "score": 0.26, "latex": "5\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [1528, 1086, 1548, 1086, 1548, 1109, 1528, 1109], "score": 0.25, "latex": "R"}, {"category_id": 15, "poly": [91.0, 78.0, 1532.0, 78.0, 1532.0, 112.0, 91.0, 112.0], "score": 0.98, "text": "brand for polytetrafluoroethylene (PTFE). When we used Teflon (tm) as a substrate material, there was no resonance on the lower band. But, resonance was found at"}, {"category_id": 15, "poly": [89.0, 195.0, 713.0, 195.0, 713.0, 227.0, 89.0, 227.0], "score": 0.99, "text": "Figure 4: Comparisons of simulated return loss with different materials."}, {"category_id": 15, "poly": [91.0, 249.0, 1550.0, 249.0, 1550.0, 283.0, 91.0, 283.0], "score": 0.97, "text": "Duroid (tm) is a circuit material with high frequency that is flled with PTFE composite. There are many benefts ofDuroid (tm) substrate material such as low outgassing"}, {"category_id": 15, "poly": [91.0, 278.0, 1537.0, 278.0, 1537.0, 312.0, 91.0, 312.0], "score": 0.98, "text": "for space applications, low moisture absorption, and low electrical loss. This material is extensively used in space satelite transceivers, radar systems based on ground"}, {"category_id": 15, "poly": [91.0, 307.0, 1545.0, 307.0, 1545.0, 341.0, 91.0, 341.0], "score": 0.98, "text": "and airbome, missile guidance systems, and military radar systems. When we used Duroid (tm) as a substrate material there was no resonance on the upper band. But,"}, {"category_id": 15, "poly": [91.0, 387.0, 1532.0, 387.0, 1532.0, 422.0, 91.0, 422.0], "score": 0.96, "text": "Bakelite is one type ofplastic that is a thermosetting phenol formaldehyde resin. It is made from synthetic components achieved from an elmination reaction of phenol"}, {"category_id": 15, "poly": [91.0, 417.0, 1486.0, 417.0, 1486.0, 451.0, 91.0, 451.0], "score": 0.98, "text": "with formaldehyde. It has several uses such as in radio, electrical insulators, and telephone casings. When we used Bakelite as a substrate material, there was no"}, {"category_id": 15, "poly": [89.0, 478.0, 145.0, 478.0, 145.0, 507.0, 89.0, 507.0], "score": 0.99, "text": "GHz)."}, {"category_id": 15, "poly": [91.0, 529.0, 1515.0, 529.0, 1515.0, 563.0, 91.0, 563.0], "score": 0.98, "text": "Aluminum is a silvery soft, white ductle material. Alminium is extensively used in transportation, aerospace industry, and structural materials. It has low density and"}, {"category_id": 15, "poly": [91.0, 558.0, 1550.0, 558.0, 1550.0, 592.0, 91.0, 592.0], "score": 0.98, "text": "abilty to resist corrosion for which it is popular. When we used aluminum as a substrate material there was no resonance on the lower band. But,resonance was found"}, {"category_id": 15, "poly": [89.0, 638.0, 1528.0, 638.0, 1528.0, 672.0, 89.0, 672.0], "score": 0.98, "text": "Finaly, FR4 has been used in the proposed design as substrate material. One resonance was achieved at 11.32 GHz center frequency on the lower band and another"}, {"category_id": 15, "poly": [91.0, 668.0, 1072.0, 668.0, 1072.0, 702.0, 91.0, 702.0], "score": 0.97, "text": "resonance at 14.96 GHz on the upper band. The dielectric properties of the materials have been listed in Table 1."}, {"category_id": 15, "poly": [89.0, 755.0, 549.0, 755.0, 549.0, 787.0, 89.0, 787.0], "score": 0.99, "text": "Table 1: Dielectric properties of substrate materials."}, {"category_id": 15, "poly": [91.0, 806.0, 1562.0, 806.0, 1562.0, 841.0, 91.0, 841.0], "score": 0.96, "text": "A parametric study has been done to observe the effects ofthe proposed antenna parameters. Mainly, the effects ofthe difeent parameters on the return loss have been"}, {"category_id": 15, "poly": [91.0, 838.0, 182.0, 838.0, 182.0, 865.0, 91.0, 865.0], "score": 1.0, "text": "observed."}, {"category_id": 15, "poly": [84.0, 1574.0, 342.0, 1574.0, 342.0, 1606.0, 84.0, 1606.0], "score": 0.97, "text": " 3. Results and Discussion"}, {"category_id": 15, "poly": [89.0, 1637.0, 1518.0, 1637.0, 1518.0, 1669.0, 89.0, 1669.0], "score": 0.98, "text": "The anechoic chamber used in this study which was conducted by the microwave laboratory, at the Institute of Space Science (ANGKASA), UKM, Malaysia, had"}, {"category_id": 15, "poly": [89.0, 1669.0, 1523.0, 1669.0, 1523.0, 1701.0, 89.0, 1701.0], "score": 0.97, "text": "been ilustrated in Figure 8. The dimensions ofthis anechoic chamber are 5.5 \u00d7 4.5 \u00d7 3.5 m?'. A reference antenna, a horn antenna, was used in this analysis that was"}, {"category_id": 15, "poly": [89.0, 1844.0, 760.0, 1844.0, 760.0, 1879.0, 89.0, 1879.0], "score": 0.99, "text": "Figure 8: The photograph of anechoic chamber for prototype measurement."}, {"category_id": 15, "poly": [89.0, 1896.0, 1513.0, 1896.0, 1513.0, 1927.0, 89.0, 1927.0], "score": 0.97, "text": "The return loss with measurement and simulation of the proposed microstrip antenna has been demonstrated in Figure 9. The -10 dB bandwidths of2.12 GHz from"}, {"category_id": 15, "poly": [91.0, 1925.0, 1540.0, 1925.0, 1540.0, 1959.0, 91.0, 1959.0], "score": 0.99, "text": "10.92 GHz to 13.04 GHz and 1.08 GHz from 14.40 GHz to 15.48 GHz have been achieved from the measurements which show that at the lower band the resonance"}, {"category_id": 15, "poly": [91.0, 1954.0, 1560.0, 1954.0, 1560.0, 1988.0, 91.0, 1988.0], "score": 0.96, "text": "shifted from 11.32 GHz to 11.44 GHz and the bandwidth slightly decreased. Moreover, at the upper band the resonant frequency shifted from 14.96 GHz to 14.84 GHz"}, {"category_id": 15, "poly": [91.0, 2071.0, 844.0, 2071.0, 844.0, 2103.0, 91.0, 2103.0], "score": 0.99, "text": "Figure 9: Comparisons between simulated and measured return loss on FR4 material."}, {"category_id": 15, "poly": [91.0, 2122.0, 1520.0, 2122.0, 1520.0, 2156.0, 91.0, 2156.0], "score": 0.97, "text": "Gain ofthe proposed antenna has been shown in Figure 10. Figure 10 has ilustrated that 7.82 dBi achieved at the frst resonance for 11.44 GHz and 5.66 dBiat the"}, {"category_id": 15, "poly": [91.0, 2151.0, 1547.0, 2151.0, 1547.0, 2186.0, 91.0, 2186.0], "score": 0.97, "text": "second resonance 14.84 GHz In adition, the gain for the upper band is less than that for the lower band. Figure 11 shows VSWR ofthe proposed antenna. The value"}, {"category_id": 15, "poly": [91.0, 2181.0, 1552.0, 2181.0, 1552.0, 2215.0, 91.0, 2215.0], "score": 0.97, "text": "of VSWR is less than 2 that is found fromthe graph apparently. It is a desired value. Figure 12 has shown the radiation effciency of the proposed antenna. In Figure 11,"}, {"category_id": 15, "poly": [91.0, 2210.0, 1537.0, 2210.0, 1537.0, 2242.0, 91.0, 2242.0], "score": 0.98, "text": "the average lower band efficiency is 79.76% whereas 80.36% is the higher band efficiency. It can also be observed that lower band radiation efficiency is smaller than"}, {"category_id": 15, "poly": [89.0, 1230.0, 702.0, 1230.0, 702.0, 1262.0, 89.0, 1262.0], "score": 0.99, "text": "better coupling has been acquired at the upper band using the value of"}, {"category_id": 15, "poly": [89.0, 1318.0, 570.0, 1318.0, 570.0, 1350.0, 89.0, 1350.0], "score": 0.98, "text": "Figure 6: Reflection coefficient with different values off"}, {"category_id": 15, "poly": [605.0, 1318.0, 612.0, 1318.0, 612.0, 1350.0, 605.0, 1350.0], "score": 0.54, "text": "\uff1a"}, {"category_id": 15, "poly": [89.0, 1087.0, 168.0, 1087.0, 168.0, 1121.0, 89.0, 1121.0], "score": 0.92, "text": "By using"}, {"category_id": 15, "poly": [89.0, 1170.0, 497.0, 1170.0, 497.0, 1201.0, 89.0, 1201.0], "score": 0.97, "text": "The reflection coeficient for different values of"}, {"category_id": 15, "poly": [91.0, 1430.0, 1134.0, 1430.0, 1134.0, 1464.0, 91.0, 1464.0], "score": 0.98, "text": "microstrip line has greater significance to the coupling at the entire frequency bands. The coupling can be achieved when"}, {"category_id": 15, "poly": [89.0, 1369.0, 629.0, 1369.0, 629.0, 1401.0, 89.0, 1401.0], "score": 0.98, "text": "Figure Z shows the reflection coefficient for different values of"}, {"category_id": 15, "poly": [86.0, 1520.0, 570.0, 1515.0, 570.0, 1547.0, 86.0, 1552.0], "score": 0.96, "text": "Figure 7: Reflection coeficient with different values of"}, {"category_id": 15, "poly": [1215.0, 1199.0, 1562.0, 1199.0, 1562.0, 1233.0, 1215.0, 1233.0], "score": 0.98, "text": ". It was seen from the graph clearly that"}, {"category_id": 15, "poly": [89.0, 887.0, 148.0, 887.0, 148.0, 919.0, 89.0, 919.0], "score": 1.0, "text": "Figure"}, {"category_id": 15, "poly": [1169.0, 1430.0, 1190.0, 1430.0, 1190.0, 1464.0, 1169.0, 1464.0], "score": 0.81, "text": ".s"}, {"category_id": 15, "poly": [737.0, 1230.0, 764.0, 1230.0, 764.0, 1262.0, 737.0, 1262.0], "score": 1.0, "text": "as"}, {"category_id": 15, "poly": [822.0, 1230.0, 1121.0, 1230.0, 1121.0, 1262.0, 822.0, 1262.0], "score": 0.97, "text": " That is why the optimized value is"}, {"category_id": 15, "poly": [533.0, 1170.0, 720.0, 1170.0, 720.0, 1201.0, 533.0, 1201.0], "score": 0.98, "text": " is as shown in Figure"}, {"category_id": 15, "poly": [1171.0, 1399.0, 1503.0, 1399.0, 1503.0, 1433.0, 1171.0, 1433.0], "score": 0.99, "text": ". It was observed that the width of the"}, {"category_id": 15, "poly": [1158.0, 916.0, 1537.0, 914.0, 1537.0, 948.0, 1158.0, 950.0], "score": 0.97, "text": " It was shown that resonances were shifted"}, {"category_id": 15, "poly": [89.0, 1107.0, 106.0, 1117.0, 106.0, 1154.0, 85.0, 1144.0], "score": 0.59, "text": ".5"}, {"category_id": 15, "poly": [939.0, 1399.0, 979.0, 1399.0, 979.0, 1433.0, 939.0, 1433.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [206.0, 1399.0, 463.0, 1399.0, 463.0, 1433.0, 206.0, 1433.0], "score": 0.96, "text": "W2 = 7 mm, Lg = 40 mm,"}, {"category_id": 15, "poly": [89.0, 1698.0, 1051.0, 1698.0, 1051.0, 1732.0, 89.0, 1732.0], "score": 0.97, "text": "double ridge guided. Pyramidal shaped absorbers have been used on the walls, ceiling, and floor with less than"}, {"category_id": 15, "poly": [1095.0, 1698.0, 1500.0, 1698.0, 1500.0, 1732.0, 1095.0, 1732.0], "score": 0.98, "text": "dB reflectivity. The diameter of the turntable is"}, {"category_id": 15, "poly": [112.0, 1757.0, 886.0, 1757.0, 886.0, 1788.0, 112.0, 1788.0], "score": 0.99, "text": "shaped proposed antenna has been measured in a standard far-field testing environment."}, {"category_id": 15, "poly": [939.0, 916.0, 979.0, 914.0, 979.0, 948.0, 939.0, 950.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [89.0, 587.0, 776.0, 587.0, 776.0, 621.0, 89.0, 621.0], "score": 0.98, "text": "at 14.32 GHz centre frequency on the upper band where -10 dB bandwidth is"}, {"category_id": 15, "poly": [1158.0, 446.0, 1540.0, 443.0, 1540.0, 478.0, 1158.0, 480.0], "score": 0.98, "text": "bandwidth is 1.68 GHz (14.64 GHz-13.96"}, {"category_id": 15, "poly": [91.0, 1725.0, 1198.0, 1725.0, 1198.0, 1759.0, 91.0, 1759.0], "score": 0.99, "text": "A vector network analyzer (VNA) (model mumber: Agilent E8362C) has been used for the measurements with a range ofup to"}, {"category_id": 15, "poly": [1277.0, 1725.0, 1560.0, 1725.0, 1560.0, 1759.0, 1277.0, 1759.0], "score": 0.98, "text": "In this way, the prototype of the"}, {"category_id": 15, "poly": [86.0, 446.0, 607.0, 443.0, 607.0, 478.0, 86.0, 480.0], "score": 1.0, "text": "resonance on the lower band. But, resonance was found at"}, {"category_id": 15, "poly": [710.0, 446.0, 1083.0, 443.0, 1083.0, 478.0, 710.0, 480.0], "score": 0.99, "text": "center frequency on the upper band where"}, {"category_id": 15, "poly": [740.0, 1170.0, 836.0, 1170.0, 836.0, 1201.0, 740.0, 1201.0], "score": 0.92, "text": " It includes"}, {"category_id": 15, "poly": [167.0, 887.0, 633.0, 887.0, 633.0, 919.0, 167.0, 919.0], "score": 0.98, "text": "shows the reflection coeffcient for different values of"}, {"category_id": 15, "poly": [654.0, 887.0, 755.0, 887.0, 755.0, 919.0, 654.0, 919.0], "score": 0.96, "text": " It includes"}, {"category_id": 15, "poly": [850.0, 334.0, 966.0, 334.0, 966.0, 368.0, 850.0, 368.0], "score": 1.0, "text": "bandwidth is"}, {"category_id": 15, "poly": [597.0, 1199.0, 606.0, 1199.0, 606.0, 1233.0, 597.0, 1233.0], "score": 0.91, "text": "\uff0c"}, {"category_id": 15, "poly": [91.0, 334.0, 301.0, 334.0, 301.0, 368.0, 91.0, 368.0], "score": 0.99, "text": "resonance was found at"}, {"category_id": 15, "poly": [404.0, 334.0, 775.0, 334.0, 775.0, 368.0, 404.0, 368.0], "score": 1.0, "text": "center frequency on the lower band where"}, {"category_id": 15, "poly": [982.0, 1199.0, 1022.0, 1199.0, 1022.0, 1233.0, 982.0, 1233.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [91.0, 1199.0, 131.0, 1199.0, 131.0, 1233.0, 91.0, 1233.0], "score": 0.92, "text": "mm,"}, {"category_id": 15, "poly": [86.0, 1976.0, 511.0, 1981.0, 511.0, 2022.0, 86.0, 2017.0], "score": 0.95, "text": "and the bandwidth decreased fom 1.16 GHzto"}, {"category_id": 15, "poly": [605.0, 1976.0, 1144.0, 1981.0, 1144.0, 2022.0, 605.0, 2017.0], "score": 0.91, "text": "whie the retum los ale decreased at resonancefequency."}, {"category_id": 15, "poly": [664.0, 1369.0, 766.0, 1369.0, 766.0, 1401.0, 664.0, 1401.0], "score": 0.97, "text": ". It includes"}, {"category_id": 15, "poly": [89.0, 1035.0, 633.0, 1035.0, 633.0, 1067.0, 89.0, 1067.0], "score": 0.98, "text": "Figure 5: Reflection coefficient with different values of radius,"}, {"category_id": 15, "poly": [86.0, 105.0, 565.0, 107.0, 565.0, 149.0, 86.0, 146.0], "score": 0.98, "text": "14.68 GHz center fequency on the upper band where"}, {"category_id": 15, "poly": [608.0, 105.0, 755.0, 107.0, 755.0, 149.0, 608.0, 146.0], "score": 0.97, "text": "dB bandwidth is"}, {"category_id": 15, "poly": [86.0, 945.0, 660.0, 948.0, 660.0, 982.0, 86.0, 979.0], "score": 0.97, "text": " on both ofthe lower and upper bands using the value ofradius as"}, {"category_id": 15, "poly": [717.0, 945.0, 753.0, 948.0, 753.0, 982.0, 717.0, 979.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [273.0, 1087.0, 1527.0, 1087.0, 1527.0, 1121.0, 273.0, 1121.0], "score": 0.98, "text": " desired dual band has been obtained with improved bandwidth on both ofthe lower and upper bands. That is why the optimized value of radius"}], "page_info": {"page_no": 2, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [93.5000228881836, 795.4178466796875, 1542.245361328125, 795.4178466796875, 1542.245361328125, 915.6209106445312, 93.5000228881836, 915.6209106445312], "score": 0.9999997019767761}, {"category_id": 2, "poly": [90.44877624511719, 80.94607543945312, 267.27703857421875, 80.94607543945312, 267.27703857421875, 107.34756469726562, 90.44877624511719, 107.34756469726562], "score": 0.9999992251396179}, {"category_id": 1, "poly": [91.66941833496094, 934.1732177734375, 1557.4644775390625, 934.1732177734375, 1557.4644775390625, 1026.5819091796875, 91.66941833496094, 1026.5819091796875], "score": 0.9999992251396179}, {"category_id": 1, "poly": [90.08413696289062, 228.0552215576172, 484.0262451171875, 228.0552215576172, 484.0262451171875, 259.67352294921875, 90.08413696289062, 259.67352294921875], "score": 0.9999989867210388}, {"category_id": 1, "poly": [91.08582305908203, 1403.873291015625, 1558.4688720703125, 1403.873291015625, 1558.4688720703125, 1580.2442626953125, 91.08582305908203, 1580.2442626953125], "score": 0.9999988079071045}, {"category_id": 1, "poly": [90.54592895507812, 540.991943359375, 1517.5877685546875, 540.991943359375, 1517.5877685546875, 689.7562255859375, 90.54592895507812, 689.7562255859375], "score": 0.9999985694885254}, {"category_id": 1, "poly": [90.99761199951172, 1285.5086669921875, 516.4193115234375, 1285.5086669921875, 516.4193115234375, 1315.5316162109375, 90.99761199951172, 1315.5316162109375], "score": 0.9999984502792358}, {"category_id": 1, "poly": [91.49840545654297, 743.4916381835938, 1517.7752685546875, 743.4916381835938, 1517.7752685546875, 774.5494995117188, 91.49840545654297, 774.5494995117188], "score": 0.9999980926513672}, {"category_id": 1, "poly": [88.675537109375, 345.2760314941406, 1559.1097412109375, 345.2760314941406, 1559.1097412109375, 433.99859619140625, 88.675537109375, 433.99859619140625], "score": 0.9999980926513672}, {"category_id": 1, "poly": [89.60310363769531, 1197.89208984375, 1515.07177734375, 1197.89208984375, 1515.07177734375, 1229.003173828125, 89.60310363769531, 1229.003173828125], "score": 0.9999980926513672}, {"category_id": 1, "poly": [91.12659454345703, 293.1755676269531, 588.1079711914062, 293.1755676269531, 588.1079711914062, 323.1897277832031, 91.12659454345703, 323.1897277832031], "score": 0.9999979734420776}, {"category_id": 1, "poly": [92.72129821777344, 1668.03125, 903.9880981445312, 1668.03125, 903.9880981445312, 1697.0574951171875, 92.72129821777344, 1697.0574951171875], "score": 0.9999971389770508}, {"category_id": 1, "poly": [92.20233917236328, 1080.1331787109375, 653.9676513671875, 1080.1331787109375, 653.9676513671875, 1111.8375244140625, 92.20233917236328, 1111.8375244140625], "score": 0.9999958872795105}, {"category_id": 1, "poly": [89.33232116699219, 163.14315795898438, 458.6530456542969, 163.14315795898438, 458.6530456542969, 195.95571899414062, 89.33232116699219, 195.95571899414062], "score": 0.9999909400939941}, {"category_id": 1, "poly": [121.62884521484375, 1783.0157470703125, 1556.3836669921875, 1783.0157470703125, 1556.3836669921875, 2254.82763671875, 121.62884521484375, 2254.82763671875], "score": 0.9999858736991882}, {"category_id": 0, "poly": [90.08313751220703, 1728.3309326171875, 205.9459686279297, 1728.3309326171875, 205.9459686279297, 1754.0718994140625, 90.08313751220703, 1754.0718994140625], "score": 0.9999768137931824}, {"category_id": 1, "poly": [91.44649505615234, 1145.441162109375, 520.8842163085938, 1145.441162109375, 520.8842163085938, 1175.04443359375, 91.44649505615234, 1175.04443359375], "score": 0.9999531507492065}, {"category_id": 0, "poly": [91.38146209716797, 1345.280517578125, 225.92367553710938, 1345.280517578125, 225.92367553710938, 1373.254150390625, 91.38146209716797, 1373.254150390625], "score": 0.9998207092285156}, {"category_id": 0, "poly": [90.29400634765625, 1608.1724853515625, 286.52117919921875, 1608.1724853515625, 286.52117919921875, 1635.5447998046875, 90.29400634765625, 1635.5447998046875], "score": 0.998153567314148}, {"category_id": 1, "poly": [92.4948959350586, 488.0361022949219, 695.5621337890625, 488.0361022949219, 695.5621337890625, 521.035400390625, 92.4948959350586, 521.035400390625], "score": 0.9410437345504761}, {"category_id": 13, "poly": [682, 572, 709, 572, 709, 601, 682, 601], "score": 0.85, "latex": "\\operatorname{E}_{\\theta}"}, {"category_id": 13, "poly": [89, 1462, 164, 1462, 164, 1488, 89, 1488], "score": 0.85, "latex": "79.76\\%"}, {"category_id": 13, "poly": [203, 1462, 280, 1462, 280, 1489, 203, 1489], "score": 0.83, "latex": "80.36\\%"}, {"category_id": 13, "poly": [101, 1405, 259, 1405, 259, 1430, 101, 1430], "score": 0.71, "latex": "\\lambda40\\,\\mathrm{mm}\\times40\\,\\mathrm{mm}"}, {"category_id": 13, "poly": [90, 572, 191, 572, 191, 599, 90, 599], "score": 0.34, "latex": "14.96\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [990, 2055, 1003, 2055, 1003, 2070, 990, 2070], "score": 0.33, "latex": "\\cdot"}, {"category_id": 13, "poly": [463, 1433, 553, 1433, 553, 1460, 463, 1460], "score": 0.33, "latex": "1.08\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [605, 1996, 619, 1996, 619, 2012, 605, 2012], "score": 0.27, "latex": "\\cdot"}, {"category_id": 13, "poly": [760, 2054, 774, 2054, 774, 2069, 760, 2069], "score": 0.26, "latex": "\\cdot"}, {"category_id": 13, "poly": [1035, 542, 1138, 542, 1138, 571, 1035, 571], "score": 0.25, "latex": "11.32\\,\\mathrm{GHz}"}, {"category_id": 13, "poly": [364, 572, 466, 572, 466, 599, 364, 599], "score": 0.25, "latex": "14.96\\,\\mathrm{GHz}"}, {"category_id": 15, "poly": [89.0, 168.0, 460.0, 168.0, 460.0, 202.0, 89.0, 202.0], "score": 0.98, "text": "Figure 10: Gain of the proposed antenna."}, {"category_id": 15, "poly": [91.0, 234.0, 482.0, 234.0, 482.0, 266.0, 91.0, 266.0], "score": 0.99, "text": "Figure 11: VSWR of the proposed antenna"}, {"category_id": 15, "poly": [89.0, 297.0, 588.0, 297.0, 588.0, 331.0, 89.0, 331.0], "score": 0.98, "text": "Figure 12: Radiation efficiency of the proposed antenna."}, {"category_id": 15, "poly": [89.0, 348.0, 1545.0, 348.0, 1545.0, 383.0, 89.0, 383.0], "score": 0.97, "text": "Figure 13 has been shown the current distribution ofthe proposed antenna for (a) 11.32 GHz and (b) 14.96 GHz It can be seen that a large amount of current flows at"}, {"category_id": 15, "poly": [91.0, 378.0, 1560.0, 378.0, 1560.0, 409.0, 91.0, 409.0], "score": 0.98, "text": "feeding line. Electric field has been created much in this point. Current distribution is more stable in lower band than in upper band. The creation ofelectric field near slots"}, {"category_id": 15, "poly": [89.0, 407.0, 1156.0, 407.0, 1156.0, 439.0, 89.0, 439.0], "score": 0.98, "text": "is reasonable. As a result, excitation is strong in the entire parts of the antenna on both the lower band and the upper band."}, {"category_id": 15, "poly": [86.0, 492.0, 699.0, 490.0, 699.0, 524.0, 86.0, 526.0], "score": 0.97, "text": "Figure 13: Current distribution at (a) 11.32 GHz and (b) 14.96 GHz."}, {"category_id": 15, "poly": [89.0, 604.0, 1518.0, 604.0, 1518.0, 638.0, 89.0, 638.0], "score": 0.98, "text": "polarization in radiation pattern is lowermicrostrp antenna. The cross-polarization effect is higher in the H-plane for both resonances. When frequency increases, the"}, {"category_id": 15, "poly": [89.0, 633.0, 1515.0, 633.0, 1515.0, 668.0, 89.0, 668.0], "score": 0.96, "text": "effect increases interpreting from the radiation pattern simply. Moreover, almost omnidirectional and symmetrical radiation patterns have been attained along both E"}, {"category_id": 15, "poly": [91.0, 665.0, 258.0, 665.0, 258.0, 692.0, 91.0, 692.0], "score": 1.0, "text": "plane and H-plane."}, {"category_id": 15, "poly": [89.0, 748.0, 1518.0, 748.0, 1518.0, 782.0, 89.0, 782.0], "score": 0.99, "text": "Figure 14: Radiation patterns of the proposed antenna, (a) 11.32 GHz at E-plane, (b) 11.32 at H-plane, (c) 14.96 GHz at E-plane, and (d) 14.96 GHz at H-plane."}, {"category_id": 15, "poly": [86.0, 797.0, 1542.0, 799.0, 1542.0, 833.0, 86.0, 831.0], "score": 0.97, "text": "It has been observed that the same radiation pattern exists over the X- and Ku-bands. The obtained radiation patterns denote that the proposed antenna delivers linear"}, {"category_id": 15, "poly": [89.0, 831.0, 1537.0, 831.0, 1537.0, 863.0, 89.0, 863.0], "score": 0.98, "text": "polarization where the level of cross-polarization is lower than that of copolarization in allof the simulated radiation patterns. When the radiation pattern ofa microstrip"}, {"category_id": 15, "poly": [89.0, 858.0, 1537.0, 855.0, 1537.0, 889.0, 89.0, 892.0], "score": 0.97, "text": "antenna is symmetric and ommidirectional, it faces some reasonable benefits. One is that resonance would never be shifed at diferent directions and a large amount of"}, {"category_id": 15, "poly": [89.0, 887.0, 1444.0, 884.0, 1444.0, 919.0, 89.0, 921.0], "score": 0.98, "text": "stable power would be at the direction of broadside beam Another advantage is that the radiation patterm would be more durable on the operational bands."}, {"category_id": 15, "poly": [91.0, 938.0, 1532.0, 938.0, 1532.0, 972.0, 91.0, 972.0], "score": 0.97, "text": "The phase variation ofthe proposed antenna is plotted in Figure 15. It is realized from the graph that the proposed antenna has the phase variation that is Inear across"}, {"category_id": 15, "poly": [91.0, 970.0, 1560.0, 970.0, 1560.0, 1004.0, 91.0, 1004.0], "score": 0.97, "text": "both the upper and the lower operating frequency bands. This phase variation indicates that all the frequency components of the signal have the same pulse distortion due"}, {"category_id": 15, "poly": [86.0, 994.0, 1122.0, 994.0, 1122.0, 1035.0, 86.0, 1035.0], "score": 0.96, "text": "to the same propagation delay. Comparisons between existing and proposed antenas have been tabulated in Table 2."}, {"category_id": 15, "poly": [91.0, 1087.0, 657.0, 1087.0, 657.0, 1118.0, 91.0, 1118.0], "score": 0.99, "text": "Table 2: Comparisons between existing and proposed antennas."}, {"category_id": 15, "poly": [89.0, 1150.0, 521.0, 1150.0, 521.0, 1182.0, 89.0, 1182.0], "score": 0.98, "text": "Figure 15: Phase value of the proposed antenna."}, {"category_id": 15, "poly": [89.0, 1201.0, 1510.0, 1201.0, 1510.0, 1233.0, 89.0, 1233.0], "score": 0.98, "text": "The Smith chart ofthe proposed antenna is shown in Figure 16. Two resonances ml and m2 are identified clearly from this chart which has validated the evidences."}, {"category_id": 15, "poly": [89.0, 1289.0, 517.0, 1289.0, 517.0, 1323.0, 89.0, 1323.0], "score": 1.0, "text": "Figure 16: Smith chart of the proposed antenna."}, {"category_id": 15, "poly": [91.0, 1350.0, 224.0, 1350.0, 224.0, 1377.0, 91.0, 1377.0], "score": 1.0, "text": "4. Conclusion"}, {"category_id": 15, "poly": [89.0, 1494.0, 1503.0, 1494.0, 1503.0, 1528.0, 89.0, 1528.0], "score": 0.96, "text": "for the proposed antenna for dual frequency operation has also been improved than conventional It is realized that a good combination has been focused between"}, {"category_id": 15, "poly": [89.0, 1523.0, 1508.0, 1523.0, 1508.0, 1554.0, 89.0, 1554.0], "score": 0.99, "text": "measurements and simulations that validate our proposed double F-shaped design concept. The patch resonator, compact size, stable radiation patterns, low cross"}, {"category_id": 15, "poly": [89.0, 1550.0, 1545.0, 1550.0, 1545.0, 1581.0, 89.0, 1581.0], "score": 0.98, "text": "polarization, efficiency with improved bandwidth, and higher gain have made the proposed double F-shaped antenna compatible for X-band and Ku-band applications."}, {"category_id": 15, "poly": [91.0, 1615.0, 285.0, 1615.0, 285.0, 1640.0, 91.0, 1640.0], "score": 0.98, "text": "Conflict of Interests"}, {"category_id": 15, "poly": [89.0, 1671.0, 903.0, 1671.0, 903.0, 1703.0, 89.0, 1703.0], "score": 0.97, "text": "The authors declare that there is no conflict of interests regarding the publication of this paper."}, {"category_id": 15, "poly": [91.0, 1732.0, 204.0, 1732.0, 204.0, 1759.0, 91.0, 1759.0], "score": 1.0, "text": "References"}, {"category_id": 15, "poly": [113.0, 1788.0, 1537.0, 1788.0, 1537.0, 1822.0, 113.0, 1822.0], "score": 0.97, "text": "1. Y.-C. Lu and Y.-C. Lin, \u201cA mode-based design method for dual-band and self-diplexing antennas using double T-stubs loaded aperture,\u201d\" IEEE Transactions"}, {"category_id": 15, "poly": [145.0, 1818.0, 1004.0, 1818.0, 1004.0, 1852.0, 145.0, 1852.0], "score": 0.98, "text": "on Antennas and Propagation, vol. 60, no. 12, pp. 5596-5603, 2012. View at Google Scholar"}, {"category_id": 15, "poly": [111.0, 1842.0, 1530.0, 1847.0, 1530.0, 1881.0, 111.0, 1876.0], "score": 0.98, "text": " 2. M. R. I. Faruque, M. T. Islam, and N. Misran, \u201cEvaluation of specific absorption rate (SAR) reduction for PIFA antenna using metamaterials,\u201d Frequenz, vol."}, {"category_id": 15, "poly": [143.0, 1874.0, 819.0, 1874.0, 819.0, 1908.0, 143.0, 1908.0], "score": 0.96, "text": " 64, no. 7-8, pp. 144-149, 2010. View at Google Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [111.0, 1900.0, 1542.0, 1903.0, 1542.0, 1937.0, 111.0, 1935.0], "score": 0.97, "text": " 3. J-S. Row and S.- W. Wu, \u201cCircularly-polarized wide slot antenna loaded with a parasitic patch, IEEE Transactions on Antennas and Propagation, vol. 56,"}, {"category_id": 15, "poly": [145.0, 1932.0, 957.0, 1932.0, 957.0, 1966.0, 145.0, 1966.0], "score": 0.98, "text": "no. 9, pp. 2826-2832, 2008. View at Publisher : View at Go0gle Scholar View at Scopus"}, {"category_id": 15, "poly": [111.0, 1959.0, 1542.0, 1961.0, 1542.0, 1995.0, 111.0, 1993.0], "score": 0.97, "text": "4. C.-C. Yu and X.-C. Lin, \u201cA wideband single chip inductor-loaded CPW-fed inductive slot antenna,\" IEEE Transactions on Antennas and Propagation, vol."}, {"category_id": 15, "poly": [111.0, 2017.0, 1486.0, 2020.0, 1486.0, 2054.0, 111.0, 2051.0], "score": 0.97, "text": " 5. S. I. Latif L. Shafai, and S. K. Sharma, \u201cBandwidth enhancement and size reduction ofmicrostrip slot antemnas,\u2032 IEEE Transactions on Antennas and"}, {"category_id": 15, "poly": [113.0, 2078.0, 1552.0, 2078.0, 1552.0, 2112.0, 113.0, 2112.0], "score": 0.97, "text": " 6. W. S. T. Rowe and R. B. Waterhouse, \u201cInvestigation of proximity coupled patch antennas suitable for MMIC integration,\u201d\" in IEEE Antennas and Propagation"}, {"category_id": 15, "poly": [148.0, 2108.0, 802.0, 2108.0, 802.0, 2142.0, 148.0, 2142.0], "score": 0.99, "text": "Society Symposium Digest, pp. 1591-1594, June 2004. View at Scopus"}, {"category_id": 15, "poly": [113.0, 2137.0, 1537.0, 2137.0, 1537.0, 2171.0, 113.0, 2171.0], "score": 0.97, "text": " 7. S.-C. Gao, L.-W. Li, T.-S. Yeo, and M-S. Leong \u201cFDTD analysis ofa slot-loaded meandered rectangular patch antenna for dual-frequency operation,\" IEE"}, {"category_id": 15, "poly": [140.0, 2159.0, 1515.0, 2161.0, 1515.0, 2203.0, 140.0, 2200.0], "score": 0.96, "text": "Proceedings: Microwaves, Antennas and Propagation, vol. 148, no. 1, p. 65-71, 2001. View at Publisher View at Google Schoar View at Scopus"}, {"category_id": 15, "poly": [113.0, 2195.0, 1459.0, 2195.0, 1459.0, 2227.0, 113.0, 2227.0], "score": 0.97, "text": " 8. J.-W. Wu, H-M. Hsiao, J.-H. Lu, and S.-H. Chang, \u201cDual broadband design of rectangular slot antenna for 2.4 and 5 GHz wireless communication,\""}, {"category_id": 15, "poly": [145.0, 2220.0, 1230.0, 2225.0, 1230.0, 2259.0, 145.0, 2254.0], "score": 0.96, "text": "Electronics Letters, vol. 40, no. 23, pp. 1461-1463, 2004. View at Publisher \u00b7 View at Go0gle Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [710.0, 575.0, 1488.0, 575.0, 1488.0, 607.0, 710.0, 607.0], "score": 0.99, "text": "fields indicate the cross-polar and copolar components, respectively. The effect of cross-"}, {"category_id": 15, "poly": [165.0, 1464.0, 202.0, 1464.0, 202.0, 1496.0, 165.0, 1496.0], "score": 1.0, "text": "and"}, {"category_id": 15, "poly": [281.0, 1464.0, 1542.0, 1464.0, 1542.0, 1496.0, 281.0, 1496.0], "score": 0.98, "text": " Since the antenna layout is simple and straightforward, fabrication and measurement are comparatively easier. The generalized design procedure"}, {"category_id": 15, "poly": [86.0, 1399.0, 100.0, 1401.0, 100.0, 1442.0, 86.0, 1440.0], "score": 0.92, "text": "A"}, {"category_id": 15, "poly": [260.0, 1399.0, 1496.0, 1401.0, 1496.0, 1442.0, 260.0, 1440.0], "score": 0.92, "text": "double invrted F-shae patch antea has beendiscussed in this paper for dual band-operation. The measured impedance bandwidths (2 : 1"}, {"category_id": 15, "poly": [1004.0, 2049.0, 1146.0, 2049.0, 1146.0, 2083.0, 1004.0, 2083.0], "score": 0.96, "text": "View at Scopus"}, {"category_id": 15, "poly": [91.0, 1433.0, 462.0, 1433.0, 462.0, 1467.0, 91.0, 1467.0], "score": 1.0, "text": "VSWR) 2.12 GHz on the upper band and"}, {"category_id": 15, "poly": [554.0, 1433.0, 1560.0, 1433.0, 1560.0, 1467.0, 554.0, 1467.0], "score": 0.98, "text": "on the lower band with average gains of 7.82 dBi and 5.66 dBi have been achieved belonging to radiation eficiency"}, {"category_id": 15, "poly": [143.0, 1991.0, 604.0, 1991.0, 604.0, 2025.0, 143.0, 2025.0], "score": 0.99, "text": " 56, no. 5, pp. 1498-1501, 2008. View at Publisher"}, {"category_id": 15, "poly": [620.0, 1991.0, 994.0, 1991.0, 994.0, 2025.0, 620.0, 2025.0], "score": 0.98, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [145.0, 2049.0, 759.0, 2049.0, 759.0, 2083.0, 145.0, 2083.0], "score": 0.99, "text": "Propagation, vol. 53, no. 3, pp. 994-1003, 2005. View at Publisher"}, {"category_id": 15, "poly": [775.0, 2049.0, 989.0, 2049.0, 989.0, 2083.0, 775.0, 2083.0], "score": 0.99, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [89.0, 546.0, 1034.0, 546.0, 1034.0, 577.0, 89.0, 577.0], "score": 0.99, "text": "The radiation pattern of the proposed antenna with measurement has been demonstrated in Figure 14 for (a)"}, {"category_id": 15, "poly": [1139.0, 546.0, 1510.0, 546.0, 1510.0, 577.0, 1139.0, 577.0], "score": 1.0, "text": "at E-plane, (b) 11.32 GHz at H-plane, (c)"}, {"category_id": 15, "poly": [192.0, 575.0, 363.0, 575.0, 363.0, 607.0, 192.0, 607.0], "score": 1.0, "text": "at E-plane, and (d)"}, {"category_id": 15, "poly": [467.0, 575.0, 681.0, 575.0, 681.0, 607.0, 467.0, 607.0], "score": 1.0, "text": "at H-plane. The Ep and"}], "page_info": {"page_no": 3, "height": 2339, "width": 1653}}, {"layout_dets": [{"category_id": 1, "poly": [104.66098022460938, 73.2553939819336, 1560.8763427734375, 73.2553939819336, 1560.8763427734375, 724.37109375, 104.66098022460938, 724.37109375], "score": 0.9987766146659851}, {"category_id": 13, "poly": [845, 115, 859, 115, 859, 131, 845, 131], "score": 0.4, "latex": "\\cdot"}, {"category_id": 13, "poly": [1134, 694, 1149, 694, 1149, 710, 1134, 710], "score": 0.38, "latex": "\\cdot"}, {"category_id": 13, "poly": [905, 695, 919, 695, 919, 710, 905, 710], "score": 0.37, "latex": "\\cdot"}, {"category_id": 13, "poly": [1001, 346, 1014, 346, 1014, 362, 1001, 362], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [479, 173, 493, 173, 493, 188, 479, 188], "score": 0.3, "latex": "\\cdot"}, {"category_id": 13, "poly": [421, 289, 435, 289, 435, 304, 421, 304], "score": 0.25, "latex": "\\cdot"}, {"category_id": 15, "poly": [111.0, 76.0, 1542.0, 78.0, 1542.0, 112.0, 111.0, 110.0], "score": 0.98, "text": " 9. C.-M. Su, H-T. Chen, and K.-L. Wong, \u201cPrinted dual-band dipole antenna with U-slotted arms for 2.4/5.2 GHz WLAN operation,\u201d\" Electronics Letters, vol."}, {"category_id": 15, "poly": [101.0, 134.0, 1564.0, 139.0, 1564.0, 173.0, 101.0, 168.0], "score": 0.97, "text": "10. Y.-H. Suh and K. Chang, \u201cLow cost microstrip-fed dual frequency printed dipole antenna for wireless commumications,\u201d Electronics Letters, vol 36, no. 14, pp."}, {"category_id": 15, "poly": [101.0, 192.0, 1525.0, 195.0, 1525.0, 229.0, 101.0, 227.0], "score": 0.97, "text": "11. D. Nashat, H. A. Elsadek, and H. Ghal, \u201cDual-band reduced size PIFA antemna with U-slot for Bluetooth and WLAN applications,\u201d in Proceedings of the"}, {"category_id": 15, "poly": [143.0, 222.0, 1427.0, 224.0, 1427.0, 258.0, 143.0, 256.0], "score": 0.98, "text": " IEEE Antennas and Propagation Society International symposium, vol. 2, pp. 962-967, Columbus, Ohio, USA, June 2003. View at Scopus "}, {"category_id": 15, "poly": [106.0, 256.0, 153.0, 256.0, 153.0, 283.0, 106.0, 283.0], "score": 1.0, "text": "12."}, {"category_id": 15, "poly": [140.0, 253.0, 1542.0, 253.0, 1542.0, 288.0, 140.0, 288.0], "score": 0.97, "text": "C.-C. Lin, G.-Y. Lee, and K.-L. Wong, \u201cSurface-mount dual-loop antenna for 2.4/5 GHz WLAN operation, Electronics Letters, vol 39, no. 18, pp. 1302-"}, {"category_id": 15, "poly": [103.0, 312.0, 1505.0, 312.0, 1505.0, 344.0, 103.0, 344.0], "score": 0.98, "text": "13. Y.-L. Kuo and K.-L. Wong, \u201cPrinted double-T monopole antenna for 2.4/5.2 GHz dual band WLAN operations,\" IEEE Transactions on Antennas and"}, {"category_id": 15, "poly": [103.0, 370.0, 1532.0, 370.0, 1532.0, 404.0, 103.0, 404.0], "score": 0.97, "text": "14. R. Azim, M. T. Islam, and N. Misran,\u03bcDual polarized microstrip patch antenna for Ku-band application,\u201d\" Informacije MIDEM, vol. 41, no. 2, pp. 114-117,"}, {"category_id": 15, "poly": [140.0, 395.0, 581.0, 397.0, 580.0, 431.0, 140.0, 429.0], "score": 0.98, "text": " 2011. View at Google Scholar \u00b7 View at Scopus"}, {"category_id": 15, "poly": [101.0, 424.0, 1505.0, 426.0, 1505.0, 461.0, 101.0, 458.0], "score": 0.97, "text": "15. L. Liu, S. W. Cheung, R. Azim, and M. T. Islam \u201cA compact circular-ring antenna for ulra-wideband applications,\u201d Microwave and Optical Technology"}, {"category_id": 15, "poly": [145.0, 456.0, 1124.0, 456.0, 1124.0, 490.0, 145.0, 490.0], "score": 0.97, "text": "Letters, vol. 53, no. 10, pp. 2283-2288, 2011. View at Publisher : View at Google Scholar \u00b7 View at Scopus "}, {"category_id": 15, "poly": [98.0, 480.0, 1550.0, 482.0, 1550.0, 524.0, 98.0, 521.0], "score": 0.95, "text": "16. R. Azim, M T. Islam and N. Misran, \u201cA planar monopole antenna for UWB applications, International Review of Electrical Engineering, vol. 5, no. 4, pp."}, {"category_id": 15, "poly": [145.0, 514.0, 696.0, 514.0, 696.0, 548.0, 145.0, 548.0], "score": 0.95, "text": "1848-1852, 2010. View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [103.0, 543.0, 1532.0, 543.0, 1532.0, 577.0, 103.0, 577.0], "score": 0.98, "text": "17. M. M. Islam, M. T. Islam, and M. R I. Faruque, \u201cDual-band operation ofa microstrip patch antenna on a Duroid 5870 substrate for Ku- and K-bands, The"}, {"category_id": 15, "poly": [145.0, 573.0, 1191.0, 573.0, 1191.0, 607.0, 145.0, 607.0], "score": 0.97, "text": "Scientific World Journal, vol. 2013, Article ID 378420, 10 pages, 2013. View at Publisher : View at Go0gle Scholar"}, {"category_id": 15, "poly": [108.0, 607.0, 150.0, 607.0, 150.0, 626.0, 108.0, 626.0], "score": 1.0, "text": "18."}, {"category_id": 15, "poly": [140.0, 602.0, 1520.0, 602.0, 1520.0, 636.0, 140.0, 636.0], "score": 0.98, "text": "M. H. Ulah, M. T. Islam, J. S. Mandeep, and N. Misran, \u201cA new double L-shaped multiband patch antenna on a polymer resin material substrate,\u201d Applied"}, {"category_id": 15, "poly": [145.0, 631.0, 790.0, 631.0, 790.0, 665.0, 145.0, 665.0], "score": 0.97, "text": "Physics A, vol. 110, no. 1, pp. 199-205, 2013. View at Google Scholar"}, {"category_id": 15, "poly": [98.0, 653.0, 1510.0, 655.0, 1510.0, 697.0, 98.0, 694.0], "score": 0.95, "text": "19. W.-T. Hsieh, T.-H Chang, and J-F. Kiang, \u201cDual-band circularly polarized cavity-backed anular slot antenma for GPS receiver, IEEE Transactions on"}, {"category_id": 15, "poly": [145.0, 107.0, 844.0, 107.0, 844.0, 141.0, 145.0, 141.0], "score": 0.98, "text": "38, no. 22, pp. 1308-1309, 2002. View at Publisher : View at Go0gle Scholar"}, {"category_id": 15, "poly": [860.0, 107.0, 1009.0, 107.0, 1009.0, 141.0, 860.0, 141.0], "score": 1.0, "text": "View at Scopus"}, {"category_id": 15, "poly": [1150.0, 690.0, 1296.0, 690.0, 1296.0, 724.0, 1150.0, 724.0], "score": 0.99, "text": "View at Scopus"}, {"category_id": 15, "poly": [145.0, 690.0, 904.0, 690.0, 904.0, 724.0, 145.0, 724.0], "score": 0.98, "text": "Antennas and Propagation, vol. 60, no. 4, pp. 2076-2080, 2012. View at Publisher"}, {"category_id": 15, "poly": [920.0, 690.0, 1133.0, 690.0, 1133.0, 724.0, 920.0, 724.0], "score": 0.96, "text": "View at Google Scholar"}, {"category_id": 15, "poly": [143.0, 339.0, 1000.0, 339.0, 1000.0, 373.0, 143.0, 373.0], "score": 0.98, "text": " Propagation, vol. 51, no. 9, pp. 2187-2192, 2003. View at Publisher \u00b7 View at Go0gle Scholar"}, {"category_id": 15, "poly": [1015.0, 339.0, 1163.0, 339.0, 1163.0, 373.0, 1015.0, 373.0], "score": 0.97, "text": "View at Scopus"}, {"category_id": 15, "poly": [143.0, 163.0, 478.0, 166.0, 478.0, 200.0, 143.0, 197.0], "score": 0.97, "text": "1177-1179, 2000. View at Publisher"}, {"category_id": 15, "poly": [494.0, 163.0, 868.0, 166.0, 868.0, 200.0, 494.0, 197.0], "score": 0.96, "text": "View at Google Scholar : View at Scopus"}, {"category_id": 15, "poly": [145.0, 283.0, 420.0, 283.0, 420.0, 314.0, 145.0, 314.0], "score": 1.0, "text": "1304, 2003. View at Publisher"}, {"category_id": 15, "poly": [436.0, 283.0, 812.0, 283.0, 812.0, 314.0, 436.0, 314.0], "score": 0.98, "text": "View at Google Scholar \u00b7 View at Scopus"}], "page_info": {"page_no": 4, "height": 2339, "width": 1653}}]
\ No newline at end of file
[{"layout_dets": [{"category_id": 1, "poly": [245.7292022705078, 805.643798828125, 1409.9739990234375, 805.643798828125, 1409.9739990234375, 980.2613525390625, 245.7292022705078, 980.2613525390625], "score": 0.9999997615814209}, {"category_id": 2, "poly": [810.2546997070312, 2172.986083984375, 843.8546752929688, 2172.986083984375, 843.8546752929688, 2197.734619140625, 810.2546997070312, 2197.734619140625], "score": 0.9999997019767761}, {"category_id": 1, "poly": [804.0526733398438, 2024.4432373046875, 1410.46044921875, 2024.4432373046875, 1410.46044921875, 2106.024658203125, 804.0526733398438, 2106.024658203125], "score": 0.9999995231628418}, {"category_id": 3, "poly": [256.64483642578125, 1687.4661865234375, 737.1517333984375, 1687.4661865234375, 737.1517333984375, 2090.06640625, 256.64483642578125, 2090.06640625], "score": 0.999999463558197}, {"category_id": 0, "poly": [317.3390808105469, 1415.0374755859375, 626.906005859375, 1415.0374755859375, 626.906005859375, 1454.3658447265625, 317.3390808105469, 1454.3658447265625], "score": 0.9999994039535522}, {"category_id": 1, "poly": [243.70135498046875, 547.5186157226562, 1408.374267578125, 547.5186157226562, 1408.374267578125, 767.2174682617188, 243.70135498046875, 767.2174682617188], "score": 0.9999992251396179}, {"category_id": 1, "poly": [245.27438354492188, 247.05262756347656, 1409.9375, 247.05262756347656, 1409.9375, 545.1807861328125, 245.27438354492188, 545.1807861328125], "score": 0.9999992251396179}, {"category_id": 1, "poly": [243.92994689941406, 1458.7647705078125, 1410.88134765625, 1458.7647705078125, 1410.88134765625, 1671.74658203125, 243.92994689941406, 1671.74658203125], "score": 0.9999992251396179}, {"category_id": 0, "poly": [604.9048461914062, 201.22630310058594, 1081.7335205078125, 201.22630310058594, 1081.7335205078125, 241.0626678466797, 604.9048461914062, 241.0626678466797], "score": 0.9999985694885254}, {"category_id": 1, "poly": [242.86900329589844, 983.4307861328125, 1043.2900390625, 983.4307861328125, 1043.2900390625, 1372.0687255859375, 242.86900329589844, 1372.0687255859375], "score": 0.9999973773956299}, {"category_id": 3, "poly": [1060.9388427734375, 989.4398803710938, 1398.5860595703125, 989.4398803710938, 1398.5860595703125, 1337.9498291015625, 1060.9388427734375, 1337.9498291015625], "score": 0.9999942183494568}, {"category_id": 1, "poly": [801.3919067382812, 1676.3333740234375, 1406.943115234375, 1676.3333740234375, 1406.943115234375, 2016.81640625, 801.3919067382812, 2016.81640625], "score": 0.9999932646751404}, {"category_id": 15, "poly": [608.0, 207.0, 1077.0, 207.0, 1077.0, 241.0, 608.0, 241.0], "score": 1.0, "text": "\u7b2c\u516d\u7ae0\u3001\u4e09\u89d2\u5f62\u539f\u7406\u7684\u666e\u904d\u610f\u4e49"}, {"category_id": 15, "poly": [332.0, 251.0, 1395.0, 251.0, 1395.0, 285.0, 332.0, 285.0], "score": 1.0, "text": "\u6309\u7167\u8bed\u6cd5\u7684\u901a\u89e3\uff0c\u8bed\u6cd5\u662f\u7ea6\u5b9a\u4fd7\u6210\u7684\uff0c\u5177\u6709\u793e\u4f1a\u6027\u3002\u8bed\u6cd5\u662f\u4e00\u79cd\u6cd5\u5219\uff0c\u662f"}, {"category_id": 15, "poly": [251.0, 295.0, 1395.0, 295.0, 1395.0, 326.0, 251.0, 326.0], "score": 1.0, "text": "\u6709\u6761\u7406\u3001\u6210\u7cfb\u7edf\u3001\u5ba2\u89c2\u5b58\u5728\u7684\u5b8c\u6574\u4f53\u7cfb\u3002\u8bed\u6cd5\u65e2\u7136\u79f0\u4e3a\u6cd5\u5219\uff0c\u5c31\u4e0d\u80fd\u8f7b\u6613\u53d8\u52a8\uff0c"}, {"category_id": 15, "poly": [253.0, 336.0, 1395.0, 336.0, 1395.0, 368.0, 253.0, 368.0], "score": 1.0, "text": "\u5177\u6709\u76f8\u5bf9\u7a33\u5b9a\u6027\uff0c\u5c31\u8981\u9075\u5faa\u5176\u89c4\u5f8b\u4e25\u8083\u8ba4\u771f\u5730\u638c\u63e1\u5b83\u3001\u4f7f\u7528\u5b83\u3002\u7535\u5f71\u7684\u8bed\u8a00\u8bed\u6cd5\uff0c"}, {"category_id": 15, "poly": [251.0, 383.0, 1402.0, 383.0, 1402.0, 414.0, 251.0, 414.0], "score": 1.0, "text": "\u662f\u5728\u4e00\u767e\u5e74\u7684\u7535\u5f71\u827a\u672f\u53d1\u5c55\u4e2d\u5f62\u6210\u7684\uff0c\u540c\u6837\u62e5\u6709\u8fd9\u6837\u7684\u7279\u70b9\u3002\u4e3a\u4e86\u4f7f\u6211\u56fd\u7684\u6587\u5316"}, {"category_id": 15, "poly": [246.0, 421.0, 1402.0, 424.0, 1402.0, 458.0, 246.0, 456.0], "score": 1.0, "text": "\u4ea7\u54c1\u878d\u5165\u4e16\u754c\u7684\u5927\u5e02\u573a\uff0c\u5f71\u89c6\u4f5c\u54c1\u4e5f\u5e94\u8be5\u8d70\u5411\u4e16\u754c\u3002\u6b32\u8fbe\u6b64\u76ee\u7684\uff0c\u5c31\u8981\u9996\u5148\u514b\u670d"}, {"category_id": 15, "poly": [253.0, 468.0, 1400.0, 468.0, 1400.0, 502.0, 253.0, 502.0], "score": 1.0, "text": "\u4e2d\u5916\u6587\u672c\u8bed\u5883\u7684\u5dee\u5f02\u3002\u5f53\u4eca\u4e16\u754c\uff0c\u6587\u5316\u4ea7\u54c1\u5728\u6587\u5316\u5de5\u4e1a\u80cc\u666f\u4e0b\uff0c\u5f3a\u8c03\u5168\u7403\u53e3\u5473\u548c"}, {"category_id": 15, "poly": [251.0, 512.0, 1163.0, 512.0, 1163.0, 543.0, 251.0, 543.0], "score": 1.0, "text": "\u901a\u7ea6\u6027\uff0c\u89c4\u8303\u5f71\u89c6\u4f5c\u54c1\u7684\u8bed\u8a00\u8bed\u6cd5\uff0c\u76ee\u524d\u663e\u5f97\u5c24\u4e3a\u91cd\u8981\u548c\u7d27\u8feb\u3002"}, {"category_id": 15, "poly": [327.0, 556.0, 1392.0, 556.0, 1392.0, 587.0, 327.0, 587.0], "score": 1.0, "text": "\u597d\u83b1\u575e\u4f55\u4ee5\u5728\u4e16\u754c\u5f71\u575b\u79f0\u738b\u79f0\u9738\uff1f\u6e2f\u53f0\u7684\u7535\u89c6\u5267\u4e00\u5ea6\u8986\u76d6\u5168\u56fd\u94f6\u5c4f\uff0c\u5728\u4e9a"}, {"category_id": 15, "poly": [251.0, 599.0, 1397.0, 599.0, 1397.0, 631.0, 251.0, 631.0], "score": 0.99, "text": "\u6d32\u751a\u81f3\u201c\u5361\u901a\u201d\u201c\u6a2a\u884c\u3001\u97e9\u6d41\u201d\u9635\u9635\uff0c\u4ee5\u81f4\u51fa\u73b0\u201c\u54c8\u65e5\u201d\u3001\u201c\u54c8\u97e9\u201d\u73b0\u8c61\u3002\u7a76\u5176\u539f"}, {"category_id": 15, "poly": [251.0, 641.0, 1400.0, 641.0, 1400.0, 675.0, 251.0, 675.0], "score": 0.99, "text": "\u56e0\uff0c\u65e0\u975e\u6478\u900f\u4e86\u591a\u6570\u4eba\u7684\u201c\u53e3\u5473\u201d\uff0c\u5728\u76f8\u5f53\u5927\u7684\u8303\u56f4\u5185\u5c55\u793a\u4e86\u201c\u901a\u7ea6\u201d\u8bed\u8a00\u3002\u5c24"}, {"category_id": 15, "poly": [253.0, 685.0, 1405.0, 685.0, 1405.0, 716.0, 253.0, 716.0], "score": 1.0, "text": "\u5176\u6211\u4eec\u7684\u67d0\u4e9b\u7535\u89c6\u4ece\u827a\u8005\uff0c\u4e00\u53f6\u969c\u76ee\u4e0d\u89c1\u6cf0\u5c71\uff0c\u4e0d\u8ba4\u771f\u5730\u7814\u7a76\u548c\u501f\u9274\u89c4\u8303\u7684\u7535\u5f71"}, {"category_id": 15, "poly": [253.0, 729.0, 1225.0, 729.0, 1225.0, 763.0, 253.0, 763.0], "score": 1.0, "text": "\u8bed\u8a00\uff0c\u4f9d\u65e7\u4fe1\u53e3\u5f00\u6cb3\u7684\u80e1\u7f16\u4e71\u9020\uff0c\u8fd9\u662f\u6ca1\u6709\u5371\u673a\u611f\u7684\u4e00\u79cd\u4e25\u91cd\u73b0\u8c61\u3002"}, {"category_id": 15, "poly": [320.0, 816.0, 1392.0, 816.0, 1392.0, 848.0, 320.0, 848.0], "score": 0.99, "text": "\u7535\u5f71\u8bed\u8a00\u8bed\u6cd5\u7684\u4e09\u89d2\u5f62\u539f\u7406\uff0c\u662f\u4e4c\u62c9\u572d\u5bfc\u6f14\u4e39\u5c3c\u827e\u5c14\u00b7\u963f\u91cc\u6d2a\u603b\u7ed3\u51fa\u6765\u7684\uff0c"}, {"category_id": 15, "poly": [253.0, 858.0, 1405.0, 858.0, 1405.0, 892.0, 253.0, 892.0], "score": 1.0, "text": "\u4ed6\u7684\u57fa\u672c\u89c2\u70b9\u5927\u81f4\u662f\u8fd9\u6837\u7684\uff1a\u4e00\u4e2a\u573a\u666f\u4e2d\u4e24\u4e2a\u4e2d\u5fc3\u6f14\u5458\u4e4b\u95f4\u7684\u5173\u7cfb\u7ebf\uff0c\u662f\u4ee5\u4ed6\u4eec"}, {"category_id": 15, "poly": [251.0, 901.0, 1402.0, 901.0, 1402.0, 933.0, 251.0, 933.0], "score": 1.0, "text": "\u76f8\u4e92\u89c6\u7ebf\u7684\u8d70\u5411\u4e3a\u57fa\u7840\u7684\u3002\u5373\u4f7f\u573a\u666f\u4e2d\u53ea\u6709\u4e00\u4e2a\u4e2d\u5fc3\u6f14\u5458\uff0c\u5176\u89c6\u7ebf\u4ea6\u53ef\u4ee5\u548c\u8fd0\u52a8"}, {"category_id": 15, "poly": [253.0, 945.0, 1402.0, 945.0, 1402.0, 977.0, 253.0, 977.0], "score": 1.0, "text": "\u8d8b\u5411\u5f62\u6210\u5173\u7cfb\u7ebf\u3002\u5728\u5173\u7cfb\u7ebf\u7684\u4e00\u4fa7\u53ef\u4ee5\u6709\u4e09\u4e2a\u9876\u7aef\u4f4d\u7f6e\uff0c\u8fd9\u4e09\u4e2a\u9876\u7aef\u6784\u6210\u5e95\u8fb9\u4e0e"}, {"category_id": 15, "poly": [251.0, 989.0, 1043.0, 989.0, 1043.0, 1021.0, 251.0, 1021.0], "score": 1.0, "text": "\u5173\u7cfb\u7ebf\u7684\u4e09\u89d2\u5f62\u3002\u4f46\u662f\uff0c\u4e00\u822c\u60c5\u51b5\u4e0b\uff0c\u4e0d\u80fd\u8d8a\u8fc7\u5173\u7cfb\u7ebf"}, {"category_id": 15, "poly": [251.0, 1028.0, 1033.0, 1031.0, 1033.0, 1065.0, 251.0, 1062.0], "score": 1.0, "text": "\u5230\u53e6\u4e00\u4fa7\u62cd\u6444\uff0c\u8fd9\u662f\u7535\u5f71\u8bed\u8a00\u8981\u9075\u5b88\u7684\u6700\u91cd\u8981\u7684\u89c4\u5219\u4e4b"}, {"category_id": 15, "poly": [276.0, 1074.0, 1036.0, 1074.0, 1036.0, 1109.0, 276.0, 1109.0], "score": 1.0, "text": "\u3002\u8fdd\u72af\u8fd9\u4e00\u89c4\u5219\uff0c\u6f14\u5458\u4f1a\u5931\u53bb\u753b\u9762\u4e0a\u7684\u56fa\u5b9a\u4f4d\u7f6e\uff0c\u751a"}, {"category_id": 15, "poly": [253.0, 1118.0, 1038.0, 1118.0, 1038.0, 1152.0, 253.0, 1152.0], "score": 1.0, "text": "\u81f3\u4f1a\u5931\u53bb\u8fd0\u52a8\u65b9\u5411\uff0c\u628a\u89c2\u4f17\u641e\u5f97\u7cca\u91cc\u7cca\u6d82\uff0c\u4e0d\u77e5\u9053\u8c01\u8ddf"}, {"category_id": 15, "poly": [253.0, 1162.0, 1036.0, 1162.0, 1036.0, 1194.0, 253.0, 1194.0], "score": 1.0, "text": "\u8c01\u5728\u4ea4\u6d41\uff0c\u4e0d\u77e5\u9053\u4ed6\u4eec\u7a76\u7adf\u8981\u5230\u54ea\u91cc\u53bb\u3002\u753b\u9762\u4e2d\u7684\u4eba\u7269"}, {"category_id": 15, "poly": [251.0, 1206.0, 1033.0, 1206.0, 1033.0, 1238.0, 251.0, 1238.0], "score": 1.0, "text": "\u5173\u7cfb\u7ebf\u548c\u8fd0\u52a8\u7ebf\uff0c\u662f\u4e24\u6761\u4e0d\u53ef\u8f7b\u6613\u903e\u8d8a\u7684\u8f74\u7ebf\uff0c\u6beb\u65e0\u6839"}, {"category_id": 15, "poly": [251.0, 1247.0, 1033.0, 1247.0, 1033.0, 1282.0, 251.0, 1282.0], "score": 0.99, "text": "\u636e\u7684\u903e\u8d8a\u4e86\uff0c\u90a3\u5c31\u72af\u89c4\u4e86\uff0c\u901a\u5e38\u79f0\u4f5c\u201c\u8df3\u8f74\u201d\u3002\u5fc5\u987b\u8d8a"}, {"category_id": 15, "poly": [251.0, 1291.0, 1038.0, 1291.0, 1038.0, 1325.0, 251.0, 1325.0], "score": 1.0, "text": "\u8fc7\u8f74\u7ebf\u62cd\u6444\u662f\u6709\u6761\u4ef6\u7684\uff0c\u9700\u8981\u91c7\u53d6\u5fc5\u8981\u7684\u624b\u6bb5\u3002\u8fd9\u4e00\u7ae0"}, {"category_id": 15, "poly": [251.0, 1335.0, 967.0, 1335.0, 967.0, 1367.0, 251.0, 1367.0], "score": 1.0, "text": "\u4ece\u5e76\u5217\u7684\u5341\u4e2a\u65b9\u9762\uff0c\u9610\u8ff0\u6d89\u53ca\u4e09\u89d2\u5f62\u539f\u7406\u7684\u95ee\u9898\u3002"}, {"category_id": 15, "poly": [320.0, 1418.0, 615.0, 1418.0, 615.0, 1452.0, 320.0, 1452.0], "score": 1.0, "text": "\u4e00\u3001\u5173\u7cfb\u7ebf\u4e0e\u8fd0\u52a8\u7ebf"}, {"category_id": 15, "poly": [317.0, 1464.0, 1405.0, 1464.0, 1405.0, 1498.0, 317.0, 1498.0], "score": 1.0, "text": "\u573a\u666f\u4e2d\uff0c\u4e24\u4e2a\u5c45\u652f\u914d\u5730\u4f4d\u7684\u6f14\u5458\uff0c\u5728\u8868\u6f14\u4e2d\uff0c\u53ef\u80fd\u9762\u5bf9\u9762\uff1b\u53ef\u80fd\u5e76\u6392\uff1b\u53ef\u80fd"}, {"category_id": 15, "poly": [278.0, 1508.0, 1400.0, 1508.0, 1400.0, 1542.0, 278.0, 1542.0], "score": 1.0, "text": "\u4e2a\u4eba\u80cc\u5411\u53e6\u4e2a\u4eba\uff1b\u53ef\u80fd\u4e24\u4eba\u80cc\u5bf9\u80cc\u3002\u4ed6\u4eec\u53c8\u53ef\u80fd\u5b58\u5728\u4e0d\u540c\u7684\u59ff\u6001\uff1a\u5367\u59ff\uff08\u4ef0\u5367\u3001"}, {"category_id": 15, "poly": [253.0, 1550.0, 1397.0, 1550.0, 1397.0, 1581.0, 253.0, 1581.0], "score": 0.98, "text": "\u4fef\u5367\u3001\u6d4b\u5367)\uff1b\u8dea\u59ff\uff08\u8eaf\u5e72\u633a\u76f4\uff0c\u6216\u8eaf\u5e72\u5f2f\u66f2)\uff1b\u5750\u59ff\uff08\u5750\u5728\u4efb\u4f55\u9ad8\u5ea6\u7684\u4f4d\u7f6e\u4e0a);"}, {"category_id": 15, "poly": [253.0, 1596.0, 1402.0, 1596.0, 1402.0, 1628.0, 253.0, 1628.0], "score": 0.99, "text": "\u501a\u59ff\uff08\u5411\u540e\u4f9d\u9760\u5728\u652f\u6491\u9762\u4e0a\u3001\u5411\u524d\u4ee5\u8098\u652f\u6491)\uff1b\u7acb\u59ff\uff08\u76f4\u7acb\u6216\u8005\u659c\u7acb)\u3002\u4e0d\u540c\u7684\u6392"}, {"category_id": 15, "poly": [251.0, 1637.0, 1193.0, 1637.0, 1193.0, 1671.0, 251.0, 1671.0], "score": 1.0, "text": "\u5217\u65b9\u5f0f\uff0c\u53ef\u4ee5\u5f62\u6210\u4e24\u79cd\u7ebf\u5f62\u6392\u5217\uff0c\u5373\u6210\u76f4\u7ebf\u7684\u6784\u56fe\u548c\u76f4\u89d2\u7684\u6784\u56fe\u3002"}, {"category_id": 15, "poly": [876.0, 1681.0, 1373.0, 1681.0, 1373.0, 1715.0, 876.0, 1715.0], "score": 1.0, "text": "\u4e0d\u8bba\u8fd9\u4e24\u4e2a\u5c45\u4e2d\u5fc3\u4f4d\u7f6e\u7684\u4e3b\u5bfc\u4eba\u7269"}, {"category_id": 15, "poly": [807.0, 1725.0, 1405.0, 1725.0, 1405.0, 1757.0, 807.0, 1757.0], "score": 1.0, "text": "\u5982\u4f55\u6392\u5217\uff0c\u59ff\u6001\u5982\u4f55\uff0c\u76f4\u63a5\u5438\u5f15\u89c2\u4f17\u7684\u662f"}, {"category_id": 15, "poly": [809.0, 1769.0, 1402.0, 1769.0, 1402.0, 1801.0, 809.0, 1801.0], "score": 1.0, "text": "\u4eba\u7269\u7684\u5934\u90e8\uff0c\u56e0\u4e3a\u63d0\u4f9b\u89c6\u542c\u7684\u6765\u6e90\u5747\u5728\u5934"}, {"category_id": 15, "poly": [807.0, 1810.0, 1400.0, 1810.0, 1400.0, 1842.0, 807.0, 1842.0], "score": 1.0, "text": "\u90e8\u3002\u751a\u81f3\u5728\u4e00\u4e2a\u6f14\u5458\u80cc\u5411\u53e6\u4e00\u4e2a\u3001\u6216\u8005\u80cc"}, {"category_id": 15, "poly": [807.0, 1854.0, 1405.0, 1854.0, 1405.0, 1888.0, 807.0, 1888.0], "score": 1.0, "text": "\u5bf9\u80cc\u7684\u60c5\u51b5\u4e0b\uff0c\u4e5f\u6709\u4e00\u6761\u5173\u7cfb\u7ebf\u901a\u8fc7\u4ed6\u4eec"}, {"category_id": 15, "poly": [807.0, 1898.0, 1400.0, 1898.0, 1400.0, 1932.0, 807.0, 1932.0], "score": 0.97, "text": "\u7684\u5934\u90e8\u3002\u8fd9\u4e00\u70b9\u81f3\u5173\u91cd\u8981\uff0c\u5728\u4efb\u4f55\u573a\u666f\u4e2d\uff0c"}, {"category_id": 15, "poly": [804.0, 1942.0, 1375.0, 1942.0, 1375.0, 1974.0, 804.0, 1974.0], "score": 1.0, "text": "\u5173\u7cfb\u7ebf\u5fc5\u987b\u662f\u4e24\u4e2a\u4e2d\u5fc3\u4eba\u7269\u5934\u90e8\u7684\u4e00\u6761"}, {"category_id": 15, "poly": [807.0, 1983.0, 886.0, 1983.0, 886.0, 2020.0, 807.0, 2020.0], "score": 1.0, "text": "\u76f4\u7ebf\u3002"}, {"category_id": 15, "poly": [873.0, 2030.0, 1402.0, 2030.0, 1402.0, 2061.0, 873.0, 2061.0], "score": 1.0, "text": "\u4eba\u7269\u7684\u8fd0\u52a8\u65b9\u5411\uff0c\u6216\u8005\u8bf4\u8fd0\u52a8\u8d8b\u52bf\u7684"}, {"category_id": 15, "poly": [807.0, 2071.0, 1405.0, 2071.0, 1405.0, 2105.0, 807.0, 2105.0], "score": 1.0, "text": "\u65b9\u5411\uff0c\u4fbf\u662f\u8fd9\u4e2a\u4eba\u7269\u7684\u8fd0\u52a8\u7ebf\u3002\u5f53\u4e09\u89d2\u5f62"}], "page_info": {"page_no": 0, "height": 2339, "width": 1653}}]
\ No newline at end of file
import pytest
import os
from conf import conf
import subprocess
from lib import common
import logging
pdf_res_path = conf.conf["pdf_res_path"]
code_path = conf.conf["code_path"]
pdf_dev_path = conf.conf["pdf_dev_path"]
class TestCli:
def test_pdf_specify_dir(self):
"""
输入pdf和指定目录的模型结果
"""
cmd = 'cd %s && export PYTHONPATH=. && find %s -type f -name "*.pdf" | xargs -I{} python magic_pdf/cli/magicpdf.py pdf-command --pdf {}' % (code_path, pdf_dev_path)
logging.info(cmd)
common.check_shell(cmd)
common.count_folders_and_check_contents(pdf_res_path)
def test_pdf_specify_jsonl(self):
"""
输入jsonl
"""
cmd = "cd %s && export PYTHONPATH=. && python "
if __name__ == "__main__":
pytest.main()
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