{"id":9292,"date":"2017-03-01T08:00:12","date_gmt":"2017-02-28T23:00:12","guid":{"rendered":"http:\/\/www.lp-research.com\/?p=9292"},"modified":"2021-04-26T22:52:38","modified_gmt":"2021-04-26T13:52:38","slug":"ros-and-lp-research-imus-simple","status":"publish","type":"post","link":"https:\/\/www.lp-research.com\/ja\/ros-and-lp-research-imus-simple\/","title":{"rendered":"Robot Operating System and LP-Research IMUs? Simple!"},"content":{"rendered":"<div align=\"center\"><font color=\"red\">NOTE: We have released a new version of our ROS \/ ROS 2 driver, please refer to <a href=\"https:\/\/lp-research.com\/connect-lp-motion-sensor-imu-to-robot-operating-system-ros\/\" color=\"red\"><font color=\"red\"><u>this post<\/u><\/font><\/a>.<\/font><\/div>\n<p><\/br><\/p>\n<h3>Introduction<\/h3>\n<p><a href=\"http:\/\/ros.org\"><u>Robot Operating System<\/u><\/a> (ROS) is a tool commonly used in the robotics community to pass data between various subsystems of a robot setup. We at LP-Research are also using it in various projects, and it is actually very familiar to our founders from the time of their PhDs. Inertial Measurement Units are not only a standard tool in robotics, the modern MEMS devices that we are using in our LPMS product line are actually the result of robotics research. So it seemed kind of odd that an important application case for our IMUs was not covered by our LpSensor software: namely, we didn&#8217;t provide a ROS driver.\u00a0 We are very happy to tell you that such a driver exists, and we are happy that we don&#8217;t have to write it ourselves: the<a href=\"http:\/\/larics.rasip.fer.hr\/\"> <u>Larics laboratory<\/u><\/a>\u00a0at the University of Zagreb are avid users of both ROS and our LPMS-U2 sensors. So, naturally, they developed a ROS driver which they provide on their <a href=\"https:\/\/github.com\/larics\/lpms_imu\"><u>github site<\/u><\/a>.\u00a0 Recently, I had a chance to play with it, and the purpose of this blog post is to share my experiences with you, in order to get you started with ROS and LPMS sensors on your Ubuntu Linux system.<\/p>\n<h3>Installing the LpSensor Library<\/h3>\n<p>Please check <a href=\"https:\/\/www.lp-research.com\/support\/\"><u>our download page<\/u><\/a> for the latest version of the library, at the time of this writing it is 1.3.5. I downloaded it, and then followed these steps to unpack and install it:<\/p>\n<pre class=\"\">tar xvzf ~\/Downloads\/LpSensor-1.3.5-Linux-x86-64.tar.gz\r\nsudo apt-get install libbluetooth-dev\r\nsudo dpkg -i LpSensor-1.3.5-Linux-x86-64\/liblpsensor-1.3.5-Linux.deb\r\ndpkg -L liblpsensor<\/pre>\n<p>I also installed <tt>libbluettoth-dev<\/tt>, because without Bluetooth support, my LPMS-B2 would be fairly useless.<\/p>\n<h3>Setting up ROS and a catkin Work Space<\/h3>\n<p>If you don&#8217;t already have a working ROS installation, follow the <a href=\"http:\/\/wiki.ros.org\/ROS\/Installation\"><u>ROS Installation Instructions<\/u><\/a> to get started. If you already have a catkin work space you can of course skip this step, and substitute your own in what follows.\u00a0 The work space is created as follows, note that you run <tt>catkin_init_workspace<\/tt> inside the <tt>src<\/tt> sub-directory of your work space.<\/p>\n<pre class=\"\">mkdir -p ~\/catkin_ws\/src\r\ncd !:2\r\ncatkin_init_workspace<\/pre>\n<h3 class=\"\">Downloading and Compiling\u00a0the ROS Driver for LPMS IMUs<\/h3>\n<p>We can now download the driver sources from <a href=\"https:\/\/github.com\/larics\/lpms_imu\"><u>github<\/u><\/a>. It optionally makes use of and additional ROS module by the Larics laboratory which synchronizes time stamps between ROS and the IMU data stream.\u00a0 Therefore, we have to clone two git repositories to obtain all prerequisites for building the driver.<\/p>\n<pre class=\"\">cd ~\/catkin_ws\/src\r\ngit clone https:\/\/github.com\/larics\/timesync_ros.git\r\ngit clone https:\/\/github.com\/larics\/lpms_imu.git\r\n<\/pre>\n<p class=\"\">That&#8217;s it, we are now ready to run <tt>catkin_make<\/tt> to get everything compiled and ready.\u00a0 Building was as simple as running <tt>catkin_make<\/tt>, but you should setup the ROS environment before that.\u00a0 If you haven&#8217;t, here&#8217;s how to do that:<\/p>\n<pre class=\"\">cd ~\/catkin_ws\r\nsource devel\/setup.bash\r\ncatkin_make<\/pre>\n<p class=\"\">This should go smoothly. Time for a test.<\/p>\n<h3 class=\"\">Not as Cool as LpmsControl, but Very Cool!<\/h3>\n<p>Now that we are set up, we can harness all of the power and flexibility of ROS. I&#8217;ll simply show you how to visualize the data using standard ROS tools without any further programming.\u00a0 You will need two virtual terminals.\u00a0 In the first start <tt>roscore<\/tt>, if you don&#8217;t have it running yet.\u00a0 In the second, we start <tt>rqt_plot<\/tt> in order to see the data from our IMU, and the <tt>lpms_imu_node<\/tt> which provides it.\u00a0 In the box you can see the command I use to connect to my IMU. You will have to replace the <tt>_sensor_model<\/tt> and <tt>_port<\/tt> strings with the values corresponding to your device.\u00a0 Maybe it&#8217;s worth pointing out that the second parameter is called <tt>_port<\/tt>, because for a USB device it would correspond to its virtual serial port (typically <tt>\/dev\/ttyUSB0<\/tt>).<\/p>\n<pre class=\"\">rosrun rqt_plot rqt_plot &amp; # WordPress sometimes (but not always!) inserts \"amp;\" after the ampersand, if you see it, please ignore it.\r\nrosrun lpms_imu lpms_imu_node _sensor_model:=\"DEVICE_LPMS_B2\" _port:=\"00:04:3E:9E:00:8B\"<\/pre>\n<p class=\"\">Once you enter these commands, you will then see the familiar startup messages of LpSensor as in the screenshot below. As you can see the driver connected to my LPMS-B2 IMU right away. If you cannot connect, maybe Bluetooth is turned off or you didn&#8217;t enter the information needed to connect to your IMU.\u00a0 Once you have verified the parameters, you can store them in your launch file or adapt the source code accordingly.<\/p>\n<div id=\"attachment_9294\" style=\"width: 610px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-9294\" class=\"size-medium wp-image-9294\" src=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\" alt=\"Screenshot starting LPMS ROS node\" width=\"600\" height=\"357\" srcset=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png 600w, https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1.png 732w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/a><p id=\"caption-attachment-9294\" class=\"wp-caption-text\">Screenshot of starting the LPMS ROS node<\/p><\/div>\n<p>The <tt>lpms_imu_node<\/tt> uses the standard IMU and magnetic field message types provided by ROS, and it publishes them on the <tt>imu<\/tt> topic.\u00a0 That&#8217;s all we need to actually visualize the data in realtime.\u00a0 Below you can see how easy that is in <tt>rqt_plot<\/tt>. Not as cool as LpmsControl, but still fairly cool. Can you guess how I moved my IMU?<\/p>\n<p><a href=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/screencast_cropped.gif\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9295\" src=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/screencast_cropped.gif\" alt=\"animation of how to display LPMS sensor data in ROS\" width=\"810\" height=\"670\" \/><\/a><\/p>\n<p>Please get in touch with us, if you have any questions, or if you found this useful for your own projects.<\/p>\n<p><em>Update:<\/em> Martin G\u00fcnther from the <a href=\"https:\/\/www.dfki.de\/web\"><u>German Research Center for Artificial Intelligence<\/u><\/a> was kind enough to teach me how to pass ROS parameters on the command line.\u00a0 I&#8217;ve updated the post accordingly.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>NOTE: We have released a new version of our ROS \/ ROS 2 driver, please refer to this post. Introduction Robot  [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[4,45],"tags":[39,12,57,70,87,16,86,85],"class_list":["post-9292","post","type-post","status-publish","format-standard","hentry","category-blog","category-use-cases","tag-imu","tag-lpms","tag-lpms-b","tag-lpms-u","tag-lpsensor","tag-open-source","tag-robot-operating-system","tag-ros"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.1 (Yoast SEO v24.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Robot Operating System and LP-Research IMUs? Simple! - LP-Research<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Robot Operating System and LP-Research IMUs? Simple!\" \/>\n<meta property=\"og:description\" content=\"NOTE: We have released a new version of our ROS \/ ROS 2 driver, please refer to this post. Introduction Robot [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\" \/>\n<meta property=\"og:site_name\" content=\"LP-Research\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/lpresearch\" \/>\n<meta property=\"article:published_time\" content=\"2017-02-28T23:00:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-26T13:52:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\" \/>\n<meta name=\"author\" content=\"Tobias Schl\u00fcter\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LPResearch\" \/>\n<meta name=\"twitter:site\" content=\"@LPResearch\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tobias Schl\u00fcter\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\"},\"author\":{\"name\":\"Tobias Schl\u00fcter\",\"@id\":\"https:\/\/52.42.213.164\/#\/schema\/person\/b34d4597a3259a93cdd7750864be382c\"},\"headline\":\"Robot Operating System and LP-Research IMUs? Simple!\",\"datePublished\":\"2017-02-28T23:00:12+00:00\",\"dateModified\":\"2021-04-26T13:52:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\"},\"wordCount\":815,\"publisher\":{\"@id\":\"https:\/\/52.42.213.164\/#organization\"},\"image\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\",\"keywords\":[\"IMU\",\"LPMS\",\"LPMS-B\",\"LPMS-U\",\"LpSensor\",\"Open-source\",\"Robot Operating System\",\"ROS\"],\"articleSection\":[\"Blog\",\"Use Cases\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\",\"url\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\",\"name\":\"Robot Operating System and LP-Research IMUs? Simple! - LP-Research\",\"isPartOf\":{\"@id\":\"https:\/\/52.42.213.164\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\",\"datePublished\":\"2017-02-28T23:00:12+00:00\",\"dateModified\":\"2021-04-26T13:52:38+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage\",\"url\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\",\"contentUrl\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/52.42.213.164\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Robot Operating System and LP-Research IMUs? Simple!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/52.42.213.164\/#website\",\"url\":\"https:\/\/52.42.213.164\/\",\"name\":\"LP-RESEARCH\",\"description\":\"Advanced Sensor Fusion Solution and IMUs\",\"publisher\":{\"@id\":\"https:\/\/52.42.213.164\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/52.42.213.164\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/52.42.213.164\/#organization\",\"name\":\"LP-RESEARCH Inc.\",\"url\":\"https:\/\/52.42.213.164\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/52.42.213.164\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2015\/08\/2_LogoNeda.png\",\"contentUrl\":\"https:\/\/www.lp-research.com\/wp-content\/uploads\/2015\/08\/2_LogoNeda.png\",\"width\":245,\"height\":104,\"caption\":\"LP-RESEARCH Inc.\"},\"image\":{\"@id\":\"https:\/\/52.42.213.164\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/lpresearch\",\"https:\/\/x.com\/LPResearch\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/52.42.213.164\/#\/schema\/person\/b34d4597a3259a93cdd7750864be382c\",\"name\":\"Tobias Schl\u00fcter\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/52.42.213.164\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cf805fe14efcb07be80ce46d12058386bdb34b3c6c546f4376ecd9372c60ad1?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cf805fe14efcb07be80ce46d12058386bdb34b3c6c546f4376ecd9372c60ad1?s=96&d=retro&r=g\",\"caption\":\"Tobias Schl\u00fcter\"},\"description\":\"Before I came to LP-Research, I used to do particle physics research. My publications can be found here. At LP-Research, I am responsible for our LPVR series of products. My title is Chief Scientist.\",\"url\":\"https:\/\/www.lp-research.com\/ja\/author\/tobiasschlueterlpresearch\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Robot Operating System and LP-Research IMUs? Simple! - LP-Research","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/","og_locale":"ja_JP","og_type":"article","og_title":"Robot Operating System and LP-Research IMUs? Simple!","og_description":"NOTE: We have released a new version of our ROS \/ ROS 2 driver, please refer to this post. Introduction Robot [&hellip;]","og_url":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/","og_site_name":"LP-Research","article_publisher":"https:\/\/www.facebook.com\/lpresearch","article_published_time":"2017-02-28T23:00:12+00:00","article_modified_time":"2021-04-26T13:52:38+00:00","og_image":[{"url":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png","type":"","width":"","height":""}],"author":"Tobias Schl\u00fcter","twitter_card":"summary_large_image","twitter_creator":"@LPResearch","twitter_site":"@LPResearch","twitter_misc":{"\u57f7\u7b46\u8005":"Tobias Schl\u00fcter","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#article","isPartOf":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/"},"author":{"name":"Tobias Schl\u00fcter","@id":"https:\/\/52.42.213.164\/#\/schema\/person\/b34d4597a3259a93cdd7750864be382c"},"headline":"Robot Operating System and LP-Research IMUs? Simple!","datePublished":"2017-02-28T23:00:12+00:00","dateModified":"2021-04-26T13:52:38+00:00","mainEntityOfPage":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/"},"wordCount":815,"publisher":{"@id":"https:\/\/52.42.213.164\/#organization"},"image":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png","keywords":["IMU","LPMS","LPMS-B","LPMS-U","LpSensor","Open-source","Robot Operating System","ROS"],"articleSection":["Blog","Use Cases"],"inLanguage":"ja"},{"@type":"WebPage","@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/","url":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/","name":"Robot Operating System and LP-Research IMUs? Simple! - LP-Research","isPartOf":{"@id":"https:\/\/52.42.213.164\/#website"},"primaryImageOfPage":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage"},"image":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png","datePublished":"2017-02-28T23:00:12+00:00","dateModified":"2021-04-26T13:52:38+00:00","breadcrumb":{"@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#primaryimage","url":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png","contentUrl":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2017\/02\/2017-02-24-1-600x357.png"},{"@type":"BreadcrumbList","@id":"http:\/\/52.42.213.164\/ros-and-lp-research-imus-simple\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/52.42.213.164\/"},{"@type":"ListItem","position":2,"name":"Robot Operating System and LP-Research IMUs? Simple!"}]},{"@type":"WebSite","@id":"https:\/\/52.42.213.164\/#website","url":"https:\/\/52.42.213.164\/","name":"LP-RESEARCH","description":"Advanced Sensor Fusion Solution and IMUs","publisher":{"@id":"https:\/\/52.42.213.164\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/52.42.213.164\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/52.42.213.164\/#organization","name":"LP-RESEARCH Inc.","url":"https:\/\/52.42.213.164\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/52.42.213.164\/#\/schema\/logo\/image\/","url":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2015\/08\/2_LogoNeda.png","contentUrl":"https:\/\/www.lp-research.com\/wp-content\/uploads\/2015\/08\/2_LogoNeda.png","width":245,"height":104,"caption":"LP-RESEARCH Inc."},"image":{"@id":"https:\/\/52.42.213.164\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/lpresearch","https:\/\/x.com\/LPResearch"]},{"@type":"Person","@id":"https:\/\/52.42.213.164\/#\/schema\/person\/b34d4597a3259a93cdd7750864be382c","name":"Tobias Schl\u00fcter","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/52.42.213.164\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cf805fe14efcb07be80ce46d12058386bdb34b3c6c546f4376ecd9372c60ad1?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cf805fe14efcb07be80ce46d12058386bdb34b3c6c546f4376ecd9372c60ad1?s=96&d=retro&r=g","caption":"Tobias Schl\u00fcter"},"description":"Before I came to LP-Research, I used to do particle physics research. My publications can be found here. At LP-Research, I am responsible for our LPVR series of products. My title is Chief Scientist.","url":"https:\/\/www.lp-research.com\/ja\/author\/tobiasschlueterlpresearch\/"}]}},"_links":{"self":[{"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/posts\/9292","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/comments?post=9292"}],"version-history":[{"count":12,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/posts\/9292\/revisions"}],"predecessor-version":[{"id":14336,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/posts\/9292\/revisions\/14336"}],"wp:attachment":[{"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/media?parent=9292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/categories?post=9292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lp-research.com\/ja\/wp-json\/wp\/v2\/tags?post=9292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}