-
multiagent
实现了一个吃豆人小游戏的功能,使用了多种搜索算法,包括DFS以及BFS等(Implements a Pac-Man game features, using a variety of search algorithms, including DFS and BFS, etc.)
- 2020-10-28 21:59:59下载
- 积分:1
-
houseprice
kaggle--入门题,房价预测,常用机器学习算法。(Kaggle entry questions, house price forecasts.)
- 2020-12-21 20:39:08下载
- 积分:1
-
创建和签名自签证书
创建和签名自签证书,非常适用于搭建测试环境使用,可以减少重复的使用命令进行繁琐的操作,可用于自动化运维环境使用。例如搭建测试的ssl证书加密的网站,或者自建VPN服务器使用。
- 2022-05-13 08:55:37下载
- 积分:1
-
开心麻花影视作品分析(项目源码下载)-Python项目开发案例集锦13.zip
开心麻花影视作品分析(项目源码下载)-Python项目开发案例集锦13.zip
- 2019-09-22下载
- 积分:1
-
08神经网络逼近股票收盘均价2
说明: python演示神经网络来逼近股价走势的预测,基于时间序列的预测(Python demonstrates neural network to approximate the prediction of stock price trend, based on time series prediction)
- 2019-05-01 16:23:47下载
- 积分:1
-
python hog 特征提取
import cv2
import numpy as np
import math
import matplotlib.pyplot as plt
class Hog_descriptor():
def __init__(self, img, cell_size=16, bin_size=8):
self.img = img
self.img = np.sqrt(img / np.max(img))
self.img = img * 255
self.cell_size = cell_size
self.bin_size = bin_size
self.angle_unit = 360 / self.bin_size
# assert type(self.bin_size) == int, "bin_size should be integer,"
# assert type(self.cell_size) == int, "cell_size should be integer,"
# assert type(self.angle_unit) == int, "bin_size should be divisible by 360"
def extract(self):
height, width = self.img.shape
gradient_magnitude, gradient_angle = self.global_gradient()
gradient_magnitude = abs(gradient_magnitude)
cell_gradient_vector = np.zeros((int(height / self.cell_size), int(width / self.cell_size), self.bin_size))
for i in rang
- 2022-04-02 09:16:48下载
- 积分:1
-
Univariate Moran Index
说明: Univariate Moran's I 指数计算过程脚本,运用ArcGIS自带的arcpy工具包(Univariate Moran's I calculation script using ArcPy tool in ArcGIS Desktop software)
- 2017-06-09 15:51:02下载
- 积分:1
-
split_excel2
按照制定的行对excel进行分割为不同的文件夹及不同文件(Divide the excel into different folders and different files according to the line made)
- 2017-08-02 10:48:26下载
- 积分:1
-
净面积计算工具
说明: ARCGIS图斑净面积计算工具,AreaCalculationTool(A Tool for Calculating Net Area of Patches)
- 2020-06-17 03:20:01下载
- 积分:1
-
echopursuit
智能车控制,预瞄追踪,实车验证,参加过比赛。好用好用好用(Intelligent vehicle control, preview tracking, real vehicle verification, participated in the competition. Good use, good use and good use.)
- 2018-11-17 20:52:44下载
- 积分:1