gocator导出图片

想用3D扫描后的图片,但是系统自带的导出方法很麻烦,所以考虑通过sdk导出

首先需要设置点云亮度

 

这里是导出图片的关键代码

 case GoDataMessageType.SurfaceIntensity:
     {
         Debug.WriteLine("SurfaceIntensity  ");
         GoSurfaceIntensityMsg surfaceMsg = (GoSurfaceIntensityMsg)dataObj;
         long width = surfaceMsg.Width;
         long length = surfaceMsg.Length;
         long bufferSize = width * length;
         IntPtr bufferPointeri = surfaceMsg.Data;

         //Console.WriteLine("Surface Intensity received:");
         //Console.WriteLine(" Buffer width: {0}", width);
         //Console.WriteLine(" Buffer length: {0}", length);
         byte[] ranges = new byte[bufferSize];

         Marshal.Copy(bufferPointeri, ranges, 0, ranges.Length);

 

         Mat mat1 = new Mat((int)length, (int)width, MatType.CV_8UC1, bufferPointeri);

         //Mat mat = Cv2.ImDecode(ranges, ImreadModes.Grayscale);

         long UID = YitIdHelper.NextId();
         string GlueImageDir = LogsUtil.GetLogDir(LogsUtil.GlueImage);
         ImageFile = await FileHelper.SaveVisionImage1(mat1, GlueImageDir, $"Glue3Dimage_{gm.TireBarcode}_{UID}.png");

 
     }
     break;

using Camera3D.Models.Glue;
using Camera3D.Utils;
using FluentFTP;
using Google.Protobuf.WellKnownTypes;
using JHCamera3D.Helper.Python;
using JHCamera3D.Utils;//using Intel.RealSense;
using LinkAsiaSmart.MyTask;
using Lmi3d.GoSdk;
using Lmi3d.GoSdk.Messages;
using OpenCvSharp;
using System.Collections;
using System.Drawing.Imaging;
using System.Threading;
using System.Windows.Forms;
using Yitter.IdGenerator;
using static Camera3D.Enum.LMI.ReceiveProfile;
using static Emgu.CV.WeChatQRCode;
using static Slapper.AutoMapper;namespace Camera3D.Helper.TCP
{/// <summary>/// /// </summary>public class Camera3DGlue{public delegate void OnDataType(KObject data);public static Camera3DGlue? Instance;public static bool isSaveDataToMySql = true;public static bool isGoLoad = false;public static bool isStart = false;public static bool isCanStatus = false;private static double TireInsideLength = 0;private static double EncoderResolution = 0;GoDataSet dataSet;static GoSystem system;static GoSensor sensor;static GoSurfaceGeneration surfacelength;public static Camera3DGlue GetInstance(){if (Instance == null){Instance = new Camera3DGlue();}return Instance;}public bool GoLoad()//加载Gocator{string ip = SystemParams.Camera3D.LMI3DGlueCameraIP;                         // "192.168.1.10";uint SensorID = uint.Parse(SystemParams.Camera3D.LMI3DGlueCameraSensorID);   // "192.168.1.10";KApiLib.Construct();GoSdkLib.Construct();system = new GoSystem();dataSet = new GoDataSet();try{sensor = system.FindSensorById(SensorID);//指定传感器的ID连接 if (sensor.State == GoState.Running){sensor.Stop();sensor.Disconnect();};sensor.Connect();//double encoder = sensor.Transform.EncoderResolution;EncoderResolution = sensor.Transform.EncoderResolution;TireInsideLength = sensor.Setup.GetSurfaceGeneration().FixedLengthLength;system.EnableData(true);//数据通道使能system.SetDataHandler(onData);//异步接受数据isGoLoad = true;}catch (Exception ex){return false;}return true;}public static void Start(){try{if (sensor == null){return;}sensor.Stop();surfacelength = sensor.Setup.GetSurfaceGeneration();    sensor.Start();isStart = true;isCanStatus = true;}catch (Exception ex){Log.Logger.Error($" 异常 {ex.Message}");}}public static void Stop(){try{sensor.Stop();isCanStatus = false;}catch (Exception ex){Log.Logger.Error($"Sensor Stop 异常 {ex.Message}");}}public static GoState GetStatus(){GoState state = GoState.Offline;// new GoState();//  state = GoState.Offline;if (isCanStatus){try{state = sensor.State.Value;}catch (Exception ex){Log.Logger.Error($"  异常 {ex.Message}");}}return state;}public static async void onData(KObject data){int mb = 1024 * 1024;Process currentProcess = Process.GetCurrentProcess();long workingSet = currentProcess.WorkingSet64;Log.Logger.Debug($" 占用内存{workingSet / mb}MB");Random rdm = new Random(Guid.NewGuid().GetHashCode());GlueModel gm = new GlueModel();gm.DateTime = DateUtil.CurrentDate.ToString();gm.TireBarcode = PLCTag.GetTagValue(TagNameDesc.GlueTireBarcode, TagValueType.String);  // Work.PLC.Glue.GetGlueTireBarcode();string PLYName = $"Glue_{gm.TireBarcode}_{YitIdHelper.NextId()}";string ImageFile = "";GlueCompensationModel gcm = new GlueCompensationModel();float GlueTireInnerCircumference = float.Parse(PLCTag.GetTagValue(TagNameDesc.GlueTireInnerCircumference, TagValueType.Float));   // Work.PLC.TagValue.GetGlueTireInnerCircumference();Log.Logger.Debug($"接受到 3D  数据  ");try{DataContext context = new DataContext(); GoDataSet dataSet = (GoDataSet)data;for (UInt32 i = 0; i < dataSet.Count; i++){GoDataMsg dataObj = (GoDataMsg)dataSet.Get(i);// Debug.WriteLine($"GoDataMsg.MessageType:{dataObj.MessageType}");Log.Logger.Debug($" GoDataMsg.MessageType : {dataObj.MessageType}  ");switch (dataObj.MessageType){case GoDataMessageType.Stamp:{GoStampMsg stampMsg = (GoStampMsg)dataObj;for (UInt32 j = 0; j < stampMsg.Count; j++){GoStamp stamp = stampMsg.Get(j);//Debug.WriteLine("Frame Index = {0}", stamp.FrameIndex);//Debug.WriteLine("Time Stamp = {0}", stamp.Timestamp);//Debug.WriteLine("Encoder Value = {0}", stamp.Encoder);// Debug.WriteLine($"{i} -{j}  Index = {stamp.FrameIndex} time =  {stamp.Timestamp} value = {stamp.Encoder}");//Debug.WriteLine($"  {stampMsg.Count}  ");// LsData.Add(stamp.Encoder.ToString());}//}break;case GoDataMessageType.UniformSurface:{try{GoUniformSurfaceMsg surfaceMsg = (GoUniformSurfaceMsg)dataObj;long width = surfaceMsg.Width; //被测物体宽度long length = surfaceMsg.Length; //3D相机走过的长度long bufferSize = (width * length);IntPtr bufferPointer = surfaceMsg.Data;//获取缓存的宽高long surfaceBufferWidth = surfaceMsg.Width;long surfaceBufferLength = surfaceMsg.Length;float[] x = new float[surfaceBufferLength * surfaceBufferWidth];float[] y = new float[surfaceBufferLength * surfaceBufferWidth];float[] z = new float[surfaceBufferLength * surfaceBufferWidth];// byte[] intensity = new byte[surfaceBufferLength * surfaceBufferWidth];SurfacePoint[] surfaceBuffer = new SurfacePoint[surfaceBufferLength * surfaceBufferWidth];List<SurfacePoint> ListSurface = new List<SurfacePoint>();short[] ranges = new short[bufferSize];Marshal.Copy(bufferPointer, ranges, 0, ranges.Length);// Marshal.Copy(bufferPointer, intensity, 0, ranges.Length);//string rangesStr = string.Join(",", ranges);Log.Logger.Debug($"Surface Width = {width} length = {length} bufferSize = {bufferSize} ");double xResolution = (double)surfaceMsg.XResolution / 1000000;double yResolution = (double)surfaceMsg.YResolution / 1000000;double zResolution = (double)surfaceMsg.ZResolution / 1000000;// YDotPitch = yResolution;context.xResolution = (float)surfaceMsg.XResolution / 1000000;context.yResolution = (float)surfaceMsg.YResolution / 1000000;context.zResolution = (float)surfaceMsg.ZResolution / 1000000;context.xOffset = (float)surfaceMsg.XOffset / 1000;context.yOffset = (float)surfaceMsg.YOffset / 1000;context.zOffset = (float)surfaceMsg.ZOffset / 1000;long surfacePointCount = surfaceMsg.Width * surfaceMsg.Length;for (int j = 0; j < length; j++){for (int k = 0; k < width; k++){y[width * j + k] = (float)(k * context.xResolution + context.xOffset);x[width * j + k] = (float)(j * context.yResolution + context.yOffset);short tmp = ranges[width * j + k];z[width * j + k] = tmp == -32768 ? -32768 : (float)(tmp * context.zResolution + context.zOffset);//  intensity[width * j + k]= context.//if (tmp == -32768)//{//    z[width * j + k] = -32768;//}//else//{//    z[width * j + k] = (float)(tmp * context.zResolution + context.zOffset);//}surfaceBuffer[width * j + k].x = x[width * j + k];surfaceBuffer[width * j + k].y = y[width * j + k];surfaceBuffer[width * j + k].z = z[width * j + k];}}//Mat mat = Cv2.ImDecode(intensity, ImreadModes.Color);//long UID = YitIdHelper.NextId();//FileHelper.SaveVisionImage1(mat, $"Glue3Dimage_{UID}.png");Log.Logger.Debug($"接收到相机点云数量 = {surfacePointCount} ");ListSurface = surfaceBuffer.Where(a => a.z >= -10000).ToList();//PointCloudUtil.SavePointCloudToPLY(No, x, y, z);string PLYFile = await PointCloudUtil.SavePointCloudToPLY(PLYName, ListSurface.ToArray(), LogsUtil.GluePLY);//PointCloudUtil.SavePointCloudToPLY(No, x, y, z);DateTime startTime = DateTime.Now;while (!File.Exists(PLYFile)){if (DateTime.Now - startTime > TimeSpan.FromSeconds(10)){break;}await Task.Delay(200);}if (File.Exists(PLYFile)){ProcessPLYGlueStrip(PLYFile, gcm);}else{Log.Logger.Error($" 未找到ply文件 {PLYFile}");}x = null;y = null;z = null;ranges = null;surfaceBuffer = null;ListSurface.Clear();ListSurface = null;bufferPointer = IntPtr.Zero;}catch (Exception e){Log.Logger.Error($" GoDataMessageType.Surface 数据处理异常 = {e.Message} {e.StackTrace} ");}}break;case GoDataMessageType.SurfacePointCloud:{GoSurfacePointCloudMsg surfaceMsg = (GoSurfacePointCloudMsg)dataObj;context.xResolution = (double)surfaceMsg.XResolution / 1000000;context.yResolution = (double)surfaceMsg.YResolution / 1000000;context.zResolution = (double)surfaceMsg.ZResolution / 1000000;context.xOffset = (double)surfaceMsg.XOffset / 1000;context.yOffset = (double)surfaceMsg.YOffset / 1000;context.zOffset = (double)surfaceMsg.ZOffset / 1000;long surfacePointCount = surfaceMsg.Width * surfaceMsg.Length;Console.WriteLine("Surface Point Cloud received:");Console.WriteLine(" Buffer width: {0}", surfaceMsg.Width);Console.WriteLine(" Buffer length: {0}", surfaceMsg.Length);GoPoints[] points = new GoPoints[surfacePointCount];SurfacePoint[] surfaceBuffer = new SurfacePoint[surfacePointCount];int structSize = Marshal.SizeOf(typeof(GoPoints));IntPtr pointsPtr = surfaceMsg.Data;for (UInt32 array = 0; array < surfacePointCount; ++array){IntPtr incPtr = new IntPtr(pointsPtr.ToInt64() + array * structSize);points[array] = (GoPoints)Marshal.PtrToStructure(incPtr, typeof(GoPoints));}for (UInt32 arrayIndex = 0; arrayIndex < surfacePointCount; ++arrayIndex){if (points[arrayIndex].x != -32768){surfaceBuffer[arrayIndex].x = context.xOffset + context.xResolution * points[arrayIndex].x;surfaceBuffer[arrayIndex].y = context.yOffset + context.yResolution * points[arrayIndex].y;surfaceBuffer[arrayIndex].z = context.zOffset + context.zResolution * points[arrayIndex].z;}else{surfaceBuffer[arrayIndex].x = -32768;surfaceBuffer[arrayIndex].y = -32768;surfaceBuffer[arrayIndex].z = -32768;}}}break;case GoDataMessageType.SurfaceIntensity:{Debug.WriteLine("SurfaceIntensity  ");GoSurfaceIntensityMsg surfaceMsg = (GoSurfaceIntensityMsg)dataObj;long width = surfaceMsg.Width;long length = surfaceMsg.Length;long bufferSize = width * length;IntPtr bufferPointeri = surfaceMsg.Data;//Console.WriteLine("Surface Intensity received:");//Console.WriteLine(" Buffer width: {0}", width);//Console.WriteLine(" Buffer length: {0}", length);byte[] ranges = new byte[bufferSize];Marshal.Copy(bufferPointeri, ranges, 0, ranges.Length);Mat mat1 = new Mat((int)length, (int)width, MatType.CV_8UC1, bufferPointeri);//Mat mat = Cv2.ImDecode(ranges, ImreadModes.Grayscale);long UID = YitIdHelper.NextId();string GlueImageDir = LogsUtil.GetLogDir(LogsUtil.GlueImage);ImageFile = await FileHelper.SaveVisionImage1(mat1, GlueImageDir, $"Glue3Dimage_{gm.TireBarcode}_{UID}.png");}break;}} Log.Logger.Debug($"完成3D相机的数据"); Download3DImage(ImageFile);}catch (Exception ex){Log.Logger.Error($"Camera3D  Error {ex.Message}");}GlobalConst.Common.SharedLock = false;workingSet = currentProcess.WorkingSet64;Log.Logger.Debug($"接收3D相机数据后 占用内存{workingSet / mb}MB");}public float GetLength(){return (float)TireInsideLength;}public string SetLength(double length){string result = "";try{Stop();surfacelength = sensor.Setup.GetSurfaceGeneration();//surfacelength.FixedLengthTriggerExternalInputIndex = length;surfacelength.FixedLengthLength = length;Log.Logger.Debug($"设置 3D相机触发轮胎内周长 PLC = [{length}] OK");Start();result = "OK";TireInsideLength = length;}catch (Exception ex){result = "ERROR";Log.Logger.Error($"设置 3D相机触发长度异常 {ex.Message}");}return result;}public string SetEncoderResolution(double value){string result = "";if (value <= 0){return result;}try{Stop();// sensor.Setup.EncoderSpacing = value;sensor.Transform.EncoderResolution = value;Log.Logger.Debug($"设置 3D相机分辨率OK {value}");Start();result = "OK";}catch (Exception ex){result = "ERROR";Log.Logger.Error($"设置 3D相机分辨率异常 value={value} msg={ex.Message}");}return result;}public string GetEncoder(){string result = "";try{if (isCanStatus){if (sensor.State.Value == GoState.Running){result = sensor.Encoder().ToString();}}}catch (Exception ex){Log.Logger.Error($"读取 3D相机编码器数值异常 value = {result} {sensor.State} msg = {ex.Message}");}return result;} public static string Download3DImage(string ImageFile){string result = "";Task.Run(async () =>{ try{EncoderResolution = sensor.Transform.EncoderResolution;TireInsideLength = sensor.Setup.GetSurfaceGeneration().FixedLengthLength;result = "OK";string JPGImageFile = await ConvertToJPG(ImageFile);SignalRClient.GetInstance().SendMsg(GlobalConst.SignalRUser.Glue.Camera3DGlueImage, JPGImageFile); }catch (Exception ex){Log.Logger.Error($" 3D相机 图片出现异常 {ex.Message}");result = "Error";}});return result;}public static async Task<string> ConvertToJPG(string ImageFile){DateTime startTime = DateTime.Now;while (!File.Exists(ImageFile)){if (DateTime.Now - startTime > TimeSpan.FromSeconds(10)){break;}await Task.Delay(200);}Log.Logger.Debug($"PNG转JPG文件 [{ImageFile}]");string extension = Path.GetExtension(ImageFile);Log.Logger.Debug($"PNG转JPG文件 [{extension}]");string JpgImageFile = ImageFile.Replace(extension, ".jpg");//string result = "";//int x = 0;await Task.Run(async () =>{try{using (Image image = Image.FromFile(ImageFile)){image.Save(JpgImageFile, ImageFormat.Jpeg);}}catch (Exception ex){Log.Logger.Error($"PNG转JPG异常 {ex.Message}");// result = "Error";}});return JpgImageFile;}public static async Task<string> ProcessPLYGlueStrip(string PLYFile, GlueCompensationModel gcm){string result = "";string No = "Glue" + DateUtil.CurrentDateID;string ScriptFile = AppSettingsHelper.Configuration["PythonScript:GlueScriptFile"];Log.Logger.Debug($" Open3D 测量  脚本 {ScriptFile}");string PlyResultDir = LogsUtil.GetLogDir(LogsUtil.GlueResultPLY);string str = RunPythonHelper.ExecPythonTireGlue(ScriptFile, PLYFile, PlyResultDir);Log.Logger.Debug($" Open3D 计算结果 {str}");string[] JsonStrResult = str.Split("~~");try{if (JsonStrResult[2].Trim().Length > 1){Log.Logger.Error($" errMsg = {JsonStrResult[2]}");}else{GluePlyResultModel gprm = JsonConvert.DeserializeObject<GluePlyResultModel>(JsonStrResult[1]);gprm.Barcode = PLCTag.GetTagValue(TagNameDesc.GlueTireBarcode, TagValueType.String); gprm.DateTime = DateUtil.CurrentDate.ToString();gprm = GetCompensationResult(gprm, gcm);string jsonStr = JsonConvert.SerializeObject(gprm);SignalRClient.GetInstance().SendMsg(GlobalConst.SignalRUser.Glue.Glue3DResult, jsonStr);}}catch (Exception ex){Log.Logger.Error($"处理 Open3D 计算结果异常 {ex.Message}");} return result;}}
}

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

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

相关文章

线段树专题

落谷1607 #include<bits/stdc.h> using namespace std;#define ls u<<1 #define rs u<<1|1const int N 1e5;int n, k, c, ans; struct line {int l, r, m; // m为候车的牛的数量bool operator<(line b) {return r < b.r;} }s[N];struct tree {int l, …

antV X6的简要使用教程

&#x1f9d1;‍&#x1f393; 个人主页&#xff1a;《爱蹦跶的大A阿》 &#x1f525;当前正在更新专栏&#xff1a;《VUE》 、《JavaScript保姆级教程》、《krpano》、《krpano中文文档》 ​ ​ ✨ 前言 在我们的日常开发工作中&#xff0c;我们经常需要构建复杂的交互式图…

【MM32F3270火龙果】点亮led

文章目录 前言GPIO的工作模式一、有哪些工作模式&#xff1f;1.1 GPIO的详细介绍1.2 GPIO的内部框图输入模式输出部分 二、操作GPIO点亮led2.1 初始化gpio2.2 写gpio 三、示例代码总结 前言 本文将介绍如何在MM32F3270火龙果微控制器上使用Keil开发环境点亮LED。MM32F3270火龙…

Java中使用FlatBuffers实现序列化

Java 中的 FlatBuffers有助于高速数据序列化/反序列化&#xff0c;消除解析开销。它由 Google 开发&#xff0c;为跨平台数据交换提供无模式、内存高效的解决方案。 Java 开发人员可以利用其直接内存访问来实现最佳性能和最小内存占用&#xff0c;从而提高应用程序速度、可扩展…

Kamailio openssl 3.0.x 需要注意的事项

我们留意到 Debian Bookworm 安装的 openssl 版本是 3.0.x 这里有几个地方要注意&#xff1a; modparam("tls", "init_mode", 1)核心参数 tls_threads_mode 配置为 1 或者 配置为 2版本建议用 v 5.8.1 参考链接&#xff1a; #3832#3765#3791 目前官方…

北交所佣金费率标准是多少?北交所相关信息科普

北交所的佣金费率并非固定不变&#xff0c;而是可以根据投资者的需求和证券公司的政策进行调整。目前北交所的佣金费率最低是万分之二。 一般来说&#xff0c;北交所的佣金费率默认在万分之三左右&#xff0c;但这不是固定的费率。根据证券公司的不同&#xff0c;佣金费率可以…

绝地求生:PCL第五轮数据出炉,XDD与林树入选最佳阵容,韦神真在做事了

距离PCL季后赛开赛还有两天时间&#xff0c;小梦还沉浸在常规赛最后一场WCG和TSG争名额的关键之战&#xff0c;现在看来WCG硬贴PeRo房区那波真是没道理&#xff0c;只能解释为太想拿分导致上头了&#xff0c;导致决赛圈没有余力限制TSG&#xff0c;但这何尝不是TSG自己的剧本&a…

算法训练Day52 | ● 84.柱状图中最大的矩形

84.柱状图中最大的矩形 class Solution { public:int largestRectangleArea(vector<int>& heights) {stack<int> s;s.push(-1);s.push(0);int space 0;for(int i1; i<heights.size(); i){while(s.top()! -1 && (iheights.size() || heights[i]<…

SAF文件选择与真实路径转换

一、构建选择文件与回调方法 //文件选择回调ActivityResultLauncher<String[]> pickFile registerForActivityResult(new ActivityResultContracts.OpenDocument(), uri->{if (uri ! null) {Log.e("cxy", "返回的uri:" uri);Log.e("cxy&q…

【JavaEE初阶系列】——利用Servlet API实现表白墙网站(1.6w字深刻了解前后端交互逻辑)

目录 &#x1f393;准备工作 &#x1f393;了解前端部分知识(主要JS&#xff09; &#x1f393;前后端交互部分 &#x1f388;主要思路 &#x1f6a9;提交信息 &#x1f36d;让前端发起一个ajax请求 &#x1f36d;服务器读取上述请求&#xff0c;并计算出响应 &#x1…

【Stylus详解与引入】

文章目录 Stylus详解与引入一、Stylus简介二、Stylus的特性1. 变量2. 嵌套规则3. 混合&#xff08;Mixins&#xff09;4. 函数5. 条件语句和循环 三、Stylus的引入与配置1. 安装Stylus和stylus-loader2. 配置Webpack3. 在Vue项目中使用Stylus4. 编译Stylus代码四、Stylus的性能…

Gateway的基本配置

Gateway的基本配置通常涉及网络、路由、安全性以及其他一些关键元素。以下是一个关于Gateway基本配置的详细指南&#xff1a; 网络连接配置&#xff1a; 设备连接&#xff1a;确保网关设备与内部网络的交换机、集线器或服务器/计算机正确连接。网络拓扑结构应支持内外通信。IP地…

2024-05-08 问AI: 在深度学习中,介绍一下RMSProp 优化器

文心一言 在深度学习中&#xff0c;RMSProp&#xff08;Root Mean Square Propagation&#xff09;优化器是一种常用的优化算法&#xff0c;主要用于神经网络训练的梯度下降算法的变体。它是对Adagrad优化器的一种改进&#xff0c;旨在解决Adagrad中学习率过快下降的问题。 R…

设计模式有哪些基本原则

目录 开闭原则(Open Closed Principle) 里氏替换原则(Liskov Substitution principle) 单一职责原则(Single Responsibility Principle,SRP)

RAC GCS_SERVER_PROCESSES参数

参考文档&#xff1a; GCS_SERVER_PROCESSES (oracle.com) 在awr报告中&#xff0c;看到addm建议如下&#xff1a; 其中有Global Cache Messaging和 Global Cache Congestion Activity During the Analysis Period ----------------------------------- Total database tim…

Linux的编译器

程序编译的过程 程序的编译过程是将源代码转换为可执行文件的一系列步骤。这个过程涉及多个阶段&#xff0c;主要包括预处理、编译、汇编和链接。下面详细介绍每个阶段&#xff1a; 1. 预处理&#xff08;Preprocessing&#xff09; 在实际编译之前&#xff0c;源代码文件首…

Android bootchart 分析启动性能工具使用

bootchart简介 bootchart 可为整个系统提供所有进程的 CPU 和 I/O 负载细分。该工具不需要重建系统映像&#xff0c;可以用作进入 systrace 之前的快速健全性检查。 1. 板端配置&#xff1a; 在Android 板端启用 bootchart&#xff0c;请运行以下命令&#xff1a; 2. Bootch…

Git克隆仓库报错:HTTP/2 stream 1 was not closed

报错及原因 fatal: unable to access ‘https://github.com/xxx/’: HTTP/2 stream 1 was not closed cleanly before end of the underlying stream http/2 和 http/1.1之间有个区别是“HTTP2 基于 SPDY&#xff0c;专注于性能&#xff0c;最大的一个目标是在用户和网站间只…

PMP考试未通过该怎么办?如何补考?

2024年3月10日PMP考试成绩正在陆续分批次发布。没有考试通过的同学就会疑问&#xff0c;考试没考过怎么办&#xff1f;可不可以补考&#xff1f;面对PMP考试没通过的情况&#xff0c;我们应该如何应对呢&#xff1f; PMP考试没合格可以补考&#xff0c;而且一年内有两次补考机…

编译官方原版的openwrt并加入第三方软件包

最近又重新编译了最新的官方原版openwrt-2305&#xff08;2024.3.22&#xff09;&#xff0c;此处记录一下以待日后参考。 目录 1.源码下载 1.1 通过官网直接下载 1.2 映射github加速下载 1.2.1 使用github账号fork源码 1.2.2 创建gitee账号映射github openwrt 2.编译准…