
知识点
Goodness2020
专注数学、机器学习
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
论文记录2025
SimpleNet 是一种用于检测和定位异常的简单且易于应用的神经网络。当前的方法主要采用无监督方式解决异常检测问题,即训练过程中只使用正常样本。用于生成局部特征。用于将局部特征转换到目标领域。通过向正常特征添加高斯噪声来伪造异常特征。它通过合成异常来训练模型,避免了对大量真实异常样本的依赖。用于区分异常特征和正常特征。在推理过程中,异常特征生成器将被丢弃。我们的方法基于三个直觉。首先,将预训练的特征转换为面向目标的特征有助于避免域偏差。原创 2025-07-07 15:04:55 · 1019 阅读 · 0 评论 -
学习记录2025
S . 表示CMakeLists.txt在哪个目录-B build CMake生成结果在哪个路径 build就是路径名简短或进入build 文件夹下 cmake在build文件夹下编译常量:CMAKE_CURRENT_LIST_DIR CMAKE_BUILD_TYPE# INC_DIRset(# 第三方库头文件目录set(# 设置第三方库文件路径set(set(# 引入头文件macro(# 引入头文件${INC_DIR}原创 2025-07-07 15:04:30 · 995 阅读 · 0 评论 -
利用CV打印程序运行时间
计时原创 2023-12-14 14:09:24 · 528 阅读 · 0 评论 -
python常用功能
python常用功能原创 2023-11-30 19:56:18 · 175 阅读 · 0 评论 -
深度图像的存储
深度图像的存储原创 2022-11-03 17:22:59 · 299 阅读 · 0 评论 -
Pytorch中tensor与numpy的数据转换
Pytorch中tensor与numpy的数据转换原创 2022-01-25 18:03:38 · 1926 阅读 · 0 评论 -
FFT/DFT/DCT
DFT/DCT原创 2022-09-26 11:19:05 · 886 阅读 · 0 评论 -
全概率公式和贝叶斯公式
全概率公式和贝叶斯公式原创 2022-07-21 20:54:07 · 9734 阅读 · 0 评论 -
b=a和b=a.copy()的区别
b=a和b=a.copy()的区别原创 2022-07-21 20:10:34 · 741 阅读 · 0 评论 -
Python中list和ndarray的区别
import numpy as npnum = [3, 4, 3]print(type(num)) # <class 'list'>num2 = num * 2print(num2) # [3, 4, 3, 3, 4, 3]arr = np.array(num)print(type(arr)) # <class 'numpy.ndarray'>arr2 = arr * 2print(arr2) # [6 8 6]tup = tuple(num).原创 2022-05-30 16:49:32 · 863 阅读 · 0 评论 -
C语言string和char之间的转换
#include <stdio.h>#include <string>int main(){ string str = "good"; const char* ch1 = str.c_str(); // string --> const char* const char* ch2 = str.data(); // string --> const char* int len = strlen(ch1); .原创 2022-05-27 13:53:06 · 2824 阅读 · 0 评论 -
C语言指针理解
#include <stdio.h>void swap(int* p1, int* p2){ int temp; temp = *p1; *p1 = *p2; *p2 = temp;}int main(int argc, char** argv){ int x, y; int* pt_x; int* pt_y; x = 2, y = 8; // x,y是一个整形变量 pt_x = &x; /.原创 2022-05-26 10:24:16 · 178 阅读 · 0 评论 -
Halcon读取文件夹下所有图片
list_files ('G:/1/test2', ['files','follow_links'], testImageFiles)tuple_regexp_select (testImageFiles, ['\\.(jpg)$ || .(bmp)$', 'ignore_case'], testImageFiles)原创 2022-05-25 09:06:24 · 930 阅读 · 0 评论 -
C++按行读取txt中数据
#include <string>#include <fstream>#include <iostream>using namespace std;int main(){ cout << "Hello World!" << endl; string path = "E:\\ImageDeepLearning110\\name_list.txt"; ifstream in(path); string .原创 2022-05-09 16:29:37 · 690 阅读 · 0 评论 -
python使用集合统计相同元素的个数
python使用集合统计相同元素的个数原创 2022-04-19 20:50:05 · 3333 阅读 · 0 评论 -
C++元组的读取
typedef tuple<int, int, char> encodeUnit; // 定义结构体encodeUnit tup = tuple<5, 2, 'a'>; // 初始化参数cout << get<0>(tup) << "," << get<1>(tup) << "," << get<2>(tup) << endl; // 打印 5,2,a...原创 2022-04-16 13:47:17 · 768 阅读 · 0 评论