码迷,mamicode.com
首页 >  
搜索关键字:salient region detec    ( 2773个结果
asp.net core webapi Session 内存缓存
Startup.cs文件中的ConfigureServices方法配置: #region Session内存缓存 services.Configure<CookiePolicyOptions>(options => { options.CheckConsentNeeded = context => ...
分类:Windows程序   时间:2020-01-21 10:46:51    阅读次数:100
[cvpr17]Multi-View 3D Object Detection Network for Autonomous Driving
3D点云做detection的一篇milestone paper。经典的two-stage方法(region proposal-based method)。思路来自于经典的faster rcnn。 整个模型如下图 图一. 整体模型 3D Point Cloud Representation 这篇文章 ...
分类:Web程序   时间:2020-01-19 12:57:44    阅读次数:185
.netcore 的一些简单封装配置文件配置动态注入到ioc
场景一些配置需要经常用到可以尝试把配置配置到配置类中需要使用时只需要通过构造函数注入配置类即可。 json文件结构示例 "SmsSetting": { //253 "Host": "123", "Account": "123", "Password": "123", "Sign": "123",// ...
分类:Web程序   时间:2020-01-19 12:25:55    阅读次数:140
Asp.net Core JsonWebToken记录
nuget 引入 Microsoft.AspNetCore.Authentication.JwtBearer Startup中 app.UseAuthentication(); #region JWT //读取配置文件 services.Configure<TokenManagement>(Conf ...
分类:Web程序   时间:2020-01-18 22:49:12    阅读次数:125
HBase表的设计(二)之行健的设计
HBase行健的设计 在设计HBase表的时候,行健是唯一重要的事情。应该基于预期的访问模式来为行健进行建模 行健决定了访问HBase表时可以得到的性能。这个结论根植于两个事实: 1、region基于行健为一个区间的行提供服务,并且负责区间内的每一行。 2、HFile在硬盘上存储有序的行。 当reg ...
分类:其他好文   时间:2020-01-16 01:05:01    阅读次数:74
Asp.net MVC Vue Axios无刷新请求数据和响应数据
Model层Region.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebApplication1.Models { public class R ...
分类:移动开发   时间:2020-01-15 23:10:36    阅读次数:135
C#调用事务执行sql语句
region 调用事务 public static bool UpdateByTran(List sqlList) { SqlConnection conn = new SqlConnection(connString); SqlCommand cmd = new SqlCommand(); cmd ...
分类:数据库   时间:2020-01-13 23:43:04    阅读次数:103
底层的增删查改
#region 助手类 public class Dbhelper { static string sqlConnectionString = @"Database=CMS;Server=42.159.145.218,1401;User ID =azureadmin; Password =P@ss1 ...
分类:其他好文   时间:2020-01-13 13:14:01    阅读次数:85
JVM之GC算法的实现(垃圾回收器)
其他收集器的工作范围是整个新生代或者老年代、G1收集器的工作范围是整个Java堆。在使用G1收集器时,它将整个Java堆划分为多个大小相等的独立区域(Region)。虽然也保留了新生代、老年代的概念,但新生代和老年代不再是相互隔离的,他们都是一部分Region(不需要连续)的集合。 ...
分类:编程语言   时间:2020-01-12 15:17:29    阅读次数:91
C# 挂起 进程 PostMessage使用
#region 暂停进程 //检测进程是否存在 public List<IntPtr> get_pressId(string pressName = "explorer") { List<IntPtr> list = new List<IntPtr>(); //获得进程ID Process[] pr ...
分类:Windows程序   时间:2020-01-11 15:12:08    阅读次数:93
2773条   上一页 1 ... 23 24 25 26 27 ... 278 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!