openpose+smplx

boss不知道从哪淘换来的pose_iter_440000.caffemodel和basicModel_f_lbs_10_207_0_v1.0.0.pkl让我搞2d图像3d蒙皮,人都麻了,最后还是从头过了一下openpose和smplx。这里记录一下

openpose

这个是用来得到骨架坐标的,可以理解为(x,y,置信度)
不过boss那猴年马月的版本已经不适配数据格式了,现在与下游衔接的版本格式如下

{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":"face_keypoints_2d":"hand_left_keypoints_2d":"hand_right_keypoints_2d":
省略了一些暂时没用的东西

Ubuntu

cd openpose/
git submodule update --init --recursive --remote
mkdir build/
cd build/
cmake-gui ..

我卡在了cmake报错

-- Could NOT find GFlags (missing: GFLAGS_INCLUDE_DIR GFLAGS_LIBRARY) 
-- Could NOT find Glog (missing: GLOG_INCLUDE_DIR GLOG_LIBRARY) 
CMake Error at /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:137 (message):Could NOT find Protobuf (missing: Protobuf_INCLUDE_DIR)
Call Stack (most recent call first):/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)/usr/share/cmake-3.10/Modules/FindProtobuf.cmake:543 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)CMakeLists.txt:429 (find_package)-- Configuring incomplete, errors occurred!
See also "/home/pengpeng/wyh/openpose/build/CMakeFiles/CMakeOutput.log".
See also "/home/pengpeng/wyh/openpose/build/CMakeFiles/CMakeError.log".

看到一些教程1,教程2元旦就懒得继续了,不过Win10上有用简易版

Win10

直接走bat就可以,不过有可能下载不了模型,那就直接在这个博文下载,然后移到对应文件夹就好

bin\OpenPoseDemo.exe --video examples\media\video.avi --face --hand --write_json output_json_folder/

输入当然可以换成图片,不如说1650小破机子连face和hand都不能做,更别提视频了
注意这里没有做face和hand的话,后面smplx也要相应去掉,否则张量维度出问题。
另外骨架和原图的可视化不能保存,只能保存前面提到的坐标json,不过xxw23大佬推荐我用某方法,之后看一下
另外一张图里有多人的坐标的话好像smplx也会乱,就像游戏里建模扯面筋了一样,还得多试试

smplx

说真的我一开始被smpl搞得晕头转向,真的没有好好把这个讲清楚怎么做的😭都是那个破basicModel什么pkl的直接或者改一下python3就用,感觉就是个固定的骨架坐标啊,pose等参数就是固定/随机值,很迷

好在看到xxw23大佬的博文明白点该怎么用到任意图像上了

大体上看大佬的教程就好,我再补充点我的想法

  • 输入暂时没有看到哪里能修改文件名,现在只能让输入固定改叫01_img,之后再看看
  • 前面说的取消face和hand就是在yaml里面改成False
  • 关于1-改成~,其实smplx里有个类似名的tgm_conversion.py有个样板,是用的torch.logical_not
  • smplify-x的requirements里有个human-body-prior是git来的,命令行翻不了墙就直接下压缩包pip install -e什么的常规操作了。human-body-prior的requirements里面还有俩git来的configer和mesh,前者也还好,后者就有点麻烦了,下面详说

Win10

Installing collected packages: pyzmq, psbody-meshRunning setup.py develop for psbody-mesherror: subprocess-exited-with-error× python setup.py develop did not run successfully.│ exit code: 1╰─> [30 lines of output][VERSION] read version is 0.4running developE:\Anaconda3\envs\gait\lib\site-packages\setuptools\command\easy_install.py:156: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.warnings.warn(E:\Anaconda3\envs\gait\lib\site-packages\setuptools\command\install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.warnings.warn(running egg_infocreating psbody_mesh.egg-infowriting psbody_mesh.egg-info\PKG-INFOwriting dependency_links to psbody_mesh.egg-info\dependency_links.txtwriting namespace_packages to psbody_mesh.egg-info\namespace_packages.txtwriting requirements to psbody_mesh.egg-info\requires.txtwriting top-level names to psbody_mesh.egg-info\top_level.txtwriting manifest file 'psbody_mesh.egg-info\SOURCES.txt'reading manifest file 'psbody_mesh.egg-info\SOURCES.txt'reading manifest template 'MANIFEST.in'adding license file 'LICENSE.txt'writing manifest file 'psbody_mesh.egg-info\SOURCES.txt'running build_ext[CGAL] deflating cgal from "mesh\thirdparty\CGAL-4.7.tar.gz" to "D:\Doctor\smplify-x\src\human-body-prior\mesh\build\temp.win-amd64-3.9"building 'psbody.mesh.aabb_normals' extensioncreating build\temp.win-amd64-3.9\Releasecreating build\temp.win-amd64-3.9\Release\meshcreating build\temp.win-amd64-3.9\Release\mesh\srcC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\x86_amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DNDEBUG=1 -DCGAL_NDEBUG=1 -DMESH_CGAL_AVOID_COMPILED_VERSION=1 -DCGAL_HAS_NO_THREADS=1 -DCGAL_NO_AUTOLINK_CGAL=1 -Imesh/src -IE:\Anaconda3\envs\gait\lib\site-packages\numpy\core\include -ID:\Doctor\smplify-x\src\human-body-prior\mesh\build\temp.win-amd64-3.9\Release\CGAL-4.7\include -IE:\Anaconda3\envs\gait\include -IE:\Anaconda3\envs\gait\include -IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE -IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt -IC:\Program Files (x86)\Windows Kits\8.1\include\shared -IC:\Program Files (x86)\Windows Kits\8.1\include\um -IC:\Program Files (x86)\Windows Kits\8.1\include\winrt /EHsc /Tpmesh/src/aabb_normals.cpp /Fobuild\temp.win-amd64-3.9\Release\mesh/src/aabb_normals.obj -O3cl : Command line warning D9002 : ignoring unknown option '-O3'aabb_normals.cppe:\anaconda3\envs\gait\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(14) : Warning Msg: Using deprecated NumPy API, disable it with #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSIONd:\doctor\smplify-x\src\human-body-prior\mesh\mesh\src\AABB_n_tree.h(9): fatal error C1083: Cannot open include file: 'CGAL/AABB_tree.h': No such file or directoryerror: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit code 2[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error× python setup.py develop did not run successfully.
│ exit code: 1
╰─> [30 lines of output][VERSION] read version is 0.4running developE:\Anaconda3\envs\gait\lib\site-packages\setuptools\command\easy_install.py:156: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.warnings.warn(E:\Anaconda3\envs\gait\lib\site-packages\setuptools\command\install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.warnings.warn(running egg_infocreating psbody_mesh.egg-infowriting psbody_mesh.egg-info\PKG-INFOwriting dependency_links to psbody_mesh.egg-info\dependency_links.txtwriting namespace_packages to psbody_mesh.egg-info\namespace_packages.txtwriting requirements to psbody_mesh.egg-info\requires.txtwriting top-level names to psbody_mesh.egg-info\top_level.txtwriting manifest file 'psbody_mesh.egg-info\SOURCES.txt'reading manifest file 'psbody_mesh.egg-info\SOURCES.txt'reading manifest template 'MANIFEST.in'adding license file 'LICENSE.txt'writing manifest file 'psbody_mesh.egg-info\SOURCES.txt'running build_ext[CGAL] deflating cgal from "mesh\thirdparty\CGAL-4.7.tar.gz" to "D:\Doctor\smplify-x\src\human-body-prior\mesh\build\temp.win-amd64-3.9"building 'psbody.mesh.aabb_normals' extensioncreating build\temp.win-amd64-3.9\Releasecreating build\temp.win-amd64-3.9\Release\meshcreating build\temp.win-amd64-3.9\Release\mesh\srcC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\x86_amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DNDEBUG=1 -DCGAL_NDEBUG=1 -DMESH_CGAL_AVOID_COMPILED_VERSION=1 -DCGAL_HAS_NO_THREADS=1 -DCGAL_NO_AUTOLINK_CGAL=1 -Imesh/src -IE:\Anaconda3\envs\gait\lib\site-packages\numpy\core\include -ID:\Doctor\smplify-x\src\human-body-prior\mesh\build\temp.win-amd64-3.9\Release\CGAL-4.7\include -IE:\Anaconda3\envs\gait\include -IE:\Anaconda3\envs\gait\include -IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE -IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt -IC:\Program Files (x86)\Windows Kits\8.1\include\shared -IC:\Program Files (x86)\Windows Kits\8.1\include\um -IC:\Program Files (x86)\Windows Kits\8.1\include\winrt /EHsc /Tpmesh/src/aabb_normals.cpp /Fobuild\temp.win-amd64-3.9\Release\mesh/src/aabb_normals.obj -O3cl : Command line warning D9002 : ignoring unknown option '-O3'aabb_normals.cppe:\anaconda3\envs\gait\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(14) : Warning Msg: Using deprecated NumPy API, disable it with #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSIONd:\doctor\smplify-x\src\human-body-prior\mesh\mesh\src\AABB_n_tree.h(9): fatal error C1083: Cannot open include file: 'CGAL/AABB_tree.h': No such file or directoryerror: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit code 2[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.

GPT4让我去安装CGAL和Boost,没有成功
另外也找到一些其他教程1,教程2,暂时也没有成功

Ubuntu

Installing collected packages: psbody-meshRunning setup.py develop for psbody-mesherror: subprocess-exited-with-error× python setup.py develop did not run successfully.│ exit code: 1╰─> [81 lines of output][VERSION] read version is 0.4/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.!!********************************************************************************Requirements should be satisfied by a PEP 517 installer.If you are using pip, you can try `pip install --use-pep517`.********************************************************************************!!dist.fetch_build_eggs(dist.setup_requires)/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/dist.py:945: SetuptoolsDeprecationWarning: The namespace_packages parameter is deprecated.!!********************************************************************************Please replace its usage with implicit namespaces (PEP 420).See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages for details.********************************************************************************!!ep.load()(self, ep.name, value)running develop/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/command/develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated.!!********************************************************************************Please avoid running ``setup.py`` and ``easy_install``.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://github.com/pypa/setuptools/issues/917 for details.********************************************************************************!!easy_install.initialize_options(self)/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/setup.py:145: SetuptoolsDeprecationWarning: setup.py install is deprecated.!!********************************************************************************Please avoid running ``setup.py`` directly.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.********************************************************************************!!return _install.initialize_options(self)running egg_infowriting psbody_mesh.egg-info/PKG-INFOwriting dependency_links to psbody_mesh.egg-info/dependency_links.txtwriting namespace_packages to psbody_mesh.egg-info/namespace_packages.txtwriting requirements to psbody_mesh.egg-info/requires.txtwriting top-level names to psbody_mesh.egg-info/top_level.txtreading manifest file 'psbody_mesh.egg-info/SOURCES.txt'reading manifest template 'MANIFEST.in'adding license file 'LICENSE.txt'writing manifest file 'psbody_mesh.egg-info/SOURCES.txt'running build_ext[CGAL] deflating cgal from "mesh/thirdparty/CGAL-4.7.tar.gz" to "/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39"building 'psbody.mesh.aabb_normals' extensiongcc -pthread -B /home/pengpeng/.conda/envs/wyh/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /home/pengpeng/.conda/envs/wyh/include -I/home/pengpeng/.conda/envs/wyh/include -fPIC -O2 -isystem /home/pengpeng/.conda/envs/wyh/include -fPIC -DNDEBUG=1 -DCGAL_NDEBUG=1 -DMESH_CGAL_AVOID_COMPILED_VERSION=1 -DCGAL_HAS_NO_THREADS=1 -DCGAL_NO_AUTOLINK_CGAL=1 -Imesh/src -I/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include -I/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include -I/home/pengpeng/.conda/envs/wyh/include/python3.9 -c mesh/src/aabb_normals.cpp -o build/temp.linux-x86_64-cpython-39/mesh/src/aabb_normals.o -O3 -fopenmpIn file included from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/ndarraytypes.h:1929:0,from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/arrayobject.h:5,from mesh/src/aabb_normals.cpp:4:/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]#warning "Using deprecated NumPy API, disable it with " \^~~~~~~In file included from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/Profile_counter.h:53:0,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/internal/AABB_tree/AABB_node.h:24,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/internal/AABB_tree/AABB_traversal_traits.h:24,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/AABB_tree.h:26,from mesh/src/AABB_n_tree.h:9,from mesh/src/aabb_normals.cpp:10:/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/config.h:85:10: fatal error: boost/config.hpp: 没有那个文件或目录#include <boost/config.hpp>^~~~~~~~~~~~~~~~~~compilation terminated.error: command '/usr/bin/gcc' failed with exit code 1[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error× python setup.py develop did not run successfully.
│ exit code: 1
╰─> [81 lines of output][VERSION] read version is 0.4/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.!!********************************************************************************Requirements should be satisfied by a PEP 517 installer.If you are using pip, you can try `pip install --use-pep517`.********************************************************************************!!dist.fetch_build_eggs(dist.setup_requires)/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/dist.py:945: SetuptoolsDeprecationWarning: The namespace_packages parameter is deprecated.!!********************************************************************************Please replace its usage with implicit namespaces (PEP 420).See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages for details.********************************************************************************!!ep.load()(self, ep.name, value)running develop/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/setuptools/command/develop.py:40: EasyInstallDeprecationWarning: easy_install command is deprecated.!!********************************************************************************Please avoid running ``setup.py`` and ``easy_install``.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://github.com/pypa/setuptools/issues/917 for details.********************************************************************************!!easy_install.initialize_options(self)/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/setup.py:145: SetuptoolsDeprecationWarning: setup.py install is deprecated.!!********************************************************************************Please avoid running ``setup.py`` directly.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.********************************************************************************!!return _install.initialize_options(self)running egg_infowriting psbody_mesh.egg-info/PKG-INFOwriting dependency_links to psbody_mesh.egg-info/dependency_links.txtwriting namespace_packages to psbody_mesh.egg-info/namespace_packages.txtwriting requirements to psbody_mesh.egg-info/requires.txtwriting top-level names to psbody_mesh.egg-info/top_level.txtreading manifest file 'psbody_mesh.egg-info/SOURCES.txt'reading manifest template 'MANIFEST.in'adding license file 'LICENSE.txt'writing manifest file 'psbody_mesh.egg-info/SOURCES.txt'running build_ext[CGAL] deflating cgal from "mesh/thirdparty/CGAL-4.7.tar.gz" to "/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39"building 'psbody.mesh.aabb_normals' extensiongcc -pthread -B /home/pengpeng/.conda/envs/wyh/compiler_compat -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -Wall -fPIC -O2 -isystem /home/pengpeng/.conda/envs/wyh/include -I/home/pengpeng/.conda/envs/wyh/include -fPIC -O2 -isystem /home/pengpeng/.conda/envs/wyh/include -fPIC -DNDEBUG=1 -DCGAL_NDEBUG=1 -DMESH_CGAL_AVOID_COMPILED_VERSION=1 -DCGAL_HAS_NO_THREADS=1 -DCGAL_NO_AUTOLINK_CGAL=1 -Imesh/src -I/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include -I/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include -I/home/pengpeng/.conda/envs/wyh/include/python3.9 -c mesh/src/aabb_normals.cpp -o build/temp.linux-x86_64-cpython-39/mesh/src/aabb_normals.o -O3 -fopenmpIn file included from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/ndarraytypes.h:1929:0,from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/ndarrayobject.h:12,from /home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/arrayobject.h:5,from mesh/src/aabb_normals.cpp:4:/home/pengpeng/.conda/envs/wyh/lib/python3.9/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:17:2: warning: #warning "Using deprecated NumPy API, disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]#warning "Using deprecated NumPy API, disable it with " \^~~~~~~In file included from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/Profile_counter.h:53:0,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/internal/AABB_tree/AABB_node.h:24,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/internal/AABB_tree/AABB_traversal_traits.h:24,from /media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/AABB_tree.h:26,from mesh/src/AABB_n_tree.h:9,from mesh/src/aabb_normals.cpp:10:/media/pengpeng/新加卷/pose_smpl/smplify-x/src/human-body-prior/mesh/build/temp.linux-x86_64-cpython-39/CGAL-4.7/include/CGAL/config.h:85:10: fatal error: boost/config.hpp: 没有那个文件或目录#include <boost/config.hpp>^~~~~~~~~~~~~~~~~~compilation terminated.error: command '/usr/bin/gcc' failed with exit code 1[end of output]note: This error originates from a subprocess, and is likely not a problem with pip.

其实本质上也是psbody-mesh这个子包有问题,也是要Boost库,不过Ubuntu上确实方便多了

sudo apt-get update
sudo apt-get install libboost-all-dev

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

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

相关文章

如何使用工具查看机系统信息,应用管理、文件管理

摘要 克魔助手是一款功能丰富的手机助手软件&#xff0c;提供了诸多实用的功能模块&#xff0c;包括手机系统信息显示、应用管理、文件管理、描述文件安装与测试、崩溃日志、实时日志、截图、活跃程序、性能监控和网络抓包等。本文将对克魔助手的界面概览和各功能模块进行详细…

数据结构面试题目

什么是数据结构&#xff1f;计算机存储、组织数据的方式。数据结构包括逻辑结构、物理结构和对数据的一系列操作。其中逻辑结构包括了线性结构&#xff08;线性表、栈和队列&#xff09;和非线性结构&#xff08;树、图&#xff09;&#xff1b;物理结构包括顺序存储结构和链式…

UGUI:一个轻量级的TFTLCD彩色显示屏GUI库

目录 一、引言 二、移植说明 三、如何使用UGUI函数 2.1 UGUI函数介绍 2.2 窗口控件管理 2.3 如何建立一个按键 四、如何实现触摸控制 一、引言 UGUI是一个经过精心设计的轻量级TFT-LCD彩色显示屏GUI库&#xff0c;旨在为用户提供高效、稳定且易于使用的图形用户界面。该…

邮件营销最佳时段:提升邮件打开率与转化率的策略

在如今数字时代&#xff0c;电子邮件营销已成为企业推广及与客户互动的有效途径。但是&#xff0c;一个普遍的现象是&#xff1a;何时发送电子邮件才能更合理&#xff1f;本文将探讨电子邮件营销的出色推送机会&#xff0c;并提供一些有用的提议&#xff0c;以帮助企业更好地规…

Leetcode 2971. Find Polygon With the Largest Perimeter

Leetcode 2971. Find Polygon With the Largest Perimeter 1. 解题思路2. 代码实现 题目链接&#xff1a;2971. Find Polygon With the Largest Perimeter 1. 解题思路 这道题目算是这次双周赛最简单的一道题目了&#xff0c;只要先对所有的边进行排序之后使用贪婪算法考察每…

OrientDB使用教程:全面了解图数据库

图数据库在当今数据处理领域中扮演着越来越重要的角色&#xff0c;而OrientDB作为一种多模型的数据库&#xff0c;具有图数据库、文档数据库和对象数据库的特性&#xff0c;为应对不同场景提供了灵活的解决方案。本教程将简要介绍OrientDB的使用&#xff0c;包括基本概念、安装…

记录一次云服务器使用docker搭建kafka的过程

创建网络 一定要将zookeeper注册中心与kafka建在一个network中&#xff0c;不然在springboot 集成 kakfa的demo测试代码中进行消息发送时会超时&#xff0c;报错&#xff1a; E x c e p t i o n t h r o w n w h e n s e n d i n g a m e s s a g e w i t h k e y ‘ n u l l…

PostgreSql 索引使用技巧

索引种类详情可参考《PostgreSql 索引》 一、适合创建索引的场景 经常与其他表进行连接的表&#xff0c;在连接字段上应该建索引。经常出现在 WHERE 子句中的字段&#xff0c;特别是大表的字段&#xff0c;应该建索引。经常出现在 ORDER BY 子句中的字段&#xff0c;应该建索…

python subprocess run 和 Popen 的一些使用和注意事项

文章目录 一、run二、Popen NAME subprocess - Subprocesses with accessible I/O streams MODULE REFERENCE https://docs.python.org/3.9/library/subprocess The following documentation is automatically generated from the Python source files. It may be incomplete, …

第二百三十五回

文章目录 概念介绍使用方法示例代码 我们在上一章回中介绍了PopupMenuButton相关的内容&#xff0c;本章回中将介绍如何在任意位置显示PopupMenu.闲话休提&#xff0c;让我们一起Talk Flutter吧。 概念介绍 我们在上一章回中介绍了PopupMenuButton相关的内容&#xff0c;它主要…

Alibaba Cloud Linux 3.2104 LTS 64位系统可以选择吗?

阿里云Alibaba Cloud Linux 3.2104 LTS 64位镜像是可以选择的&#xff0c;它阿里云打造的Linux服务器操作系统发行版&#xff0c;针对云服务器ECS做了大量深度优化&#xff0c;完全兼容RHEL/CentOS生态和操作方式&#xff0c;如果是阿里云服务器ECS建议选择Alibaba Cloud Linux…

嵌入式开发——GD32F4之ADC查询

通道 ADC0 ADC1 ADC2 IN0 PA0 PA0 PA0 IN1 PA1 PA1 PA1 IN2 PA2 PA2 PA2 IN3 PA3 PA3 PA3 IN4

QGraphicsItem器件移动及旋转相关问题

一、前言 Qt的图形视图框架中&#xff0c;可以使用如下接口设置图元坐标&#xff1a; void QGraphicsItem::setPos(const QPointF &pos)Sets the position of the item to pos, which is in parent coordinates. For items with no parent, pos is in scene coordinates.…

【数据结构】排序之插入排序

排序目录 1.前言2. 排序的概念及其运用2.1 排序的概念2.2 排序的运用2.3 常见的排序算法 3. 插入排序3.1 基本思想3.2 直接插入排序3.2.1 直接插入排序实现3.2.1.1 分析3.2.1.2 代码实现 3.3 希尔排序3.3.1 希尔排序实现3.3.1.1 分析3.3.1.2 代码实现 4. 附代码4.1 sort.h4.2 s…

golang基础学习以及代码实例

一、Go语言基础 这是我整理非常全的go语言基础知识点以及代码实例&#xff0c;对GO有情趣的同学可以通过这个总结以及代码实例快速入门&#xff01;加油同学们&#xff01; 1 Go介绍 是Google开发的一种静态强类型、编译型、并发型&#xff0c;并具有垃圾回收功能的编程语言…

Lumerical------按键中断程序执行

Lumerical------中断程序执行 引言正文 引言 在 Lumerical 中&#xff0c;很多时候我们需要通过 sweep 的方式来获取我们想要的结果&#xff0c;然而&#xff0c;有时候当我们运行程序后发现书写的脚本有问题时&#xff0c;我们想要强行终止程序的执行&#xff0c;该怎么办呢&…

一次JAVA调用C++的.so库的过程

1、准备好.so文件 2、java代码引入jna jar包 <dependency><groupId>net.java.dev.jna</groupId><artifactId>jna</artifactId><version>5.9.0</version> </dependency>3、代码实现 package com.jimi.tracker.util;import c…

Linux文件系统中的目录

目录说明/Linux操作系统所有目录的入口binbinaries缩写&#xff0c;存放二进制可执行文件sbinsuperuser binaries缩写&#xff0c;存放二进制可执行文件&#xff0c;只有root才能访问etcetcetera缩写&#xff0c;存放系统配置文件usrunix sharedresources缩写&#xff0c;用于存…

K8s攻击案例:组件未授权访问导致集群入侵

K8s集群往往会因为组件的不安全配置存在未授权访问的情况&#xff0c;如果攻击者能够进行未授权访问&#xff0c;可能导致集群节点遭受入侵。比较常见的的组件未授权访问漏洞&#xff0c;主要包括 API Server 未授权访问、kubelet 未授权访问、etcd 未授权访问、kube-proxy 不安…

C++系列-第1章顺序结构-4-整型int

C系列-第1章顺序结构-4-整型int 在线练习&#xff1a; http://noi.openjudge.cn/ https://www.luogu.com.cn/ 总结 本文是C系列博客&#xff0c;主要讲述整型int的用法 整型int 在C中&#xff0c;int 是一个关键字&#xff0c;用于声明整型变量。int 类型用于存储整数&…