摘要: 首先打开查看: 题目的要求是找出用户名为hello的注册码,初步猜测是注册机,我们简单的注册一下看看。 用户名就是hello随便你输入一个注册码,结果不出意外就是无效的,从这里我们可以看到这里出现的新的messagebox,初步猜测用ollydbg调试的时候会用到,这里猜测最后的flag就是注册码 阅读全文
posted @ 2019-06-04 08:13 Maggieisxin 阅读(310) 评论(0) 推荐(0) 编辑
摘要: https://github.com/csuhan/s2anet Abstract 在过去的十年中,航空图像中的目标检测取得了重大进展,这些目标通常分布在大尺度变化和任意方向上。然而,现有的方法大多依赖于启发式定义的不同尺度、角度和纵横比的锚,锚盒与轴向卷积特征之间存在严重的错位,导致分类评分和定位 阅读全文
posted @ 2021-12-26 21:22 Maggieisxin 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 背景知识: 哈希学习(learning to hash)是通过机器学习机制将数据映射成二进制串的形式,能显著减少数据的存储和通信开销。提高整体的学习效率 用二进制哈希码表示数据,尽可能的保留数据原空间相似性。 学习方法: step1: 对原空间的样本采用度量学习降维,从而得到一个低维空间的实数向量 阅读全文
posted @ 2021-12-26 20:37 Maggieisxin 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 论文题目:Recovering Realistic Texture in Image Super-resolution by Deep Spatial Feature Transform 作者:Xintao Wang Ke Yu Chao Dong Chen Change Loy 发表:CVPR 2 阅读全文
posted @ 2021-11-14 16:47 Maggieisxin 阅读(166) 评论(0) 推荐(0) 编辑
摘要: import torch from torch._C import Size from d2l import torch as d2l torch.set_printoptions(2) #精简打印 def multibox_prior(data,sizes,ratios): #生成以每个像素为中心 阅读全文
posted @ 2021-11-05 22:20 Maggieisxin 阅读(380) 评论(0) 推荐(0) 编辑
摘要: from sys import gettrace from typing import ForwardRef import torch from torch.nn.modules import flatten import torchvision from torch import nn from 阅读全文
posted @ 2021-11-05 20:44 Maggieisxin 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Help on function scatter in module matplotlib.pyplot: scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=Non 阅读全文
posted @ 2021-10-26 21:21 Maggieisxin 阅读(52) 评论(0) 推荐(0) 编辑
摘要: import os import shutil import xml.etree.ElementTree as ET def xml_process(xml_save_path,xml_path): #xml_count = os.listdir(xml_path) os.chdir(xml_pat 阅读全文
posted @ 2021-09-28 09:06 Maggieisxin 阅读(207) 评论(0) 推荐(0) 编辑
摘要: `#对于挑选出来的文件重新命名 import os import shutil def rename(images_path,xml_path): xml_ = os.listdir(xml_path) images_ = os.listdir(images_path) i = 1 j=1 for 阅读全文
posted @ 2021-09-28 09:01 Maggieisxin 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 这个世界上没有不带伤的人,无论什么时候,你都要相信,真正治愈自己的,只有自己。不去抱怨,尽量担待;不怕孤单,努力沉淀。 阅读全文
posted @ 2021-06-01 10:17 Maggieisxin 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 学习pytorch的使用,首先第一步就是在Windows下安装pytorch,目前pytorch只支持linux和mac os系统,我的电脑是windows的,需要在电脑中安装Linux系统。 1、 重启电脑,在Microsoft应用商店内搜索Linux的软件这里推荐Ubuntu 安装完成之后在启动 阅读全文
posted @ 2021-04-19 12:43 Maggieisxin 阅读(577) 评论(0) 推荐(0) 编辑