zthcool
zthcool
superpoint 的max_point设置为1024或者512试试
@bnjmnp thank you very much about the explanation,I really appreciate.Here is my understanding and application. For example,SDO just like I got an address about a shop,I can get what I...
Here is the code I am trying ``` import sys import struct import time import threading import ctypes from collections import namedtuple import binascii import pysoem statusword = [0x6041, 0x00,...
> Hi @Frank-Rong, > I got the same problem, > I can't relocate the map when I loaded it and I find the Tcw is > [1, 0, 0, 0;...
我会简单使用了,想太复杂了,没理解说明的意思,这是我实现简单示例的代码 `from PyFaceDet import facedetectcnn import cv2 path=(r'D:\Users\BC\PycharmProjects\F_C_05_PyFaceDet(libfacedetection)\000010.jpg') img=cv2.imread(path) Faces=facedetectcnn.facedetect_cnn(path) x=Faces[0][0] y=Faces[0][1] L=Faces[0][2] W=Faces[0][3] confidence=Faces[0][4] angle=Faces[0][5] font = cv2.FONT_HERSHEY_SIMPLEX cv2.rectangle(img,(x,y),(x+L,y+W),(255,0,0),2) roi_color = img[y:y+W, x:x+L] cv2.putText(img, str(confidence), (x+5, y-5), font, 1,...