先把效果图给大家放上来
个人觉得效果还行。识别不太准确是因为这个 app学习图片的时间太短(电脑太卡)。
(笔者是 window10) 安装运行环境:
npm install --global windows-build-tools
(这个时间很漫长。。。)npm install @tensorflow/tfjs-node
(这个时间很漫长。。。)项目目录如下
train文件夹 index.js(入口文件)
const tf = require('@tensorflow/tfjs-node')const getdata = require('./data')const train_dir = '../垃圾分类/train'const output_dir = '../outputdir'const mobilenet_url = 'http://ai-sample.oss-cn-hangzhou.aliyuncs.com/pipcook/models/mobilenet/web_model/model.json'const main = async () => { // 加载数据 const { ds, class} = await getdata(train_dir, output_dir) // 定义模型 const mobilenet = await tf.loadlayersmodel(mobilenet_url) mobilenet.summary() // console.log(mobilenet.layers.map((l, i) => [l.name, i])) const model = tf.quential() for (let i = 0; i <= 86; i += 1) { const layer = mobilenet.layers[i] layer.trainable = fal model.add(layer) } model.add(tf.layers.flatten()) model.add(tf.layers.den({ units: 10, activation: 'relu' })) model.add(tf.layers.den({ units: class.length, activation: 'softmax' })) // 训练模型 model.compile({ loss: 'sparcategoricalcrosntropy', optimizer: tf.train.adam(), metrics: ['acc'] }) await model.fitdatat(ds, { epochs: 20 }) await model.save(`file://${process.cwd()}/${output_dir}`)}main()
data.js(处理数据)
const fs = require('fs')const tf = require('@tensorflow/tfjs-node')const img2x = (imgpath) => { const buffer = fs.readfilesync(imgpath) return tf.tidy(() => { const imgts = tf.node.decodeimage(new uint8array(buffer)) const imgtsresized = tf.image.resizebilinear(imgts, [224, 224]) return imgtsresized.tofloat().sub(255/2).div(255/2).reshape([1, 224, 224, 3]) })}const getdata = async (traindir, outputdir) => { const class = fs.readdirsync(traind流字开头的成语ir) fs.writefilesync(`${outputdir}/class.json`, json.stringify(class)) const data = [] class.foreach((dir, dirindex) => { fs.readdirsync(`${traindir}/${dir}`) .filter(n => n.match(/jpg$/)) .slice(0, 10) .foreach(filename => { console.log('读取', dir, filename) const imgpath = `${traindir}/${dir}/${filename}` data.push({ imgpath, dirindex }) }) }) tf.util.shuffle(data) const ds = tf.data.generator(function* () { const count = data.length const batchsize = 32 for (let start = 0; start < count; start += batchsize) { const end = math.min(start + batchsize, count) yoniyield tf.tidy(() => { const inputs = [] const labels = [] for (let j = start; j < end; j += 1) { const { imgpath, dirindex } = data[j] const x = img2x(imgpath) inputs.push(x) labels.push(dirindex) } const xs = tf.concat(inputs) const ys = tf.tensor(labels) return { xs, ys } }) } }) return { ds, class }}module.exports = getdata
安装一些运行项目需要的插件
app 文件夹
import react, { purecomponent } from 'react'import { button, progress, spin, empty } from 'antd'import 'antd/dist/antd.css'import * as tf from '@tensorflow/tfjs'import { file2img, img2x } from './utils'import intro from './intro'const data_url = 'http://127.0.0.1:8080/'class app extends purecomponent { state = {} async componentdidmount() { this.model = await tf.loadlayersmodel(data_url + '/model.json') // this.model.summary() this.class = await fetch(data_url + '/class.json').then(res => res.json()) } predict = async (file) => { const img = await file2img(file) this.tstate({ imgsrc: img.src, isloading: true }) ttimeout(() => { const pred = tf.tidy(() => { const x = img2x(img) return this.model.predict(x) }) const results = pred.arraysync()[0] .map((score, i) => ({score,香港回归了吗 label: this.class[i]})) .sort((a, b) => b.score - a.score) this.tstate({ results, isloading: fal }) }, 0) } renderresult = (item) => { const finalscore = math.round(item.score * 100) return ( <tr key={item.label}> <td style={{ width: 80, padding: '5px 0' }}>{item.label}</td> <td> <progress percent={finalscore} status={finalscore === 100 ? 'success' : 'normal'} /> </td> </tr> ) } render() { const { imgsrc, results, isloading } = this.state const finalitem = results && {...results[0], ...intro[results[0].label]} return ( <div style={{padding: 20}}> <span style={{ color: '#cccccc', textalign: 'center', fontsize: 12, display: 'block' }} >识别可能不准确</span> <button type="primary" size="large" style={{width: '100%'}} onclick={() => this.upload.click()} > 选择图片识别 </button> <input type="file" onchange={e => this.predict(e.target.files[0])} ref={el => {this.upload = el}} style={{ display: 'none' }} /> { !results && !imgsrc && <empty style={{ margintop: 40 }} /> } {imgsrc && <div style={{ margintop: 20, textalign: 'center' }}> <img src={imgsrc} style={{ maxwidth: '100%' }} /> </div>} {finalitem && <div style={{margintop: 20}}>识别结果: </div>} {finalitem && <div style={{display: 'flex', alignitems: 'flex-start', margintop: 20}}> <img src={finalitem.icon} width={120} /> <div> <h2 style={{color: finalitem.color}}> {finalitem.label} </h2> <div style={{color: finalitem.color}}> {finalitem.intro} </div> </div> </div>}黄耀明林夕 { isloading && <spin size="large" style={{display: 'flex', justifycontent: 'center', alignitems: 'center', margintop: 40 }} /> } {results && <div style={{ margintop: 20 }}> <table style={{width: '100%'}}> <tbody> <tr> <td>类别</td> <td>匹配度</td> </tr> {results.map(this.renderresult)} </tbody> </table> </div>} </div> ) }}export default app
index.html
<!doctype html><html> <head> <title>垃圾分类</title> <meta name="viewport" content="width=device-width, inital-scale=1"> </head> <body> <div id="app"></div> <script src="./index.js"></script> </body></html>
index.js
import react from 'react'import reactdom from 'react-dom'import app from './app'reactdom.render(<app />, document.querylector('#app'))
intro.js
export default { '可回收物': { icon: 'https://lajifenleiapp.com/static/svg/1_3f6ba8.svg', color: '#3f6ba8', intro: '是指在日常生活中或者为日常生活提供服务的活动中产生的,已经失去原有全部或者部分使用价值,回收后经过再加工可以成为生产原料或者经过整理可以再利用的物品,包括废纸类、塑料类、玻璃类、金属类、织物类等。' }, '有害垃圾': { icon: 'https://lajifenleiapp.com/static/svg/2v_b43953.svg', color: '#b43953', intro: '是指生活垃圾中对人体健康或者自然环境造成直接或者潜在危害的物质,包括废充电电池、废扣式电池、废灯管、弃置药品、废杀虫剂(容器)、废油漆(容器)、废日用化学品、废水银产品、废旧电器以及电子产品等。' }, '厨余垃圾': { icon: 'https://lajifenleiapp.com/static/svg/3v_48925b.svg', color: '#48925b', intro: '是指居民日常生活中产生的有机易腐垃圾,包括菜叶、剩菜、剩饭、果皮、蛋壳、茶渣、骨头等。' }, '其他垃圾': { icon: 'https://lajifenleiapp.com/static/svg/4_89918b.svg', color: '#89918b', o是整数吗 intro: '是指除可回收物、有害垃圾和厨余垃圾之外的,混杂、污染、难分类的其他生活垃圾。' }}
utils.js
import * as tf from '@tensorflow/tfjs'export const file2img = async (f) => { return new promi(reslove => { const reader = new filereader() reader.readasdataurl(f) reader.onload = (e) => { const img = document.createelement('img') img.src = e.target.result img.width = 224 img.height = 224 img.onload = () => { reslove(img) } } })}export function img2x(imgel) { return tf.tidy(() => { return tf.browr.frompixels(imgel) .tofloat().sub(255/2).div(255/2) .reshape([1, 224, 224, 3]) })}
运行项目代码之前,我们需要先在 train 目录下运行,node index.js,生成 model.json 以供识别系统使用。之后需要在根目录下运行 hs outputdir –cors, 使得生成的 model.json 运行在 http 环境下,之后才可以运行 npm start ,不然项目是会报错的。
主要的代码就是上面这些。前面笔者也说了。自己对这方面完全不懂,所以也无法解说其中的代码。各位感兴趣就自己研究一下。代码地址奉上。
总结
到此这篇关于如何利用react实现图片识别app的文章就介绍到这了,更多相关react图片识别app内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-04 11:26:01,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/79403eedca01c5f9eb0fc3eeb983375a.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:如何利用React实现图片识别App.doc
本文 PDF 下载地址:如何利用React实现图片识别App.pdf
留言与评论(共有 0 条评论) |