{"id":1652,"date":"2008-06-22T18:17:00","date_gmt":"2008-06-22T09:17:00","guid":{"rendered":"http:\/\/r-dimension.xsrv.jp\/classes_j\/?p=1652"},"modified":"2011-05-03T02:07:05","modified_gmt":"2011-05-02T17:07:05","slug":"edge_bubbles","status":"publish","type":"post","link":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/","title":{"rendered":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa"},"content":{"rendered":"<p>\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002<\/p>\n<p><!--more--><\/p>\n<pre lang=\"java\" line=\"1\">\r\n\/\/This code has been arranged by Yasushi Noguchi. Last updated on June 21, 2008.\r\n\/\/=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\r\n\/\/BlobDetection by v3ga <http :\/\/processing.v3ga.net>\r\n\/\/May 2005\r\n\/\/Processing(Beta) v0.85\r\n\/\/=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\r\n\r\nimport processing.video.*;\r\nimport blobDetection.*;\r\n\r\nCapture cam;    \/\/Capture\u578b\u5909\u6570\r\nBlobDetection theBlobDetection;    \/\/BlobDetection\u578b\u5909\u6570\r\nPImage img;    \/\/\u7269\u4f53\u306e\u30c8\u30e9\u30c3\u30ad\u30f3\u30b0\u306e\u305f\u3081\u306b\u4f7f\u308f\u308c\u308b\u753b\u50cf\r\nboolean newFrame=false;\r\n\r\n\/\/ ==================================================\r\n\/\/ setup()\r\n\/\/ ==================================================\r\nvoid setup(){\r\n  \/\/\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u30b5\u30a4\u30ba\r\n  size(640, 480);\r\n  \/\/\u30ad\u30e3\u30d7\u30c1\u30e3\u578b\u5909\u6570\u306ecam\u3092\u5ba3\u8a00\r\n  cam = new Capture(this, 320, 240, 30);\r\n  \r\n  \/\/ BlobDetection\r\n  \/\/img\u306f\u30ad\u30e3\u30d7\u30c1\u30e3\u6620\u50cf\u3088\u308a\u3082\u5c0f\u3055\u304f\u3067\u304d\u308b\r\n  img = new PImage(80,60); \r\n  \/\/\u30c8\u30e9\u30c3\u30ad\u30f3\u30b0\u3092\u958b\u59cb\r\n  theBlobDetection = new BlobDetection(img.width, img.height);\r\n  \/\/\u6697\u3044\u5834\u6240\u3092\u63a2\u3059\u306b\u306ffalse, \u660e\u308b\u3044\u5834\u6240\u306ftrue\u306b\u3059\u308b\r\n  theBlobDetection.setPosDiscrimination(false);\r\n  theBlobDetection.setThreshold(0.5f); \/\/\u3057\u304d\u3044\u5024\u306e\u8a2d\u5b9a\r\n}\r\n\r\n\/\/ ==================================================\r\n\/\/ captureEvent()\r\n\/\/ ==================================================\r\nvoid captureEvent(Capture cam){\r\n  cam.read();    \/\/\u30ab\u30e1\u30e9\u304b\u3089\u6620\u50cf\u3092\u5e38\u306b\u53d6\u308a\u8fbc\u3080\r\n  newFrame = true;\r\n}\r\n\r\n\/\/ ==================================================\r\n\/\/ draw()\r\n\/\/ ==================================================\r\nvoid draw(){\r\n\r\n  if (newFrame){    \/\/\u65b0\u3057\u3044\u30d5\u30ec\u30fc\u30e0\u304c\u3042\u3063\u305f\u3089\u3001\r\n    background(255);\r\n    newFrame=false;\r\n    image(cam,0,0,width,height);    \/\/\u753b\u50cf\u3092\u30a6\u30a3\u30f3\u30c9\u30a6\u306b\u8868\u793a\r\n    \/\/\u30ab\u30e1\u30e9\u753b\u50cf\u304b\u3089\u30c8\u30e9\u30c3\u30ad\u30f3\u30b0\u7528\u306e\u753b\u50cf\u306b\u5909\u63db\u3057\u30b3\u30d4\u30fc\r\n    img.copy(cam, 0, 0, cam.width, cam.height, 0, 0, img.width, img.height);\r\n    theBlobDetection.computeBlobs(img.pixels);  \/\/\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u63a2\u3059\r\n    drawEdges(true);    \/\/\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u5468\u8fba\u3092\u63cf\u304f\r\n  }\r\n}\r\n\r\n\/\/ ==================================================\r\n\/\/ drawBlobsAndEdges()\r\n\/\/ ==================================================\r\nvoid drawEdges(boolean drawEdges){\r\n  noFill();\r\n  Blob b;    \/\/\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u7528\u306e\u5909\u6570\r\n  EdgeVertex eA,eB;    \/\/\u30a8\u30c3\u30b8\u306e\u70b9\r\n  \r\n  \/\/n\u306f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u6570\r\n  for (int n=0 ; n<theblobdetection .getBlobNb() ; n++){\r\n    b=theBlobDetection.getBlob(n);\r\n    if (b!=null){  \/\/\u3082\u3057\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u3042\u3063\u305f\u3089\u3001\r\n      \/\/ Edges\r\n      if (drawEdges){\r\n        fill(0,0,255, 127);\r\n        for (int m=0;m<b.getEdgeNb();m++){\r\n          eA = b.getEdgeVertexA(m);  \/\/\u30a8\u30c3\u30b8\u306e\u70b9\u3092\u305d\u308c\u305e\u308ceA,eB\u306b\u4ee3\u5165\r\n          eB = b.getEdgeVertexB(m);\r\n          if (eA !=null &#038;&#038; eB !=null){\r\n            \/\/\u7dda\u3092\u63cf\u304f\r\n            \/\/line(eA.x*width, eA.y*height, eB.x*width, eB.y*height);\r\n            \/\/\u5186\u3092\u63cf\u304f\r\n            ellipse(eA.x*width, eA.y*height, 20, 20);\r\n          }\r\n        }\r\n      }\r\n    }\r\n  }\r\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10,11],"tags":[],"class_list":["post-1652","post","type-post","status-publish","format-standard","hentry","category-processing","category-11"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"noguchi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Yasushi Noguchi Class | class resume organized by Y.Noguchi\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class\" \/>\n\t\t<meta property=\"og:description\" content=\"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2008-06-22T09:17:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2011-05-02T17:07:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#article\",\"name\":\"\\u30a8\\u30c3\\u30b8\\u306e\\u691c\\u51fa | Yasushi Noguchi Class\",\"headline\":\"\\u30a8\\u30c3\\u30b8\\u306e\\u691c\\u51fa\",\"author\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/#organization\"},\"datePublished\":\"2008-06-22T18:17:00+09:00\",\"dateModified\":\"2011-05-03T02:07:05+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#webpage\"},\"articleSection\":\"processing, \\u5236\\u4f5c\\u5fdc\\u7528\\u6f14\\u7fd2\\uff08\\u30b0\\u30e9\\u30d5\\u30a3\\u30ab\\u30eb\\u30d7\\u30ed\\u30b0\\u30e9\\u30df\\u30f3\\u30b0\\u6f14\\u7fd2\\uff09\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j#listItem\",\"position\":1,\"name\":\"\\u30db\\u30fc\\u30e0\",\"item\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/category\\\/processing\\\/#listItem\",\"name\":\"processing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/category\\\/processing\\\/#listItem\",\"position\":2,\"name\":\"processing\",\"item\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/category\\\/processing\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#listItem\",\"name\":\"\\u30a8\\u30c3\\u30b8\\u306e\\u691c\\u51fa\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j#listItem\",\"name\":\"\\u30db\\u30fc\\u30e0\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#listItem\",\"position\":3,\"name\":\"\\u30a8\\u30c3\\u30b8\\u306e\\u691c\\u51fa\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/category\\\/processing\\\/#listItem\",\"name\":\"processing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/#organization\",\"name\":\"Yasushi Noguchi Class\",\"description\":\"class resume organized by Y.Noguchi\",\"url\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/author\\\/admin\\\/\",\"name\":\"noguchi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a8dea537a5d433cf784441d080482caf96c62f4750bdbf0a11fd90e7ed227746?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"noguchi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#webpage\",\"url\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/\",\"name\":\"\\u30a8\\u30c3\\u30b8\\u306e\\u691c\\u51fa | Yasushi Noguchi Class\",\"description\":\"\\u30aa\\u30d6\\u30b8\\u30a7\\u30af\\u30c8\\u306e\\u8f2a\\u90ed\\u3092\\u691c\\u51fa\\u3059\\u308b\\u30b3\\u30fc\\u30c9\\u3067\\u3059\\u3002 \\\/\\\/This code has been arranged by Y\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/edge_bubbles\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2008-06-22T18:17:00+09:00\",\"dateModified\":\"2011-05-03T02:07:05+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/#website\",\"url\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/\",\"name\":\"Yasushi Noguchi Class\",\"description\":\"class resume organized by Y.Noguchi\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/r-dimension.xsrv.jp\\\/classes_j\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class","description":"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y","canonical_url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#article","name":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class","headline":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa","author":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/#organization"},"datePublished":"2008-06-22T18:17:00+09:00","dateModified":"2011-05-03T02:07:05+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#webpage"},"isPartOf":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#webpage"},"articleSection":"processing, \u5236\u4f5c\u5fdc\u7528\u6f14\u7fd2\uff08\u30b0\u30e9\u30d5\u30a3\u30ab\u30eb\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u6f14\u7fd2\uff09"},{"@type":"BreadcrumbList","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j#listItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/r-dimension.xsrv.jp\/classes_j","nextItem":{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/#listItem","name":"processing"}},{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/#listItem","position":2,"name":"processing","item":"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/","nextItem":{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#listItem","name":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa"},"previousItem":{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j#listItem","name":"\u30db\u30fc\u30e0"}},{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#listItem","position":3,"name":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa","previousItem":{"@type":"ListItem","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/#listItem","name":"processing"}}]},{"@type":"Organization","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/#organization","name":"Yasushi Noguchi Class","description":"class resume organized by Y.Noguchi","url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/"},{"@type":"Person","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/author\/admin\/#author","url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/author\/admin\/","name":"noguchi","image":{"@type":"ImageObject","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/a8dea537a5d433cf784441d080482caf96c62f4750bdbf0a11fd90e7ed227746?s=96&d=mm&r=g","width":96,"height":96,"caption":"noguchi"}},{"@type":"WebPage","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#webpage","url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/","name":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class","description":"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y","inLanguage":"ja","isPartOf":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/#website"},"breadcrumb":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/#breadcrumblist"},"author":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/author\/admin\/#author"},"creator":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/author\/admin\/#author"},"datePublished":"2008-06-22T18:17:00+09:00","dateModified":"2011-05-03T02:07:05+09:00"},{"@type":"WebSite","@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/#website","url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/","name":"Yasushi Noguchi Class","description":"class resume organized by Y.Noguchi","inLanguage":"ja","publisher":{"@id":"https:\/\/r-dimension.xsrv.jp\/classes_j\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"Yasushi Noguchi Class | class resume organized by Y.Noguchi","og:type":"article","og:title":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class","og:description":"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y","og:url":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/","article:published_time":"2008-06-22T09:17:00+00:00","article:modified_time":"2011-05-02T17:07:05+00:00","twitter:card":"summary","twitter:title":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa | Yasushi Noguchi Class","twitter:description":"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u8f2a\u90ed\u3092\u691c\u51fa\u3059\u308b\u30b3\u30fc\u30c9\u3067\u3059\u3002 \/\/This code has been arranged by Y"},"aioseo_meta_data":{"post_id":"1652","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-23 13:23:05","updated":"2025-06-04 08:48:38","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/r-dimension.xsrv.jp\/classes_j\" title=\"\u30db\u30fc\u30e0\">\u30db\u30fc\u30e0<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/\" title=\"processing\">processing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u30a8\u30c3\u30b8\u306e\u691c\u51fa\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u30db\u30fc\u30e0","link":"https:\/\/r-dimension.xsrv.jp\/classes_j"},{"label":"processing","link":"https:\/\/r-dimension.xsrv.jp\/classes_j\/category\/processing\/"},{"label":"\u30a8\u30c3\u30b8\u306e\u691c\u51fa","link":"https:\/\/r-dimension.xsrv.jp\/classes_j\/edge_bubbles\/"}],"_links":{"self":[{"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/posts\/1652","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/comments?post=1652"}],"version-history":[{"count":3,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/posts\/1652\/revisions"}],"predecessor-version":[{"id":2471,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/posts\/1652\/revisions\/2471"}],"wp:attachment":[{"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/media?parent=1652"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/categories?post=1652"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/r-dimension.xsrv.jp\/classes_j\/wp-json\/wp\/v2\/tags?post=1652"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}