logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

深度优先搜索解决八数码问题

//程序描述:基于盲目搜索策略的宽度优先搜索方法#include <iostream>#include <string>#include <cstring>#include <cmath>#include <vector>// #include <queue>#include <stack>#include &lt

tensorflow手写数字识别

importtensorflow as tffromtensorflow.keras import datasets, layers, optimizers, Sequential, metrics# 设置GPU使用方式# 获取GPU列表gpus = tf.config.experimental.list_physical_devices('GPU')if gpus:try:# 设置GPU为增长式

#tensorflow#python#深度学习
Rosalind第62题:Finding Disjoint Motifs in a Gene

ProblemGiven three strings,, and, we say thatandcan beinterwovenintoif there is some substring ofmade up ofandas disjointsubsequences.For example, the strings "" and "" can be interwoven into "". Howe

手势识别python

手势识别,准确率比较高

文章图片
#python#opencv#计算机视觉
opencv报错

1. ubuntu2020安装opencv报错cv2.error: OpenCV(4.3.0) /home/XXX/YYY/opencv-4.3.0/modules/highgui/src/window.cpp:651: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with W

C++ opencv入门

OpenCV探索之路(八):重映射与仿射变换 - Madcola - 博客园

#c++#opencv#开发语言
opencv python 图像特征提取与描述

Harris角点检测import cv2import numpy as npfilename = 'images/building.jpg'img = cv2.imread(filename)gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)gray = np.float32(gray)# 输入图像必须是 float32 ,最后一个参数在 0.04 到 0.05

tensorflow求解函数极值

importnumpy as npfrommpl_toolkits.mplot3d import Axes3Dfrommatplotlib import pyplot as pltimporttensorflow as tfdef himmelblau(x):# himmelblau函数实现return (x[0] ** 2 + x[1] - 11) ** 2 + (x[0] + x[1] **

ubuntua安装FinalShell

rm -f finalshell_install_linux.sh ;wget www.hostbuf.com/downloads/finalshell_install_linux.sh;chmod +x finalshell_install_linux.sh;./finalshell_install_linux.sh;

#ubuntu#linux#运维
在 docker容器中调用和执行宿主机的 docker操作

首先说一下,如何在docker中执行宿主机的docker操作,我们管它叫docker in docker。至于为什么要在docker中操作宿主机的docker,优点不言而喻,你既可以将你的具体需求容器化部署,又不用直接在宿主机上安装(假设我们没有办法在docker中操作宿主机的docker,那么我们只能将这样的软件程序直接安装到宿主机上,这样显然是不利于管理和维护的)。实现这种需求,其实非常简单,

    共 26 条
  • 1
  • 2
  • 3
  • 请选择