静力触探数据智能预处理(1)

news2024/11/17 21:49:01

静力触探数据智能预处理(1)

前言

数据处理方式已由手工1.0、计算机辅助2.0到人工智能3.0的趋势发展。现场采集的静力触探数据存在大量的异常数据,需要后期处理;但是目前还未见一个静力触探数据预处理的软件,数据预处理主要还是依靠在excel中人眼识别+手工剔除的方式。本博文尝试性的编写了静力触探数据预处理代码,并实现了静力触探数据的可视化,非专业编写,代码仅供参考。

文章目录

  • 静力触探数据智能预处理(1)
        • 前言
    • 1、filloutliers检测并替换数据中的离群值
      • 1.1、处理效果
      • 1.2 处理后的曲线图
    • 2、静力触探数据快速成图小软件
      • 2.1 matlab代码

1、filloutliers检测并替换数据中的离群值

B = filloutliers(A,fillmethod,findmethod) 指定检测离群值的方法。例如,filloutliers(A,‘previous’,‘mean’) 将 A 中与均值相差超过三倍标准差的元素定义为离群值。

1.1、处理效果

在这里插入图片描述
图中黑色曲线为原始曲线,蓝色曲线为处理后的曲线。

1.2 处理后的曲线图

数据节选自某工地现场实测数据,成图效果如下:
在这里插入图片描述

2、静力触探数据快速成图小软件

基于上述数据处理,在matlab中编辑了数据可视化软件,软件包含数据打开与关闭、曲线显示、曲线图保存、显示曲线、深度转换、插值与平滑的功能,可以对静力触探数据进行快速预处理。
软件界面如下:
在这里插入图片描述
当点击每个功能按键时,会弹出小窗口,用于数据处理操作:
在这里插入图片描述
但是小软件还不适用于所有数据格式,小软件功能还不稳定,bug非常多

2.1 matlab代码

classdef app3 < matlab.apps.AppBase

    % Properties that correspond to app components
    properties (Access = public)
        v10UIFigure  matlab.ui.Figure
        Button       matlab.ui.control.Button
        Panel        matlab.ui.container.Panel
        Button_2     matlab.ui.control.Button
        Button_3     matlab.ui.control.Button
        Button_4     matlab.ui.control.Button
        Button_5     matlab.ui.control.Button
        Button_6     matlab.ui.control.Button
        Image        matlab.ui.control.Image
        Button_7     matlab.ui.control.Button
        ContextMenu  matlab.ui.container.ContextMenu
        Menu         matlab.ui.container.Menu
        Menu2        matlab.ui.container.Menu
    end

    % Callbacks that handle component events
    methods (Access = private)

        % Button pushed function: Button
        function ButtonPushed(app, event)
            [inFileName,PathName] = uigetfile('*.txt',...
               '选择静探数据文件','MultiSelect','on');
            if(isequal(inFileName,0)||isequal(PathName,0)) 
                return;
            else
                filename = strcat(PathName,inFileName);
            end
            data = importdata(filename);
            ax1 = subplot(1,3,1,'parent',app.Panel);
            plot(ax1,data(:,2),data(:,1),'r');
            ylim(ax1,[0 80]);
            xlim(ax1,[0 30]);
            set(ax1,'ydir','reverse');
            set(ax1,'xaxislocation','top');
            xlabel(ax1,'q_c/mPa','FontWeight','bold');
            ylabel(ax1,'Depth/m','FontWeight','bold');
            set(ax1,'fontname','times new roman','fontsize',16);
            
            ax2 = subplot(1,3,2,'parent',app.Panel);
            plot(ax2,data(:,3),data(:,1),'b');
            ylim(ax2,[0 80]);
            xlim(ax2,[0 500]);
            xticks(ax2,0:250:500);
            set(ax2,'ydir','reverse');
            set(ax2,'xaxislocation','top');
            xlabel(ax2,'f_s/kPa','FontWeight','bold');
            set(ax2,'fontname','times new roman','fontsize',16);
            
            ax3 = subplot(1,3,3,'parent',app.Panel);
            plot(ax3,data(:,4),data(:,1),'g');
            ylim(ax3,[0 80]);
            xlim(ax3,[0 10]);
            set(ax3,'ydir','reverse');
            set(ax3,'xaxislocation','top');
            xlabel(ax3,'F(%)','FontWeight','bold');
            set(ax3,'fontname','times new roman','fontsize',16);
            
        end

        % Button pushed function: Button_2
        function Button_2Pushed(app, event)
            [a,b] = uiputfile('*.png',...
               '保存静探数据曲线图','静探曲线图');
            if(isequal(a,0)||isequal(b,0)) 
                return;
            else
                c_filename = strcat(b,a);
            end
            exportgraphics(app.panel,c_filename);
        end

        % Image clicked function: Image
        function ImageClicked(app, event)
            pause(1);
            delete(app.Image)
        end
    end

    % Component initialization
    methods (Access = private)

        % Create UIFigure and components
        function createComponents(app)

            % Create v10UIFigure and hide until all components are created
            app.v10UIFigure = uifigure('Visible', 'off');
            app.v10UIFigure.Color = [0.4667 0.6745 0.1882];
            app.v10UIFigure.Position = [100 100 1200 800];
            app.v10UIFigure.Name = '静力触探数据绘图软件v1.0';
            app.v10UIFigure.Icon = '软件名.png';

            % Create Button
            app.Button = uibutton(app.v10UIFigure, 'push');
            app.Button.ButtonPushedFcn = createCallbackFcn(app, @ButtonPushed, true);
            app.Button.BackgroundColor = [0 1 0];
            app.Button.FontName = '宋体';
            app.Button.FontSize = 16;
            app.Button.FontWeight = 'bold';
            app.Button.Position = [27 651 116 29];
            app.Button.Text = '打开数据文件';

            % Create Panel
            app.Panel = uipanel(app.v10UIFigure);
            app.Panel.AutoResizeChildren = 'off';
            app.Panel.TitlePosition = 'centertop';
            app.Panel.Title = '静力触探曲线图';
            app.Panel.BackgroundColor = [0.9216 0.9176 0.8745];
            app.Panel.FontName = '宋体';
            app.Panel.FontWeight = 'bold';
            app.Panel.FontSize = 20;
            app.Panel.Position = [173 24 983 728];

            % Create Button_2
            app.Button_2 = uibutton(app.v10UIFigure, 'push');
            app.Button_2.ButtonPushedFcn = createCallbackFcn(app, @Button_2Pushed, true);
            app.Button_2.BackgroundColor = [0 1 0];
            app.Button_2.FontName = '宋体';
            app.Button_2.FontSize = 16;
            app.Button_2.FontWeight = 'bold';
            app.Button_2.Position = [27 573 116 29];
            app.Button_2.Text = '保存曲线图';

            % Create Button_3
            app.Button_3 = uibutton(app.v10UIFigure, 'push');
            app.Button_3.BackgroundColor = [0 1 0];
            app.Button_3.FontName = '宋体';
            app.Button_3.FontSize = 16;
            app.Button_3.FontWeight = 'bold';
            app.Button_3.Position = [27 186 116 29];
            app.Button_3.Text = '退出';

            % Create Button_4
            app.Button_4 = uibutton(app.v10UIFigure, 'push');
            app.Button_4.BackgroundColor = [0 1 0];
            app.Button_4.FontName = '宋体';
            app.Button_4.FontSize = 16;
            app.Button_4.FontWeight = 'bold';
            app.Button_4.Position = [27 495 116 29];
            app.Button_4.Text = '显示数据曲线';

            % Create Button_5
            app.Button_5 = uibutton(app.v10UIFigure, 'push');
            app.Button_5.BackgroundColor = [0 1 0];
            app.Button_5.FontName = '宋体';
            app.Button_5.FontSize = 16;
            app.Button_5.FontWeight = 'bold';
            app.Button_5.Position = [27 417 116 29];
            app.Button_5.Text = '深度转换';

            % Create Button_6
            app.Button_6 = uibutton(app.v10UIFigure, 'push');
            app.Button_6.BackgroundColor = [0 1 0];
            app.Button_6.FontName = '宋体';
            app.Button_6.FontSize = 16;
            app.Button_6.FontWeight = 'bold';
            app.Button_6.Position = [27 340 116 29];
            app.Button_6.Text = '插值';

            % Create Image
            app.Image = uiimage(app.v10UIFigure);
            app.Image.ImageClickedFcn = createCallbackFcn(app, @ImageClicked, true);
            app.Image.BackgroundColor = [0.8 0.8 0.8];
            app.Image.Tooltip = {'请点击软件界面,等待1秒,再开始使用软件!'};
            app.Image.Position = [1 1 1200 800];
            app.Image.ImageSource = '静探数据绘图软件封面01.png';

            % Create Button_7
            app.Button_7 = uibutton(app.v10UIFigure, 'push');
            app.Button_7.BackgroundColor = [0 1 0];
            app.Button_7.FontName = '宋体';
            app.Button_7.FontSize = 16;
            app.Button_7.FontWeight = 'bold';
            app.Button_7.Position = [27 263 116 29];
            app.Button_7.Text = '平滑';

            % Create ContextMenu
            app.ContextMenu = uicontextmenu(app.v10UIFigure);
            
            % Assign app.ContextMenu
            app.v10UIFigure.ContextMenu = app.ContextMenu;

            % Create Menu
            app.Menu = uimenu(app.ContextMenu);
            app.Menu.Text = '打开文件';

            % Create Menu2
            app.Menu2 = uimenu(app.ContextMenu);
            app.Menu2.Text = 'Menu2';

            % Show the figure after all components are created
            app.v10UIFigure.Visible = 'on';
        end
    end

    % App creation and deletion
    methods (Access = public)

        % Construct app
        function app = app3

            % Create UIFigure and components
            createComponents(app)

            % Register the app with App Designer
            registerApp(app, app.v10UIFigure)

            if nargout == 0
                clear app
            end
        end

        % Code that executes before app deletion
        function delete(app)

            % Delete UIFigure when app is deleted
            delete(app.v10UIFigure)
        end
    end
end

此软件只是一个半成品,欢迎批评建议。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/707155.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

BN、LN、IN、GN的自我理解

目录 一、Batch Normal 二、Layer Normal 三、Instance Normal 四、Group Normal 五、参考 参考了这两三篇博客&#xff0c;终于理解了这几个概念。 一、Batch Normal Batch Normal&#xff0c;举例来说&#xff1a;输入一个batch size&#xff0c;这个batch size中有2个…

2. Linux组件之数据库连接池

目录 一、数据库连接池1.1 池化技术1.2 数据库连接池及其作用1.3 不使用数据库连接池1.4 使用数据库连接池1.5 长连接和连接池1.6 数据库连接池运行机制1.7 连接池和线程池的关系 二、数据库连接池的设计2.1 mysql 连接池1. 构造函数2. 初始化3. 请求获取连接4. 归还连接5. 析构…

Linux训练营(文件和目录操作)

文章目录 前言一、ls命令二、cd命令三、mkdir命令四、cp命令五、rm命令总结 前言 本篇文章我们来讲解Linux中的文件和目录操作&#xff0c;在这里我们主要使用的是Linux中的命令来操作这些文件和目录&#xff0c;命令是Linux中最基础的部分。 一、ls命令 ls是一个常用的命令…

5-NumPy如何创建N维数组?【视频版】

目录 问题视频解答 问题 视频解答 点击观看&#xff1a; 5-如何创建等N维数组&#xff1f;

C++ 命名空间

假设这样一种情况&#xff0c;当一个班上有两个名叫 Zara 的学生时&#xff0c;为了明确区分它们&#xff0c;我们在使用名字之外&#xff0c;不得不使用一些额外的信息&#xff0c;比如他们的家庭住址&#xff0c;或者他们父母的名字等等。 同样的情况也出现在 C 应用程序中。…

DMAR IOMMU页表错误

DMAR: [DMA Write] Request device ......&#xff0c; 设备在进行 DMA 操作的时候&#xff0c;检查页表失败&#xff0c;在 IOMMU 的错误处理函数中会打印详细信息。 如下&#xff0c;出现 DMAR 错误&#xff0c;iova 0x9e4ef2373000 的 PTE 页表没有设置&#xff0c; 而实际…

③mybatis的动态sql

很多时候需要实现多条件查询&#xff0c;手动判断拼接sql有些麻烦 mybatis提供了一个动态sql实现多条件查询的方法 1.if标签 使用if元素可以根据条件来包含或排除某个SQL片段 <select id"search" resultType"Household">select id,idcard,name,cell…

蓝鲸社区:解决小伙伴们插眼关注的一个需求

背景 在蓝鲸社区“社区问答”帖子中发现这么一个需求&#xff1a; 究其原因&#xff0c;我在《不是CMDB筑高墙&#xff0c;运维需要一定的开发能力&#xff01;》一文中已经介绍&#xff0c;在此我再简单重复下&#xff1a; 蓝鲸5.1 自带“事件推送”功能&#xff0c;当配置…

pdf文档多页内插入统一图片

常用来添加公司logo、签名、印章等等 概括来说就是插入同一个图片&#xff0c;然后复制在每一页&#xff08;自动&#xff09; 用的是福昕pdf阅读器 首先打开pdf&#xff1a; 点击图像标注功能&#xff1a; 在弹出窗口中选择浏览&#xff0c;点击需要插入的图片&#xff08…

1.1.1 Qt信号槽之connect与disconnect介绍

关于Qt信号槽中connect与disconnect介绍 首先我们要知道&#xff0c;如果想要使用Qt中的信号槽机制&#xff0c; 那么必须继承QObject类&#xff0c;因为QObject类中包含了信号槽的一系列操作&#xff0c;今天我们来讲解的是信号与槽怎么建立连接以及断开连接。 一、connect …

用于语义图像分割的弱监督和半监督学习:弱监督期望最大化方法

这时一篇2015年的论文&#xff0c;但是他却是最早提出在语义分割中使用弱监督和半监督的方法&#xff0c;SAM的火爆证明了弱监督和半监督的学习方法也可以用在分割上。 这篇论文只有图像级标签或边界框标签作为弱/半监督学习的输入。使用期望最大化(EM)方法&#xff0c;用于弱…

rain-nowcasting-using-deep-learning github:使用深度学习进行临近降水预报

来源 github地址 是什么 本资料库旨在阐述 "在应用于降雨预报的深度学习模型中合并雷达雨量图像和风速预测 "&#xff08; “Merging radar rain images and wind predictions in a deep learning model applied to rain nowcasting”&#xff09;一文中提出的深度…

下拉表格多选sql批量插入以身份证号自动加载年龄性别生日

目录 一、layui下拉表格多选1、引入js2、html3、js代码①非动态数据②动态数据 4、运行效果 二、sql server批量插入三、根据身份证号动态填写出生日期年龄性别 一、layui下拉表格多选 1、引入js 2、html <div class"layui-input-inline"><input type&quo…

安装 Grafana 及 windows_exporter 配置 dubbo 配置 及报告示例

目录 安装部署 官网下载 配置中文 启动 访问 账户密码 界面效果 图表操作 新建添加仪表 添加 Prometheus 数据源 导入已有报告示例 下载 windows_exporter Grafana 的图表模板 node_exporter 中文版&#xff1a;windows_exporter for Prometheus Dashboard CN v2…

element框架select值更新页面不回显的问题,动态表单props绑定问题

1、页面中使用form表单&#xff0c;引入select组件 当data中默认没有定义form.region的值时&#xff0c;会出现选择select后input没有回显选择数据值&#xff1b;所以使用select时&#xff0c;必须定义默认值 <el-form ref"form" :model"form" label-…

常见面试题之线程中并发锁(二)

1. 什么是AQS&#xff1f; 1.1. 概述 全称是AbstractQueuedSynchronizer&#xff0c;是阻塞式锁和相关的同步器工具的框架&#xff0c;它是构建锁或者其他同步组件的基础框架 AQS与Synchronized的区别 synchronizedAQS关键字&#xff0c;c语言实现java语言实现悲观锁&#…

CISSP证书考试难度大吗?本文教你如何轻松拿下CISSP

主题&#xff1a;CISSP含金量、CISSP考试经验、CISSP备考、CISSP考试大纲 CISSP含金量高 CISSP注册信息系统安全师认证是信息安全领域被全球广泛认可的IT安全认证&#xff0c;一直以来被誉为业界的“金牌标准”。CISSP认证不仅是对个人信息安全专业知识的客观评估&#xff0c…

给若依添加单元测试(一)

给若依添加单元测试 方案二&#xff08;异常困难但企业开发一般用这个&#xff09; 方案一&#xff08;简单&#xff09; 在 admin 模块中添加单元测试 S1.在 src 目录下创建 test.java.MapperTests 文件 S2.将以下内容复制进去 import com.ruoyi.RuoYiApplication; imp…

初学mybatis(六)动态sql

学习回顾&#xff1a;初学mybatis&#xff08;五&#xff09; 一、动态SQL 介绍 什么是动态SQL&#xff1a;动态SQL指的是根据不同的查询条件 , 生成不同的Sql语句. 官网描述&#xff1a; MyBatis 的强大特性之一便是它的动态 SQL。如果你有使用 JDBC 或其它类似框架的经验&…

小研究 - Java 指针分析综述(三)

近年来静态程序分析已成为保障软件可靠性、安全性和高效性的关键技术之一. 指针分析作为基 础程序分析技术为静态程序分析提供关于程序的一系列基础信息&#xff0c;例如程序任意变量的指向关系、变量 间的别名关系、程序调用图、堆对象的可达性等. 介绍了 Java 指针分析的重要…