YOLOv1
论文链接:https://arxiv.org/abs/1506.02640
检测原理
将检测问题转换成回归问题,一个CNN就搞定。即得到一个框的中心坐标(x, y)和宽高w,h,然后作回归任务。 B是两个框,5是指参数量,x y w h是确定…
题目链接:满足条件的01序列 #include <iostream>
#include <algorithm>using namespace std;typedef long long LL;const int mod 1e9 7;int qmi(int a, int k, int p)
{int res 1;while(k){if(k & 1) res (LL) res * a % p;a (LL) a * a % p;…