convert image.png -fill "#333333" -colorize 100 image_output.png
[......]
替换图片中所有颜色(透明保留)
Leave a reply
convert image.png -fill "#333333" -colorize 100 image_output.png
[......]
可以用分支图替代,加了个配色
@startuml
skinparam ActivityDiamondBackgroundColor greenyellow
switch (查询场景)
case (OLTP)
: MySQL;
case (OLAP)
if (实时要求高) then (是)
: 同步至\nDoris\n在线SQL查询;
else (否)
: 同步至Hive\nHive或Presto查询;
endi[......]
常用公式
词汇 - 提高图像质量
AUDIO_FILE="./music.ogg"
AUDIO_DURATION=$(ffprobe -i $AUDIO_FILE -show_format -v quiet | sed -n 's/duration=//p')
AUDIO_DURATION=$(echo ${AUDIO_DURATION%.*})
最后一个行是去掉小数点,如果不用可以不去。[......]
def check_blank_image(file):
img = cv2.imread(file)
if img is None:
return False
# grary
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# threshold to two value image
ret,thresh = cv2.threshold(img, 150, 255,cv2.THRESH_BINARY)[......]