{"id":915,"date":"2019-11-12T14:37:30","date_gmt":"2019-11-12T13:37:30","guid":{"rendered":"http:\/\/labodemaths.fr\/WordPress3\/?p=915"},"modified":"2020-09-09T19:29:41","modified_gmt":"2020-09-09T17:29:41","slug":"nsi-traitement-image-proposition-correction","status":"publish","type":"post","link":"https:\/\/labodemaths.fr\/WordPress3\/nsi-traitement-image-proposition-correction\/","title":{"rendered":"NSI, Traitement image Proposition correction."},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>from PIL import Image # on importe la classe Image et ses m\u00e9thodes de la\n# biblioth\u00e8que Pillow alias PIL\n\nimage = Image.open(\"Mona_lisa.jpg\") # Chargement d'une image avec PIL\n# image est d\u00e9clar\u00e9e comme un objet de la classe Image de PIL\n\ndef taille(img):\n    return img.size # m\u00e9thode propre \u00e0 la classe Image\n\ndef format(img):\n    return img.format # m\u00e9thode propre \u00e0 la classe Image\n\ndef lire_pixel(img,x,y):\n    return img.getpixel((x,y)) # m\u00e9thode propre \u00e0 la classe Image\n\ndef changer_pixel(img,x,y,couleur):\n    image=img\n    image.putpixel((x,y),couleur) # m\u00e9thode propre \u00e0 la classe Image\n    return image\n\ndef afficher(img):\n    img.show()\n\n# premieres fonctions de traitement de l'image\n\ndef eclaircir(img,e):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,x,y)\n            nouvelle_c=(c[0]+e,c[1]+e,c[2]+e)\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n\ndef canal_R(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,x,y)\n            nouvelle_c=(c[0],0,0)\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n\ndef canal_V(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,x,y)\n            nouvelle_c=(0,c[1],0)\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n\ndef canal_B(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,x,y)\n            nouvelle_c=(0,0,c[2])\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n\ndef superposition(img):\n    img1=canal_R(img)\n    img2=canal_V(img)\n    img3=canal_B(img)\n    image_retour=Image.new('RGB',taille(img1) , color=0) # on cr\u00e9e une image vide\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c1 = lire_pixel(img1,x,y)\n            c2 = lire_pixel(img2,x,y)\n            c3 = lire_pixel(img3,x,y)\n            nouvelle_c=(c1[0]+c2[0]+c3[0],c1[1]+c2[1]+c3[1],c1[2]+c2[2]+c3[2])\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n\ndef symetrie(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image,x,y)\n            image_retour=changer_pixel(image_retour,l-1-x,y,c)\n    afficher(image_retour)\n    return image_retour\n\ndef symetrie_1(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,x,y)\n            image_retour=changer_pixel(image_retour,l-1-x,y,c)\n    afficher(image_retour)\n    return image_retour\n\ndef symetrie_2(img):\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c = lire_pixel(image_retour,l-1-x,y)\n            image_retour=changer_pixel(image_retour,x,y,c)\n    afficher(image_retour)\n    return image_retour\n\ndef photomaton(img):\n    '''\n    ne fonctionne qu'avec une image de dimensions paires\n    '''\n    image_retour=img.copy()\n    (l, h) = taille(image)\n    l1=int(l\/2)\n    h1=int(h\/2)\n    for x in range(0,l-1,2):\n        for y in range(0,h-1,2):\n            pixel1 = lire_pixel(img,x,y)\n            pixel2 = lire_pixel(img,x+1,y)\n            pixel3 = lire_pixel(img,x,y+1)\n            pixel4 = lire_pixel(img,x+1,y+1)\n            x1=int(x\/2)\n            y1=int(y\/2)\n            image_retour=changer_pixel(image_retour,x1,y1,pixel1)\n            image_retour=changer_pixel(image_retour,x1+l1,y1,pixel2)\n            image_retour=changer_pixel(image_retour,x1,y1+h1,pixel3)\n            image_retour=changer_pixel(image_retour,x1+l1,y1+h1,pixel4)\n    afficher(image_retour)\n    return image_retour\n\ndef boucle_photomaton(img,n):\n    image_retour=img.copy()\n    for i in range(n):\n        image_retour=photomaton(image_retour)\n    return image_retour\n\ndef difference(img1,img2):\n    image_retour=Image.new('RGB',taille(img1) , color=0) # on cr\u00e9e une image vide\n    (l, h) = taille(image)\n    for y in range(h):\n        for x in range(l):\n            c1 = lire_pixel(img1,x,y)\n            c2 = lire_pixel(img2,x,y)\n            nouvelle_c=(c1[0]-c2[0],c1[1]-c2[1],c1[2]-c2[2])\n            if nouvelle_c!=(0,0,0):\n                return False\n            image_retour=changer_pixel(image_retour,x,y,nouvelle_c)\n    afficher(image_retour)\n    return image_retour\n<\/code><\/pre>\n\n\n\n<p>L&rsquo;image originale :<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/Mona_Lisa-1.jpg\" alt=\"\" class=\"wp-image-916\" width=\"257\" height=\"384\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/Mona_Lisa-1.jpg 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/Mona_Lisa-1-201x300.jpg 201w\" sizes=\"(max-width: 257px) 100vw, 257px\" \/><\/figure>\n\n\n\n<p>Retour de la commande eclaircir(image,50) :<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img1.png\" alt=\"\" class=\"wp-image-917\" width=\"257\" height=\"384\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img1.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img1-201x300.png 201w\" sizes=\"(max-width: 257px) 100vw, 257px\" \/><\/figure>\n\n\n\n<p>Retour de la commande eclaircir(image,-50) :<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img2.png\" alt=\"\" class=\"wp-image-918\" width=\"257\" height=\"384\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img2.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img2-201x300.png 201w\" sizes=\"(max-width: 257px) 100vw, 257px\" \/><\/figure>\n\n\n\n<p>Retour des commandes canal_R(image),canal_V(image),canal_B(image).<br>La fonction superposition(image) superpose les valeurs des 3 images pr\u00e9c\u00e9dentes.<\/p>\n\n\n\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img3.png\" alt=\"\" data-id=\"919\" class=\"wp-image-919\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img3.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img3-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>filtre rouge<\/figcaption><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img4.png\" alt=\"\" data-id=\"920\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=920\" class=\"wp-image-920\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img4.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img4-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>filtre vert<\/figcaption><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img5.png\" alt=\"\" data-id=\"921\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=921\" class=\"wp-image-921\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img5.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img5-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>filtre bleu<\/figcaption><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img6.png\" alt=\"\" data-id=\"922\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=922\" class=\"wp-image-922\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img6.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img6-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>superposition des 3 filtres<\/figcaption><\/figure><\/li><\/ul>\n\n\n\n<p>Les fonctions symetrie, symetrie_1 et symetrie_2<\/p>\n\n\n\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img7.png\" alt=\"\" data-id=\"923\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=923\" class=\"wp-image-923\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img7.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img7-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>symetrie()<\/figcaption><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img8.png\" alt=\"\" data-id=\"924\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=924\" class=\"wp-image-924\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img8.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img8-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>symetrie_1()<\/figcaption><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"514\" height=\"768\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img9.png\" alt=\"\" data-id=\"925\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=925\" class=\"wp-image-925\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img9.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img9-201x300.png 201w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><figcaption>symetrie_2()<\/figcaption><\/figure><\/li><\/ul>\n\n\n\n<p><strong>Un examen de ces trois fonctions peut-\u00eatre utiles. Comprendre le fonctionnement des deux derni\u00e8res est formateur.<\/strong><\/p>\n\n\n\n<p>La fonction photomaton()<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10.png\" alt=\"\" class=\"wp-image-926\" width=\"257\" height=\"384\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10.png 514w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10-201x300.png 201w\" sizes=\"(max-width: 257px) 100vw, 257px\" \/><\/figure>\n\n\n\n<p>La fonction boucle_photomaton(image,8) avec image = Image.open(\u00ab\u00a0Mona_lisa_reduite.jpg\u00a0\u00bb)<\/p>\n\n\n\n<ul class=\"wp-block-gallery columns-3 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10_bis.png\" alt=\"\" data-id=\"927\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=927\" class=\"wp-image-927\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10_bis.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img10_bis-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img11.png\" alt=\"\" data-id=\"928\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=928\" class=\"wp-image-928\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img11.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img11-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img12.png\" alt=\"\" data-id=\"929\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=929\" class=\"wp-image-929\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img12.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img12-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img13.png\" alt=\"\" data-id=\"930\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=930\" class=\"wp-image-930\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img13.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img13-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img14.png\" alt=\"\" data-id=\"931\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=931\" class=\"wp-image-931\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img14.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img14-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img15.png\" alt=\"\" data-id=\"932\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=932\" class=\"wp-image-932\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img15.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img15-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img16.png\" alt=\"\" data-id=\"933\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=933\" class=\"wp-image-933\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img16.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img16-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"256\" height=\"256\" src=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img17.png\" alt=\"\" data-id=\"934\" data-link=\"https:\/\/labodemaths.fr\/WordPress3\/?attachment_id=934\" class=\"wp-image-934\" srcset=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img17.png 256w, https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/img17-150x150.png 150w\" sizes=\"(max-width: 256px) 100vw, 256px\" \/><\/figure><\/li><\/ul>\n\n\n\n<p><strong>Cette transformation est cyclique parce que les dimensions de l&rsquo;images Mona_lisa_reduite.jpg ont \u00e9t\u00e9 choisies sp\u00e9cifiquement.<br>On peut s&rsquo;int\u00e9resser \u00e0 ces dimensions pour essayer de comprendre pourquoi cette image poss\u00e8de un cycle de longueur 8.<\/strong><\/p>\n\n\n\n<div class=\"wp-block-file\"><a href=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/Mona_lisa_reduite.jpg\">Mona_lisa_reduite<\/a><a href=\"https:\/\/labodemaths.fr\/WordPress3\/wp-content\/uploads\/2019\/11\/Mona_lisa_reduite.jpg\" class=\"wp-block-file__button\" download>T\u00e9l\u00e9charger<\/a><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>L&rsquo;image originale : Retour de la commande eclaircir(image,50) : Retour de la commande eclaircir(image,-50) :&#8230;<\/p>\n<div class=\"more-link-wrapper\"><a class=\"more-link\" href=\"https:\/\/labodemaths.fr\/WordPress3\/nsi-traitement-image-proposition-correction\/\">Read the post<span class=\"screen-reader-text\">NSI, Traitement image Proposition correction.<\/span><\/a><\/div>\n","protected":false},"author":2,"featured_media":933,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/posts\/915"}],"collection":[{"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/comments?post=915"}],"version-history":[{"count":3,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/posts\/915\/revisions"}],"predecessor-version":[{"id":947,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/posts\/915\/revisions\/947"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/media\/933"}],"wp:attachment":[{"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/media?parent=915"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/categories?post=915"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/labodemaths.fr\/WordPress3\/wp-json\/wp\/v2\/tags?post=915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}