# example-generate **Repository Path**: cloudFlyer/example-generate ## Basic Information - **Project Name**: example-generate - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-05 - **Last Updated**: 2024-09-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 项目说明 ​ 本项目用于在线图片处理,支持图片加雾、图片加雨、模糊加噪三种类型的功能,算法基于python实现。 # 技术说明 前端:react 后端:flask # 效果预览 ![](./images/image-20240905183759787.png) ![](./images/image-20240905183825923.png) ![](./images\image-20240905183844806.png) # 代码运行 react-front:前端开发源代码 ``` cd /react-front ``` 项目调试 ``` npm start ``` 项目打包(打包后生成/react-front/build文件夹) ``` npm run build ``` flask-server:后端开发源代码 ``` cd /flask-server ``` 项目启动: ``` python run.py ``` 项目打包: ``` pyinstaller --onefile --add-data "app/build;app/build" run.py ``` (打包后生成/flask-server/dist/index.exe可执行文件)