본문 바로가기

Managed Debugging Assistant 'ContextSwitchDeadlock' has detected a problem in 'D:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TESTWINDOW\vstest.executionengine.x86.exe'. Additional information: CLR에서 60초 동안 COM 컨텍스트 0xd84940에서 COM 컨텍스트 0xd849f8(으)로 전환하지 못했습니다. 대상 컨텍스트/아파트를 소유하는 스레드가 펌프 대기를 수행하지 않거나, Windows 메시지를 펌프하지 않고 매우 긴 실행 작업을 처리하고 있는 것 같습니다. 이러한 상황은 대개 성능에 부정적인 영향을 주며 응용 프로그램이 응답하지 않거나 시간이 흐름에 따라 메모리 사용이 증가하는 문제로 이어질 수도 있습니다. 이 문제를 방지하려면 모든 STA(Single Threaded Apartment) 스레드가 펌프 대기 기본 형식(예: CoWaitForMultipleHandles)을 사용하고 긴 실행 작업 동안 지속적으로 메시지를 펌프해야 합니다. 디버..
System.Data.SqlClient.SqlException: An attempt to attach an auto-named database for file [LocalDB파일 경로] failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. LocalDB 파일로 개발하는 도중 만날 수 있는 예외 메시지입니다. 제가 만난 경우는 메인프로젝트의 App_Data 폴더에 xxxx.mdf local DB가 있고 유닛테스트 프로젝트에서는 참조해서 쓰는 경우에 발생했습니다. 메인 프로젝트의 Web.config 의 Connection String 섹션명과 유닛테스트 프로젝트의 App.config 의 Connection String 섹션 명이 같게 설정되어 있습니다. 관련 내용 검색은 1. localDB data source http://stackoverflow.com/questions/21563940/how-to-connect-to-localdb-in-visual-studio-server-explorer 2. UNC share 관련 http://forum..
부동산 경매 종류와 절차 부동산 경매 1. 종류 강제경매 채무자 소유의 부동산을 압류, 환가하여 그 매각대금을 가지고 채권자의 금전채권의 만족을 얻음을 목적으로 하는 강제집행 절차 중의 하나이다. 임의경매 담보권의 실행을 위한 경매. 민사집행법 264조 ~ 275조까지 그 실행에 집행권원을 요하지 아니하는 경매에 관한 규정을 두고 있는바, 이러한 경매를 통틀어 강제경매에 대응하여 임의경매라 한다. - 실질적 경매 : 저당권, 질권, 전세권등 담보물권의 실행 - 형식적 경매 : 민법, 상법 기타 법률의 규정에 의한 환가를 위한 경매 * 2002.7.1. 이후 시행된 민사집행법 준수 2002.6.30. 이전 신청된 경매사건은 개정 전 민사집행법 적용 2. 절차 경매신청 경매신청(채권자) -> 경매개시결정 & 부동산 압류(법원) ->..
C# Override Object Equals /*** * Excerpted from "Test Drive ASP.NET MVC", * published by The Pragmatic Bookshelf. * Copyrights apply to this code. It may not be used to create training material, * courses, books, articles, and the like. Contact us if you are in doubt. * We make no guarantees that this code is fit for any purpose. * Visit http://www.pragmaticprogrammer.com/titles/jmasp for more book information. ***/ usin..
A Forge - moravec corner detection moravec corner detection - https://en.wikipedia.org/wiki/Corner_detection#Moravec_corner_detection_algorithm
OpenCV – Basic Functions Miscellaneous Image Transformations Converts an image from one color space to another. void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0 ) - http://goo.gl/wJeZgt Filter void GaussianBlur(InputArray src, OutputArray dst, Size ksize, double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT ) - http://goo.gl/FiOgMO Basic Thresholding Operations double threshold(InputArray sr..
OpenCV – Blob Detect 자료 참고서적 - OpenCV Essentials - Learning Image Processing with OpenCV - OpenCV for Secret Agents 참고 URL Detect Algorithm Algorithm- Recursive, Iteration, - https://goo.gl/qQCbuu Blob Detection Using OpenCV ( Python, C++ ) - https://goo.gl/Cjsjo0 - blob detect work, ltering Blobs by Color, Size and Shape Object Detection Using the OpenCV / cvBlobsLib Libraries - http://goo.gl/NthcJ9 Color-based Blob D..
EF6 sp 반환셋을 group by 할때 var result = (from r in (connect.Edumate.sMessageReceive(data.startDate, data.endDate, studentList, "", "") .Select(x => new ListItem { Content = x.Content, RegistDate = x.RegistDate })) group r by r.Content into g select new { Content = g.Key, RegistDate = g.Select(x => x.RegistDate).Distinct().FirstOrDefault() } );