Ask Your Question

alexjr1984's profile - activity

2020-12-05 15:53:49 -0600 received badge  Student (source)
2020-01-13 23:54:17 -0600 received badge  Famous Question (source)
2017-01-15 15:17:28 -0600 received badge  Notable Question (source)
2016-07-06 12:25:15 -0600 received badge  Popular Question (source)
2014-11-08 02:49:01 -0600 commented answer The app was unable to start correctly (0xc000007b)

Are there any specific changes I need to make in VS to make it compile as 32-bit? As for the 64-bit compiling, there is a different lib I'm gonna have to use in the future that is a 32 bit process and won't work as a 64.

2014-11-07 16:19:21 -0600 asked a question The app was unable to start correctly (0xc000007b)

Hello,

I've encountered the mentioned error while trying to execute my program, which, for simplicity sake only has a main and a single line:

cv::Mat mainPic_ = imread("path");

I searched about it and I know that it's a 64bit and 32bit dll mismatch. I haven't been able to find out exactly where however.

My OP is WIN7 64bit. I'm using VS 2010 in win32 debug mode.

opencv-2.4.9

c\c++ general: "c:\opencv\build\include\"

linker general: "c:\opencv\build\x86\vc10\lib

PATH: "c:\opencv\build\x86\vc10\bin\"

Result of Dependency Walker:

Module:

API-MS-WIN-APPMODEL-RUNTIME-L1-1-0.DLL

API-MS-WIN-CORE-WINRT-ERROR-L1-1-0.DLL

API-MS-WIN-CORE-WINRT-L1-1-0.DLL

API-MS-WIN-CORE-WINRT-ROBUFFER-L1-1-0.DLL

API-MS-WIN-CORE-WINRT-STRING-L1-1-0.DLL

API-MS-WIN-SHCORE-SCALING-L1-1-0.DLL

DCOMP.DLL, GPSVC.DLL, IESHIMS.DLL, VCOMP90.DLL

Warning: At least one delay-load dependency module was not found.

Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.

All of the mentioned DLL above are in system32. I also tried uninstall and reinstall Microsoft Visual C++ 2010 Redistributable Package (x86). Didn't help.

Any ideas?

Thanks,

Alex

2014-09-21 04:45:38 -0600 commented question using putText() diagonally?

@sergioFC, provided a solution that does the job. the link is: http://stackoverflow.com/questions/25...

2014-09-21 03:01:15 -0600 commented question using putText() diagonally?

@berak i'm trying to create this watermarked picture as part of a larger program. All I asked if it is possible. How is it I'm "abusing" ?

2014-09-21 02:30:46 -0600 asked a question using putText() diagonally?

Hello,

Is it possible using the putText() method to draw text on a picture diagonally?

If not, beside using addWeighted() to blend two pictures together (where one of them is a text placed diagonally), is there any other option?

I'm trying to place a text watermark on a picture, my problem is that right now i'm using addWeighted() to blend a text drawn diagonally on a white background. Even with alpha 0.9, the white background changes the original picture.

Any ideas?

Thanks,

Alex