-
Running EchoMimicV2 on Windows 11
EchoMimicV2 is an opensource framework for audio driven human portrait animation. Compared to many other solutions (talking head) which only focusing on facial animation and head movement, this framework includes upper-body movement. The official repository tested the system on the Linux environment. However, this article records the process of running this framework on Windows 11…
-
Grafana Usage
Grafana is an open-source analytics and interactive visualization web application. Grafana is designed to be a universal dashboard solution. Key aspects of Grafana include: Installation Download page: https://grafana.com/grafana/download?edition=oss Your Grafana server will be hosted at http://[your Grafana server ip]:3000 The default Grafana login is If you reboot your server, the Grafana Service may not restart…
-
Prometheus Usage
Installation Download page: https://prometheus.io/download/ Access: reverse proxy with nginx: Add HTTPS: Add basic authentication: open /etc/nginx/sites-enabled/prometheus: update: Drop external port: iptables settings will be lost in case of system reboot. You will need to reapply them manually, or install iptables-persistent This will save your settings into two files called, /etc/iptables/rules.v4 /etc/iptables/rules.v6 Any changes you make to the iptables configuration…
-
GitHub Actions
Understanding the workflow file sample 1: official one sample 2: UE package Self-hosted runners follow this: Adding self-hosted runners Note: On Windows, if you want to install the self-hosted runner application as a service, you must open a shell with administrator privileges. We also recommend that you use C:\actions-runner as the directory for the self-hosted…
-
OpenCV C++ Crash Course Notes: Samples
Binary Image: 0 or 1 Gray Scale Image: RGB Image: Importing Images Importing Video Webcam Reading Processing: Gray, Blur, Canny Edge Detector Processing: Dilate, Erode Resize Crop Region of Interest(RoI) Draw Shapes & Text Warping Color Detection & Trackbar Detect Shapes & Contours Face Detection References Error happened.
-
How to use std::vector in C++
std::vector is a dynamic array with continuous physical storage space. There is no need to specify its size, which will expand as needed. compared to normal arrays, std::vector provides many APIs. Get Started Adds an element to its end: push_back Removes the last element: pop_back Returns the number of elements: size How to iterate over…
-
Cook Content or Package Project freezes in UE5
I faced a problem: when I cook content or package project in UE5, it freezes, and the output log doesn’t update. Environment: Unreal 5.0.3 Windows 10 Visual Studio 2022 I have tried 3 behaviors, it seems that the first two did not work. delete the Saved directory changed network proxy for a network resource The…