Ask Your Question

s0r2637's profile - activity

2019-11-19 03:51:06 -0600 received badge  Taxonomist
2018-09-06 10:43:27 -0600 asked a question I wanted to know if DNN Halide implementation in OpenCV has improved since its inception

I wanted to know if DNN Halide implementation in OpenCV has improved since its inception Hi guys, I am working with NVI

2015-02-11 09:08:24 -0600 received badge  Enthusiast
2015-02-09 11:05:23 -0600 commented question Unsuccessful in installing OPenCV 2.4.10-Python in Windows from source

Did anybody get a chance to diagnose what the problem might be? Could somebody please suggest who might be the right person to clarify this issue I am facing?

2015-02-08 11:54:19 -0600 commented question Unsuccessful in installing OPenCV 2.4.10-Python in Windows from source

I am attaching the CMakeErrors.log file. Could you please take a look at it and tell me what is missing? I am attaching the file under my main question above

2015-02-08 10:48:27 -0600 commented question Unsuccessful in installing OPenCV 2.4.10-Python in Windows from source

I checked the ..\build\CMakeFiles, and I found CMakeError.log. It showed that there were 5 builds that failed. How do I share this file with you to diagnose the problem further? Could the errors in these builds be the reason for this problem?

2015-02-07 11:38:27 -0600 asked a question Unsuccessful in installing OPenCV 2.4.10-Python in Windows from source

Hi,

I tried installing OpenCV-2.4.10 for Python-3.4.1 (Anaconda distribution) for Windows-7, 64-bit from the source.

I used CMake and Visual Studio 2012. The whole process went well with no errors in building ALL-BUILD and INSTALL projects. However, I don't see the cv2 module working in Python yet. Is there something more I need to do before I can import the cv2 module in Python? Any help is highly appreciated.

The log file CMakeErrors.log is attached for troubleshooting. I can't attach a log file, so I am cutting and pasting the content of the CMakeError.log:

*Determining if the system is big endian passed with the following output:
Change Dir: C:/Users/Desri/Downloads/opencv-2.4.10/opencv-2.4.10/build/CMakeFiles/CMakeTmp
Run Build Command:C:\PROGRA~2\MICROS~1.0\Common7\IDE\devenv.com CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec408104936
Microsoft (R) Microsoft Visual Studio 2012 Version 11.0.50727.1.
Copyright (C) Microsoft Corp. All rights reserved.
1>------ Build started: Project: cmTryCompileExec408104936, Configuration: Debug Win32 ------
1>  Microsoft (R) C/C++ Optimizing Compiler Version 17.00.50727.1 for x86
1>  Copyright (C) Microsoft Corporation.  All rights reserved.
1>  
1>  cl /c /Zi /W3 /WX- /Od /Ob0 /Oi /Oy- /D WIN32 /D _WINDOWS /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /D _DEBUG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /Gy /arch:SSE2 /fp:fast /Zc:wchar_t /Zc:forScope /Fo"cmTryCompileExec408104936.dir\Debug\\" /Fd"C:/Users/Desri/Downloads/opencv-2.4.10/opencv-2.4.10/build/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec408104936.pdb" /Gd /TC /analyze- /errorReport:prompt  /bigobj TestEndianess.c
1>  
1>  TestEndianess.c
1>  cmTryCompileExec408104936.vcxproj -> C:\Users\Desri\Downloads\opencv-2.4.10\opencv-2.4.10\build\CMakeFiles\CMakeTmp\Debug\cmTryCompileExec408104936.exe
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
TestEndianess.c:
/* A 16 bit integer is required. */
typedef unsigned short cmakeint16;
/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
   On a big endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_little[] =  {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
   On a little endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_big[] =     {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
  int require = 0;
  require += info_little[argc];
  require += info_big[argc];
  (void)argv;
  return require;
}
Determining if the function fseeko exists failed with the following output:
Change Dir: C:/Users/Desri/Downloads/opencv-2.4.10/opencv-2.4.10/build/CMakeFiles/CMakeTmp
Run Build Command:C:\PROGRA~2\MICROS~1.0\Common7\IDE\devenv.com CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec2303162215
Microsoft (R) Microsoft Visual Studio 2012 Version 11.0.50727.1.
Copyright (C) Microsoft Corp. All rights reserved.
1>------ Build started: Project: cmTryCompileExec2303162215, Configuration: Debug Win32 ------
1>  Microsoft (R) C/C++ Optimizing Compiler Version 17 ...
(more)
2015-02-07 11:12:10 -0600 commented question I am having trouble in installing OpenCV for Python 3.x in Windows 7

Could you please tell me from which folder should I type the make command? Is it the build folder or the source folder? Also is make utility is part of the CMake or MingW ? Sorry for such basic questions, but I am not an expert in installing from source.

2015-02-06 16:49:40 -0600 received badge  Editor (source)
2015-02-06 16:46:40 -0600 asked a question I am having trouble in installing OpenCV for Python 3.x in Windows 7

I tried to create OpenCV bindings for Python 3.x from the source file in GitHub. I use the CMake utility and Mingw-GCC compiler to achieve that. The build came out successfully, but I don't know how to proceed from there. How do I get the openCV module to work in Python 3.x? Any help would be highly appreciated. I have been toiling for a couple of days now.

P.S. Btw, I used the instructions in the following website: http://docs.opencv.org/trunk/doc/py_t... Instead of Visual Studio, I used TDM-GCC-64 compilers. What do I do after I finish Step 13 provided in the above link.

2015-02-06 14:42:16 -0600 commented question Hi I am having trouble with installing opencv for Python 3.x in windows

The SO link is my question that I posted there. I didn't want to re-write my question all over again. Sorry for the confusion.

2015-02-06 14:28:38 -0600 asked a question Hi I am having trouble with installing opencv for Python 3.x in windows