카페검색 본문
카페글 본문
-
해당카페글 미리보기
-
Re: vl-sort와 append의 방식에 대한 궁금증 2023.05.24해당카페글 미리보기
1. append는 리스트 뒤에 추가해줍니다 (이름이 End에 붙인다는...) (setq a (list "1" "2" "3" "4" )) (setq a (append a (list "5" ))) (print a ) ; ( "1" "2" "3" "4" "5") 2 리스트 앞에 추가하려면 con를 이용해야 합니다 (setq b (list "1" "2" "3...
-
비교적 단순한 멀티 폴리곤 중심점 잡기 - Qgis 스크립트 2024.11.24해당카페글 미리보기
feature = QgsFeature() circle_feature.setGeometry(circle) circle_feature.setAttributes([feature_id]) circle_features.append(circle_feature) feature_id += 1 else: # 단일 폴리곤인 경우 centroid = geometry.pointOnSurface().asPoint() circle...
-
pydantic 모델을 사용한 요청 바디 검증 2024.11.25해당카페글 미리보기
todo에 dict 형태면 다 가능했는데. XX@XX async def add_todo(todo: dict) -> dict: todo_list.append(todo) return {"message": "Todo created successfully!"} 형식을 정하려면 from pydantic import BaseModel class Todo...
-
Re: tkinter 로 구현한 타자 인식 사물 검출 사용자 인터페이스 2024.11.13해당카페글 미리보기
color=color, thickness=2) # 기록 저장 self.detection_counts[class_name] += 1 self.detection_confidences[class_name].append(confidence) # 검출 결과 저장 out.write(frame) cap.release() out.release() self.cap_detection = cv2.VideoCapture...