{"id":21027,"date":"2022-11-11T19:30:09","date_gmt":"2022-11-11T14:00:09","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/"},"modified":"2022-11-11T19:30:09","modified_gmt":"2022-11-11T14:00:09","slug":"solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/","title":{"rendered":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-40125905\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"40125905\" data-parentid=\"40119075\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>You are not using the function correctly.<\/p>\n<p>your code is this (verbatim):<\/p>\n<pre><code>f = figure; \nhax = axes(f); \naf = figure('Name', 'Do Not Touch');\n\nx = rand(1,100);\ny = rand(1,100);\nlinewidth=1; \nplot(hax, x,y, 'LineWidth', linewidth); \n\nI = getframe(hax); \nI = I.cdata; \n<\/code><\/pre>\n<p>The matrix <code>I<\/code> is not a matrix that contain peaks like the function is intended to have. This is how it looks like:<\/p>\n<pre><code>imagesc(I);\n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\" alt=\"enter image description here\"><\/a> <\/p>\n<p>Even if all you had were single pixels, that is not what the function is supposed to have, as it is said that the peaks point spread function needs to be larger than some # of pixels, and that they are assumed to be sparse. The function has a demonstration on a sample image that works fine.<\/p>\n<p>Also , it&#8217;s completely unclear what you even mean by peaks here. <\/p>\n<p>EDIT:<\/p>\n<p>Here&#8217;s an example of how to use the function. First let&#8217;s select random positions where we &#8220;create&#8221; the peaks:<\/p>\n<pre><code>I=rand(200)&gt;0.9995;\n<\/code><\/pre>\n<p>This makes a binary matrix with only the points larger than 0.9995 selected (or having value 1). At each step you can <code>imagesc(I)<\/code> to see how <code>I<\/code> looks.<\/p>\n<p>In real life, a camera will have some intensity in these points so we write:<\/p>\n<pre><code>I=I*100;\n<\/code><\/pre>\n<p>This is important as the peak by dentition needs to be a maximum value in its neighborhood. In real life, peaks are mostly not single pixels, they have some &#8220;width&#8221; or spread (this is also what the function says it deals with):<\/p>\n<pre><code>I=conv2(I,fspecial('gaussian',10,2),'same');\n<\/code><\/pre>\n<p>here, this spread is done by a &#8220;point-spread function&#8221; of a guassian of some width.<\/p>\n<p>Lets add some 30% noise (note that after the last step the maximum value of the peaks is no longer 100, because it is spread to other pixels as well):<\/p>\n<pre><code>I=I+0.3*max(I(:))*rand(size(I));\n<\/code><\/pre>\n<p>Let&#8217;s find peaks<\/p>\n<pre><code> p=FastPeakFind(I);\n<\/code><\/pre>\n<p>See how it did:<\/p>\n<pre><code>subplot(1,2,1);imagesc(I); \n\nsubplot(1,2,2);imagesc(I); hold on\nplot(p(1:2:end),p(2:2:end),'r+')\n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/1668175209_836_Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/1668175209_836_Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>In the function code, the example is doing what I wrote here in a single line. Note that there is an <code>edg<\/code> parameter, as this will not work on peaks on the edges of the image. This cab be solved by padding the image with zeros I think&#8230;<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">10<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to detect peaks on gray background with Matlab FastPeakFind? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] You are not using the function correctly. your code is this (verbatim): f = figure; hax = axes(f); af = figure(&#8216;Name&#8217;, &#8216;Do Not Touch&#8217;); x = rand(1,100); y = rand(1,100); linewidth=1; plot(hax, x,y, &#8216;LineWidth&#8217;, linewidth); I = getframe(hax); I = I.cdata; The matrix I is not a matrix that contain peaks like the function &#8230; <a title=\"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\" aria-label=\"More on [Solved] How to detect peaks on gray background with Matlab FastPeakFind?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[4023,516],"class_list":["post-21027","post","type-post","status-publish","format-standard","hentry","category-solved","tag-detection","tag-matlab"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] You are not using the function correctly. your code is this (verbatim): f = figure; hax = axes(f); af = figure(&#039;Name&#039;, &#039;Do Not Touch&#039;); x = rand(1,100); y = rand(1,100); linewidth=1; plot(hax, x,y, &#039;LineWidth&#039;, linewidth); I = getframe(hax); I = I.cdata; The matrix I is not a matrix that contain peaks like the function ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-11T14:00:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?\",\"datePublished\":\"2022-11-11T14:00:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\"},\"wordCount\":327,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\",\"keywords\":[\"detection\",\"matlab\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\",\"name\":\"[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\",\"datePublished\":\"2022-11-11T14:00:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb","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":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb","og_description":"[ad_1] You are not using the function correctly. your code is this (verbatim): f = figure; hax = axes(f); af = figure('Name', 'Do Not Touch'); x = rand(1,100); y = rand(1,100); linewidth=1; plot(hax, x,y, 'LineWidth', linewidth); I = getframe(hax); I = I.cdata; The matrix I is not a matrix that contain peaks like the function ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/","og_site_name":"JassWeb","article_published_time":"2022-11-11T14:00:09+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?","datePublished":"2022-11-11T14:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/"},"wordCount":327,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png","keywords":["detection","matlab"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/","name":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png","datePublished":"2022-11-11T14:00:09+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/11\/Solved-How-to-detect-peaks-on-gray-background-with-Matlab.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-detect-peaks-on-gray-background-with-matlab-fastpeakfind\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to detect peaks on gray background with Matlab FastPeakFind?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21027","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=21027"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/21027\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=21027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=21027"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=21027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}