Remarks

四种简单的图像显著性区域特征提取方法-----AC/HC/LC/FT。

痴心易碎 提交于 2020-04-20 18:15:12
四种简单的图像显著性区域特征提取方法-----> AC/HC/LC/FT。 分类: 图像处理 2014-08-03 12:40 4088人阅读 评论 (4) 收藏 举报 salient region detec 显著性检测 laviewpbt 2014.8.3 编辑 Email: laviewpbt@sina.com QQ:33184777 最近闲来蛋痛,看了一些显著性检测的文章,只是简单的看看,并没有深入的研究,以下将研究的一些收获和经验共享。 先从最简单的最容易实现的算法说起吧: 1、 LC算法 参考论文: Visual Attention Detection in Video Sequences Using Spatiotemporal Cues 。 Yun Zhai and Mubarak Shah. Page 4-5。 算法原理部分见论文的第四第五页。 When viewers watch a video sequence, they are attracted not only by the interesting events, but also sometimes by the interesting objects in still images. This is referred as the spatial attention. Based on the

【C#】分享一个可携带附加消息的增强消息框MessageBoxEx

假如想象 提交于 2020-04-20 14:20:23
--------------201806111122更新--------------- 更新至2.0。主要是增加自定义按钮文本的功能,另项目已放到 https://github.com/ahdung/MsgBox ,欢迎f**k --------------201507160917更新--------------- 无意中发现标准消息框在Windows7是有声音的,只是在Windows server 2008(R2)无声,而我用的刚好是后者,所以误以为是MessageBeep API在所有NT6系统都不工作造成~汗,有人在 stackoverflow 也提过这问题。但我仍然决定使用PlaySound API,不做修改 将声音处理交给ProcessIcon方法负责。之前考虑松耦合,所以将MessageBoxIcon和声音分开处理,但其实声音就是根据前者而来,两者天然就是耦合的,分开处理多此一举 --------------201507091034更新--------------- 首先感谢猿友 E204 在回复中的反馈。 解决双击【详细信息】按钮造成的Checked状态改变问题,办法是让ToggleButton忽略WM_LBUTTONDBLCLK消息 修正收起详细信息区逻辑,改为直接取用plAttachZone.Height。之前是取ExpandHeight,会造成视觉体验问题 --

前后分离的 springboot 上传文件 图片

Deadly 提交于 2020-04-16 13:45:54
【推荐阅读】微服务还能火多久?>>> 1.application.properties #上传文件大小限制spring.servlet.multipart.max-file-size=500MBspring.servlet.multipart.max-request-size=500MB 2.前端 //上传 uploadServer: function (){ todata.append("FFILE", fhFile); todata.append("PARENT_ID", this.PARENT_ID); todata.append("NAME", this.pd.NAME); todata.append("REMARKS", this.pd.REMARKS); todata.append("SHARE", this.SHARE); //发送 post 请求提交保存 $.ajax({ xhrFields: { withCredentials: true }, url: httpurl+'mfolder/upload', type: 'POST', data: todata, async: false, cache: false, contentType: false, processData: false, success: function(data){ if(

web系统安全运营之基础- 基于DFA算法的高性能的敏感词,脏词的检测过滤算法类(c#).

 ̄綄美尐妖づ 提交于 2020-04-16 11:58:42
【推荐阅读】微服务还能火多久?>>> 【概述】做好一个web系统的安全运维,除了常规的防注入,防入侵等,还有一个检测并过滤敏感词,脏词.. 这件事做得不好,轻则导致一场投诉或纠纷,重则导致产品被勒令关闭停运。 废话少说,先看下代码,可以拿过去直接使用。 1 using Microsoft.VisualBasic; 2 using System; 3 using System.Collections.Generic; 4 using System.IO; 5 using System.Linq; 6 using System.Text; 7 8 namespace OpenCore.ContentSecurity 9 { 10 /// <summary> 11 /// 功能简介:基于DFA算法的高效率非法关键词检测过滤类(杜绝违法内容) 12 /// 开发前参考内容: https://blog.csdn.net/u011966339/article/details/72832197 13 /// 更新日志: 14 /// 2020-4-15:加载字典的处理采用静态构造方法中处理,避免频繁加载,提升性能. 15 /// 支持多词库文件加载. 16 /// 优化了算法的细节,提高健壮性。 17 /// </summary> 18 public class

Code-Helper:SqlHelper.cs

旧时模样 提交于 2020-04-13 15:40:53
【今日推荐】:为什么一到面试就懵逼!>>> ylbtech-Code-Helper:SqlHelper.cs 1. 返回顶部 1、 // =============================================================================== // This file is based on the Microsoft Data Access Application Block for .NET // For more information please go to // http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp // =============================================================================== using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Collections; namespace PetShop.DBUtility { /// <summary> /// The SqlHelper class is

Code-Helper:OracleHelper.cs

与世无争的帅哥 提交于 2020-04-13 15:34:46
【今日推荐】:为什么一到面试就懵逼!>>> ylbtech-Code-Helper:OracleHelper.cs 1. 返回顶部 1、 using System; using System.Configuration; using System.Data; using System.Data.OracleClient; using System.Collections; namespace PetShop.DBUtility { /// <summary> /// A helper class used to execute queries against an Oracle database /// </summary> public abstract class OracleHelper { // Read the connection strings from the configuration file public static readonly string ConnectionStringLocalTransaction = ConfigurationManager.ConnectionStrings[ " OraConnString1 " ].ConnectionString; public static readonly string

How to make Visual Studio intellisense to show the remarks portion of XML comments?

浪子不回头ぞ 提交于 2019-12-01 14:07:05
问题 When typing code, I really like the intellisense feature of Visual Studio 2010 (Professional), especially that I am able to look up XML comments of types in use. (See Documentation from Microsoft). This works so far. However, the remarks section of XML code comments does not show up. I would consider this an extremely useful feature, since there is often useful information that can not get easily guessed from the summary. (Which is why we have a the remarks section, i guess) How to explore

JDBC操作元数据示例-- DatabaseMetaData接口

霸气de小男生 提交于 2019-11-29 12:47:32
package com.util; import java.sql.CallableStatement; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import oracle.jdbc.driver.OracleConnection; /** * @Description: JDBC操作元数据示例-- DatabaseMetaData接口 */ public class JdbcUtil { //获得驱动 private static String DRIVER = "oracle.jdbc.driver.OracleDriver"; //获得url private static String URL = "jdbc:oracle:thin: @localhost :test"; //获得连接数据库的用户名 private static String USER = "root"; //获得连接数据库的密码