一、简介 1 概述 在计算机视觉和图像处理领域,最大类间方差法(otsu)又叫做大津法,是1979年由日本学者大津提出的,是一种自适应阈值分割方法,减少灰阶图像等级成为一个二值图像。该算法假定图像分为两类(符合双峰直方图分布,两类分别称为前景/目标像素和背景像素),然后计算出一个最优的阈值将将此图像 ...
分类:
其他好文 时间:
2021-06-28 18:00:29
阅读次数:
0
NVM for Windows下载与安装 下载NVM for Windows https://github.com/coreybutler/nvm-windows/releases nvm-noinstall.zip: 这个是绿色免安装版本,但是使用之前需要配置 nvm-setup.zip:这是一个 ...
docker-compose是容器编排工具,需要注意的是,docker-compose只是单机的容器编排工具 docker-compose 默认的配置文件为 : docker-compose.yaml 1 安装docker-compose # 下载 ? docker文档 : `https://doc ...
分类:
其他好文 时间:
2021-06-28 17:54:10
阅读次数:
0
说明:SpringBoot使用@Scheduled创建定时任务 package com.lch.task; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.sc ...
分类:
其他好文 时间:
2021-06-28 17:53:36
阅读次数:
0
function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log( ...
分类:
其他好文 时间:
2021-06-28 17:45:59
阅读次数:
0
1.去官网下载安装包http://www.oracle.com/technetwork/topics/winx64soft-089540.html 2.1instantclient-basic-windows.x64-19.11.0.0.0.zip 2.2instantclient-sqlplus- ...
分类:
数据库 时间:
2021-06-25 17:25:38
阅读次数:
0
1. 当前连接会话数以及当前并发连接个数 -- 当前活跃用户会话数Select count(*) from v$session where status='ACTIVE' and USERNAME is not null;-- 当前活跃系统会话数Select count(*) from v$sess ...
分类:
数据库 时间:
2021-06-25 17:21:32
阅读次数:
0
工作中经验遇到搭建时间服务器的任务,如何搭建网上找的例子总是有些许问题,如下自己动手操作一遍总结一下,方便自己和后来人直接上手使用。 准备工作:192.168.0.1 服务端: ntp服务器192.168.0.2 客户端: 定时与192.168.0.1的服务器同步时间一、服务端操作1、查看操作系统版 ...
分类:
系统相关 时间:
2021-06-25 17:16:15
阅读次数:
0
# 以t模式为基准操作# 1.r:只读模式:文件不存在时报错,文件存在时指针跳到开始位置# input_username = input("username:")# input_password = input("password:")## with open('a.txt', mode='rt', ...
分类:
编程语言 时间:
2021-06-25 17:15:33
阅读次数:
0