[Cambrian (1)] Use of DSP libraries: scaling and splicing practice, based on CNVE_LIB (Vision Engine Library), developing IPM splicing of DSP

Article directory MSP resources for Cambrian SD5223C Prepare Basic use DSP development dependencies 1 Look at the file “cn_dsp.h” 2 Look at the file “sample_comm_dsp.h” 3 Develop DSP resize Look at the core file cnve.h file 4 Develop IPM splicing of DSP REMap method for IPM splicing The following is the general usage of the […]

Practical data analysis | Association rules analysis – shopping cart analysis

Table of Contents 1. Data and analysis objects 2. Purpose and analysis tasks 3. Methods and Tools 4. Data reading 5. Data understanding 6. Data preprocessing 7. Generate frequent itemsets 8. Calculate correlation 9. Visualization 1. Data and analysis objects Dataset link: Online Retail.xlsx This data set records 541,909 online communication records from December 01, […]

C language realizes the effect of mine sweeping + demining during demining

My first blog (focusing on the effect of spreading out when demining that I achieved) 1. Start the game: print a menu to prompt the user for input (the function is just packaged code and has no return value) void Menu() { printf(“******************\ “); printf(“****1: Play Minesweeper****\ “); printf(“****0:Exit Minesweeper****\ “); printf(“******************\ “); } Define […]

Jellyfin transcoding and tone mapping efficiency improvements: enable processor low voltage mode (GuC/HuC)

Jellyfin transcoding and tone mapping efficiency improvements System environment Pull the nyanmisaka/jellyfin image Turn on low voltage mode Jellyfin configuration Enable QSV and low voltage mode decoding Turn on tone mapping (based on OpenCL) Actual measurement Verify low voltage mode Actual measurement of transcoding frame rate Test video overview Version 221029 vs Version 230901 Turn […]

Typescript generics, keyof, typeof, index type, mapping

Typescript generics A major part of software engineering is building components that not only have well-defined and consistent APIs, but are also reusable. Components that can handle today’s and tomorrow’s data will give you the most flexible ability to build large software systems. Use generic type variables function identity<Type>(arg: Type): Type { return arg; } […]

Use FastDFS and Nginx for port mapping to achieve remote access to local file servers

Article directory Preface 1. Build the FastDFS file system locally 1.1 Environment installation 1.2 Install libfastcommon 1.3 Install FastDFS 1.4 Configure Tracker 1.5 Configure Storage 1.6 Test upload and download 1.7 Integration with Nginx 1.8 Install Nginx 1.9 Configure Nginx 2. LAN test access to FastDFS 3. Install cpolar intranet penetration 4. Configure public network […]

Nignx installation & load balancing & static and dynamic separation and Linux front-end project deployment & mapping domain names to specific IP addresses

Table of Contents 1. Introduction to nginx 1.1 Definition 1.2 Background 1.3 Function 2. nginx is equipped with load balancing to provide front and rear separation of background interface data 2.1 nginx installation 2.1.1 Download dependencies 2.1.2 Download and unzip the installation package 2.1.3 Install nginx 2.1.4 Start nginx service 2.2 tomcat load balancing 2.2.1 […]

python batch PING

Use asynchronous ICMP to implement network connectivity detection on multiple hosts This article will introduce a multi-threaded network connectivity detection tool implemented using Python’s asynchronous IO library. This tool is based on the ICMP protocol and can detect network connectivity on multiple hosts at the same time, and output information such as network status, IP […]