반응형 분류 전체보기18 C++ 형 변환 방법 (+const_cast) 1. (int)value 방식이 방식은 C 스타일의 캐스팅으로, C++에서도 여전히 지원되지만 C++ 스타일의 캐스팅(static_cast, dynamic_cast 등)을 사용하는 것이 권장됩니다. 이 방식은 다음과 같은 특징을 가집니다:문법적으로 간단: (type)value 형태로 사용되며, 가독성이 좋습니다.컴파일러가 경고를 발생시키지 않음: 대부분의 경우 컴파일러는 이 방식을 사용할 때 경고를 발생시키지 않습니다.타입 변환의 범위가 넓음: C++에서는 int와 같은 기본 데이터 형식 간의 변환이나 상속 관계가 없는 클래스의 포인터 간의 변환에 사용됩니다.C 스타일 캐스팅: (int)value는 C 스타일의 형 변환 방식으로, 오래된 C 스타일에서 사용되던 방식입니다.타입 체크 없음: 컴파일러는 va.. 2024. 6. 23. 자신의 GPU에 맞는 CUDA 버전 설치하기 자신의 GPU에 맞는 버전 설치하기 아래 사이트에서 자신의 GPU에 맞는 버전을 찾는다. Wikiwand - CUDA Compute Unified Device Architecture (CUDA) is a parallel computing platform and application programming interface (API) that allows software to use certain types of graphics processing units (GPUs) for accelerated general-purpose processing, an approach ca www.wikiwand.com 버전 찾는 예시) 1. 우선 표를 참고하여 자신의 GPU에 맞는 Compute capability (ve.. 2024. 3. 31. face recognition- TypeError: compute_face_descriptor(): incompatible function arguments. The following argument types are supported: 오류 해결 face_recognition/examples/facerec_from_webcam_faster.py at master · ageitgey/face_recognition The world's simplest facial recognition api for Python and the command line - ageitgey/face_recognition github.com 위 예제를 실행하자 다음과 같은 문제가 발생했다. Traceback (most recent call last): File "c:\Users\-\Documents\Project\Real-time-Streaming-Filter\tests\face_recognition\face_recognition_test.py", line 55, in fa.. 2024. 3. 31. face recognition 얼굴 인식 모델 시작하기 face_recognition은 Python 언어를 사용하여 얼굴 인식 기능을 제공하는 라이브러리이다. 이 라이브러리는 실시간으로 사진 또는 비디오에서 얼굴을 인식하고 추출할 수 있는 기능을 제공한다. face_recognition 라이브러리는 다양한 얼굴 인식 작업을 쉽게 수행한다. 이 라이브러리는 이미지 처리 및 얼굴 특징점 검출을 위해 dlib 라이브러리를 기반으로 하며, 간단한 인터페이스를 통해 사용자가 쉽게 얼굴 인식 기능을 구현한다. 아래는 쉽게 시작할 수 있는 예제 코드 이다. face_recognition/examples/facerec_from_webcam_faster.py at master · ageitgey/face_recognition The world's simplest facial.. 2024. 3. 31. 이전 1 2 3 4 5 다음 반응형