OPENCV 프로그램이 초기화되지 못하였습니다. 라는 에러메시지로 실행이 안될때 빌드만 되고.
해결책~!
If you are using the pre-compiled binary, you need to install MSVCRT
(visual c++ run time) 8.0 available from the following link
OpenCV 1.1pre is built on Visual Studio 2005 and therefore depends on
MSVCRT 8.0. This is such a fall back since OpenCV 1.0 doesn't require
that run time at all. I am the maintainer of the Emgu CV project
(which is .NET OpenCV wrapper) and a user post the same question on
our discussion forum. It took me quite a while to find out the cause.
I think it would be nice if the OpenCV developers can static link the
VCRT on windows binary, otherwise they should at least state the
requirements on the release note.
.. 겨우 찾았네.. -_-; 다운받은후에 실행하자
//////////////////// 헐 다음에 깔때 생긴 문제인데.. 저 위에것이 설치가 안되는 경우가 있다 다음과 같은 경우는
Dear Mr. Diamond,
Thanks for your clarification.
I can reproduce this issue on Chinese version of Windows XP. Based on my reserches, the cause of that is the path of the temp folder for such user account has asian characters. The workaound I found is that we can use a batch file and set our own temp path. For example
@echo off
echo Installing the Microsoft Visaul C++ redistributable
echo Please wait...
vcredist_x86.exe /T:"C:\Mytemp"
echo Done!
Thanks,
Rong-Chun Zhang
MSDN Subscriber Support in Forum
If you have any feedback on our support, please contact msdnmg[at]microsoft.com
이 메시지가 답이 될듯! :D
setting for mysql comfile in C programming
At first you need to make a right server-list ( /etc/apt/server.list)
or you can change it system -> Admin -> Software source
then see those website
http://kldp.org/node/22043
http://www.cyberciti.biz/tips/linux-unix-connect-mysql-c-api-program.html
http://kldp.org/node/19659
you should know this
gcc -o cautoclick main.o osdep.o guicommandline.o -lm -L/usr/lib -lX11 -lXext -lXtst -lmysqlclient
it can complete compile
How to mount partition with ntfs file system and read write access
1. Introduction
Purpose of this article is to provide to reader step by step guide, how to mount partition with NTFS file system on the Linux operating system. This article consists of two parts:
- mount NTFS file system read only access
- mount NTFS file system with read write access
2. Mount NTFS file system with read only access
2.1. NTFS kernel support
Majority of current Linux distributions supports NTFS file system out of the box. To be more specific, support for NTFS file system is more feature of Linux kernel modules rather than Linux distributions. First verify if we have NTFS modules installed on our system.ls /lib/modules/2.6.18-5-686/kernel/fs/ | grep ntfs
NTFS module is presented. Let's identify NTFS partition.
2.2. Identifying partition with NTFS file system
One simple way to identify NTFS partition is:fdisk -l | grep NTFS
There it is: /dev/sdb1
2.3. Mount NTFS partition
First create a mount point:mkdir /mnt/ntfsThen simply use mount command to mount it:
mount -t ntfs /dev/sdb1 /mnt/ntfs
Now we can access NTFS partition and its files with read write access.