-
MF-DCCA-333
多重分形去趋势交叉相关系数多重分形去趋势波动分析,用于不同时间序列的重分形交叉相关性分析(Multifractal Detrending Cross Correlation Coefficient Multifractal Detrending Fluctuation Analysis for Multifractal Cross Correlation Analysis of Different Time Series)
- 2018-09-06 14:46:56下载
- 积分:1
-
鸢尾花
说明: 通过鸢尾花数据集,构建和训练模型,得到相应的聚类散点图(Through the iris data set, construct and train the model to get the corresponding clustering scatterplot)
- 2020-07-08 15:00:27下载
- 积分: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
-
网易云音乐下载器
可以免费下载网易云音乐的vip音乐,是一个使用python编写的脚本软件。
- 2022-05-10 10:55:20下载
- 积分:1
-
1
判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。(Determine if it is a palindrome. That is, 12321 is the number of palindromes, the single digit is the same as the 10,000 digit, and the ten digit is the same as the thousand digit.)
- 2020-06-17 17:40:03下载
- 积分:1
-
MintPy-master
InSAR代码,用于进行InSAR处理。Python代码(Is the InSAR code for InSAR processing. Python code)
- 2020-06-17 05:40:02下载
- 积分:1
-
dhp-master
说明: 实现DHP(双启发式动态规划)网络,包括执行网络和评价网络,采用BP网络实现。(DHP (double heuristic dynamic programming) network, including execution network and evaluation network, is implemented by BP network.)
- 2020-02-18 21:25:41下载
- 积分:1
-
defogging_hekaiming
说明: 何凯明的暗通道去雾算法,Python版本代码(image defogging based on dark channel)
- 2020-03-31 16:42:23下载
- 积分:1
-
Python基础教程(第3版) - 2017
Python基础教程(第3版),2017年出版,学习python的好工具。(Python Basic Tutorial (3rd Edition))
- 2020-06-16 14:34:28下载
- 积分:1
-
Esri-CityEngine-tutorV1.0
Esri CityEngine tutorV1.0 是针对于CityEngine初学者入门的流通教程(This PDF is a wide spread textbook for learners who want to start CityEngine)
- 2013-10-10 21:51:28下载
- 积分:1