{"id":239,"date":"2026-03-23T22:14:27","date_gmt":"2026-03-23T13:14:27","guid":{"rendered":"https:\/\/tool-laboratory.com\/?p=239"},"modified":"2026-03-23T22:27:32","modified_gmt":"2026-03-23T13:27:32","slug":"ai-image-detector","status":"publish","type":"post","link":"https:\/\/tool-laboratory.com\/en\/ai-image-detector\/","title":{"rendered":"AI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\uff5c\u5199\u771f\u304cAI\u751f\u6210\u304b\u3092\u7121\u6599\u3067\u30c1\u30a7\u30c3\u30af"},"content":{"rendered":"\n<div class=\"ai-tool\">\n  <h2>AI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\uff08\u53ef\u8996\u5316\u7248\uff09<\/h2>\n  <p>\u602a\u3057\u3044\u90e8\u5206\u3092\u5927\u307e\u304b\u306b\u8868\u793a\u3057\u307e\u3059\uff08\u6700\u59275\u7b87\u6240\uff09<\/p>\n\n  <input type=\"file\" id=\"imgInput\" accept=\"image\/*\">\n  <canvas id=\"canvas\"><\/canvas>\n  <div id=\"result\"><\/div>\n<\/div>\n\n<script>\n(function(){\ndocument.addEventListener(\"DOMContentLoaded\", function(){\n\n  const input = document.getElementById(\"imgInput\");\n  const canvas = document.getElementById(\"canvas\");\n  const ctx = canvas.getContext(\"2d\");\n  const result = document.getElementById(\"result\");\n\n  input.addEventListener(\"change\", function(e){\n    const file = e.target.files[0];\n    if(!file) return;\n\n    const img = new Image();\n    const reader = new FileReader();\n\n    reader.onload = e => img.src = e.target.result;\n\n    img.onload = function(){\n      canvas.width = img.width;\n      canvas.height = img.height;\n      ctx.drawImage(img,0,0);\n\n      const data = ctx.getImageData(0,0,canvas.width,canvas.height);\n      const pixels = data.data;\n\n      let points = [];\n\n      \/\/ \u7c97\u304f\u30c1\u30a7\u30c3\u30af\uff08\u9593\u5f15\u304d\uff09\n      for(let y=0; y<canvas.height; y+=25){\n        for(let x=0; x<canvas.width; x+=25){\n\n          let i = (y * canvas.width + x) * 4;\n          let r = pixels[i];\n          let g = pixels[i+1];\n          let b = pixels[i+2];\n\n          let diff = Math.abs(r-g) + Math.abs(g-b);\n\n          if(diff < 12){\n            points.push({x,y});\n          }\n        }\n      }\n\n      \/\/ \u30b0\u30eb\u30fc\u30d7\u5316\n      let clusters = [];\n\n      points.forEach(p=>{\n        let added = false;\n\n        for(let c of clusters){\n          let dx = c.x - p.x;\n          let dy = c.y - p.y;\n          let dist = Math.sqrt(dx*dx + dy*dy);\n\n          if(dist < 80){\n            c.x = (c.x + p.x)\/2;\n            c.y = (c.y + p.y)\/2;\n            c.count++;\n            added = true;\n            break;\n          }\n        }\n\n        if(!added){\n          clusters.push({x:p.x, y:p.y, count:1});\n        }\n      });\n\n      \/\/ \u591a\u3044\u9806\u306b\u30bd\u30fc\u30c8\u3057\u3066\u6700\u59275\u500b\n      clusters.sort((a,b)=>b.count-a.count);\n      clusters = clusters.slice(0,5);\n\n      \/\/ \u63cf\u753b\n      ctx.strokeStyle = \"red\";\n      ctx.lineWidth = 3;\n\n      clusters.forEach(c=>{\n        let radius = Math.min(100, 20 + c.count);\n        ctx.beginPath();\n        ctx.arc(c.x, c.y, radius, 0, Math.PI*2);\n        ctx.stroke();\n      });\n\n      let score = Math.min(100, points.length \/ 15);\n\n      result.innerHTML =\n        \"AI\u7591\u3044\u30b9\u30b3\u30a2\uff1a\" + score + \"%<br>\" +\n        \"\u8d64\u4e38\u304c\u602a\u3057\u3044\u9818\u57df\u3067\u3059\uff08\u6700\u59275\u7b87\u6240\uff09<br>\" +\n        \"<small>\u203b\u76ee\u5b89\u3067\u3059<\/small>\";\n    };\n\n    reader.readAsDataURL(file);\n  });\n\n});\n})();\n<\/script>\n\n<style>\n.ai-tool{\n  max-width:500px;\n  margin:auto;\n  text-align:center;\n}\ncanvas{\n  max-width:100%;\n  margin-top:10px;\n  border-radius:10px;\n}\n<\/style>\n\n\n\n<h2 class=\"wp-block-heading\">AI\u753b\u50cf\u304b\u3069\u3046\u304b\u5224\u5225\u3057\u305f\u3044\u4eba\u3078<\/h2>\n\n\n\n<p>\u6700\u8fd1\u3067\u306f\u3001AI\u3067\u751f\u6210\u3055\u308c\u305f\u753b\u50cf\u304c\u6025\u5897\u3057\u3066\u304a\u308a\u3001SNS\u3084\u30d6\u30ed\u30b0\u3067\u300c\u3053\u306e\u753b\u50cf\u306f\u672c\u7269\u306a\u306e\u304b\uff1f\u300d\u3068\u7591\u554f\u306b\u611f\u3058\u308b\u3053\u3068\u304c\u5897\u3048\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u7279\u306b\u526f\u696d\u3084\u60c5\u5831\u53ce\u96c6\u3092\u3057\u3066\u3044\u308b\u65b9\u306b\u3068\u3063\u3066\u3001\u753b\u50cf\u306e\u4fe1\u983c\u6027\u306f\u975e\u5e38\u306b\u91cd\u8981\u3067\u3059\u3002\u3057\u304b\u3057\u3001\u898b\u305f\u76ee\u3060\u3051\u3067AI\u753b\u50cf\u304b\u3069\u3046\u304b\u3092\u5224\u65ad\u3059\u308b\u306e\u306f\u96e3\u3057\u304f\u3001\u5c02\u9580\u7684\u306a\u77e5\u8b58\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u305d\u3053\u3067\u672c\u8a18\u4e8b\u3067\u306f\u3001\u8ab0\u3067\u3082\u7c21\u5358\u306b\u4f7f\u3048\u308b\u300cAI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\u300d\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3053\u306e\u30c4\u30fc\u30eb\u3067\u3067\u304d\u308b\u3053\u3068<\/h2>\n\n\n\n<p>\u3053\u306e\u30c4\u30fc\u30eb\u3067\u306f\u3001\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3060\u3051\u3067\u300cAI\u751f\u6210\u306e\u53ef\u80fd\u6027\u300d\u3092\u30b9\u30b3\u30a2\u5f62\u5f0f\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u9762\u5012\u306a\u8a2d\u5b9a\u3084\u767b\u9332\u306f\u4e00\u5207\u4e0d\u8981\u3067\u3001\u30b9\u30de\u30db\u304b\u3089\u3067\u3082\u3059\u3050\u306b\u5229\u7528\u53ef\u80fd\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u4e3b\u306a\u7279\u5fb4\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u5b8c\u5168\u7121\u6599\u3067\u5229\u7528\u53ef\u80fd<\/li>\n\n\n\n<li>\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u4e0d\u8981\uff08\u30d6\u30e9\u30a6\u30b6\u3067\u5b8c\u7d50\uff09<\/li>\n\n\n\n<li>\u30ef\u30f3\u30af\u30ea\u30c3\u30af\u3067\u5224\u5b9a\u7d50\u679c\u3092\u8868\u793a<\/li>\n\n\n\n<li>AI\u3063\u307d\u3055\u3092\u30d1\u30fc\u30bb\u30f3\u30c6\u30fc\u30b8\u3067\u8868\u793a<\/li>\n<\/ul>\n\n\n\n<p>\u521d\u5fc3\u8005\u3067\u3082\u8ff7\u308f\u305a\u4f7f\u3048\u308b\u30b7\u30f3\u30d7\u30eb\u306a\u8a2d\u8a08\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5224\u5225\u306e\u4ed5\u7d44\u307f\u306b\u3064\u3044\u3066<\/h2>\n\n\n\n<p>\u3053\u306e\u30c4\u30fc\u30eb\u3067\u306f\u3001\u753b\u50cf\u306e\u300c\u8272\u306e\u3070\u3089\u3064\u304d\uff08\u5206\u6563\uff09\u300d\u3092\u3082\u3068\u306b\u7c21\u6613\u7684\u306a\u5224\u5b9a\u3092\u884c\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u4e00\u822c\u7684\u306bAI\u753b\u50cf\u306f\u3001\u30ce\u30a4\u30ba\u3084\u30d1\u30bf\u30fc\u30f3\u306e\u5747\u4e00\u6027\u304c\u7279\u5fb4\u7684\u3067\u3042\u308a\u3001\u4eba\u9593\u304c\u64ae\u5f71\u3057\u305f\u5199\u771f\u3068\u306f\u5fae\u5999\u306a\u9055\u3044\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u672c\u30c4\u30fc\u30eb\u3067\u306f\u3001\u305d\u306e\u7279\u5fb4\u3092\u5229\u7528\u3057\u3066\u30b9\u30b3\u30a2\u5316\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u305f\u3060\u3057\u3001\u3042\u304f\u307e\u3067\u7c21\u6613\u7684\u306a\u5206\u6790\u3067\u3042\u308a\u3001100%\u6b63\u78ba\u306b\u5224\u5b9a\u3067\u304d\u308b\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u5229\u7528\u6642\u306e\u6ce8\u610f\u70b9<\/h2>\n\n\n\n<p>\u3053\u306e\u30c4\u30fc\u30eb\u306e\u5224\u5b9a\u7d50\u679c\u306f\u3042\u304f\u307e\u3067\u300c\u76ee\u5b89\u300d\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u4ee5\u4e0b\u306e\u70b9\u306b\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AI\u753b\u50cf\u3067\u3082\u4eba\u9593\u3068\u5224\u5b9a\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059<\/li>\n\n\n\n<li>\u5199\u771f\u52a0\u5de5\u306b\u3088\u3063\u3066\u7d50\u679c\u304c\u5909\u308f\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059<\/li>\n\n\n\n<li>\u9ad8\u7cbe\u5ea6\u306a\u5224\u5b9a\u306b\u306f\u5c02\u9580\u30c4\u30fc\u30eb\u304c\u5fc5\u8981\u3067\u3059<\/li>\n<\/ul>\n\n\n\n<p>\u305d\u306e\u305f\u3081\u3001\u91cd\u8981\u306a\u5224\u65ad\u3092\u884c\u3046\u5834\u5408\u306f\u8907\u6570\u306e\u60c5\u5831\u3092\u3082\u3068\u306b\u5224\u65ad\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u3053\u3093\u306a\u4eba\u306b\u304a\u3059\u3059\u3081<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SNS\u306e\u753b\u50cf\u304c\u672c\u7269\u304b\u6c17\u306b\u306a\u308b\u65b9<\/li>\n\n\n\n<li>AI\u753b\u50cf\u306e\u898b\u5206\u3051\u65b9\u3092\u77e5\u308a\u305f\u3044\u65b9<\/li>\n\n\n\n<li>\u30b3\u30f3\u30c6\u30f3\u30c4\u5236\u4f5c\u3067\u753b\u50cf\u306e\u4fe1\u983c\u6027\u3092\u78ba\u8a8d\u3057\u305f\u3044\u65b9<\/li>\n\n\n\n<li>\u526f\u696d\u30fb\u30d6\u30ed\u30b0\u904b\u55b6\u3092\u3057\u3066\u3044\u308b\u65b9<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\u307e\u3068\u3081<\/h2>\n\n\n\n<p>AI\u753b\u50cf\u306f\u4eca\u5f8c\u3055\u3089\u306b\u5897\u3048\u3066\u3044\u304f\u3068\u8003\u3048\u3089\u308c\u307e\u3059\u3002\u305d\u306e\u4e2d\u3067\u3001\u7c21\u5358\u306b\u5224\u5225\u3067\u304d\u308b\u30c4\u30fc\u30eb\u3092\u6301\u3063\u3066\u304a\u304f\u3053\u3068\u306f\u5927\u304d\u306a\u30e1\u30ea\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u306e\u30c4\u30fc\u30eb\u3092\u6d3b\u7528\u3059\u308b\u3053\u3068\u3067\u3001\u753b\u50cf\u306e\u4fe1\u983c\u6027\u3092\u624b\u8efd\u306b\u30c1\u30a7\u30c3\u30af\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u305c\u3072\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3057\u3066\u3001\u65e5\u5e38\u7684\u306b\u6d3b\u7528\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\uff08\u53ef\u8996\u5316\u7248\uff09 \u602a\u3057\u3044\u90e8\u5206\u3092\u5927\u307e\u304b\u306b\u8868\u793a\u3057\u307e\u3059\uff08\u6700\u59275\u7b87\u6240\uff09 AI\u753b\u50cf\u304b\u3069\u3046\u304b\u5224\u5225\u3057\u305f\u3044\u4eba\u3078 \u6700\u8fd1\u3067\u306f\u3001AI\u3067\u751f\u6210\u3055\u308c\u305f\u753b\u50cf\u304c\u6025\u5897\u3057\u3066\u304a\u308a\u3001SNS\u3084\u30d6\u30ed\u30b0\u3067\u300c\u3053\u306e\u753b\u50cf\u306f\u672c\u7269\u306a\u306e\u304b\uff1f\u300d\u3068\u7591\u554f\u306b\u611f\u3058\u308b\u3053\u3068\u304c\u5897 &#8230; <a title=\"AI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\uff5c\u5199\u771f\u304cAI\u751f\u6210\u304b\u3092\u7121\u6599\u3067\u30c1\u30a7\u30c3\u30af\" class=\"read-more\" href=\"https:\/\/tool-laboratory.com\/en\/ai-image-detector\/\" aria-label=\"Read more about AI\u753b\u50cf\u5224\u5225\u30c4\u30fc\u30eb\uff5c\u5199\u771f\u304cAI\u751f\u6210\u304b\u3092\u7121\u6599\u3067\u30c1\u30a7\u30c3\u30af\">Read more<\/a><\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[8],"tags":[],"class_list":["post-239","post","type-post","status-publish","format-standard","hentry","category-it-tools"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/239","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/comments?post=239"}],"version-history":[{"count":3,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/239\/revisions"}],"predecessor-version":[{"id":250,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/posts\/239\/revisions\/250"}],"wp:attachment":[{"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/media?parent=239"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/categories?post=239"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tool-laboratory.com\/en\/wp-json\/wp\/v2\/tags?post=239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}