LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   CentOS-4 i386 (2.6.9-34.0.2.EL) (Red Hat 3.4.5-2) (https://www.linuxquestions.org/questions/linux-software-2/centos-4-i386-2-6-9-34-0-2-el-red-hat-3-4-5-2-a-704980/)

cp_almora09 02-16-2009 03:17 AM

CentOS-4 i386 (2.6.9-34.0.2.EL) (Red Hat 3.4.5-2)
 
I am trying to install opencv in my centOs system. When I am giving the below command it is showing the information below :


[root@asterisk1 opencv-rpm]# rpm -ivh opencv-1.0.0-1.el4.rf.i386.rpm --nodeps
warning: opencv-1.0.0-1.el4.rf.i386.rpm: V3 DSA signature: NOKEY, key ID 6b8d79e6
Preparing... ########################################### [100%]
package opencv-1.0.0-1.el4.rf is already installed


but when I am querying whether it is installed or not by the command below it is showing this information:

[root@asterisk1 opencv-rpm]# rpm -q opencv-1.0.0-1.el4.rf.i386.rpm
package opencv-1.0.0-1.el4.rf.i386.rpm is not installed


so I am not understanding what exactly is happening. So can you figure out what is the problem.

After figuring out the problem can you also tell me the commands to run the opencv application.

Thanks to you in advance.

thierrys 02-16-2009 03:31 AM

This tells you the rpm is already installed
you probably want to do rpm -qa| grep opencv to confirm whether a package is installed, it will return all instances and appropriate versions

then http://opencv.willowgarage.com/wiki/ should help regarding usage

disclaimer: i do not know opencv

knudfl 02-16-2009 07:34 AM

'rpm -ql opencv' prints a file list :
/usr/bin/opencv-createsamples
/usr/bin/opencv-haartraining
/usr/bin/opencv-performance
/usr/lib/libcv.so.1
etc. etc.
The documentation will tell ( hopefully ) how to use
the opencv program. ( See the link, # 2, thierrys.)

" opencv-1.0.0-1.el4.rf.i386.rpm " is a 'rpmforge' package
and will usually be installed with 'yum install opencv'
if you have the rpmforge repository in /etc/yum.repos.d/
( http://dag.wieers.com/rpm/FAQ.php#B )
.....

Quote:

package opencv-1.0.0-1.el4.rf.i386.rpm is not installed
The "rpm database package id" is not
'opencv-1.0.0-1.el4.rf.i386.rpm' but just 'opencv' or 'opencv-1.0.0-1.el5.rf'.
.....


All times are GMT -5. The time now is 03:16 AM.