OpenCV UWP considerations Get link Facebook X Pinterest Email Other Apps June 25, 2019 I got OpenCV example article in UWP like this. https://docs.microsoft.com/ko-kr/windows/uwp/audio-video-camera/process-software-bitmaps-with-opencv Read more
When fscanf(fp,"%f,",&fval); is not working Get link Facebook X Pinterest Email Other Apps June 14, 2019 When read text file like filter constant file, I usually use fscanf(fp, "%f", &fval);. But Today, it is not working at all. So, I spent whole 5 hrs then found that text file is encoded UTF-8. So, I save as ASCII text file then it works like a charm. Read more