Simple drawing tool based on C++(MSVC) and OpenGL

simple-openl-graphic-tool Source code can be downloaded from this project repository: github gitee ?Simple drawing tool based on C++ (MSVC) and OpenGL? Dynamically draw graphics through rubber band technology; Liang-Barsky algorithm batches clipping of straight lines and polylines; Bresenham algorithm draws ellipses at the midpoint of ellipses. Contains executable files, environment configuration guide. Personal website: www.bytesc.top […]

Python implements HBA hybrid bat intelligent algorithm optimization support vector machine classification model (SVC algorithm) project practice

1. Project background The bat algorithm is a heuristic search algorithm proposed by Professor Yang in 2010 based on swarm intelligence. It is an effective method to search for the global optimal solution. This algorithm is based on iterative optimization, initializing to a set of random solutions, then iteratively searching for the optimal solution, and […]

Source code compilation Qt 5.15.9+msvc2019

Detailed steps are given in the official documentation: Building Qt Sources Building Qt 5 from Git (Wiki) Note: This article is based on windows11 + vs2019x64 + qt5.15.9, Qt WebEngine is not compiled The summary is as follows: Preparatory phase Qt for Windows-Requirements Install python. I am using anaconda python 3.11, which requires 2.7 or […]

webrtc-m79-msvc compile H264

0 is written in front The main reference of this article: webrtc 4577 version vs compilation_tusong86’s blog-CSDN blog 4577 is m93. Due to different source code versions, there may be certain discrepancies and can be modified according to the actual situation; Thanks to the author for his contribution; 1 Compilation parameters Powershell runs: // debug […]

Use informer controller to bind ingress and svc, create SVC to automatically generate ingress

Introduction We already know that there are two main ways for Service to expose services outside the cluster: NodePort and LoadBalancer. However, both methods have certain shortcomings: The disadvantage of the NodePort method is that it will occupy a lot of cluster machine ports. When the number of cluster services increases, this disadvantage becomes more […]

Point cloud library PCL environment configuration: QT 5.9.2+ msvc2017 + PCL1.8.1 + VTK8.0

1. Background: Since the project needs to filter, calculate, display and other operations on the sensor data, the existing lines that make up the surface are sequentially processed by the recursive median average filtering algorithm, the surface shape is not smooth enough, and the effect is relatively poor. Therefore, after consulting the data, I decided […]

Generation and deployment of dynamic libraries (.dll and .a files) under IDE/mingw (compared to .dll and .lib under MSVC)

Article directory overview problem generation DLL dynamic library based on mingw EXE executable program based on mingw \*.a files using the Qt library in the Makefile Who works under *.a files and *.dll under mingw episode What exactly is the \*.a file generated by mingw Why mingw’s dll can be used to compile and link […]

Python implements PSO particle swarm optimization support vector machine classification model (svc algorithm) project combat

Explanation: This is a machine learning practical project (with data + code + documentation + video explanation). If you need data + code + documentation + video explanation, you can go directly to the end of the article to get it. 1. Project background PSO is the English abbreviation of Particle Swarm Optimization (Particle Swarm […]

iOS static way to bypass svc anti-dynamic debugging

In iOS anti-dynamic debugging, “svc #0x80” is commonly used. Through svc assembly, the call to ptrace and syscall is realized, and anti-dynamic debugging is realized, so that lldb cannot be attached to the app process, and it is not easy to locate the code location, adding anti-debugging bypass difficulty. How to bypass this anti-debugging method? […]