- 博客(28)
- 资源 (1)
- 收藏
- 关注
原创 undefined reference to `cv::imshow(cv::String const&, cv::_InputArray const&)‘
编译报错:undefined reference to `cv::imshow(cv::String const&, cv::_InputArray const&)'解决办法:CMakeLists.txt中加入find_package(OpenCV 3 QUIET)target_link_libraries(program_name ${OpenCV_LIBS})OpenCV 3 是安装OpenCV的版本号,如果装的4.*就写OpenCV 4program_name是可执行
2022-04-30 10:20:47 4972 2
原创 Pangolin安装报错:make: *** 没有规则可制作目标“pypangolin_pip_install”。 停止。
Pangolin安装报错:make: *** 没有规则可制作目标“pypangolin_pip_install”。 停止。按照github上的步骤安装,到$ cmake --build . -t pypangolin_pip_install这步就报错make: *** 没有规则可制作目标“pypangolin_pip_install”。 停止。
2022-04-19 15:41:19 5581 1
原创 No module named ‘rosdep2‘报错
No module named 'rosdep2'报错按照wiki.ros.org上的教程,执行$ rospack depends1 beginner_tuto就报错了:ModuleNotFoundError: No module named 'rosdep2'ModuleNotFoundError: No module named 'rosdep2'[rospack] Error: could not find python module 'rosdep2.rospack'. is rosdep
2022-03-06 10:03:02 2705 2
原创 Invoking “cmake“ failed报错
按照wiki.ros.org上的教程安装完,创建ros工作空间,$ catkin_make它就报错了:CMake Error at /opt/ros/noetic/share/catkin/cmake/empy.cmake:30 (message): Unable to find either executable 'empy' or Python module 'em'... try installing the package 'python3-empy'最后就来一句Invoking “
2022-03-05 20:32:27 20990 5
原创 Papers Notes_7_ Batch Normalization--Batch Normalization: Accelerating Deep Network Training by...
Papers Notes_7_ Batch Normalization--Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate ShiftIntroductionBatch NormalizationalgorithmworksbenefitReferencesIntroductionmini-batchestimate the gradient over the training
2021-09-07 15:29:15 246
原创 Papers Notes_6_ DCGAN--Unsupervised Representation Learning with Deep Convolutional GAN
Papers Notes_6_ DCGAN--Unsupervised Representation Learning with Deep Convolutional GANApproachArchitectureApproachscale up GANs using CNNs to model imagesthe all convolutional netreplace deterministic spatial pooling functions (such as maxpooling) wi
2021-09-06 18:13:13 171
原创 Papers Notes_5_ GAN--Generative Adversarial Nets
Papers Notes_5_ GAN--Generative Adversarial NetsAdversarial NetsReferencesAdversarial Netsdiscriminative modelgenerative modelReferencesDeep Residual Learning for Image Recognition
2021-08-07 20:19:41 224
原创 Papers Notes_4_ ResNet--Deep Residual Learning for Image Recognition
Papers Notes_4_ ResNet--Deep Residual Learning for Image RecognitionNetwork DepthResidual MappingArchitectureNetwork Depthnetwork depth is of crucial importance, and the leading results on the challenging ImageNet dataset all exploit “very deep” models,
2021-07-25 12:35:17 377
原创 Papers Notes_3_ GoogLeNet--Going deeper with convolutions
Papers Notes_3_ GoogLeNet--Going deeper with convolutionsArchitectureInception moduleGoogLeNetArchitectureInception moduleparallel conv. with different kernel sizevisual information should be processed at various scales and then aggregated→the next
2021-07-22 19:33:45 340
原创 Papers Notes_2_ VGG--Very Deep Convolutional Networks for Lage-scale Image Recognition
Papers Notes_2_ VGG--Very Deep Convolutional Networks for Lage-scale Image RecognitionArchitectureTrainingArchitectureinput-224×224 RGB imagepreprocess-subtract the mean RGB value,computed on the training set,from each pixelstride-fixed to 1 pixelpad
2021-07-21 11:06:31 235
原创 Papers Notes_1_ AlexNet--ImageNet Classification with Deep Convolutional Neural Networks
Papers Notes_1_ AlexNet--ImageNet Classification with Deep Convolutional Neural NetworksArchitectureReLU NonlinearityLocal Response NormalizationOverlapping PoolingOverall ArchitectureReducing OverfittingData AugmentationDropoutDetails of LearningReference
2021-07-20 10:31:14 140
原创 FCOS论文及源码详解(一)
FCOS论文及源码详解(一)FCOS论文Fully Convolutional One-Stage Object DetectorMulti-level Prediction with FPN for FCOSCenter-ness for FCOS参考文献FCOS论文以下内容摘自论文(FCOS: Fully Convolutional One-Stage Object Detection),本人英语水平极差,翻译勉强看看就好Almostall state-of-the-art object dete
2020-12-02 12:15:01 3555
原创 ffmpeg 压缩视频(参数详解)
ffmpeg 压缩视频代码(Python)import threadingimport osdef zip(): compress = "ffmpeg -i C:/Users/123456/Videos/Captures/1234.mp4 -r 30 -c:v libx264 -preset veryslow \ -profile:v baseline -crf 24 -c:a copy C:/Users/123456/Videos/Captures/12.mp4" isRun =
2020-11-03 19:18:12 3209
原创 应用virtualenv重新配置Python环境,并在jupyterlab中使用虚拟环境(Windows)
应用virtualenv重新配置Python环境win10操作系统,并在jupyter lab中应用配置的虚拟环境代码块都指在CMD中输入命令步骤删空所有模块此步骤用于"重新整理安装的模块",计算机尚未安装任何模块则跳过pip freeze>python_modules.txtpip uninstall -r python_modules.txt -y安装virtualenvpip install virtualenvpip install virtualenvwrapp
2020-10-06 23:14:13 811
原创 如何使用Python息屏(详解)
如何使用Python息屏(详解)重点参考Python息屏、关闭显示器代码系统资源调用和shell32.dll简介Microsoft Docs代码from ctypes import windllimport timeHWND_BROADCAST = 0xffffWM_SYSCOMMAND = 0x0112SC_MONITORPOWER = 0xF170MonitorPowerOff = 2SW_SHOW = 5def screenOff(): windll.user32
2020-09-19 09:48:29 1986 2
原创 如何用Python求众数
如何用Python求众数在书里(参考文献[1])看到有这样的代码:max(set(A),key=A.count)它可以返回列表A中的众数,现对其进行解释。set博客 python set() 用法.中提到:set() 函数用于创建一个无序不重复元素集,删除重复数据。不过直接用max(A,key=A.count),结果是一样的。key关于max()函数中的参数key,Python官方文档中写道:The key argument specifies a one-argument ordering
2020-09-18 20:32:47 14589
原创 如何用Python做一个游戏防沉迷程序
如何用Python给游戏加防沉迷又名:我杀我自己重点参考【实战案例】利用Python做出趣味版防沉迷小程序Python3.7将代码打包成exe程序并添加图标,一分钟学会!代码#这是一个防沉迷程序import psutilimport osimport tkinterimport tkinter.messageboximport timeclass Regulation: def __init__(self): self.ban_week=[i for i in range(
2020-09-17 12:32:59 2125 1
原创 VS2017打包项目
详细过程https://blog.csdn.net/u014234260/article/details/80067254这位博主写的比较清楚常见问题没有安装与部署https://marketplace.visualstudio.com/items?itemName=visualstudioclient.MicrosoftVisualStudio2017InstallerProjects...
2019-06-03 16:09:13 1251
原创 Python:字符宽度相同的字体(等宽字体)
Python:字符间距相同的字体使用Python IDLE打印句子时[^1],某些字体因各字符大小不同导致字符位置难以控制。[^1]:但直接双击.py运行时,打开DOS窗口,其显示并不受IDLE设置字体的影响如Comic Sans Ms:而Courier:在此罗列一些字符间距相同的字体CourierCourier New _Lucida Sans TypewriterMing...
2019-05-05 10:06:40 4337
原创 Python:format方法嵌套使用
Python:format方法嵌套使用调用方法format时需要用{}将替换字段括起,若想用变量设定格式参数,需嵌套使用,但{}会相互影响,则使用{{及}}指定在结果中包含花括号。示例:>>> price_width=10>>> item_width=15>>> width=price_width+item_width &g...
2019-05-04 22:46:27 4213 1
一个游戏防沉迷程序(Python)
2020-09-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人