본문 바로가기

Projects/Foot3

solecooler CES 2024 Unveiled, solecooler의 베터리 없는 스마트깔창 https://solecooler.com/en_US/technology Our patented technology: An eco-friendly solution for the comfort of your feet! Notre technologie brevetée : Une solution eco-f The SoleCooler patent is based on thermodynamics, particularly on the Carnot cycle, like in an air conditioner but with air as the fluid. This thermoregulated insole that uses the energy.. 2024. 1. 12.
I am trying to find between the toes using opencv for photos taken from the top of the feet. opencv 발가락 사이의 위치를 구하기 Load the image using imread function in OpenCV for Unity. Mat img = Cv2.ImRead("path/to/image.jpg"); Convert the image to grayscale using the cvtColor function. Mat grayImg = new Mat(); Cv2.CvtColor(img, grayImg, ColorConversionCodes.BGR2GRAY); Apply a threshold to the image to separate the toes from the rest of the foot using the threshold function. Mat thresholdImg = new.. 2023. 4. 13.
발의 아치를 찾는 알고리즘 발가락 사이를 인식하고 그 점들을 이어서 원을 만든다. 이원의 선상에 발의 끝점을 각각 구해서 이점을 발의 아치에 사용한다. 네 점을 지나는 원의 방정식을 찾기 위해 삼각형의 외심 개념을 사용할 수 있습니다. 먼저 주어진 4개의 점 중에서 임의의 3개의 점을 선택해야 합니다. 세 점이 (x1,y1), (x2,y2) 및 (x3,y3)이라고 가정해 보겠습니다. 그런 다음 이 세 점에 의해 형성된 변의 수직 이등분선을 찾아야 합니다. 수직이등분선은 변에 수직이고 변의 중간점을 통과하는 선입니다. 주어진 네 점에서 세 점의 가능한 모든 조합에 대해 2단계를 반복합니다. 임의의 두 수직 이등분선의 교점은 세 점에 의해 형성된 삼각형의 외심입니다. 외심은 이 세 점을 지나는 원의 중심입니다. 세 점의 가능한 모든 .. 2023. 4. 13.