1 Star 0 Fork 0

Nuyoah/scaning_block

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
util.py 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nuyoah 提交于 2024-08-10 12:43 . feat:增加接口服务返回信息
import json
import os
import re
import matplotlib.pyplot as plt
import numpy as np
import cv2
import matplotlib.pyplot as plt
def rgb_to_grayscale(red, green, blue):
grayscale = 0.2989 * red + 0.5870 * green + 0.1140 * blue
return grayscale
def get_box_dimensions(box):
x1, y1, x2, y2 = box # Unpack the box coordinates
width = x2 - x1 # Calculate width
height = y2 - y1 # Calculate height
return width, height
# for i in range(0, 56):
# filename = str(i) + ".txt"
# with open(filename, 'w') as f:
# pass # Write nothing to the file
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiaoshengdi/scaning_block.git
git@gitee.com:xiaoshengdi/scaning_block.git
xiaoshengdi
scaning_block
scaning_block
master

搜索帮助