• head头的设计:rfcn light-head rfcn

    时间:2023-11-13 22:34:14

    faster缺点:1.不是全卷积,roi出来后是两个fc层,这样会丧失平移变性。  2.每个roi都要单独经过两个fc层,也就是分别进行分类和回归,耗时也有种说法是roi-pooling后导致平移变性丧失,这个地方还要深入思考resnet在以faster结构为检测框架的时候,是stage4和之前作特...

  • zoj 4020 The 18th Zhejiang University Programming Contest Sponsored by TuSimple - G Traffic Light(广搜)

    时间:2023-11-10 21:36:42

    题目链接:The 18th Zhejiang University Programming Contest Sponsored by TuSimple - G Traffic Light题解:题意自己翻译,此题首先肯定是要广搜的,不过要开一个1e5*1e5的数组好像有点困难,所以用结构体来存每个点的...

  • [ZOJ 4020] Traffic Light

    时间:2023-08-30 13:54:50

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4020很简单的一个bfs题,是我想多了。顺便学习一下C++的STL中的vector的用法:https://www.cnblogs.com/youpeng/p/1077...

  • [原]Unity3D深入浅出 - 光源组件(Light)

    时间:2023-08-06 21:27:08

    Unity中提供了四种光源:Directional light: 方向光,类似太阳的日照效果。Point light: 点光源,类似蜡烛。Spotlight: 聚光灯,类似手电筒。Area Light:区域光,无法用作实时光照,一般用于光照贴图烘培。接下来介绍光源的参数:如下图Type:可以选择以上...

  • Terrain & Light & Camera

    时间:2023-07-29 14:47:02

    【Terrain Engine】1、When you press F, wherever your mouse is positioned will be moved to the center of the Scene View. This allows you to touch up an ar...

  • WPF学习11:基于MVVM Light 制作图形编辑工具(2)

    时间:2023-03-24 08:37:26

    本文是WPF学习10:基于MVVM Light 制作图形编辑工具(1)的后续这一次的目标是完成两个任务。画布效果:画布上,选择的方案是:直接以Image作为画布,使用RenderTargetBitmap绑定为Image的图片源,这样可以为后续的导出图片功能提供很大的便利。对拖动栏XAML进行如下修改...

  • Unity 3D光源-Point Light点光源详解/灯泡、模拟灯光效果教程

    时间:2023-02-14 21:54:21

    Unity4大光源之点光源本文提供全流程,中文翻译。 Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 —— 高分辨率用户请根据需求调整网页缩放比例) Chinar —— 心分享、心创新!助力快速理解 Unity 提供的 4 大光源之一点光源系统为新手节省宝贵的时间,避免采坑!...

  • poj Light Up dfs

    时间:2023-01-16 20:05:57

    这个题目说两种思路 第一种:也是比较多人采用的,一个个格子顺序搜素,放灯不放灯两种状态,加一个剪枝,如果当前点为墙,且其上面为黑暗的地方,剪枝。思路非常清晰。 第二种:也是本菜采用的,效果很差,先找有限制的障碍点,其周围挨个放灯,每次从头到尾扫描找这样的点。 如果没有这样的点,...

  • light1370 欧拉函数打表

    时间:2023-01-16 19:37:39

    /*给定n个数ai,要求欧拉函数值大于ai的最小的数bi求sum{bi}*/#include<bits/stdc++.h>using namespace std;#define maxn 1000005int n,a[maxn];int phi[maxn],m,v[maxn],prime...

  • light oj 1068 - Investigation 数位DP

    时间:2023-01-07 16:30:15

    思路:典型的数位DP!!!dp[i][j][k]:第i位,对mod取余为j,数字和对mod取余为k。注意:由于32位数字和小于95,所以当k>=95时,结果肯定为0.这样数组就可以开小点,不会超内存!!代码如下: #include<iostream> #include<cst...

  • Light OJ 1027 - A Dangerous Maze (数学-期望)

    时间:2023-01-03 16:38:50

    题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1027题目大意: 一个迷宫, 有n个门,选择一个门花费为|ai|, 如果选择的门是正数, 那么直接走出迷宫, 否则重新回到起始位置。选择每一道门的概率是一样的。求走出迷宫的花费的期...

  • 【Android】No resource found that matches the given name 'Theme.Sherlock.Light.NoActionBar'

    时间:2022-12-30 20:54:38

    被这个问题困扰了好久……错误如下:error: Error retrieving parent for item: No resource found that matches the given name 'Theme.Sherlock.Light.NoActionBar'.如图所示:寻找在路上…...

  • LED Decorative Light Supplier Introduction - LED Track Light Products

    时间:2022-12-26 11:08:44

    LED Decorative Light Supplier    introduction: LED track light is a track light with LED as the light source, alias: LED track light. It is a kind of ...

  • 项目引入android-support-v7-appcompat遇到的问题,no resource found that matches the given name 'android:Theme.AppCompat.Light'

    时间:2022-12-22 21:18:01

    一、问题今天准备使用v7包中的ToolBar来用,但是在styles.xml中引入Theme.AppCompat.Light的时候,报错“no resource found that matches the given name 'android:Theme.AppCompat.Light'”。二、...

  • 2-配置Andriod环境时的错误。。。Theme.AppCompat.Light

    时间:2022-12-22 21:17:43

    编译或运行时可能会出现错误: Error:Error retrieving parent for item: No resource found that matches the given name “Theme.AppCompat.Light” 这个问题我在刚开始写“HelloWorld”时就遇...

  • 【noip 模拟赛curse,light,maze】 题解

    时间:2022-12-17 08:34:50

    2018.10.16 总结:考的不好 原因: 1.考的时候没状态,读题读不进去 2.考的时候不仔细,该得分没得到 T1:curse 1、咒语 (curse.pas/c/cpp) 【题目描述】 亮亮梦到自己来到了魔法城堡,但一扇巨大的石门阻拦了他通向城堡内的路。正当他沮丧之际,突然发现门上有一处机关,...

  • B. Light It Up 思维题

    时间:2022-12-09 20:01:08

    Recently, you bought a brand new smart lamp with programming features. At first, you set up a schedule to the lamp. Every day it will turn power ...

  • You Light Up My Life(你照亮我生命)

    时间:2022-12-09 20:06:20

    So many nights I'd sit by my windowWaiting for some one to sing me his songSo many dreams I keep deep inside meAlone in the darkBut now you're come al...

  • Light oj 1085 - All Possible Increasing Subsequences (简单dp + 离散化 + BIT)

    时间:2022-11-30 19:25:44

    题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1085 题意:         问你有多少个上升子序列。 思路:         dp[i]表示以第i个数结尾的上升序列数量。 1 #include <iostream...

  • (light OJ 1005) Rooks dp

    时间:2022-11-21 05:45:15

    http://www.lightoj.com/volume_showproblem.php?problem=1005    PDF (English)StatisticsForumTime Limit: 1 second(s)Memory Limit: 32 MBA rook is a piece ...