본문 바로가기
반응형

IT/C#6

[PostgreSQL] 네트워크 접속 설정 방법 (외부 접속 설정) PostgreSQL을 설치 후 다른 PC에서 DB에 접근을 허용하기 위해서는 네트워크 접속 설정을 허용해 줘야 합니다. (*windows10 64bit 환경에서 설정했습니다.) *PostgreSQL 설치와 pgAdmin 사용법은 별도로 확인하시기 바랍니다. pg_hba.conf 와 postgresql.conf 의 설정을 확인해야 합니다. 1. pg_hba.conf - pg_hba.conf을 열고, 0.0.0.0/0의 항목을 추가 합니다. (모든 IP 접속 허용) 2. postgresql.conf - Connection Settings 항목에서 listen_addresses = '*' , port = 5432 를 확인합니다. ("*" 은 모든 IP 허용하는 설정입니다.) 3. pgAdmin - pgAdmi.. 2023. 7. 12.
[한화 비전 - SUNAPI] PTZ, Preset - Pan-Tilt : nPan, nTilt 값에 따라 방향과 속도가 달라집니다. public void PTZ_PanTilt(int nPan, int nTilt) { String strPreURI = "http://"; String strIPAddress = _strDeviceIP; String strPort = _nDeviceHttpPort.ToString(); String strFunction = String.Format("/stw-cgi/ptzcontrol.cgi?msubmenu=continuous&action=control&Pan={0}&Tilt={1}&NormalizedSpeed=True", nPan, nTilt); String strQuery = strPreURI + strIPAddress +.. 2023. 7. 6.
[한화 비전 - SUNAPI] Zoom, Focus - Zoom : nZoomValuer값에 따라 - (Near), + (Far) 동작. public void PTZ_Zoom(int nZoomValue) { String strPreURI = "http://"; String strIPAddress = _strDeviceIP; String strPort = _nDeviceHttpPort.ToString(); String strFunction = "/stw-cgi/ptzcontrol.cgi?msubmenu=absolute&action=control&Zoom=" + nZoomValue.ToString(); String strQuery = strPreURI + strIPAddress + ":" + strPort + strFunction; String strUser.. 2023. 7. 6.
[한화 비전 - SUNAPI] RTSP 영상 수신 (with OpenCVSharp) RTSP을 연결할 SMP주소를 얻었고 이제 RTSP 영상을 수신할 차례입니다. 영상 장비를 통해 영상이 수신 되는지 여부는 VLC media player를 통해 확인합니다. (다운로드 하려면 아래 링크를 클릭.) https://www.videolan.org/vlc/index.ko.html VLC 미디어 재생기 공식 다운로드, 최고의 오픈 소스 재생기 - VideoLAN VLC는 DVD, 오디오 CD, VCD 와 다양한 스트리밍 프로토콜뿐 아니라 대부분의 멀티미디어 파일을 재생할 수 있는 무료 오픈 소스 크로스 플랫폼 멀티미디어 재생기이자 프레임워크입니다. VLC는 대부 www.videolan.org Visual Studio 프로젝트에 OpenCVSharp 관련된 NuGet 패키지를 추가합니다. OpenC.. 2023. 7. 5.
반응형